]> git.gag.com Git - fw/sdcc/blob - ChangeLog
device/include/mcs51/at89c51ed2.h: added.
[fw/sdcc] / ChangeLog
1 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2
3         * device/include/mcs51/at89c51ed2.h: added.
4
5 2005-07-23 Raphael Neider <rneider AT web.de>
6
7         * src/pic/gen.h: added emitpcode macro for debugging
8         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
9           and replace by macro adding debug information on demand
10         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
11         * (gencjne): tried to fix; replaced with correct (slower) code
12         * (gen{Unp,P}ackBits): fixed single bit access
13         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
14         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
15           previous instruction
16         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
17           register has to be handled with care (forbidding movement
18           of assignments/uses, removing assignments completely, ...)
19         * (pCodeOptime2pCodes): make use of regIsSpecial
20         * added lots of debugging output (commented out)
21         * src/pic/rallloc.c (deassignLRs): prevent operand registers
22           from being reused as result UNLESS it is known to work
23
24 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
25
26         * support/Util/dbuf.h: include <stddef.h> for size_t
27         * .version: changed to version 2.5.2
28
29 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
30
31         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
32
33 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
34
35         * src/hc08/gen.c (genMinus): fixed bug #1241835,
36           (genModOneByte): removed needless psha/pula
37
38 2005-07-22 Raphael Neider <rneider AT web.de>
39
40         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
41           have PIC14 handled like PIC16, fixes broken pic14 linker calls
42         * src/pic/gen.c (resolveIfx): do not "invent" labels
43         * (genSkipc): changed to positive logic
44         * (genSkipCond): removed as no longer needed
45         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
46           backport from PIC16
47         * (genLeftShift): check operands are in different registers
48         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
49           INCF does not update CARRY...
50         * src/pic/main.c: fixed _linkCmd
51         * src/pic/pcode.c (unlinkpCode): added inactive code
52         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
53           alive (do not assign result and operand overlapping registers)
54
55 2005-07-22 Raphael Neider <rneider AT web.de>
56
57         * src/pic/device.c (dump_sfr): replaced register declaration with
58           call to emitSymbolToFile() to avoid duplicate symbols
59         * (assignRelocatableRegisters): do not declare external symbols
60         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
61           right (take size of type, not etype)
62         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
63         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
64         * (packRegsForAccUse): disabled assignment of WREG as
65           the result reg to prevent occurence of just fixed #1235003,
66           fixes #1242954
67         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
68           symbols (avoids duplicate symbols in .asm file)
69         * (pic14emitRegularMap): use emitSymbolToFile()
70         * src/pic/gen.c (aopOp): fixed spillLocation handling
71         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
72         * (genDataPointerSet): removed unneccessary variables/output
73
74 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
75
76         * as/mcs51/lkarea.c: enlarged codemap for banked memory
77         * device/lib/mcs51/crtbank.asm: added # to 0x0F
78
79 2005-07-21 Raphael Neider <rneider AT web.de>
80
81         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
82           architecture cannot handle them efficiently, fixes bug #1235003
83         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
84           check for empty sets before using them (fixes bug #1232190)
85
86 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
87
88         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
89           (lnksect2): generate warnings for memory overlap
90         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
91           constseg to set the name of these segments so you can instruct the linker
92           to place them in banks
93         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
94         * src/SDCCglobl.h: added MODEL_HUGE to enum,
95           added code_seg and const_seg to options
96         * src/SDCCglue.c (emitMaps): use options.const_seg,
97           (createInterruptVect): put interrupt vectors in segment HOME,
98           (glue): put HOME before static segment and put the main glue in HOME,
99           (glue): use options.code_seg
100         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
101         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
102           these segments so you can instruct the linker to place them in banks
103           (linkEdit): use code_loc for HOME segment which should be the first
104           segment in code memory now
105         * src/SDCCmem.c: fixed more stuff like bug 1238386
106         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
107           (changePointer): don't change function pointers to code pointers for
108           banked functions,
109           (compareType): added exceptional check for banked function pointers
110         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
111         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
112           after static in code memory
113         * src/mcs51/gen.c: added aopLiteralLong prototype,
114           (aopForSym): use getSize for functions,
115           (genCall): generate banked calls over one trampoline __sdcc_banked_call
116           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
117           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
118           the segment,
119           (genPcall): use call for literal function pointers and generate banked
120           calls over the one trampoline so there's only one place for the user to
121           modify according to his/hers hardware,
122           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
123           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
124         * src/mcs51/main.c: added keyword banked,
125           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
126         * support/Util/SDCCerr.c,
127         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
128           needed for passing the bank and address to the trampoline
129         * device/lib/mcs51/crtbank.asm: added for bankswitching
130         * device/lib/mcs51/Makefile: added crtbank
131
132 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
133
134         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
135           for fields at offset 0 of a struct or union as reported
136           on 2005-07-07 in the developer mailing list.
137
138 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
139
140         * src/SDCCmem.c: fixed bug 1238386
141
142 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
143
144         * src/mcs51/peeph.def: added labelrefcounting for peepholes
145           (patch #1144962), added peephole 300, enabled 259.x
146         * doc/sdccman.lyx: removed screenshot and provided link instead
147
148 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
149
150         * doc/sdccman.lyx: added section about debugging with ddd
151         * doc/figures/ddd_example.eps: screenshot of debugging session
152
153 2005-07-04 Raphael Neider <rneider AT web.de>
154
155         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
156           like CODE pointers, fixes #1115683
157         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
158           call, fixes bugs #1232211, #1228110,
159           fixed wrong casts to pCodeFlow from pCodeInstructions
160
161 2005-07-04 Raphael Neider <rneider AT web.de>
162
163         * src/pic/gen.c (popGet): changed assert to allow for
164           bit operands
165         * (popGetAddr): changed signature to provide
166           an additional index, patched all call sites
167         * (genCmpEq): handle literal-like operands correctly
168         * (genAddrOf): added sanity checks on __code/__data pointers
169         * (genAssign): added handling of symbols from __code section
170         * (gencjne): do not generate code for comparisons whose result
171           is neither stored nor used, fixes bug #1171114
172         * (AccLsh, AccRsh): operate on operand instead of WREG
173         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
174           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
175           by known count
176         * rewrote complete shift-by-literal logic, commented unused
177           functions out
178         * (genConstPointerGet): get multiple bytes (if result size > 1),
179           fixed handling of non-immediate addresses
180         * (genPointerGet): handle CODE pointers like CONST pointers
181         * (genpic14Code): insert C-SRC lines as Cource-pCodes
182         * ({aop,op}_isLitLike): NEW, single place to decide whether an
183           operand is to be treated as a literal or not
184         * (mov2w,genPcall,genCmpEq),
185           src/pic/genarith.c: use aop_isLitLike() to decide between
186           literal/register contents
187         * (addSign): added missing offset
188         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
189           only emit comment in debug-mode,
190           use {aop,op}_isLitLike throughout the file
191         * src/pic/glue.c: fix initializers for pointers (work in progress)
192         * src/pic/pcode.c (get_op): honor index on _const symbols
193         * ({reset,dump}pCodeStatistics): NEW, estimate code size
194         * (dumppBlock): added pCode size estimation
195         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
196           check for IS_SYMOP before OP_SYMBOL'ing
197         * fixed indentation, compacted switch-statements
198         * (allocReg): find free register and allocate it instead of
199           allocating new registers all the time
200         * (deassignLRs): prevent POINTER_GET's from being assigned the same
201           registers as its operands (necessary only for multibyte GETs)
202
203 2005-07-01 Raphael Neider <rneider AT web.de>
204
205         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
206           debugging .asm-output macros FENTRY + FEXIT
207         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
208           way... I wonder...
209         * (emitpComment): NEW, printf to pCode
210         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
211           offset handling
212         * (popGetAddr): NEW, variant of popGet to access an immediates
213           high(er) bytes instead of the n'th byte of memory they reference,
214           replaced popGet with popGetAddr where neccessary
215         * (genDataPointerGet): reactivated and fixed implementation
216         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
217           accesses
218         * (genDataPointerSet): fixed multibyte assignments
219         * (genpic14Code): fixed --i-code-in-asm handling
220         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
221         * (genPlus): fixed index-out-of-bounds error
222         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
223         * src/pic/ralloc.c: added debugging output macro FENTRY2
224         * (spillThis): fixed indentation, enbraced for-body for clarity
225         * (rematStr): commented out as now unused
226         * (regTypeNum): commented out special spill case (overwrites
227           arbitrary values)
228         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
229
230 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
231
232         * doc/sdccman.lyx: documented sfr16/sfr32,
233           added example for using storage class with function pointers
234         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
235
236 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
237
238         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
239         * device/lib/_itoa.c,
240         * device/lib/_ltoa.c: optimized codesize
241         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
242           but don't know how to suppress the double warning.
243         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
244         * support/Util/SDCCerr.c,
245         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
246
247 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
248
249         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
250           fixed old K&R prototypes
251         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
252         * device/lib/_gptrget.c,
253         * device/lib/_gptrgetc.c,
254         * device/lib/_gptrput.c: changed versions for new memory indicator values,
255           also new versions for small generic pointers and banked generic pointers
256         * src/port.h: added const_name
257         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
258         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
259         * src/SDCCcse.c (findPrevIc): check all associative operators
260         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
261         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
262         * src/SDCCmem.c: updated comments,
263           set far-space to 0 for pdata, results in optimized code
264         * src/SDCCmem.h: added macro CONST_NAME
265         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
266           moving the info into the highest bits, see also gptrget/gptrput
267         * src/src.dsp: added sdcc.ico to project files
268         * src/avr/gen.c (genCast): fixed bug 0x%d
269         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
270         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
271           relation between ptr_type and DCL_TYPE,
272           (genCast): fixed bug 0x%d
273         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
274           (CODE)" for const_name
275         * src/hc08/gen.c (genCast): fixed bug 0x%d
276         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
277           (hc08_port): added "CONST (CODE)" for const_name
278         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
279           (aopForRemat, adjustArithmeticResult): disconnected direct relation
280           between ptr_type and DCL_TYPE,
281           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
282           operand* and took AOP() inside function so sfr-ness can be checked,
283           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
284           new prototype,
285           (genFunction, genEndFunction): optimized stack setup,
286           (genMinus): optimized for literals with ending zeroes (in bytes),
287           (genCast): fixed bug 0x%d
288         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
289           (mcs51_port): added "CONST (CODE)" for const_name
290         * src/mcs51/peeph.def: made rule 226 more generic
291         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
292         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
293         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
294         * src/z80/main.c (z80_port): added NULL for const_name,
295           (gbz80_port): added NULL for const_name
296         * support/regression/tests/bug663539.c,
297         * support/regression/tests/sfr16.c: new tests
298
299 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
300
301         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
302
303 2005-06-24 Raphael Neider <rneider AT web.de>
304
305         * device/lib/pic16/libdev/pic18f[68][567]20.c:
306           corrected typos...
307         * device/include/pic16/signal.h: added USBIF
308           and SIG_USB
309
310 2005-06-24 Raphael Neider <rneider AT web.de>
311
312         * device/lib/pic16/libdev/pic18f2455.c,
313           device/include/pic16/pic18f2455.h: NEW
314         * device/include/pic16/pic18fregs.h,
315           device/lib/pic16/pics.all,
316           src/pic16/device.c: added 18f2455
317         * device/lib/pic16/libdev/pic18f[68][567]20.c,
318           device/include/pic16/{pic18f[68][567].h,usart.h}:
319           replaced MULTIPLE_USARTS define with more relaible
320           compatibility sfrs (for USART access)
321
322 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
323
324         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
325           and the output asm file line is printed on two lines.
326
327 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
328
329         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
330           BGT, BLE, BHI, and BLS instructions
331         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
332           genCmpEq): removed
333         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
334           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
335           fixes bug #1216342
336         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
337
338 2005-06-15 Raphael Neider <rneider AT web.de>
339
340         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
341         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
342         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
343           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
344           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
345
346 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
347
348         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
349           Marcel Telka in bug #1215704
350
351 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
352
353         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
354           located in shared memory bank.
355
356 2005-05-31 Raphael Neider <rneider AT web.de>
357
358         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
359           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
360           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
361
362 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
363
364         * device/lib/_strncpy.c: fixed the fix
365
366 2005-05-26 Raphael Neider <rneider AT web.de>
367
368         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
369           initializers with \0, bug #1208187
370         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
371           intializers with \0, bug #1208187
372
373 2005-05-26 Raphael Neider <rneider AT web.de>
374
375         * src/pic16/glue.c (pic16_printIvalChar): fixed string
376           initializers with \0, bug #1208187
377         * src/pic16/main.c (_process_pragma): added sanity checks
378           for stack position and size, emit warnings when appropriate
379
380 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
381
382         * device/lib/_strncpy.c: fixed not filling with \0
383
384 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
385
386         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
387           createFunction),
388         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
389           compound_statement),
390         * src/SDCCsymt.h,
391         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
392
393 2005-05-24 Raphael Neider <rneider AT web.de>
394
395         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
396
397 2005-05-24 Raphael Neider <rneider AT web.de>
398
399         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
400           TRISE definitions, closes bug #1162453
401
402 2005-05-22 Raphael Neider <rneider AT web.de>
403
404         * src/pic16/main.c (_process_pragma): check for missing
405           arguments to pragmas code and udata
406         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
407           consistency fixes to match other headers (thanks to Jim Paris)
408         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
409
410 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
411
412         * src/SDCCicode.c (isOperandEqual): fixed missing ;
413
414 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
415
416         * support/regression/tests/bug1198642.c: new test
417         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
418         * src/SDCCcse.c (findPrevIc): added comment, please have a look
419         * support/scripts/resource.h,
420         * support/scripts/resource.rc,
421         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
422         * support/scripts/sdcc.ico: added 32x32 icon
423
424 2005-05-18 Raphael Neider <rneider AT web.de>
425
426         * device/lib/pic16/libdev/pic18f*.c,
427         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
428           keywords to "__sfr" and "__at (X)"
429         * device/include/pic16/pic18fregs.h: added pic18f4520
430         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
431           #1203088 (MPLAB compatibility)
432
433 2005-05-17 Raphael Neider <rneider AT web.de>
434
435         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
436         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
437         * device/lib/pic16/pics.all: added new devices
438         * src/pic16/device.c: added support for pic18f4520
439
440 2005-05-16 Raphael Neider <rneider AT web.de>
441         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
442         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
443         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
444           convenience function for bit access
445
446 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
447
448         * device/lib/printf_large.c: fixed bug 1193299
449         * support/regression/tests/bug1057979.c: added test %3.3s
450
451 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
452
453         * device/include/mcs51/8051.h,
454         * device/include/mcs51/8052.h: made parseable with lint
455         * device/include/mcs51/lint.h: added include file for (sp)lint
456         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
457         * doc/cdbfileformat.lyx,
458         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
459
460 2005-05-14 Raphael Neider <rneider AT web.de>
461
462         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
463         * device/lib/pic16/libc/stdlib/itoa.c (new)
464         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
465         * device/lib/pic16/libio/Makefile: exclude subdir according to
466           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
467         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
468         * src/pic16/gen.c (genFunction): prevent annoying warning
469         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
470           nameclashes on BeOS
471         * support/cpp2/cppmain.c (cpp_output_string): new
472         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
473           fixes bug 1116802
474
475 2005-05-13 Borut Razem <borut.razem AT siol.net>
476
477         * src/SDCCmain.c (linkEdit): fixed bug 1195202
478
479 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
480
481         * .version: changed to version 2.5.1; back to bleeding edge development
482
483 2005-05-11 Borut Razem <borut.razem AT siol.net>
484
485         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
486           generate PDF version 1.3 documents
487
488 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
489
490         * .version: changed to version 2.5.0
491
492 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
493
494         * doc/sdccman.lyx: updated weblinks, index and smaller updates
495
496 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
497
498         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
499         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
500         well as many smaller updates.
501         * .version: changed to version 2.5.0-pre1
502
503 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
504
505         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
506
507 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
508
509         * support/regression/tests/bug1185672.c: added
510         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
511           bug 1185672
512         * src/mcs51/gen.c (genCall): added comments, made it look safer
513         * src/mcs51/gen.c (genEndFunction): simplified
514
515 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
516
517         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
518
519 2005-04-14 Borut Razem <borut.razem AT siol.net>
520
521         * fixed bug 1045046 - SIGSEGV with really simple code?:
522           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
523           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
524
525 2005-04-14 Borut Razem <borut.razem AT siol.net>
526
527         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
528           src/pic16/device.h: temporarily disabled experimental #inline pragma
529           for 2.5.0 release
530
531 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
532
533         * device/include/z80/stdio.h,
534         * device/include/z80/string.h: removed these highly incomplete files so
535           SDCC can use the default ones in device/include/
536
537 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
538
539         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
540         gcc warning.
541         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
542         fix sdcpp warnings.
543
544 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
545
546         * device/include/malloc.h: removed redundant __reentrant prototypes
547         * device/lib/_mullong.c: added working xstack variant in asm (C version
548           doesn't pass regression tests)
549         * device/lib/bpx.c: used __data and made bpx char for mcs51
550         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
551           (createFunction): fixed bug with xstackPtr
552         * src/SDCCcse.c: corrected comments
553         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
554           (killDeadCode, eBBlockFromiCode): removed unused code
555         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
556           corrected comments
557         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
558           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
559           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
560           (genModOneByte): fixed warning in MSVC
561         * src/mcs51/main.c (): added comments
562         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
563
564 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
565
566         * src/SDCCmain.c (linkEdit): oops, changed one line too many
567
568 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
569
570         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
571
572 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
573
574         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
575         characters arrays of larger size than the declared one.
576
577 2005-04-10 Borut Razem <borut.razem AT siol.net>
578
579         * src/pic/gen.c (genInline),
580           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
581           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
582           (findNextInstruction), (findPrevInstruction),
583           (findInstructionUsingLabel),
584           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
585         * src/pic/pcode.c (findLabel): added missing '\n'
586         * src/src.dsp: added SDCCdwarf2.c to the project
587
588 2005-04-09 Borut Razem <borut.razem AT siol.net>
589
590         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
591
592 2005-04-08 Raphael Neider <rneider AT web.de>
593
594         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
595           into the chain after a given one) and mergeDefmapSymbols (combine
596           defmap entries for each symbol per pcode)
597         * (createDefmap): have defmap entries merged in the end
598         * (defmapReplaceSymRef): split defmap entries covering two accesses to
599           a symbol before replacing one access type's symbol, merge symbols in
600           the end (replacement symbol might already have an entry)
601         * (assignValnums): keep reference to written WREG intact
602
603 2005-04-08 Raphael Neider <rneider AT web.de>
604
605         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
606           Alpha)
607
608 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
609
610         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
611         bytes
612
613 2005-04-07 Raphael Neider <rneider AT web.de>
614
615         * device/include/pic16/usart.h: added compatibility defines for
616           devices with more than one USART
617         * device/include/pic16/pic18f[68][567]20.h: activated above defines
618
619 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
620
621         * device/lib/Makefile.in: updated for port specific include
622
623 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
624
625         * support/regression/ports/mcs51/spec.mk: added mcs51 include
626
627 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
628
629         * device/include/8051.h,
630         * device/include/8052.h,
631         * device/include/at89S8252.h,
632         * device/include/at89c55.h,
633         * device/include/at89x051.h,
634         * device/include/at89x51.h,
635         * device/include/at89x52.h,
636         * device/include/mcs51reg.h,
637         * device/include/reg51.h,
638         * device/include/reg764.h,
639         * device/include/regc515c.h,
640         * device/include/sab80515.h: (re)moved these 12 files
641         * device/include/mcs51/8051.h,
642         * device/include/mcs51/8052.h,
643         * device/include/mcs51/at89S8252.h,
644         * device/include/mcs51/at89c55.h,
645         * device/include/mcs51/at89x051.h,
646         * device/include/mcs51/at89x51.h,
647         * device/include/mcs51/at89x52.h,
648         * device/include/mcs51/mcs51reg.h,
649         * device/include/mcs51/reg51.h,
650         * device/include/mcs51/reg764.h,
651         * device/include/mcs51/regc515c.h,
652         * device/include/mcs51/sab80515.h: and added them here
653
654 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
655
656         * device/include/stdarg.h: changed SDCC specific keywords to double
657           underlined form.
658         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
659           mcs51 and ds390.
660         * device/include/hc08/mc68hc908gp32.h,
661         * device/include/hc08/mc68hc908jb8.h,
662         * device/include/hc08/mc68hc908jkjl.h,
663         * device/include/hc08/mc68hc908qy.h: fixed comments
664         * device/include/mcs51/README: updated
665         * device/include/mcs51/c8051f120.h: added PINRSF
666         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
667         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
668           amidst code. Also inline is not supported.
669
670 2005-04-06 Raphael Neider <rneider AT web.de>
671
672         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
673         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
674           callers stack/frame pointers
675
676 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
677
678         * device/include/pic16/usart.h: added, missing in previous commit,
679         * device/include/pic16/adc.h: fixed typo,
680         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
681         commit,
682         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
683         <p18fxxx.inc>
684         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
685         uninitialized because a bug appears with gplink
686         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
687         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
688         complains for unrecognised option
689
690 2005-04-05 Raphael Neider <rneider AT web.de>
691
692         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
693           structs as well (using memcpy)
694         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
695           on ISRs (GOTO has no label)
696         * src/pic16/device.h: added OF_OPTIMIZE_DF
697         * src/pic16/main.c: added compiler switch --optimize-df to enable the
698           new data flow analysis/optimization
699         * src/pic16/pcode.c: added (prototypes for and implementation of)
700           dataflow analysis functions, fixed pCodeInstructions' inCond and
701           outCond values, made RCALL a branch instruction
702         * (pic16_unlinkpCode): keep C line if possible
703         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
704           C line moved if possible
705         * (pic16_getRegFrompCodeOp): NEW, improved version of...
706         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
707           to use new pic16_getRegFrompCodeOp (works for more SFRs)
708         * (pic16_BuildFlow): fixed skip instructions with label (did not start
709           new flow)
710         * (pic16_getJumptabpCode): NEW, needed in...
711         * (LinkFlow): fixed handling of jumptables, calls and conditional
712           branches
713         * (pic16_InsertCommentAfter): NEW
714         * (pic16_pCodeReplace): made verbose and flow preserving
715         * (AnalyzeFlow): added call to data flow analysis
716         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
717         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
718         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
719
720 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
721
722         * src/SDCCast.c (decorateType): fixed bug #1105626
723
724 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
725
726         * device/include/asm/pic16/features.h,
727         * pic18f*.h headers,
728         * device/include/pic16/adc.h,
729         * device/include/pic16/delay.h,
730         * device/include/pic16/i2c.h,
731         * device/include/pic16/malloc.h,
732         * device/include/pic16/stdio.h,
733         * device/include/pic16/stdlib.h,
734         * device/include/pic16/string.h,
735         * device/lib/pic16/libc/stdio/printf_tiny.c,
736         * device/lib/pic16/libc/stdio/printf_small.c,
737         * device/lib/pic16/libc/stdio/strmgpsim.c,
738         * device/lib/pic16/libc/stdio/strmmssp.c,
739         * device/lib/pic16/libc/stdio/strmusart.c,
740         * device/lib/pic16/libc/stdio/vfprintf.c,
741         * device/lib/pic16/libc/stdlib/ltoa.c,
742         * device/lib/pic16/libc/stdlib/putchar.c,
743         * device/lib/pic16/libc/stdlib/x_ftoa.c,
744         * device/lib/pic16/libc/stdlib/memchrpgm.c,
745         * device/lib/pic16/libc/stdlib/memchrram.c,
746         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
747         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
748         * device/lib/pic16/libio/adc/adcbusy.c,
749         * device/lib/pic16/libio/adc/adcread.c,
750         * device/lib/pic16/libio/adc/adcsetch.c,
751         * device/lib/pic16/libio/usart/ubaud.c,
752         * device/lib/pic16/libio/usart/ubusy.c,
753         * device/lib/pic16/libio/usart/udrdy.c,
754         * device/lib/pic16/libio/usart/uopen.c,
755         * device/lib/pic16/libio/usart/uputc.c,
756         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
757         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
758         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
759         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
760         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
761         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
762         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
763         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
764         specific keywords to double underlined form,
765         * device/lib/pic16/libc/Makefile.rules,
766         * device/lib/pic16/libsdcc/Makefile.rules,
767         * device/lib/pic16/libm/Makefile,
768         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
769         to compile with C standard set in Makefile.common
770         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
771         rand.c and crc.c in compilation process,
772         * device/lib/pic16/libsdcc/int/divuint.c,
773         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
774         `c' from signed to unsigned,
775         * device/lib/pic16/startup/crt0.c,
776         * device/lib/pic16/startup/crt0i.c,
777         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
778         keywords to double underlined form, bug fixes in _do_cinit function
779         which prevented the correct initialization of the .idata segment,
780         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
781         core to enter a infinite loop
782         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
783
784 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
785
786         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
787
788 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
789
790         * device/include/Makefile.in: add support for hc08 subdirectory
791         * device/include/hc08/: new subdirectory
792         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
793         Lucas Loizaga, thanks!
794         * device/include/hc08/mc68hc908qy.h,
795         * device/include/hc08/mc68hc908gp32.h,
796         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
797         their own directory. Changed internal macro names to use the compiler
798         reserved namespace. Changed SDCC specific keywords to double
799         underlined form.
800         * device/include/math.h,
801         * device/include/malloc.h,
802         * device/include/stdarg.h,
803         * device/include/stdbool.h
804         * device/include/string.h,
805         * device/include/tinibios.h,
806         * device/include/ds400rom.h,
807         * device/include/8051.h,
808         * device/include/8052.h,
809         * device/include/80c51xa.h,
810         * device/include/at89c55.h,
811         * device/include/at89S8252.h,
812         * device/include/at89x51.h,
813         * device/include/at89x52.h,
814         * device/include/ds80c390.h,
815         * device/include/reg764.h,
816         * device/include/regc515c.h,
817         * device/include/sab80515.h,
818         * device/include/mcs51/c8051f000.h,
819         * device/include/mcs51/c8051f018.h,
820         * device/include/mcs51/c8051f020.h,
821         * device/include/mcs51/c8051f040.h,
822         * device/include/mcs51/c8051f060.h,
823         * device/include/mcs51/c8051f120.h,
824         * device/include/mcs51/c8051f300.h,
825         * device/include/mcs51/c8051f310.h,
826         * device/include/mcs51/c8051f320.h,
827         * device/include/mcs51/c8051f330.h,
828         * device/include/mcs51/c8051f350.h,
829         * device/include/z180.h: Changed SDCC specific keywords to double
830         underlined form.
831
832 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
833
834         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
835         18F4455,
836         * (pic16_assignConfigWordValue): disable testing of configuration
837         register value with config mask,
838         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
839         function with port->fun_prefix,
840         * (genFunction): when generating a naked interrupt function never
841         create an absolute segment placed in interrupt vector address, place
842         the actual interrupt function at IVA instead, when an interrupt
843         function is generated with unspecified interrupt then do not create
844         the absolute section,
845         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
846         code for generating a call to generic pointer get/put function with
847         a call to function pic16_callGenericPointer(),
848         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
849         the call to the generic pointer get/put functions with prefixing the
850         function name with port->fun_prefix,
851         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
852         * src/pic16/main.c (_process_pragma): prefix function with
853         port->fun_prefix,
854         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
855         calling assembler, old 18Fxxxx macro is deprecated,
856         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
857         PC_ASMDIR in while condition,
858         * (findInstruction): add PC_ASMDIR in while condition,
859         * (buildCallTree): prefix main with port->fun_prefix,
860         * (pic16_pCode2str): fixed bug that didn't emit the memory access
861         identifier for variable with banked access in instructions BTFSS,
862         BTFSC, BCF, BSF, BTG
863         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
864         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
865         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
866         perform optimization when enviroment variable NO_REG_OPT is set,
867         * (insideLRBlock): NEW, return 1 if register is inside an
868         INF_LOCALREGS block,
869         * (RemoveRegFromLRBlock): remove a register that is completely
870         eliminated by register optimization, but it is still left in local
871         register store/restore in/from stack block,
872         * (Remove2pcodes): after removing register, check to see if it
873         should be removed from local register store/restore in/from stack
874         block,
875         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
876         DUMMY_READ_VOLATILE,
877
878         * device/include/pic16/adc.h: minor prototype modifications and
879         update,
880         * device/include/pic16/malloc.h: added GPL notice various
881         modifications,
882         * device/include/pic16/stdint.h: NEW, standard header for ints
883         * device/include/pic16/delay.h: NEW, header for delay functions,
884         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
885         delay1mtcy,
886         * device/include/pic16/signal.h: NEW, header providing helper macros
887         for implementing signal handlers,
888         * device/include/pic16/stdio.h: added prototypes for functions,
889         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
890         prototypes for stdin and stdout, added macro PUTCHAR to
891         automatically implement putchar function prototype,
892         * device/include/pic16/usart.h: modified and updated USART library,
893         * device/lib/pic16/libio/adc/,
894         * device/lib/pic16/libio/i2c: some modifications to improve library
895         performance,
896         * device/lib/pic16/libc/stdio/: modifications for the new printf*
897         family of functions,
898         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
899         family of functions and other sources,
900         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
901         of the PIC18Fxx[28] devices,
902         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
903         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
904         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
905         _do_cinit function, because the previous failed when local variables
906         where not placed in the same memory bank,
907         * device/lib/pic16/libsdcc/char/: various modifications to improve
908         library performance,
909         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
910         information on the new functions of the c library and more...
911
912 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
913
914         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
915
916 2005-03-26 Raphael Neider <rneider AT web.de>
917
918         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
919           if condition == CARRY)
920         * (genCmp): adapted to new genSkipc semantics
921         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
922           on rIfx (genCmp was broken)
923
924 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
925
926         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
927         * src/z80/main.c (_keywords[]),
928         * src/SDCCglobal.h (struct options),
929         * src/SDCC.y,
930         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
931         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
932         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
933         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
934         always available in leading double underscore form. The C99 support is
935         mostly missing, but it's a start.
936         * support/regression/tests/bug-227710.c: fixed nonconforming use of
937         reserved identifier "__data".
938
939 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
940
941         * src/mcs51/peeph.def: fixed bug 1170013
942
943 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
944
945         * device/include/mcs51reg.h: fixed bug 842007
946
947 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
948
949         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
950         last time.
951
952 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
953
954         * src/port.h (struct PORT),
955         * src/avr/ralloc.c (avr_assignRegisters),
956         * src/avr/main.c,
957         * src/ds390/ralloc.c (ds390_assignRegisters),
958         * src/ds390/main.c,
959         * src/hc08/ralloc.c (hc08_assignRegisters),
960         * src/hc08/main.c,
961         * src/mcs51/ralloc.c (mcs51_assignRegisters),
962         * src/mcs51/main.c,
963         * src/pic/ralloc.c (pic14_assignRegisters),
964         * src/pic/main.c,
965         * src/pic16/ralloc.c (pic16_assignRegisters),
966         * src/pic16/main.c,
967         * src/xa51/ralloc.c (xa51_assignRegisters),
968         * src/xa51/main.c,
969         * src/z80/ralloc.c (z80_assignRegisters),
970         * src/z80/ralloc.h,
971         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
972         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
973         * src/SDCCcse.h,
974         * src/SDCCdflow.c (computeDataFlow),
975         * src/SDCCdflow.h,
976         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
977         * src/SDCCloop.h,
978         * src/SDCCcflow.c (*),
979         * src/SDCCcflow.h,
980         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
981         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
982         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
983         immedDom() returning wrong block; probably fixes bug #1160833)
984
985 2005-03-20 Borut Razem <borut.razem AT siol.net>
986
987         * support/scripts/inc2h.pl: WIN32 port
988
989 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
990
991         * device/lib/makefile.in: added abs.c and labs.c
992
993 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
994
995         * device/include/stdint.h: added
996         * device/lib/abs.c: added
997         * device/lib/labs.c: added
998         * device/include/stdlib.h: added abs() and labs() prototypes
999         * device/lib/libsdcc.lib: added abs and labs
1000         * device/include/float.h,
1001         * device/lib/_fsmul.c,
1002         * device/lib/printf_fast.c,
1003         * device/lib/printf_tiny.c: updated comments
1004
1005 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1006
1007         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
1008         bug #1164313
1009
1010 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1011
1012         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
1013         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
1014
1015 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
1016
1017         * device/lib/printf_large.c: removed inline assembly for portability and
1018           readability. Use printf_fast if speed or size are more important.
1019         * src/pic16/gen.c: removed conditions around use of DEBUGpc
1020         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
1021
1022 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
1023
1024         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
1025         prevent compiler warning
1026
1027 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
1028
1029         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
1030         moved to level 0 and declared as static. Also they are explicit
1031         placed in access bank. This was necessery because some times they
1032         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
1033         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
1034         optimizations. Currently only compare to unsigned char is implemented,
1035         * src/pic16/gen.c: added fReturnIdx array,
1036         * (struct resolvedIfx) is moved to gen.h and made public,
1037         * (struct _G): added sregsAlloc and sregsAllocSet fields,
1038         * (aopForSym): added an optimization to directly store in stack of
1039         the operand of a SEND iCode,
1040         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
1041         but as registers instead (AOP_REG) using the fReturnIdx array,
1042         * (pic16_freeAsmop): remove the freed register from the
1043         _G.sregsAlloc field,
1044         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
1045         a compare of 'WREG',
1046         * (pic16_popGetTempRegCond): changed function prototype, now
1047         function takes also a bitVector argument v which holds the current
1048         set of registers that are allocated for stack access by aopForSym,
1049         registers allocated in aopForSym for accessing stack symbols are not
1050         any more part of the functions usedRegs field,
1051         * (genCall): some times aopOp is called for a stack variable to be
1052         send, aopForSym might perform the push, if this is true make sure
1053         that genCall doesn't push the variable twice by testing _G.resDirect,
1054         * (genFunction): changed testing for unspecified interrupt number
1055         from 256 to INTNO_UNSPEC,
1056         * modified selection scheme of frame pointer generation. Previously
1057         if function did use local registers a frame pointer was generated,
1058         now a frame pointer is generated only if function has arguments
1059         (that need PLUSW2 register access), or has stack arguments, or the
1060         compiler is not instructed to omit the frame pointer,
1061         * (genEndFunction): before restoring local registers that were saved
1062         in the function preamble, also restore the registers that *might*
1063         have been allocated for stack access,
1064         * (genRet): removed some old comments,
1065         * (genCmp, the active (RN's) version): added a call to the
1066         pic16_genCmp_special function to perform the compare with a more
1067         robust and optimized way,
1068         * (genInline): a feature has been added in inline code generation,
1069         which allows a wildcard variable substitution when writing inline
1070         assembly. Code is incomplete and experimental therefore undocumented,
1071         * (genCast): changed order of aopOp for result and right to allow
1072         aopForSym to directly load the result if possible,
1073         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
1074         perform an optimized compare on some selected special occasions,
1075         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
1076         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
1077         generate an IVT any more,
1078         * src/pic16/main.c (pic16_optionsTable): added command line option
1079         --optimize-cmp,
1080         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
1081         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
1082         macros,
1083         * src/pic16/NOTES: Raphael Neider added in list of active developers
1084         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
1085         jumptable_end to prevent bug #,
1086         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
1087         inCond and outCond fields,
1088         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
1089         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
1090         turn off register spilling,
1091         * (packRegsForOneUse): synced with other ports' versions although it
1092         is not used currently,
1093         * (pic16_packRegisters): added an optimization while reading
1094         structure bitfields, some registers may be saved (malloc code is
1095         decreased by 80 bytes)
1096
1097 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
1098
1099         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
1100         left is a bitfield, if yes, then don't optimize assignment. Perhaps
1101         this can be optimized more?
1102
1103 2005-03-10 Raphael Neider <rneider AT web.de>
1104
1105         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
1106           genNearPointerGet): (hopefully) fixed access to bitfields via
1107           pointers (p->bitN = x; and x = p->bitN; failed)
1108
1109 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
1110
1111         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
1112
1113 2005-03-09 Raphael Neider <rneider AT web.de>
1114
1115         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
1116
1117 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
1118
1119         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
1120         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
1121           (regTypeNum): set REG_BIT type if necessary
1122         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
1123         * support/regression/tests/critical.c: check bug 1144613
1124
1125 2005-03-02 Raphael Neider <rneider AT web.de>
1126
1127         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
1128
1129 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1130
1131         * src/avr/ralloc.c (serialRegAssign),
1132         * src/ds390/ralloc.c (serialRegAssign),
1133         * src/hc08/ralloc.c (serialRegAssign),
1134         * src/mcs51/ralloc.c (serialRegAssign),
1135         * src/pic/ralloc.c (serialRegAssign),
1136         * src/pic16/ralloc.c (serialRegAssign),
1137         * src/xa51/ralloc.c (serialRegAssign),
1138         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
1139
1140 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
1141
1142         * src/SDCCast.c (decorateType): fixed bug 1124787
1143
1144 2005-02-20 Hubert Sack <sack AT digiplan.de>
1145         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1146
1147         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
1148         patch #1121755
1149
1150 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1151
1152         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
1153         to keep the correct label reference count when adding/removing references
1154         to labels. A peephole file using this is appended to patch #1144962.
1155
1156 2005-02-14 Raphael Neider <rneider AT web.de>
1157
1158         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
1159         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
1160         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
1161           retrievals of result operand's value on assignment
1162
1163 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
1164
1165         * device/include/pic16/string.h: modified prototype for memccpy()
1166         to memccpy(void *, void *, char, size_t)
1167         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
1168         check whether to omit frame pointer or not,
1169         * (genInline): convert all occurences of "\n" to LF in inline
1170         assembler blocks, this helps formatting the inline text,
1171         * (pic16_loadFSR0): modified prototype,
1172         * (genNearPointerGet, genNearPointerSet): reorganization of code,
1173         removed some 8051 legacy code,
1174         * (genPackBits): enabled handling bitfields exceeding one byte in size,
1175         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
1176         before allocating temporary registers in functions,
1177
1178 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1179
1180         * support/regression/tests/bitvars.c: corrected the "fix"
1181
1182 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1183
1184         * support/regression/tests/bitvars.c,
1185         * support/regression/tests/bitwise.c,
1186         * support/regression/tests/rotate.c: "fixed" problems on Alpha
1187
1188 2005-02-10 Raphael Neider <rneider AT web.de>
1189
1190         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
1191           different size for Alpha
1192         * src/pic16/gen.c (genCmpEq) : improved compare with 0
1193
1194 2005-02-09 Raphael Neider <rneider AT web.de>
1195
1196         * src/SDCC.lex(doPragma) : save and restore warning options as well
1197           (also added new stack plus clone- and copyAndFreeSDCCERRG())
1198         * have #pragma less_pedantic set the errorlevel to WARNING
1199           (fixes #1117001)
1200         * (cloneOptimize) : fixed wrong malloc's size
1201         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
1202           facilitate correct handling of #pragma (save|restore)
1203
1204 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1205
1206         * src/mcs51/gen.c: removed non-standard C nameless struct/union
1207
1208 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
1209
1210         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
1211
1212 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
1213
1214         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
1215
1216 2005-02-02 Raphael Neider <rneider AT web.de>
1217
1218         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
1219         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
1220         * (pic16_storeForReturn): fixed to allow returning function pointers
1221         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
1222         * device/include/pic16/{stddef.h,stdbool.h}: added
1223
1224 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
1225
1226         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
1227
1228 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
1229
1230         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
1231         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
1232          appeared to be required
1233
1234 2005-01-31 Borut Razem <borut.razem AT siol.net>
1235
1236         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
1237           include/mcs51 and include/z80 directories to the package
1238
1239 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1240
1241         * src/hc08/gen.c (genFunction): fixed bug #1112752
1242
1243 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1244
1245         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
1246
1247 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1248
1249         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
1250
1251 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
1252
1253         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
1254
1255 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
1256
1257         * device/include/c8051fxxx.h: removed these 6 files
1258         * device/include/mcs51/c8051fxxx.h: added these 11 new files
1259
1260 2005-01-26 Raphael Neider <rneider AT web.de>
1261
1262         * src/pic16/gen.c (genAssign): fixed assignment from longs
1263           in codespace (were cut to three bytes)
1264         * (genDummyRead): implemented (except for CODESPACE...),
1265           fixed bug #1108575
1266         * src/pic16/glue.c (emitStatistics): beautified
1267         * device/lib/pic16/libm/Makefile: added include path
1268
1269 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1270
1271         * src/z80/gen.c (aopPut): fixed bug #1103902
1272
1273 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1274
1275         * device/lib/expf.c: fixed bug #1095792
1276
1277 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
1278
1279         * device/lib/pic16/libm: added Math library sources
1280
1281 2005-01-24 Raphael Neider <rneider AT web.de>
1282
1283         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
1284           to enable upcast to pCodeOpReg2 (there is no type tag to
1285           differenciate the two and pic16_popGet2p cast into PCOR2)
1286         * src/pic16/main.c (_process_pragma): fixed another malloc bug
1287           (sizeof(sectNames) changed to sizeof(sectName))
1288           Both patches fix segfaults under MinGW.
1289
1290 2005-01-23 Raphael Neider <rneider AT web.de>
1291
1292         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
1293           Safe_[mc]?alloc()'ed variables
1294         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
1295           of (byte sized) temporaries (assign them to WREG for now)
1296         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
1297           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
1298           this might fix SIGSEGVs on MinGW...
1299         * src/SDCCopt.c (killDeadCode): restored original behaviour
1300           (volatile operands might get thrown away though)
1301
1302 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
1303
1304         * src/pic16/gen.c: fixed bug #1106975,
1305         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
1306         pointer update, INTCON is saved, global interrupts are disabled and
1307         restored after updateing TOS.
1308         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
1309         * added function attribute 'shadowregs' to take advantage of shadow
1310         registers,
1311         * added function attribute 'wparam' as an alternative to the wparam
1312         pragma,
1313         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
1314         user declares a non-ISR function as 'shadowregs',
1315         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
1316
1317 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
1318
1319         * .version: bumped version number to 2.4.8
1320         * device/lib/pic16/pics.all: list of PIC18F devices supported by
1321         pic16 port,
1322         * device/lib/pic16/libio/i2c/: I2C module support library,
1323         * device/include/pic16/i2c.h: I2C support library header,
1324         * device/lib/pic16/libc/stdio/: standard IO support sources,
1325         * (printf_small.c): printf_small() source, supports float print,
1326         * (printf_tiny.c): printf_tiny() source, does not support floats,
1327         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
1328         enable global optimizations for entire library source, other
1329         Makefiles in the source tree are also modified to reflect this,
1330         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
1331         function,
1332         * doc/sdccman.lyx: updated to reflect new changes,
1333         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
1334         sym->onStack if-case,
1335         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
1336         sbit, idata, _idata, xdata, _xdata,
1337         * added pragma library, to link an external library, (see doc),
1338         * removed command line options, --pomit-config-words, --pomit-ivt,
1339         --pleave-reset-vector,
1340         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
1341         when calling assembler to reflect memory model used, also define
1342         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
1343         reflect stack model used,
1344         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
1345         on stack return NULL,
1346
1347 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
1348
1349         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
1350           of the operands is volatile. Fixes #1020220
1351
1352 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
1353
1354         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
1355         * (OptimizeRegUsage): make sure that there is really no other flow where
1356           the first pCode is used
1357
1358 2005-01-22 Raphael Neider <rneider AT web.de>
1359
1360         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
1361           to fix #1106967 (pCode->seq are not set up correctly)
1362
1363 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1364
1365         * src/SDCCglue.c (glue): make sure code area is declared before the
1366         static initialization area.
1367
1368 2005-01-21 Raphael Neider <rneider AT web.de>
1369
1370         * device/lib/Makefile.in: fixed test for pic16 install dir
1371         * device/lib/pic16/*/Makefile*: modified compile flags to enable
1372           optimizations
1373         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
1374           added --optimize-goto compiler switch and pragma wparam documentation
1375         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
1376         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
1377           and PRODH closing bug #1071770 (peephole optimizer)
1378
1379 2005-01-19 Raphael Neider <rneider AT web.de>
1380
1381         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
1382           cmdLine buffers (used when calling sdcpp...) are large enough
1383           (MAX_PATH=256 truncates arguments leading to system halts when
1384           used in MinGW...)
1385         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
1386         * (genUminus): rewritten to for efficiency
1387         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
1388           used uninitialized in some cases)
1389         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
1390           copy the third byte from the int -- now assumes 0x80 (data memory)
1391         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
1392           operands (genAddLit expects the iCode's operands to swapped as
1393           well), fixed leftover bytes (crashed for short left operands)
1394         * (pic16_genMinusDec): performance improvements, removed false
1395           PIC14 emitSKPNCs
1396         * (pic16_genMinus): fixed to cope with differently sized operands
1397         * src/pic16/glue.c (pic16_glue): added new banksel optimization
1398           for --obanksel > 1
1399         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
1400         * src/pic16/graph.[ch]: implementation of directed graphs, used by
1401           new banksel optimization
1402         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
1403           analysis for temporary registers (segfaults...)
1404         * src/pic16/peeph.def: added rule
1405
1406 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
1407
1408         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
1409         which converts a float number to its ASCII representation
1410         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
1411         functions to convert the fractional and integer part of a float to ASCII,
1412         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
1413         realloc.c): added _MALLOC_SPEC to explicit place variables in data
1414         ram
1415         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
1416         _STATMEM macros,
1417         * device/include/pic16/adc.h: added GPL info,
1418         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
1419         a pCodeOp as tested operand,
1420         * (genNearPointerGet): optimized bit testing, does not use
1421         intermediate register for bit value, test directly instead with
1422         BTFSS, BTFSC, works only for single bits,
1423         * (genpic16Code): dump the name of the iCode in the asm,
1424         * src/pic16/ralloc.c (decodeOp): removed static declaration and
1425         renamed to pic16_decodeOp,
1426         * (serialRegAssign): do not allocate a temporary register for iCode
1427         sequences that test a single bit for 1/0
1428
1429 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
1430
1431         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
1432         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
1433         access stack and frame pointers. They are initially assigned to
1434         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
1435         accessing SFRs. Updated all occurences of modification of stack or
1436         frame pointer in gen.c and pcode.c,
1437         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
1438         assigning of a literal value to pointers,
1439         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
1440         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
1441         selected
1442
1443 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
1444
1445         * doc/sdccman.lyx: update documentation about stack pragma, added
1446         some info for stack memory models
1447
1448 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1449
1450         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
1451
1452 2005-01-08 Raphael Neider <rneider AT web.de>
1453
1454         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
1455           udata sections to fix bug #1097823
1456
1457 2005-01-05 Raphael Neider <rneider AT web.de>
1458
1459         * src/pic16/gen.c (genGenericShift): added handling of differently
1460           sized left operand and result
1461
1462 2005-01-04 Raphael Neider <rneider AT web.de>
1463
1464         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
1465         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
1466           to hold the condition bit)
1467         * added new version of genCmp (old code available via #define)
1468         * added new version of genShiftLeft/genShiftRight in a generic
1469           way, now supports shifting by negative values
1470         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
1471           shiftCount (expected by genGenericShift)
1472         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
1473         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
1474           dump
1475         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
1476           is an invalid literal too...)
1477
1478 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
1479
1480         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
1481         from Raphael Neider,
1482         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
1483         for 8-bit literals. This fixes some literal operands which are sign
1484         extended to 16-bits ints when instruction needs only 8-bits.
1485
1486 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
1487
1488         * device/lib/logf.c: added mcs51 assembly version
1489         * device/lib/expf.c: added mcs51 assembly version
1490         * device/lib/_logexpf.c: new shared asm code for expf and logf
1491         * device/include/math.h: add defines for assembly math library
1492         * device/lib/Makefile.in: build new _logexpf.c
1493         * device/lib/libfloat.lib: use new _logexpf.c
1494
1495 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
1496
1497         * src/pic/device.c
1498         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
1499           device types which have less than 0x7f registers.
1500
1501 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
1502
1503         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
1504
1505 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
1506
1507         * device/lib/printf_fast.c: only build on supported arch.
1508         * device/lib/printf_tiny.c: only build on supported arch.
1509         * device/lib/printf_fast_f.c: only build if asm float lib
1510         * device/lib/_fsget1arg.c: only build if asm float lib
1511         * device/lib/_fsget2args.c: only build if asm float lib
1512         * device/lib/_fsnormalize.c: only build if asm float lib
1513         * device/lib/_fsreturnval.c: only build if asm float lib
1514         * device/lib/_fsrshift.c: only build if asm float lib
1515         * device/lib/_fsswapargs.c: only build if asm float lib
1516         * device/include/stdio.h: don't provide print_fast,
1517           print_fast_f, print_tiny prototypes if --xstack used
1518
1519 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
1520
1521         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
1522         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
1523           to the SOURCES
1524
1525 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
1526
1527         * device/lib/printf_fast_f.c: same as printf_fast, but
1528           with floating point enabled
1529         * device/lib/printf_fast.c: minor tweaks
1530         * device/include/stdio.h: add printf_fast_f
1531
1532 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
1533
1534         * src/SDCCmain.c: make --float-reent default for mcs51
1535         * device/lib/_fsadd.c: added mcs51 assembly version
1536         * device/lib/_fssub.c: added mcs51 assembly version
1537         * device/lib/_fsmul.c: added mcs51 assembly version
1538         * device/lib/_fsdiv.c: added mcs51 assembly version
1539         * device/lib/_fseq.c: added mcs51 assembly version
1540         * device/lib/_fsneq.c: added mcs51 assembly version
1541         * device/lib/_fsgt.c: added mcs51 assembly version
1542         * device/lib/_fslt.c: added mcs51 assembly version
1543         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
1544         * device/lib/Makefile.in: add _fscmp to build
1545         * device/lib/libfloat.lib: add _fscmp to build
1546
1547 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
1548
1549         * device/lib/_fs2slong.c: added mcs51 assembly version
1550         * device/lib/_fs2sint.c: added mcs51 assembly version
1551         * device/lib/_fs2schar.c: added mcs51 assembly version
1552         * device/lib/_fs2ulong.c: added mcs51 assembly version
1553         * device/lib/_fs2uint.c: added mcs51 assembly version
1554         * device/lib/_fs2uchar.c: added mcs51 assembly version
1555         * device/lib/_slong2fs.c: added mcs51 assembly version
1556         * device/lib/_sint2fs.c: added mcs51 assembly version
1557         * device/lib/_schar2fs.c: added mcs51 assembly version
1558         * device/lib/_ulong2fs.c: added mcs51 assembly version
1559         * device/lib/_uint2fs.c: added mcs51 assembly version
1560         * device/lib/_uchar2fs.c: added mcs51 assembly version
1561         * device/include/float.h: added #define to select asm vs c
1562
1563 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
1564
1565         * device/lib/printf_fast.c: improvements to float output
1566         * device/include/float.h: add defines for assembly float library
1567         * device/lib/_fsget1arg.c: receive 1 float arg
1568         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
1569         * device/lib/_fsnormalize.c: normalize a float
1570         * device/lib/_fsreturnval.c: return float, various helper routines
1571         * device/lib/_fsrshift.c: right shift a float's mantissa
1572         * device/lib/_fsswapargs.c: swap 2 floats
1573         * device/lib/Makefile.in: build these 6 new files for mcs51
1574         * device/lib/libfloat.lib: add these 6 files to the library
1575
1576 2004-12-26 Borut Razem <borut.razem AT siol.net>
1577
1578         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
1579           built by gcc 3.4.2
1580
1581 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
1582
1583         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
1584           and fully reentrant and register bank neutral.
1585         * device/lib/printf_fast.c: added float (not enabled by default),
1586           added compact/slower integer (also not enabled by default),
1587           improved size/speed of fast integer code, other minor changes
1588         * device/include/stdio.h, device/lib/Makefile.in,
1589           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
1590
1591 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
1592
1593         * src/pic16/pcode.c: declaring variables other than at the start of a
1594           block is not supported in C by VC6.
1595
1596 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
1597
1598         * applied a previous patch from Raphael Neider that wasn't included
1599         in the previous commits, which fixes infinite loops within jumptable
1600         improvements,
1601         * made some fixes that previous patches introduced
1602
1603 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
1604
1605         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
1606         that fixes an issue with AOP_PCODE asmop's offset,
1607         * (pic16_popCopyReg): update instance field too,
1608         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
1609         function of pic port,
1610         * (genCmp, genAnd, genAssign),
1611         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
1612
1613 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
1614
1615         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
1616         variables initial values to idata section,
1617         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
1618         variables in some functions. This utilizes parmBytes field of iCode
1619         structure to hold the offset of the variable in stack. (might be
1620         able to use the stack field too?)
1621         * applied patch from Raphael Neider # ### , # ###
1622         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
1623         variable initial values in idata section,
1624         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
1625         for static variables with initial value
1626         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
1627         applied fix in while loop from Raphael Neider.
1628
1629 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
1630
1631         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
1632         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
1633         * src/ds390/ralloc.c (serialRegAssign): spill bits
1634         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
1635         * support/Util/SDCCerr.c,
1636         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
1637         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
1638         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
1639
1640 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
1641
1642         * device/include/sdcc-lib.h: inserted LGPL, added includes
1643           asm/ds390/features.h and asm/mcs51/features.h
1644         * device/include/asm/default/features.h,
1645         * device/include/asm/gbz80/features.h,
1646         * device/include/asm/z80/features.h: added empty _AUTOMEM
1647           and _STATMEM
1648         * device/include/asm/ds390/features.h,
1649         * device/include/asm/mcs51/features.h: added files with defines for
1650           _AUTOMEM and _STATMEM indicating automatic and static storage class
1651         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
1652         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
1653         * src/SDCCicode.c (geniCodeCast),
1654         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
1655         * src/SDCCloop.c (loopInduction): removed unused variable lr
1656         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
1657           to convertToFcall to include char modulo (RFE 1065037), added check
1658           if left operand is unsigned and use abs of literal value
1659         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
1660           as it doesn't work after conversion from peephole.def to peephole.rul
1661         * src/mcs51/gen.c (toBoolean): added check for size,
1662           (genModOneByte): optimized code for signed char modulo a literal
1663           power of 2 (thanks to Hubert Sack),
1664           (genRRC): removed unnecessary "clr c",
1665           (genRLC): replaced "add a,acc" with cheaper "rlc a"
1666         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
1667           jump optimization,
1668           swapped rules 256.c and 256.d,
1669           extended 256.d by using new multiple checks (thanks Erik),
1670           added rules 256.e and 256.f,
1671           updated rule 261.a and 261.b to new generated code
1672         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
1673
1674 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1675
1676         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
1677           induction related bugs, including first part of bug #1074377
1678
1679 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
1680
1681         * applied patch from bug-report #1076292,
1682         * applied patches for genAnd and Goto-optimizations for Raphael
1683         Neider,
1684         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
1685         dump a less iCode information,
1686         * src/pic16/device.h (pic16_options_t): added field debgen,
1687         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
1688         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
1689         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
1690         puclic,
1691         * (various functions): added macros FENTRY and FENTRY2 to functions,
1692         to emit function prologue,
1693         * (various functions): fixed indentation,
1694         * (genNearPointerGet): fixed loading of FSR0,
1695         * (genPackBits): applied patch from Raphael Neider to fix updating
1696         of FSR0 and touching only the modified bits,
1697         * src/pic16/genarith.c (various functions): added macros FENTRY to
1698         emit function prologue in comments,
1699         * src/pic16/pcode.h: added functions debugf2, debugf3,
1700         * src/pic16/ralloc.c: partial fix for packForPush caused
1701         segmentation fault,
1702
1703 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1704
1705         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
1706           <stsp AT users.sourceforge.net> with reversed byte order
1707         * support/regression/tests/rotate.c: added (ds390 skips some tests)
1708
1709 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1710
1711         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
1712           bug #1074377
1713         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
1714         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
1715
1716 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
1717
1718         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
1719
1720 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1721
1722         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
1723           conditions,
1724           (setFromConditionArgs): friendly operand parser for peephole rules,
1725           (operandBaseName, operandsNotRelated): new peephole condition
1726           "operandsNotRelated" -- similar to "operandsNotSame", but takes
1727           architecture specific register naming into account, handles n-way
1728           comparisons, and supports quoted literals
1729         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
1730
1731 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1732
1733         * src/mcs51/peeph.def: fixed bug #1076940
1734
1735 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
1736
1737         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
1738
1739 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1740
1741         Adding support for replacing ljmps with sjmps in jumptables
1742         generated for switch statements. For now you need to set the
1743         environment variable SDCC_SJMP_JUMPTABLE to enable this.
1744         Now 4 algorithms for mcs51 jumptable generation are used:
1745         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
1746         addresses loaded pc-relative for up to 112 cases and stack-pushing
1747         target addresses loaded with offset from dptr for up to 256 cases.
1748
1749         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
1750         * src/mcs51/main.c: adapted constants for switch table generation
1751         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
1752
1753 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
1754
1755         * device/lib/printf_large.c (_print_format): fixed bug 1073386
1756         * support/regression/tests/bug1057979.c: added test for bug 1073386
1757
1758 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
1759
1760         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
1761         compilers
1762
1763 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
1764
1765         * src/pic16/device.h,
1766         * src/pic16/genarith.c,
1767         * src/pic16/glue.c,
1768         * src/pic16/main.c,
1769         * src/pic16/pcode.c: applied patches #1068154 and #1070213
1770
1771 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
1772
1773         Large cummulative patch for pic16 port.
1774         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
1775         to call when a stack overflow occurs,
1776         * (malloc.h): added CVS Id tag,
1777         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
1778         variable,
1779         * added libc directory. The current version of LibC contains string
1780         functions, ctype functions and macros and some functions of the
1781         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
1782         be extensively tested in the future. Standard disclaimer here.
1783         Library is not automatically build yet. But one can build it by
1784         invoking 'make' inside the libc directory.
1785         * added ADC library under libio. Preliminary version yet.
1786
1787         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
1788         * src/pic16/gen.c (aopForRemat): asmop size is filled by
1789         aopForRemat() now and not by pic16_aopOp(),
1790         * (pic16_popGetTempReg): removed warning messgae when allocating
1791         temporary registers, its a buggy feature and will be removed,
1792         * (pic16_popGet): set register instance field in AOP_CRY,
1793         * (pic16_outBitC): fixed for results in size greater than 1,
1794         * (genUminusFloat): fixed for pic16, ported code from mcs51,
1795         * (pic16_storeForReturn): optimized return of 0,
1796         * (genCmp): experimental code for new genCmp which uses PIC18's
1797         special compare&skip instructions. Initial tests fail some times
1798         with variables grater than 1 byte in size, so new code is disabled,
1799         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
1800         a single bit,
1801         * (genCast): began a fix to optimize the casting of a bit to another
1802         bit, now assigning a bitfield to another bitfield will fail, sorry,
1803         * src/pic16/main.c: disabled the use of lr-support feature,
1804         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
1805         * added some function prototypes, added function _debugf prototype,
1806         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
1807         bits with offset (case PO_GPR_BIT),
1808         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
1809         command line,
1810         * (isBankInstruction): modified to return 0 for no banking instruction,
1811         and 1 for banking instruction,
1812         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
1813         caused stop processing pCodes after a inline assembly block,
1814         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
1815         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
1816         registers when it shouldn't,
1817         * src/pic16/ralloc.c (allocReg): add preliminary support for
1818         supporting a limited set of temporary registers,
1819
1820 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1821
1822         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
1823           genDataPointerSet): ensure assignments always copy in MSB to LSB
1824           order,
1825           (loadRegFromAop): recognize CLRH optimization,
1826           (genFunction): optimize RECEIVE iCodes in reentrant functions
1827
1828 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1829
1830         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
1831           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
1832           selected.
1833         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
1834         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
1835           contiguous with data
1836
1837 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1838
1839         * device/lib/_gptrget.c (_gptrget),
1840         * device/lib/_gptrgetc.c (_gptrgetc),
1841         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
1842           instead of sjmp to ret
1843         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
1844           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
1845
1846 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
1847
1848         * .version: bumped version to 2.4.7
1849         * device/lib/_gptrget.c (_gptrget): is now _naked
1850         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
1851         * device/lib/_gptrput.c (_gptrput): is now _naked
1852         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
1853           (createFunction): fixed xstack
1854         * src/SDCCglue.c (emitMaps): set allocation required for bit area
1855         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
1856           or bit either,
1857           (geniCodeCritical): store original interrupt state in an iTemp bit
1858           var unless stack-auto
1859         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
1860         * src/SDCCmain.c (setIncludePath): added include/target to search path
1861         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
1862         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
1863           prototype,
1864           (processFuncArgs): put bit vars in bit area
1865         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
1866           unsaveRBank): fixed xstack,
1867           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
1868           (genFunction, genEndFunction): fixed xstack,
1869           (genAssign): optimization don't walk backwards through mem
1870         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
1871         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
1872         * support/regression/Makefile: also make library (for stack-auto) when
1873           making "all" and added "test-mcs51-xstack-auto"
1874         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
1875         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
1876         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
1877         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
1878         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
1879           make-library by MAKE_LIBRARY
1880         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
1881           regression tests for xstack
1882         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
1883         * support/regression/tests/critical.c: test for critical on mcs51
1884
1885 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1886
1887         * support/regression/ports/ucz80/spec.mk: use include and lib files from
1888           built version of sdcc instead of installed version
1889
1890 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
1891
1892         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
1893         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
1894           vprintf.c now
1895         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
1896         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
1897           WARNING: remove device/lib/build/z80/printf.o by hand when
1898           updating from previous build!
1899         * device/lib/z80/printf.c: updated comment
1900         * support/regression/tests/bug1057979.c: test all ports now
1901         * support/regression/tests/bug1065458.c: file added
1902
1903 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1904
1905         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
1906           *_start and *_end symbols for static functions
1907
1908 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
1909
1910         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
1911           and search crt0.o in all library paths,
1912           (setIncludePath): proper handling of --nostdinc,
1913           (setLibPath): proper handling of --nostdlib
1914         * support/regression/Makefile,
1915         * support/regression/ports/ds390/spec.mk,
1916         * support/regression/ports/gbz80/spec.mk,
1917         * support/regression/ports/hc08/spec.mk,
1918         * support/regression/ports/mcs51/spec.mk,
1919         * support/regression/ports/mcs51-large/spec.mk,
1920         * support/regression/ports/mcs51-stack-auto/spec.mk,
1921         * support/regression/ports/z80/spec.mk: use include and lib files from
1922           built version of sdcc instead of installed version
1923         * doc/sdccman.lyx: fixed typo in --nostdinc
1924
1925 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
1926
1927         * src/pic/pcode.c,
1928         * src/pic/device.c,
1929         * src/pic/ralloc.c,
1930         * src/pic/gen.c : added support to generate code for struct bit fields.
1931
1932 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
1933
1934         * as/xa51/xa_version.h,
1935         * device/include/errno.h,
1936         * device/include/regc515c.h,
1937         * device/lib/_itoa.c,
1938         * device/lib/_ltoa.c,
1939         * device/lib/ser_ir_cts_rts.c,
1940         * sim/ucsim/xa.src/glob.cc,
1941         * sim/ucsim/xa.src/inst_gen.cc,
1942         * sim/ucsim/xa.src/xa_bit.cc,
1943         * sim/ucsim/xa.src/xa_sfr.cc,
1944         * sim/ucsim/z80.src/inst_dd.cc,
1945         * sim/ucsim/z80.src/inst_fdcb.cc,
1946         * support/scripts/keil2sdcc.pl,
1947         * src/pic16/pic16.dsp,
1948         * src/pic16/pic16a.dsp: corrected cvs line endings
1949         * device/lib/printf_large.c: fixed bug 1057979
1950         * src/pic16/gen.c: fixed non-C standard code
1951         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
1952         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
1953         * support/regression/ports/mcs51/support.c: reload T1 asap
1954         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
1955           pdata use and clear idata startup behaviour
1956         * support/regression/tests/bug1057979.c: added
1957
1958 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
1959
1960         * device/examples/ds390/ow390/ad26.h,
1961         * device/examples/ds390/ow390/cnt1d.h,
1962         * device/examples/ds390/ow390/crcutil.c,
1963         * device/examples/ds390/ow390/ownet.h,
1964         * device/examples/ds390/ow390/owsesu.c,
1965         * device/examples/ds390/ow390/swt12.h,
1966         * device/examples/ds390/ow390/swtoper.c,
1967         * device/examples/ds390/ow390/temp10.h,
1968         * device/examples/ds390/ow390/thermodl.c,
1969         * device/examples/ds390/tinitalk/tinitalk.dsp,
1970         * device/examples/ds390/tinitalk/tinitalk.dsw,
1971         * device/examples/mcs51/clock/hw.h,
1972         * device/examples/mcs51/simple2/go.bat,
1973         * device/examples/serialcomm/windows/serial.h,
1974         * device/examples/xa51/dummy.c,
1975         * device/examples/xa51/hello.c,
1976         * device/include/80c51xa.h,
1977         * device/include/at89x051.h: corrected cvs line endings
1978
1979 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
1980
1981         * src/pic16/main.c (options): added command line --gstack, to trace
1982         stack over/under flows,
1983         * added pragma 'wparam' to allow passing first byte of function
1984         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
1985         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
1986         call to __gstack_test function and sets up the symbol as extern,
1987         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
1988         * popaop): added call to pic16_testStackOverflow,
1989         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
1990         wparamList list,
1991         * (genCall, genPcall): now all parameters are passed via stack
1992         except in functions that are pass to wparam pragma in which WREG is
1993         used too,
1994         * (genPcall): REENTRANT flag is checked to see if variable prototype
1995         contains reentrant keyword, don't call a non-reentrant function, via
1996         a reentrant function pointer or vice versa, functions are never
1997         passed via WREG,
1998         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
1999         D.Winkler,
2000         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
2001         SIGSEGV when accessing a NULL register stucture,
2002         * (pic16_printGPointerType): modified to handle UPPER modifier for
2003         function initializers, changed prototype of function to simpler one,
2004         * (pic16_printIvalFuncPtr): check to see if function is already
2005         added in externs list,
2006         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
2007         optimized a move from W to SFR with a move to the same register
2008         later after a CALL,
2009         * device/lib/pic16/debug: NEW directory, contains debug features
2010         which are enabled when linking with libdebug.lib, currently command
2011         line option --gstack enables stack pointer tracing for over/under
2012         flow, corresponding sources are in debug/gstack
2013
2014 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
2015
2016         * doc/sdccman.lyx: updated SDCC version,
2017         * (PIC16 port): update list of command line options,
2018         * src/pic16/device.h (structure pic16_options_t): added field gstack
2019         to enable stack overflow tracing on push/pops,
2020         * src/pic16/device.c (statistics structure): added statistics
2021         structure,
2022         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
2023         pic16_dump_int_registers): increase statistics counters for each
2024         * variable which is encountered
2025         * (pic16_dump_usection): emit each .udata variable to its own udata
2026         section,
2027         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
2028         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
2029         parameters via stack, otherwise use old scheme,
2030         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
2031         assembler output file,
2032         * src/pic16/main.c: added command line options --gstack to enable
2033         push/pop tracing for stack overflow,
2034         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
2035         instructions): added size of each instruction,
2036         * (pic16_countInstruction): estimate size of instructions in
2037         the_pFile list, inline assembly blocks are not counted,
2038         * (pic16_FixRegisterBanking): trace previous register usage, when
2039         banksel optimizations is greater than 0, don't emit a redudant
2040         banksel directive,
2041
2042 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
2043
2044         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
2045         * src/pic16/ralloc.c : applied same fix for pic16.
2046         * src/pic/gen.c : tidied it up a little.
2047
2048 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2049
2050         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
2051         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
2052
2053 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2054
2055         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
2056
2057 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2058
2059         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
2060         non-reentrant function __modsint in the interrupt function (thus
2061         corrupting math operations during serial I/O)
2062         * device/lib/ser_ir.c: as above, changed buffersize
2063         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
2064         256.c,d for zeroing
2065         * doc/Makefile: added option -t for rsync
2066
2067 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2068
2069         * src/SDCCast.h (struct ast),
2070         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
2071
2072 2004-10-20 Borut Razem <borut.razem AT siol.net>
2073
2074         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
2075         package
2076
2077 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
2078
2079         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
2080         makefile targets,
2081         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
2082         support functions to replace long sequences of MOVFF's from access
2083         bank registers to stack and vice versa,
2084         * src/pic16/device.h: added new field opt_flags, where optimization
2085         flags can be set to enable certain features,
2086         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
2087         * pBlock, (genFunction, genEndFunction): surroung loop for
2088         saving/loading used registers in stack with PC_INFO pCodes,
2089         INF_LREGS. Code in between can then be optimized by pCode optimizer
2090         to support function calls,
2091         * (genDataPointerSet): fixed bug which loaded float fields in
2092         structures with corrupt data,
2093         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
2094         in a standard way debug info on stderr. Feature used for developing
2095         and debugging only,
2096         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
2097         obsolete chunks of code,
2098         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
2099         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
2100         * pic16/src/pcode.c (pic16_newpCodeInfo,
2101         * (pic16_newpCodeOpLocalRegs),
2102         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
2103         feature,
2104         * (pic16_pCodeConstString): printing of the initial value of a
2105         symbol as a comment is inhibited since parsing was already done by
2106         copyStr and output is corrupt,
2107         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
2108
2109 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2110
2111         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
2112
2113 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
2114
2115         * as/mcs51/lkarea.c: removed old K&R style,
2116           (lnksect): changed check on boundary error,
2117           (lnksect2): changed check on boundary error,
2118           (lnksect2): extend XSTK to end of page if size = 1
2119         * as/mcs51/lkmain.c: removed old K&R style,
2120           (Areas51): create l_IRAM symbol
2121         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
2122         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
2123           model-mcs51-stack-auto, added model-mcs51-xstack-auto
2124         * device/lib/_mullong.c: added version to be compiled with xstack
2125         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
2126         * device/lib/mcs51/crtxclear.asm: clear pdata as well
2127         * device/lib/mcs51/crtxstack.asm: fixed comment
2128         * src/SDCCglue.c: maxInterrupts defaults to 0,
2129           (emitMaps): added pdata,
2130           (createInterruptVect): (re)moved default,
2131           (glue): added pdata,
2132           (glue): moved __start__xstack to XSTK with default size 1
2133         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
2134           and options.float_rent when options.stackAuto is set,
2135           (linkEdit): only write XDATA_NAME if provided on command line
2136         * src/SDCCmem.h,
2137         * src/SDCCmem.c: added pdata
2138         * src/port.h: added pdata_name to PORT
2139         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
2140           (saveRegisters, unsaveRegisters): removed usage of B,
2141           (genMinus): fixed accumulator clash,
2142           (genJumpTab): added comment, this needs another look
2143         * src/mcs51/gen.c: added check for "B in use" paranoia,
2144           added pushB() and popB()
2145         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
2146           chance
2147         * src/avr/main.c,
2148         * src/ds390/main.c,
2149         * src/hc08/main.c,
2150         * src/mcs51/main.c,
2151         * src/pic/main.c,
2152         * src/pic16/main.c,
2153         * src/xa51/main.c,
2154         * src/z80/main.c: (reset_regparms) made void parameter explicit and
2155           added PSEG (PAG,XDATA) or NULL to port specifier
2156         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
2157         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
2158           (_mcs51_genInitStartup): removed __start__xstack equ,
2159           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
2160         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
2161         * src/z80/gen.c (_rleAppend): fixed warnings
2162         * support/regression/tests/zeropad.c: added pdata test
2163         * .version: bumped to 2.4.6
2164
2165 2004-10-17 Borut Razem <borut.razem AT siol.net>
2166
2167         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
2168         as a part of nightly build
2169
2170 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
2171
2172         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
2173         WREG holds the first byte function parameters,
2174         * (aopForSym): take special case for symbols which are in FARSPACE
2175         but in CODESPACE too,
2176         * (assignResultValue): modified to take into account _G.useWreg,
2177         * (genCall): don't use wreg for parameter passing when function is
2178         declared as reentrant, too, added optimization INCF to stack
2179         pointer when stack parameter count is 1,
2180         * (genFunction, genEndFunction): refurnished and fixed to not using
2181         wreg for passing parameters when function has varargs or is
2182         reentrant, fixed bug with symbol name compare for generating
2183         functions in absolute address,
2184         * (pic16_storeForReturn): refurnished,
2185         * (genCmp): began writing a new version of the function, not ready
2186         yet, therefore it is disabled,
2187         * (genAssign): do not read code memory when assigning a function to
2188         a pointer function,
2189         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
2190         array of characters, not pointer,
2191         * (pic16initialComments): in debug mode emit an .ident directive for
2192         the assembler,
2193         * (_process_pragma): emit a new warning type (internal to pic16)
2194         when setting stack to default length, emit a similar warning when
2195         placing a function at absolute address and address is not word aligned
2196         * (_pic16_parseOptions): added 'return TRUE' statement,
2197         * (_pic16_linkEdit): if compiling a source, then add the source's
2198         file object, first in the list of objects to link,
2199
2200 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
2201
2202         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
2203         * src/pic/main.c : removed VC warning.
2204         * src/pic/gen.c : changed comment.
2205
2206 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
2207
2208         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
2209         reference to a deprecated symbol _GPTRREG was causing failure to
2210         link. Thanks G. M. Gallant for the info.
2211
2212 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
2213
2214         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
2215         comments for Bugs item #954788.
2216
2217 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
2218
2219         * src/pic16/device.c (pic16_dump_gsection,
2220         * pic16_groupRegistersInSection): handle symbols declared to be in
2221         access bank differently,
2222         * src/pic16/gen.c (struct _G): added field resDirect,
2223         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
2224         send values read from stack directly to result and don't allocate
2225         temporary values,
2226         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
2227         same registers,
2228         * (pic16_sameRegsOfs): NEW,
2229         * (freeAsmop): if _G.resDirect is set then do not mark registers as
2230         free because they were not allocated from temporary pool,
2231         * pic16_popRegFromString): workaround to fix a problem with
2232         allocating variables twice or never,
2233         * (genGenPointerGet): using PRODL instead of FSR0H,
2234         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
2235         instead of FSR0H,
2236         * (genAssign): take advantage of the _G.resDirect flag,
2237         * (genCast): around line 11844, use mov2f instead of directly
2238         MOVFF'ing between operands to account for literal values,
2239         * src/pic16/genutils.c: some new debug functions for gpsim have been
2240         added,
2241         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
2242         float with integer part only,
2243         * src/pic16/main.c (_process_pragma): handle pragma udata access to
2244         place variables in access bank
2245         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
2246         updated sources to reflect recent changes in gen.c
2247
2248 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
2249
2250         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
2251         sources that searched for headers in installation path, now the
2252         device/include/pic16 is used,
2253         * src/pic16/glue.c (pic16glue),
2254         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
2255         .line directives if not in debug mode, this suppresses assembler's
2256         warnings for ignored directives
2257
2258 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
2259
2260         * src/port.h: made reset_regparms prototype void parameter explicit.
2261         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
2262         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
2263         * doc/sdccman.lyx: documented warning disabling and how to use
2264           printf_large to make it print floats.
2265         * device/include/stdbool.h: NEW
2266         * device/lib/_atof.c,
2267         * device/lib/_divuint.c,
2268         * device/lib/_divulong.c,
2269         * device/lib/expf.c,
2270         * device/lib/printf_large.c,
2271         * device/lib/sincosf.c,
2272         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
2273         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
2274           a completely reentrant lib.
2275
2276 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
2277
2278         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
2279         * device/include/pic16/stdio.h: fixed bug with colon
2280
2281 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
2282
2283         * device/include/pic16/stdio.h,
2284         * device/include/pic16/stdlib.h,
2285         * device/include/pic16/math.h: NEW
2286         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
2287         declared as _naked to reduce overhead
2288         * device/lib/Makefile.in (target port-specific-objects-pic16):
2289         changed * to *.* so to ignore the CVS directory,
2290         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
2291         stacked variables back in stack,
2292         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
2293         corruption
2294
2295 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
2296
2297         * .version: bumped version number to 2.4.5
2298         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
2299         * support/Util/SDCCerr.c (messages structure): added entry for
2300         W_POSSBUG2
2301
2302         Large cumulative patch for pic16 port and libraries.
2303         * device/include/pic16/sdcc-lib.h,
2304         * device/include/pic16/stdarg.h,
2305         * device/include/asm/pic16/features.h,
2306         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
2307         * device/include/pic16/float.h: changes reentrant keyword with
2308         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
2309         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
2310         updated target build-libraries to include objects from gptr,
2311         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
2312         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
2313         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
2314         all function headings,
2315         * src/SDCCmain.c: added global parameter userIncDirsSet,
2316         * (parseCmdLine): when option -I is encountered add directory to
2317         userIncDirsSet too,
2318         * src/version.awk: added space between control and long,
2319         * src/pic16/NOTES: added some notes for the port,
2320         * src/pic16/gen.c: added prototype for mov2fp function,
2321         * (fReturnpic16[]): properly named return value registers,
2322         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
2323         * (aopForSym): added code to handle symbols with onStack flag set,
2324         symbols onStack are allocated PTRSIZE bytes,
2325         * (aopFreeAsmop): handles special case where asmops are stack objects,
2326         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
2327         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
2328         added argument lock to trace flaws in allocating temporary registers
2329         when developing port,
2330         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
2331         * (pic16_popRegFromString): reenabled allocating a direct register
2332         from string,
2333         * (assignResultValue): various beautifications,
2334         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
2335         referenced function argument,
2336         * (genIpush): reenabled to allow stacked arguments, handles only
2337         ic->parmPush iCodes,
2338         * (genCall, genPcall): major changes to allow for variable argument
2339         functions, fixed a bug with falsely restoring stack pointer after
2340         returning from call,
2341         * (genFunction): pending code for critical function,
2342         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
2343         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
2344         * (genNearPointerGet): fixed bug with indirect reading, was always
2345         reading from INDF0
2346         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
2347         pointers,
2348         * (genAddrOf): rewrote code to take address of a stacked function parameter
2349         * (genCast): fixed casting to generic pointer type,
2350         * src/pic16/gen.h: added AOP_STA,
2351         * (struct asmop): added field stk,
2352         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
2353         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
2354         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
2355         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
2356         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
2357         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
2358         generic pointers,
2359         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
2360         and library paths,
2361         * (pic16_port structure): generic pointer size is set to 3,
2362         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
2363         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
2364         compiler warning,
2365         * src/pic16/ralloc.c (allocReg): prevent allocating register when
2366         operand is an iTemp,
2367
2368 2004-09-24 Martin Helmling <mh AT octo-soft.de>
2369
2370         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
2371         * debugger/mcs51/simi.c: addapt new syntax of s51
2372
2373 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
2374
2375         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
2376         * src/pic16/pcode.c: commented out some calls to free() in order to
2377         fix bug #989576,
2378
2379 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2380
2381         * src/SDCCicode.h,
2382         * src/SDCCicode.c (isiCodeInFunctionCall),
2383         * src/avr/ralloc.c (selectSpil),
2384         * src/pic/ralloc.c (selectSpil),
2385         * src/pic16/ralloc.c (selectSpil),
2386         * src/ds390/ralloc.c (selectSpil),
2387         * src/hc08/ralloc.c (selectSpil),
2388         * src/xa51/ralloc.c (selectSpil),
2389         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
2390         stack in the middle of a function call sequence (fixes bug #1020268)
2391         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
2392         costs associated with the minimum switch case.
2393
2394 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2395
2396         * src/SDCC.lex: fixed bug #1030549
2397
2398 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2399
2400         * src/SDCCcse.h (struct cseDef),
2401         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
2402         over a function call if the CSE is derived from a symbol whose
2403         address has been taken (fixes bug #1029883)
2404         * support/regression/tests/bug-1029883: a new regression test for
2405         this bug
2406
2407 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2408
2409         * src/hc08/gen.c (emitinline): fixed bug #1029778
2410         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
2411         to a cast object is no longer a syntax error ("fixes" bug #1030006,
2412         and starts toward RFE #905167)
2413
2414 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
2415
2416         * src/pic16/gen.c (mov2f): New function to move an operand to
2417         another without considering if it is a literal or a register,
2418         * (pic16_sameRegs): don't check if they are both AOP_REG,
2419         * (AccRsh): removed andmask=0 lines,
2420         * (genLeftShift): duplicated to be improved in future versions,
2421         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
2422         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
2423         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
2424         * (pic16initMnemonics): added initialization for POC_INFSNZW,
2425         * (insertBankSwitch): fixed inserting banksel directives algorithm
2426         for instructions that follow a skip instruction, this fixes a report
2427         for broken subtraction code generation,
2428         * src/pic16/ralloc.c (deassignLRs): do not free register if current
2429         iCode is a left op, just in case result and right share the same
2430         registers
2431
2432 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2433
2434         * src/hc08/main.c,
2435         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
2436         preservation of HX
2437         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
2438         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
2439         on 2004-09-12; it was buggy
2440
2441 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
2442
2443         * src/SDCCsymt.h: removed RESULT_CHECK
2444         * src/SDCCast.c,
2445         * src/SDCCglue.c,
2446         * src/SDCCval.c,
2447         * src/pic/glue.c,
2448         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
2449
2450 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
2451
2452         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
2453         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
2454         configuration values no more rejected by compiler, they are assigned
2455         to configuration registers with a warning message instead,
2456         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
2457         the for-loop so last conf register is emitted too,
2458         * (_pic16_initPaths): link library libsdcc.lib by default,
2459         * (_hasNativeMulFor): modified test for multiplication according to
2460         Raphael Neider's remarks. Integer multiplication is also done with
2461         support functions,
2462         * device/include/pic16/pic18fregs.h: corrected type error in while
2463         testing and including 18f6720 header file
2464
2465 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
2466
2467         * src/pic16/device.h (pic16_options): removed field use_crt,
2468         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
2469         until an optimization to handle single bits is added,
2470         * (pic16_loadFSR0): moved before genUnpackBits,
2471         * (genAnd): some white lines removed,
2472         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
2473         leave_reset flags in pic16_options when using crt modules,
2474
2475 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
2476
2477         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
2478           for bugs 898889 & 979599. Also used some safer print instructions.
2479
2480 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
2481
2482         * src/pic16/device.h (pic16_options_t): added field use_crt,
2483         crt_name, no_crt,
2484         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
2485         catch a probable future bug,
2486         * src/pic16/gen.c: aopIdx function commented out,
2487         * (genAssign): commented out old code which used aopIdx,
2488         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
2489         code, added if conditionals to take into account the --use-crt
2490         command line options,
2491         * src/pic16/main.c (pic16_optionsTable): added new command line
2492         options, --use-crt= and --no-crt,
2493         * (_pic16_linkEdit): now the proper crt object is added in the
2494         linker command line except than when --no-crt is specified,
2495         * src/pic16/pcode.c,
2496         * src/pic16/pcode.h: added some structures and functions for a new
2497         optimization scheme to compansate for instruction overhead between
2498         same iCodes, this scheme is currently under development and is not
2499         working in any way,
2500         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
2501         to && operator,
2502         * device/lib/pic16/startup/crt0i.c,
2503         * device/lib/pic16/startup/crt0iz.c: added global char variable
2504         __uflags to force the generation of an idata section
2505
2506 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
2507
2508         * doc/Makefile,
2509         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
2510         * doc/sdccman.lyx: updated sdcc version to 2.4.4
2511
2512 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2513
2514         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
2515         Frieder) and clarified the default code optimization mode
2516
2517 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2518
2519         * src/SDCC.lex (doPragma, process_pragma),
2520         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
2521         "opt_code_size", and "opt_code_balanced"
2522         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
2523         regrouped options by category, added support for category headers
2524         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
2525         and "--opt-code-size"
2526         * doc/sdccman.lyx: documented these new options and pragmas
2527         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
2528         preference into account
2529
2530 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
2531
2532         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
2533           geniCodePreDec): Fixed bug 904237 by generating a warning
2534         * src/SDCCerr.h,
2535         * src/SDCCerr.c: added warning W_SIZEOF_VOID
2536
2537 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
2538
2539         * src/pic/device.c : When no max ram set validate full memory range.
2540         * src/pic/pcode.c,
2541         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
2542
2543 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
2544
2545         * device/lib/_gptrget.c,
2546         * device/lib/_gptrput.c: updated comment
2547         * device/lib/calloc.c,
2548         * device/lib/free.c,
2549         * device/lib/malloc.c,
2550         * device/lib/realloc.c: added LGPL, made them reentrant-safe
2551         * src/SDCCcse.c (cseBBlock),
2552         * src/SDCCicode.c (printOperand, geniCodeArray),
2553         * src/SDCCicode.h (struct operand): fixed bug 868103
2554         * support/regression/tests/bug-868103.c: added
2555         * src/SDCCast.c (searchLitOp),
2556         * src/SDCCcse.h (struct cseDef),
2557         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
2558         * src/SDCCicode.h (struct operand),
2559         * src/SDCCsymt.h (struct sym_link),
2560         * src/avr/gen.c (hasInc),
2561         * src/ds390/gen.c (hasInc),
2562         * src/hc08/gen.c (genPlusIncr, hasInc),
2563         * src/mcs51/gen.c (hasInc),
2564         * src/pic16/glue.c (pic16_printIvalChar),
2565         * src/pic16/ralloc.c (regWithIdx),
2566         * src/xa51/gen.c (hasInc) : removed warnings
2567         * src/SDCCast.c (createBlock): added comment ???
2568         * src/hc08/ralloc.c: updated comments
2569
2570 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2571
2572         * doc/sdccman.lyx: updated section on switch statements, added
2573         section about semaphore locking
2574         * doc/Makefile: added option -info for latex2html
2575         * device/lib/_gptrget.c,
2576         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
2577
2578 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
2579
2580         * src/pic/device.h,
2581         * src/pic/device.c,
2582         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
2583          maxram is less than 0x100.
2584
2585 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
2586
2587         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
2588
2589 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2590
2591         * src/port.h,
2592         * src/mcs51/main.c,
2593         * src/ds390/main.c,
2594         * src/z80/main.c,
2595         * src/hc08/main.c,
2596         * src/pic/main.c,
2597         * src/pic16/main.c,
2598         * src/avr/main.c,
2599         * src/xa51/main.c
2600         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
2601         a jump table is the best form for a switch statement, including
2602         automatic insertion of missing cases to make the case range
2603         continuous. Developed in collaboration with Frieder Ferlemann.
2604
2605 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2606
2607         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
2608         accumulator result if it needs sign extension
2609
2610 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
2611
2612         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
2613
2614 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
2615
2616         * device/lib/gbz80/printf.c,
2617         * device/lib/z80/printf.c: removed define for NULL
2618
2619 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
2620
2621         * as/xa51/xa_link.c,
2622         * device/examples/ds390/ow390/ad26.c,
2623         * device/examples/ds390/ow390/cnt1d.c,
2624         * device/examples/ds390/ow390/counter.c,
2625         * device/examples/ds390/ow390/ds2480.h,
2626         * device/examples/ds390/ow390/ds2480ut.c,
2627         * device/examples/ds390/ow390/findtype.c,
2628         * device/examples/ds390/ow390/gethumd.c,
2629         * device/examples/ds390/ow390/owllu.c,
2630         * device/examples/ds390/ow390/ownetu.c,
2631         * device/examples/ds390/ow390/swt12.c,
2632         * device/examples/ds390/ow390/swtloop.c,
2633         * device/examples/ds390/ow390/temp.c,
2634         * device/examples/ds390/ow390/temp10.c,
2635         * device/examples/ds390/ow390/thermo21.c,
2636         * device/examples/ds390/ow390/tinilnk.c,
2637         * device/examples/ds390/ow390/tstfind.c,
2638         * device/examples/serialcomm/windows/serial.cpp,
2639         * device/examples/serialcomm/windows/test_serialcomm.cpp,
2640         * device/include/reg51.h: fixed line endings for cvs
2641
2642 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2643
2644         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
2645         packRegsForAccUse, packRegisters): new accumulator register
2646         packing algorithm
2647         * support/regression/ports/hc08/support.c (_putchar): suppress
2648         warning of unused variable
2649         * src/SDCCicode.c: added SWAP entry to codeTable
2650
2651 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
2652
2653         * device/lib/sprintf.c: forgot to add this file before previous commit
2654
2655 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
2656
2657         * src/pic16/gen.c (genPackBits): added operand right in function
2658         parameters, load result directly if p_type is POINTER (that is
2659         called by genNearPointerSet)
2660         * (genUnPackBits): added operand left in function parameters,
2661         * (genNearPointerGet, genNearPointerSet): prevent the loading of
2662         FSR0 if accessing bitfields,
2663
2664 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
2665
2666         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
2667           _print_format; updated printf, sprintf, vsprintf
2668         * device/include/asm/default/features.h: corrected comment/define
2669         * device/lib/Makefile.in: added sprintf.c
2670         * device/lib/libsdcc.lib: added sprintf module
2671         * device/lib/printf_large.c,
2672         * device/lib/vprintf.c,
2673         * device/lib/sprintf.c: totally refactored printf_large and vprintf
2674           into these 3 files
2675         * support/regression/Makefile: changed ALL_PORTS into a usefull default
2676         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
2677         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
2678           hc08 test
2679         * support/regression/tests/zeropad.c: define idata as data for hc08
2680
2681 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2682
2683         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
2684         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
2685         labels are referenced at least once (even if a reference is not found)
2686         * src/hc08/gen.c (emitcode): set isComment flag for comments
2687         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
2688         loads), rules 6a..6b (optimize jumps to return)
2689
2690 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2691
2692         * device/lib/acosf.c (acosf),
2693         * device/lib/asinf.c (asinf),
2694         * device/lib/atanf.c (atanf),
2695         * device/lib/ceilf.c (ceilf),
2696         * device/lib/cosf.c (cosf),
2697         * device/lib/coshf.c (coshf),
2698         * device/lib/cotf.c (cotf),
2699         * device/lib/fabsf.c (fabsf),
2700         * device/lib/floorf.c (floorf),
2701         * device/lib/log10f.c (log10f),
2702         * device/lib/logf.c (logf),
2703         * device/lib/sinf.c (sinf),
2704         * device/lib/sinhf.c (sinhf),
2705         * device/lib/sqrtf.c (sqrtf),
2706         * device/lib/tanf.c (tanf),
2707         * device/lib/tanhf.c (tanhf),
2708         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
2709         replaced all instances of "reentrant" in the library functions
2710         defined in math.h with this macro.
2711         * support/regression/tests/float_trans.c: reenabled test for hc08
2712
2713 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
2714
2715         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
2716         erroneously deleted
2717
2718 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2719
2720         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
2721         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
2722         multi-byte volatile operands are used
2723         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
2724         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
2725         initialization to area GSINIT0 so that it would always precede
2726         any static initializers in GSINIT
2727         * support/regression/tests/zeropad.c: fixed idata define for hc08
2728         * support/regression/tests/bug-927659.c,
2729         * support/regression/tests/float_trans.c: disabled tests for hc08
2730         pending missing library routines
2731         * .version: increased version number to 2.4.4 - hc08 port now passes
2732         regression tests
2733
2734
2735 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
2736
2737         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
2738         * Makefile.common.in,
2739         * as/Makefile,
2740         * as/hc08/Makefile.in,
2741         * as/mcs51/Makefile.in,
2742         * as/z80/Makefile.in,
2743         * debugger/mcs51/Makefile.in,
2744         * device/include/Makefile.in,
2745         * device/lib/Makefile.in,
2746         * doc/Makefile,
2747         * link/Makefile,
2748         * link/z80/Makefile.in,
2749         * packihx/Makefile.in,
2750         * sim/ucsim/main_in.mk,
2751         * sim/ucsim/avr.src/Makefile.in,
2752         * sim/ucsim/doc/Makefile.in,
2753         * sim/ucsim/gui.src/serio.src/Makefile.in,
2754         * sim/ucsim/hc08.src/Makefile.in,
2755         * sim/ucsim/s51.src/Makefile.in,
2756         * sim/ucsim/xa.src/Makefile.in,
2757         * sim/ucsim/z80.src/Makefile.in,
2758         * src/Makefile.in,
2759         * support/cpp2/Makefile.in,
2760         * support/librarian/Makefile,
2761         * support/makebin/Makefile: added DESTDIR to the install path proposed
2762         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
2763         * doc/sdccman.lyx: added DESTDIR documentation
2764
2765 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
2766
2767         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
2768         instruction for interrupt handlers, use fast returns when returning
2769         from high priority interrupts
2770
2771 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2772
2773         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
2774         code generation
2775         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
2776         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
2777         bugs, ported much of Bernhard's code from mcs51
2778         * src/mcs51/gen.c (genSend),
2779         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
2780         than one when calling a reentrant function
2781         * device/lib/_mullong.c: defined an alternate struct layout for big
2782         endian ports (hc08)
2783
2784 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2785
2786         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
2787         test
2788
2789 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2790
2791         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
2792         are sane and complete before asking the port its prefered parameter
2793         passing method (fixes bug #1017633)
2794         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
2795         and _ret3
2796
2797 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2798
2799         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
2800         problem in bitfields >= 8 bits.
2801
2802 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
2803
2804         * src/SDCCsymt.c: undid changes that were not meant to be committed
2805
2806 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
2807
2808         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
2809
2810 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
2811
2812         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
2813           copied and wrong bit got inverted
2814
2815 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2816
2817         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
2818         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
2819         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
2820         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
2821         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
2822         assignments to bitfields at known addresses
2823         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
2824         reads from bitfields at known addresses
2825         * src/hc08/ralloc.c (packRegisters),
2826         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
2827         genhc08Code): optimize pointer get values used as conditionals
2828         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
2829         and branch
2830
2831 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2832
2833         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
2834         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
2835         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
2836         as conditionals
2837
2838 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2839
2840         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
2841
2842 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2843
2844         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
2845         related problems
2846
2847 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
2848
2849         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
2850
2851 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2852
2853         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
2854         mcs51 port
2855
2856 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
2857
2858         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
2859
2860 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2861
2862         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
2863         cases use more compact code.
2864
2865 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
2866
2867         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
2868
2869 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2870
2871         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
2872
2873 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2874
2875         * src/SDCCsymt.h,
2876         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
2877         parameter of changePointer() from symbol* to sym_link*
2878         * src/SDCCast.c (decorateType): call changePointer() for CAST op
2879         * src/SDCCsymt.c (compareType): void* type is castable to other
2880         pointers, but not necesarily an exact match.
2881         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
2882         is no longer blindly treated as an exact match.
2883         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
2884
2885 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
2886
2887         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
2888
2889 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
2890
2891         * src/pic/gen.c,
2892         * src/pic/pcode.c,
2893         * src/pic/ralloc.h,
2894         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
2895
2896 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
2897
2898         * src/pic/device.c,
2899         * src/pic/device.h,
2900         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
2901
2902 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2903
2904         * src/mcs51/gen.c (emitcode): fixed bug #992819
2905
2906 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
2907
2908         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
2909           there's no need to make it worse
2910
2911 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2912
2913         * src/mcs51/ralloc.c (deassignLR),
2914         * src/ds390/ralloc.c (deassignLR),
2915         * src/hc08/ralloc.c (deassignLR),
2916         * src/z80/ralloc.c (deassignLR),
2917         * src/pic/ralloc.c (deassignLR),
2918         * src/pic16/ralloc.c (deassignLR),
2919         * src/avr/ralloc.c (deassignLR),
2920         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
2921         rlivePoint): fixed another part of bug #971834
2922
2923 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2924
2925         * src/z80/main.c: enabled "critical" keyword
2926         * src/z80/mappings.i,
2927         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
2928         functions (fixes bug #979646)
2929         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
2930
2931 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2932
2933         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
2934           such as c:\mydir.
2935
2936 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
2937
2938         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
2939           doesn't disable too much optimizations
2940
2941 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
2942
2943         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
2944
2945 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
2946
2947         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
2948
2949 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
2950
2951         * src/pic/gen.c tidied up tabs
2952         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
2953         * src/pic/main.c tidied up tabs
2954         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
2955         * src/pic/pcoderegs.c tidied up tabs
2956         * src/pic/ralloc.c tidied up tabs
2957
2958 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
2959
2960         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
2961         to S_FIXED for pic16 port and when symbol is not in level 0,
2962         allocate for S_REGISTER storage class and pic16 port, too,
2963         * src/pic16/device.h: prototype for checkSym,
2964         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
2965         * (pic16_assignConfigWordValue): test the value and the mask to
2966         validate that the value is suitable for the configuration word,
2967         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
2968         collect extern declared symbols, don't emit symbol twice, check
2969         first if symbol is in publics set first,
2970         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
2971         * added command line '--fstack' which enables an experimental
2972         feature for stack access, too buggy to be used yet...
2973         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
2974         * (pic16_allocDirReg): when register has storage class S_REGISTER
2975         allocate in pic16_dynAccessRegs,
2976         * device/include/pic16/pic18f????.h: modified configuration word
2977         naming convention, words started as CONFIG0H but should be CONFIG1H
2978
2979 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
2980
2981         * device/include/mcs51reg.h: fixed bug 970993
2982
2983 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
2984
2985         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
2986         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
2987         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
2988         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
2989         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
2990         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
2991           error/warning numbers,
2992           added function setWarningDisabled()
2993         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
2994         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
2995           _memcmp.c _memmove.c calloc.c realloc.c free.c
2996         * support/regression/tests/malloc.c: added tests for new functionality
2997         * support/regression/tests/zeropad.c: added tests for truncated initializers
2998           and initialized char arrays starting with '\x0'
2999         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
3000
3001 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
3002
3003         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
3004
3005 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3006
3007         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
3008         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
3009         peephole 177.e. Thanks to anonymous
3010
3011 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
3012
3013         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
3014         function isn't used in the source but referenced as a
3015         variable initializer then declare it as extern in .asm file
3016
3017 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
3018
3019         * .version: increased version number to 2.4.3
3020
3021         Adding version extension according to ChangeLog CVS revision
3022         * src/Makefile.in (target all): added dependency 'version.h'
3023         * (rule version.h): added rule to create version.h from ChangeLog,
3024         * (rule dep): added dependency version.h,
3025         * src/version.awk: AWK script to create version.h
3026         * src/SDCCdwarf2.c (dwWriteModule),
3027         * src/SDCCglue.c (initialComments),
3028         * src/SDCCmain.c (printVersionInfo): modified to write after
3029         version string the version extension number,
3030         * src/SDCCutil.c: included "version.h"
3031         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
3032         number,
3033         * src/SDCCutil.h: added prototype for getBuildNumber
3034
3035         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
3036         includeDirsSet, too,
3037         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
3038         const char [] is found in function prototype...
3039
3040         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
3041         moving to WREG with source is already in WREG,
3042         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
3043         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
3044         * (aopForSym): stack'ed symbols are partially supported, added
3045         if-clause to support symbols in FARSPACE,
3046         * (sameRegs): added test for AOP_ACC to see if registers are same,
3047         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
3048         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
3049         * (pic16_popRegFromString): will not allocate a new register if it
3050         doesn't find one by name, bug may have introduced...
3051         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
3052         * (genIpush): revived to use pic16 port's stack,
3053         * (genAddrOf): added incomplete case for stack'ed operand,
3054         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
3055         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
3056         can handle multibyte operands,
3057         * src/pic16/glue.c (pic16_printIval*): some debug info added,
3058         * (pic16initialComments): added message for MPLAB compatibility
3059         mode enabled,
3060         * src/pic16/main.h: prototype for pic16_mplab_comp,
3061         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
3062         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
3063         * (_pic16_linkEdit): NEW, handles link stage, transferred here
3064         because of increased complexity of procedure,
3065         * (_process_pragma): stack pragma changed to format 'stack pos len',
3066         emit symbol '_stack_end' to conform with gplink,
3067         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
3068         to search for register,
3069         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
3070         PO_GPR_REGISTER,
3071         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
3072         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
3073         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
3074         case for PO_GPR_REGISTER,
3075         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
3076         dies, the new era is ahead !...
3077         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
3078         pic16_dynInternalRegs,
3079         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
3080         * (pic16_allocDirReg): minor optimizations and bug fixes,
3081         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
3082
3083         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
3084         load stack and frame pointer with address of 'stack_end' symbol
3085
3086 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
3087
3088         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
3089         without source code but only variable initializers
3090
3091 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
3092
3093         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
3094         external are not declared as extern to reduce overhead while linking
3095
3096 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
3097
3098         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
3099
3100 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
3101
3102         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
3103           Yee Keat for the patch
3104         * src/SDCCast.c (decorateType): fixed bug #979599
3105         * src/ds390/gen.h: removed local fReturnSizeDS390
3106         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
3107         * src/ds390/gen.c (genAnd, genOr, genXor),
3108         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
3109
3110 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
3111
3112         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
3113         add relFilesSet to $3, manipulate $2 to handle linking of object
3114         files without source files in command line,
3115         * device/include/pic16 (all headers): added ID location macros,
3116         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
3117         entries for ID location bytes,
3118         * (pic16_assignIdByteValue): NEW,
3119         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
3120         added field dumpcalltree to pic16_options_t,
3121         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
3122         is used instead of pic16_Gstack_base_addr, check if (ifx) before
3123         emitting rFalseIfx label after check_carry label,
3124         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
3125         pic16_emitDIRegs), NEW
3126         * (pic16glue): dump .calltree file when option --calltree found,
3127         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
3128         * (_pic16_genAssemblerPreamble): emit ID locations after
3129         configuration registers,
3130         * (pic16_linkCmd): modifications of the link command,
3131         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
3132         * (pic16_pCodeInitRegisters): don't init stack registers,
3133         * (pic16_findPrevInstruction): fixed bug,
3134         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
3135         bug with immediate registers,
3136         * (buildCallTree): traces stack push and pop,
3137         * (pct2): dump also stack usage for each function,
3138         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
3139         * (pic16_allocDirReg): various modifications,
3140         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
3141         fixed to 1,
3142
3143 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
3144
3145         * src/pic16/pcode.c: removed buggy double colon
3146
3147 2004-07-01 Borut Razem <borut.razem AT siol.net>
3148
3149         * support/scripts/sdcc.nsi: added include/pic16 to setup
3150
3151 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
3152
3153         * device/lib/Makefile.in: fixed bug in target objects-pic16,
3154         * device/lib/pic16/Makefile: prefixed with dash (-) command under
3155         target 'clean',
3156         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
3157         specific command line arguments. Also added sample lkr script
3158         for placing a variable at a specific memory bank.
3159         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
3160         at a specific memory bank,
3161         * (pic16_dump_isection): fixed bug which caused string literals to
3162         be omitted when dumping idata section,
3163         * (pic16_groupRegistersInSection): added code to handle registers
3164         in specific memory banks,
3165         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
3166         public, all references are renamed too,
3167         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
3168         AOP_DPTR2,
3169         * (pic16_storeForReturn): added case to handle when dest is WREG,
3170         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
3171         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
3172         pic16_rel_udata, check to see if that register is marked as being
3173         a member of a specific memory bank,
3174         * (pic16_printIvalCharPtr): added code to add string literals either
3175         to code or the idata sections,
3176         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
3177         also accept the 'udata' pragma,
3178         * src/pic16/main.h: new structure types sectName and sectSym
3179         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
3180         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
3181         * (pic16_findPrevInstruction): fixed, it returned nothing,
3182         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
3183         instruction combinations,
3184         * (pic16_FixRegisterBanking): heavily reorganised,
3185         * (pic16_AnalyzeBanking): if generating banksel directives is
3186         disabled, then don't call FixRegisterBanking at all,
3187         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
3188         completely removed,
3189         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
3190
3191 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
3192
3193         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
3194         Phuah Yee Keat <yk.phuah AT nestac.com>
3195
3196 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3197
3198         * src/pic16/glue.c (pic16createInterruptVect): function now emits
3199         correctly the IVT even if it is relocated to some other location
3200
3201 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3202
3203         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
3204         * device/include/pic16/pic18f2220.h: NEW,
3205         * device/lib/pic16/libdev/pic18f2220.c: NEW,
3206         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
3207         * src/pic16/device.c (struct Pics16): added info for 18f2220,
3208         * src/pic16/device.h (struct pic16_options): added ivt_loc and
3209         nodefaultlibs, ivt_loc is the location of the interrupt vector
3210         table, and nodefaultlibs signs that default libraries should not be
3211         linked in link stage,
3212         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
3213         according to --ivt-loc argument,
3214         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
3215         when pragma stack is found,
3216
3217 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3218
3219         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
3220         256 (range check), 257 (do while), 258.a-f (bit banging
3221         f.e. on 3-wire SPI bus)
3222
3223 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3224
3225         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
3226         variables used exclusively within a loop
3227
3228 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
3229
3230         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
3231
3232 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3233
3234         * src/SDCClrange.c (computeClash): fixed bug #971834
3235
3236 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3237
3238         * src/mcs51/gen.c (genCmp): fixed bug #975903
3239         * src/hc08/gen.c (operandsEqu),
3240         * src/ds390/gen.c (operandsEqu),
3241         * src/z80/gen.c (operandsEqu),
3242         * src/pic/gen.c (operandsEqu),
3243         * src/pic16/gen.c (operandsEqu),
3244         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
3245         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
3246
3247 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3248
3249         * src/SDCCcse.c (cseBBlock): fixed bug #966963
3250
3251 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
3252
3253         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
3254         default case in switch statement,
3255         * glue.c (pic16_initPointer): expr is initialised via decoarteType
3256         to eliminate problem with initialisation of pointers, but problem
3257         still exists,
3258         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
3259         * (emitStaticSegment): removed various lines emitting debug info,
3260         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
3261         added processor registers for utilizing EEPROM,
3262         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
3263         configurable and set 8
3264
3265 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
3266
3267         * .version: increased version number to 2.4.2,
3268
3269         Cumulative patch for pic16 port
3270         * src/pic16/device.c: changed scheme to dump initial values for
3271         variables in idata segment, all print_idata* functions were removed,
3272         now the pic16_printIval* will be called,
3273         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
3274         * _pic16_printPointerType, pic16_printPointerType,
3275         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
3276         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
3277         NEW, similar to the respective functions in SDCCglue.c,
3278         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
3279         way, emitting hex bytes,
3280         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
3281
3282 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3283
3284         * src/avr/ralloc.c (serialRegAssign),
3285         * src/xa51/ralloc.c (serialRegAssign),
3286         * src/pic/ralloc.c (serialRegAssign),
3287         * src/pic16/ralloc.c (serialRegAssign),
3288         * src/hc08/ralloc.c (serialRegAssign),
3289         * src/z80/ralloc.c (serialRegAssign),
3290         * src/ds390/ralloc.c (serialRegAssign),
3291         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
3292
3293 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3294
3295         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
3296         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
3297
3298 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
3299
3300         Cumulative patch for pic16 port:
3301         * src/pic16/device.h (typedef PIC16_device) modified fields for
3302         defining microcontrollers,
3303         * src/pic16/device.c: added new info for all devices in Pics16 array,
3304         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
3305         to be optimised out by the pCode optimiser,
3306         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
3307         specially, bug reported by G.M. Gallant,
3308         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
3309         as force'd so that cannot be optimised out by pCode optimiser,
3310         * src/pic16/pcode.c,
3311         * src/pic16/pcodepeeph.c,
3312         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
3313         they are disabled by default, but can be enabled explicit with
3314         command argument --denable-peeps, for testing,
3315         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
3316         --pomit-ivt in COMPILE_FLAGS
3317
3318 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3319
3320         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
3321           compilation on MSVC
3322
3323 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3324
3325         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
3326
3327 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3328
3329         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
3330         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
3331
3332 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
3333
3334         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
3335         would only assign 0x300001 register.
3336
3337 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
3338
3339         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
3340         in COMPILE_FLAGS. Thanks to G. Gallant for report.
3341
3342 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3343
3344         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
3345         for ds80c400
3346         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
3347         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
3348         added peephole 254 (left shift), 255 (jump table)
3349
3350 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
3351
3352         * device/lib/Makefile.in: removed comment line with model-pic16,
3353         * (target port-specific-objects-pic16): the libraries and objects
3354         are copied to the build directory form the device/lib/pic16/bin
3355         directory
3356
3357         Cumulative patch concerning pic16 port:
3358         * library directory has been re-organized,
3359         * added support for PIC18F1220,
3360         * added headers and library sources for chips 18f1220,18f6520,
3361         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
3362
3363         * configuration registers setting has changed, now each supported
3364         device has a complete description of the registers it uses,
3365         * all initialisations are moved to idata sections, these section
3366         can be absolute or relocatable,
3367         * fixed initialisation of codespace variables,
3368         * fixed warning about PCLATU and gpsim,
3369         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
3370         * (genAssign): use table reads when assigning from variables in codespace,
3371         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
3372         char/int variables placed in codespace,
3373         * (pic16_emitConfigRegs): NEW, emits a list with configuration
3374         registers set in .asm file, no need for --pomit-config-words anymore,
3375         * (pic16glue): some 8051 legacy segments are commented out
3376         (to be removed completely),
3377         * added support for alternative assembler and linker with --asm=
3378         and --link= command line arguments,
3379         * peepholes are disabled automatically in the port, no need to
3380         specify on command line,
3381         * port supports natively char/int/long multiplication, but converts
3382         all divisions to support functions,
3383         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
3384         to the file set in variable $2,
3385         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
3386         strings in ASCII format and not in hex,
3387         * ralloc.c (serialRegAssign): added a triplet of conditional calls
3388         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
3389         allocate proper register if iCodes aren't temporary,
3390
3391 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
3392
3393         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
3394
3395 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
3396
3397         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
3398         is commented out
3399
3400 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3401
3402         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
3403         computed address is reused
3404         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
3405         multi-byte bitfields
3406
3407 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
3408
3409         * src/z80/gen.c: (genArrayInit): must check for pointers too
3410
3411 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
3412
3413         * support/regression/tests/zeropad.c: never meant to commit the
3414           nestedstruct test: removed, added check for GCC version
3415
3416 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
3417
3418         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
3419         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
3420         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
3421           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
3422           bugs 928906 and 954082 half-empty initializers
3423         * src/SDCCsymt.h,
3424         * src/SDCCsymt.c (getAllocSize): added for above fix
3425         * src/z80/gen.c (genArrayInit): fixed bug 741044
3426         * support/regression/tests/zeropad.c: added tests
3427
3428 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
3429
3430         * src/pic16/device.c (pic16_dump_section): corrected bug which
3431         caused some symbols of the libraries to be misplaced
3432
3433 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
3434
3435         * src/pic16/glue.c,
3436         * src/pic16/ralloc.h,
3437         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
3438         to fix conflict with pic port
3439
3440 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
3441
3442         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
3443         externs configuration variables,
3444         * src/pic16/ralloc.h,
3445         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
3446         prototype in header, commented out some debug messages
3447
3448 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
3449
3450         * src/pic16/glue.c,
3451         * src/pic16/main.c,
3452         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
3453         for gpasm COFF object generation. Thanks to D. Hawkins for
3454         his patch info
3455
3456 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3457
3458         * src/ds390/main.c,
3459         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
3460         Brock for spotting this)
3461         * src/ds390/gen.c (genEndFunction),
3462         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
3463         interrupt handler and critical. Disable push/pop optimizations when
3464         peephole optimizations disabled.
3465
3466 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
3467
3468         Updated pic16 library sources and headers.
3469         * device/lib/pic16/pic18f*/ ,
3470         * device/include/pic16/*.h: modified to handle structured SFR
3471         definitions
3472
3473 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
3474
3475         * src/port.h (PORT structure): added hook initPaths, now each
3476         port can declare its own default search paths,
3477         which can been seen with the --print-search-dirs option,
3478         see pic16 port for example,
3479         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
3480         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
3481         * (doPrintSearchDirs): NEW, replaces in a central manner the
3482         printing of search dirs which was split in set*Paths functions,
3483         * (main): added call to port->initPaths and doPrintSearchDirs,
3484         * src/avr/main.c,
3485         * src/ds390/main.c,
3486         * src/hc08/main.c,
3487         * src/izt/i186.c,
3488         * src/izt/tlcs900h.c,
3489         * src/mcs51/main.c,
3490         * src/pic/main.c,
3491         * src/pic16/main.c: modified port structures to reflect addition of
3492         initPaths hook,
3493
3494         * src/pic16/device.c (regCompare): registers are finally sorted by name,
3495         * (pic16_dump_section): for registers in same address reserve memory once,
3496         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
3497         to no_banksel,
3498         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
3499         result is greater in size than right or left,
3500         * (pic16_genUMult8X8_8): there are some cases where the result can
3501         be 16 bits size, so handle these,
3502         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
3503         * (pic16_outBitC): modified to emit pcodes,
3504         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
3505         or not,
3506         * (genDivOneByte): implemented algorithm to divide 8-bits,
3507         * (genCmp): uncommented goto, but issues still exist,
3508         * (genAnd): fixed a bug with variables >8bits,
3509         * (genPackBits): optimization added that uses BCF/BSF to change a
3510         single bit,
3511         * (genAssign): fixed bug when assigning floating point literals,
3512         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
3513         __sdcc_gsinit_startup label,
3514         * src/pic16/main.c (_pic16_init): removed search directory
3515         initialisations,
3516         * (_pic16_initPaths): NEW, used to initialise search directories,
3517         * (_hasNativeMulFor): support functions for all except char/int
3518         multiplication, and char division,
3519         * (PIC16_port struct): modified entry for native mul support,
3520         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
3521         no_banksel option,
3522         * (buildCallTree): call to register_usage is ifdef'ed out,
3523
3524 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3525
3526         * device/include/string.h: applied Stas Sergeev's patch to make this
3527         header file compatible with the preprocessor -Wundef option
3528         * src/SDCCmain.c (main): abort compilation if preprocessor reports
3529         failure (fixes bug #941458)
3530
3531 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3532
3533         * src/SDCCopt.c (killDeadCode): fixed bug #907733
3534         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
3535         that the variable, not the function, should be static
3536         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
3537         to be consistent with non-literal case
3538
3539 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3540
3541         * src/SDCCast.c (isConformingBody): fixed bug #949967
3542         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
3543         convilong): fixed bug #952086
3544
3545 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3546
3547         * src/SDCCmem.c (allocVariables): fixed bug #955321
3548
3549 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3550
3551         * src/hc08/main.c (_hc08_genAssemblerEnd),
3552         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
3553         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
3554         completely eliminated the use of a temporary file
3555         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
3556         when more than one file linked
3557         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
3558
3559 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3560
3561         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
3562         which fixes bug #543481
3563         * support/regression/tests/bug-751703.c: fixed comments left from a
3564         cut and paste error
3565         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
3566         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
3567         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
3568         scopes
3569         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
3570         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
3571         are now changed to underscores in moduleName
3572
3573 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3574
3575         * as/mcs51/lkmem.c: better fix for bug #954173
3576
3577 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
3578         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3579
3580         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
3581         * device/include/c8051f000.h,
3582         * device/include/c8051f120.h,
3583         * device/include/c8051f300.h,
3584         * device/include/c8051f310.h,
3585         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
3586         PWM16) and detab'ed
3587
3588 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3589
3590         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
3591         and mailing lists, doc'ed --no-peep-comments, removed reference
3592         to knoppix (newest version has no LyX/LaTeX), other minor changes
3593         * src/SDCCglue.c (glue): save 2 bytes stack space with
3594         option --main-return. The ljmp could probably be avoided too
3595
3596 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3597
3598         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
3599
3600 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3601
3602         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
3603         * src/SDCCopt.c (isLocalWithoutDef),
3604         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
3605         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
3606         (credit to Maarten Brock for patch #949363, on which this is based)
3607         * support/regression/tests/bug-751703.c: some test cases of extern used
3608         within inner scopes.
3609
3610 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3611
3612         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
3613         SPEC_STRUCT
3614         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
3615         struct definitions
3616         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
3617         dwWriteLabel): fix to create valid debugger symbols even when
3618         the module name has non-alphanumeric symbols in it
3619         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
3620         when a variable's allocation has been optimized away
3621
3622
3623 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3624
3625         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
3626         * src/hc08/main.c,
3627         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
3628         * src/mcs51/main.c,
3629         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
3630         * src/ds390/main.c,
3631         * src/z80/gen.c (z80_emitDebuggerSymbol),
3632         * src/z80/main.c,
3633         * src/pic/gen.c (pic14_emitDebuggerSymbol),
3634         * src/pic/main.c,
3635         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
3636         * src/pic16/main.c,
3637         * src/avr/gen.c (avr_emitDebuggerSymbol),
3638         * src/avr/main.c,
3639         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
3640         * src/xa51/main.c,
3641         * src/SDCCdebug.c (emitDebuggerSymbol),
3642         * src/SDCCdebug.h,
3643         * src/port.h: added a debugger struct to the port struct. Added a
3644         callback for defining debugger symbols
3645
3646         * src/SDCCast.c (createLabel),
3647         * src/SDCC.y (labeled_statement): mark all compiler generated labels
3648         with isitmp = 1
3649         * src/SDCCicode.h,
3650         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
3651         iCode back to the ast for the function
3652
3653         * src/hc08/ralloc.c (hc08_assignRegisters),
3654         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
3655         unneeded fields from the regs struct.
3656         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
3657         pushReg() & pullReg() functions instead of emitcode()
3658
3659         * src/hc08/gen.c (genLabel, genhc08Code),
3660         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
3661
3662         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
3663         debugger hooks
3664
3665         * src/hc08/gen.c (genEndFunction, genhc08Code),
3666         * src/hc08/gen.h,
3667         * src/mcs51/gen.c (genEndFunction, gen51Code),
3668         * src/mcs51/gen.h,
3669         * src/ds390/gen.c (genEndFunction, gen390Code),
3670         * src/ds390/gen.h,
3671         * src/z80/gen.c (genEndFunction, genZ80Code),
3672         * src/z80/gen.h,
3673         * src/z80/z80.h,
3674         * src/pic/gen.c (genEndFunction, genpic14Code),
3675         * src/pic/gen.h,
3676         * src/pic16/gen.c (genEndFunction, genpic16Code),
3677         * src/pic16/gen.h,
3678         * src/avr/gen.c (genEndFunction, genAVRCode),
3679         * src/avr/gen.h,
3680         * src/xa51/gen.c (genEndFunction, genXA51Code),
3681         * src/xa51/gen.h,
3682         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
3683         specific code to cdbFile.c and out of the backend code generators
3684
3685         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
3686         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
3687         starting address is now 0
3688
3689         * as/hc08/asm.h,
3690         * as/hc08/m08pst.c,
3691         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
3692         assembler directive for DWARF support
3693         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
3694
3695         * src/src.dsp,
3696         * src/Makefile.in,
3697         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
3698
3699 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3700
3701         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
3702         and inappropriate peephole optimization in jump tables
3703
3704 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3705
3706         * as/hc08/m08pst.c,
3707         * src/SDCCglue.c: sdccopt works for the hc08 port now
3708
3709 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
3710
3711         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
3712
3713 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3714
3715         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
3716
3717 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3718
3719         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
3720         rules
3721         * src/SDCCmain.c,
3722         * src/SDCCglobl.h,
3723         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
3724         comments from the peephole optimizer replacement rules
3725         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
3726         symbols
3727         * src/SDCCcse.c (updateSpillLocation),
3728         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
3729         equivalents
3730         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
3731         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
3732         objects far pointers
3733
3734 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3735
3736         * src/SDCCsymt.h: a missing part of my last change
3737         * src/pic/ralloc.c (regTypeNum),
3738         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
3739
3740 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3741
3742         * src/SDCCicode.h,
3743         * src/SDCCicode.c (aggrToPtrDclType),
3744         * src/SDCCptropt.h,
3745         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
3746         ptrPseudoSymConvert),
3747         * src/pic/ralloc.c (regTypeNum),
3748         * src/pic16/ralloc.c (regTypeNum),
3749         * src/hc08/ralloc.c (regTypeNum),
3750         * src/ds390/ralloc.c (regTypeNum),
3751         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
3752         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
3753
3754 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3755
3756         * link/z80/lkmain.c (afile),
3757         * as/hc08/lkmain.c (afile),
3758         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
3759         prevent a pointer problem when a filename has no directory and
3760         no extension specified.
3761
3762 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3763
3764         * link/z80/lkmain.c (afile): allow periods in directory names
3765         * link/z80/lkmain.c (afile),
3766         * as/mcs51/lkmain.c (afile),
3767         * as/hc08/lkmain.c (afile): allow linker script file to have an
3768         extension other than ".lnk"
3769         * link/z80/lklex.c (getfid),
3770         * link/z80/lkmain.c (parse),
3771         * as/mcs51/lklex.c (getfid),
3772         * as/mcs51/lkmain.c (parse),
3773         * as/hc08/lklex.c (getfid),
3774         * as/hc08/lkmain.c (parse): Support comments in the linker script
3775         file on lines by themselves and after filenames
3776
3777 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3778
3779         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
3780
3781 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3782
3783         * src/z80/peeph-z80.def: removed some peephole rules that don't
3784         work with multibyte arithmetic (fixed bug #937126)
3785         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
3786         to registers and not global variables
3787         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
3788         geniCodePreInc, geniCodePostDec, geniCodePreDec,
3789         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
3790         checking for assignments not internally generated (fixed bug #931895)
3791         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
3792         structure member (fixed bug #930072)
3793
3794 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3795
3796         * src/SDCCmain.c (linkEdit),
3797         * src/hc08/main.c (_hc08_parseOptions),
3798         * as/hc08/Makefile.in,
3799         * as/hc08/aslink.h,
3800         * as/hc08/asm.h,
3801         * as/hc08/m08pst.c,
3802         * as/hc08/lkrloc.c (relr, rele),
3803         * as/hc08/lkarea.c (lnkarea)
3804         * as/hc08/lkmain.c (afile, parse),
3805         * as/hc08/lkelf.c: support for ELF output
3806         * as/hc08/lks19.c (s19),
3807         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
3808
3809 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3810
3811         * as/mcs51/lkihx.c: Fixed bug #899105.
3812
3813 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3814
3815         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
3816         .dsp files from Unix to DOS.
3817
3818 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3819
3820         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
3821         function pointers; we have been compliant for several months now.
3822         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
3823         change that was accidently commented out
3824         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
3825         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
3826         bug #922319
3827
3828 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3829
3830         * src/hc08/gen.c: output of all of the internal debugging information
3831         is now controlled by the D() macro; it is disabled by default
3832
3833 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3834
3835         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
3836         harder to keep the same registers during a CAST iCode
3837         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
3838         long via int can be done in a single cast, if the signedness is
3839         correct.
3840         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
3841         putchar() in tinibios.c in ds390's library
3842
3843 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
3844
3845         * src/SDCCast.c (decorateType): fixed bug #898889,
3846         cast result of a literal complement too
3847         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
3848         fixed check for bitfields
3849
3850 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
3851
3852         * src/SDCCicode.c (geniCodeLogic): made it static,
3853         (geniCodeLogicAndOr): added in order to fix bug #905492,
3854         (ast2iCode): fixed bug #905492
3855         * support/regression/tests/bug-905492.c: added
3856         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
3857         (processParms): fixed bug #927659: don't copy parms, this will clear
3858         decorated flag
3859         * support/regression/tests/bug-927659.c: added
3860
3861 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
3862
3863         * src/SDCCast.c (addCast): don't cast float to char
3864         * device/lib/libsdcc.lib: added _memmove
3865
3866 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
3867
3868         * device/lib/large/Makefile: fixed parallel execution by
3869         replacing `make` by `$(MAKE)`
3870
3871 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3872
3873         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
3874         offsets (fixes bug #923936)
3875
3876 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
3877
3878         * device/lib/small/Makefile: fixed parallel execution by
3879         replacing `make` by `$(MAKE)`
3880
3881 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
3882
3883         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
3884
3885 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
3886
3887         * src/pic/gen.c (genCpl): multi-byte complements were not working.
3888         * src/regression/Makefile: Regression test was not running.
3889
3890 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
3891
3892         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
3893         complement if possible
3894         * src/SDCCval.c (valComplement),
3895         * src/SDCCicode.c (operandOperation): fixed complement of literal
3896         * support/regression/tests/onebyte.c (testComplement): added
3897
3898 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
3899
3900         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
3901         return an optimized tree; actually replace actParm with the new tree
3902         * src/SDCCast.h: added some parantheses to remove side effects
3903         * support/regression/tests/bug-920866.c
3904
3905 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
3906         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
3907         Bit operands were not being handled properly in the pic14 port.
3908         (now src/regression/add.c passes again).
3909
3910 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3911
3912         * src/SDCC.y (labeled_statement): case and default no longer require
3913         a following statement (RFE #893037)
3914
3915 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3916
3917         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
3918         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
3919         disabled (fixes bug #916294)
3920         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
3921         "mov a,acc"; patch provided by Lenny Story
3922         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
3923
3924 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3925
3926         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
3927         functions
3928         * src/ds390/gen.c (genFunction, genEndFunction),
3929         * src/ds390/ralloc.c (ds390_assignRegisters),
3930         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
3931         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
3932         pushed if there are parameters passed on the stack. Also, a cleaner
3933         way to decide if r0/r1 should be pushed/popped. (Together they fix
3934         bug #918693)
3935
3936 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3937
3938         * doc/sdccman.lyx,
3939         * device/lib/mcs51/crtpagesfr.asm,
3940         * device/lib/mcs51/crtxinit.asm,
3941         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
3942         to avoid confusion with Si Lab's SFRPAGE register.
3943
3944 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3945
3946         * src/SDCCglue.c (emitMaps): allow public sfr variables
3947         * src/SDCCglue.c (initialComments): include compiler build date
3948         with compiler version and put the timestamp of the generated
3949         assembly file on a serperate line to be less confusing.
3950         * src/port.h: added genInitStartup hook
3951         * src/avr/main.c,
3952         * src/ds390/main.c,
3953         * src/hc08/main.c,
3954         * src/pic/main.c,
3955         * src/pic16/main.c,
3956         * src/xa51/main.c,
3957         * src/z80/main.c: genInitStartup initialize as NULL (default to
3958         historical behaviour)
3959         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
3960         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
3961         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
3962         library instead of hard coding it into the compiler.
3963         * support/regression/ports/mcs51-stack-auto/spec.mk,
3964         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
3965         * device/lib/mcs51/Makefile,
3966         * device/lib/small/Makefile,
3967         * device/lib/large/Makefile,
3968         * device/lib/mcs51/crtpagesfr.asm,
3969         * device/lib/mcs51/crtstart.asm,
3970         * device/lib/mcs51/crtxclear.asm,
3971         * device/lib/mcs51/crtxinit.asm,
3972         * device/lib/mcs51/crtclear.asm,
3973         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
3974         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
3975         and into user configurable files.
3976         * device/lib/clean.mk: clean mcs51 directory too
3977         * support/regression/tests/longlit.c: added static to T1 declaration
3978         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
3979         accesses in the initialization code
3980
3981 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3982
3983         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
3984         OSCTRIMVAL as noted in bug #916008
3985
3986 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3987
3988         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
3989         in loops with multiple exits (reported as incorrect registers
3990         used by Martin Helmling in Sdcc-user list)
3991
3992 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3993
3994         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
3995         made ds390 register extensions look less like error messages
3996
3997 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3998
3999         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
4000         reported by Adam Wozniak in Sdcc-user list
4001
4002 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
4003
4004         * src/SDCCast.c (decorateType): fixed with bug and promotion in
4005         arithmetic optimizations, added debug output
4006
4007 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
4008
4009         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
4010         * sdcc.spec: updated and split sdcc into 3 rpms
4011         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
4012         needed for literals of LEFT_OP and '+'
4013         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
4014         introduced RESULT_TYPE_NOPROM
4015         (geniCodeMultiply): fixed logic for decision if mul is optimized to
4016         left shift
4017         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
4018         limited promotion to int only for '*'
4019         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
4020
4021 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
4022
4023         * src/pic16/gen.c (genSkip),
4024         (genc16bit2lit), (gencjneshort): commented out
4025         (is_LitOp): new helper function, checks operand type
4026         (genCmpEq): rewritten
4027
4028 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
4029
4030         * support/regression/tests/bug-908454.c: added
4031
4032 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
4033
4034         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
4035         * src/SDCCicode.c (usualBinaryConversions): op needs int type
4036         (geniCodeCast): cosmetic, don't preserve bit storage class
4037         (geniCodeLeftShift): added promotion
4038         (geniCodeLogic): fixed regression
4039         * src/SDCCsymt.c (computeTypeOr): accept bits too
4040         (compareType): 2nd part of fix for bug #908454, needed for bitfields
4041
4042 2004-03-07  Borut Razem <borut.razem AT siol.net>
4043
4044         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
4045
4046 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
4047
4048         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
4049         version of pic16_genPackRegisters which does not check if ic is a
4050         CAST operator,
4051         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
4052         function cause string1.c regression test fails
4053
4054 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
4055
4056         * sim/ucsim/configure.in,
4057         * sim/ucsim/configure,
4058         * sim/ucsim/doc/Makefile.in: use docdir
4059         * src/SDCC.y: fixed sbit atrributes
4060         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
4061         * src/SDCCast.c (decorateType): |^& need special promotion handling
4062         * src/SDCCast.h,
4063         * src/SDCCsymt.h: moved definition of RESULT_TYPE
4064         * src/SDCCsymt.h (computeType),
4065         * src/SDCCicode.c: computeType() needs op
4066         * src/SDCCsymt.c (checkTypeSanity),
4067         * doc/sddman.lyx: "plain" bitfields are unsigned
4068         * src/SDCCsymt.c (computeTypeOr): added
4069         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
4070         |^& ops
4071         * src/SDCCval.c (val*): computeType() needs op
4072         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
4073         * support/regression/tests/onebyte.c: added tests for |^&
4074
4075 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
4076
4077         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
4078         for writing icode into asm output.
4079
4080 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
4081
4082         * src/pic16/device.c: added some debug lines enabled
4083         with macro DEBUG_CHECK,
4084         * src/pic16/genarith.c: more debug in genPlus,
4085         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
4086         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
4087         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
4088         * (aopForSym): onStack symbols are re-placed in data memspace,
4089         and onStack flag is cleared,
4090         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
4091         copy temporary pcodeop,
4092         * (genPcall): added warning for not updating PCLATU,
4093         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
4094         always true for pic16 port,
4095         * (genMultOneWord): NEW, supports integer multiplication,
4096         * (genMult): modified to call genMultOneWord,
4097         * (ifxForOp): added warning when return NULL,
4098         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
4099         flag is set before call to operandFromSymbol for implicit
4100         added structures,
4101         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
4102         options.intlong_rent are set by default,
4103         * (_hasNativeMulFor): modified to allow port generation of integer
4104         multiplication,
4105         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
4106         set regtype to REG_SFR for all registers, restricting seting the
4107         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
4108
4109 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4110
4111         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
4112         more than 500 times in the regression tests
4113
4114 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4115
4116         * support/Util/SDCCerr.h,
4117         * support/Util/SDCCerr.c,
4118         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4119         enumerator_list),
4120         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
4121         for symbol conflicts.
4122         * support/valdiags/tests/enum.c,
4123         * support/valdiags/tests/tentdecl.c,
4124         * support/valdiags/tests/struct.c: expect possible error messages
4125         referring to original symbol definitions.
4126         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
4127         * src/SDCCsymt.h,
4128         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
4129
4130 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
4131
4132         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
4133
4134 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
4135
4136         * src/pic16/ralloc.c (newReg): fixed bug #908929
4137
4138 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4139
4140         * src/ds390/gen.c: added missing #include "main.h"
4141
4142 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
4143
4144         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
4145         checking if symbol is already in set,
4146         * src/pic16/device.h: prototype for checkAddSym,
4147         * src/pic16/gen.c: (_G): added entry interruptvector,
4148         * (assignResultValue): removed some commented out lines,
4149         * (genFunction): check for ISR via sym->type, absolute section for
4150         interrupt code is created via a new pBlock, the goto instruction is
4151         placed now correctly at the interrupt vector position, changed all
4152         references from ivec to _G.interruptvector,
4153         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
4154         is the interrupt is a high priority one, same for return from ISR,
4155         * src/pic16/glue.c: changed all calls of addSetHead for publics and
4156         externs to calls of checkAddSym,
4157         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
4158         pic16_pcode_verbose flag is set,
4159         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
4160         * src/pic16/pcoderegs.c: message about how many registers are saved
4161         will only be emitted if pic16_pcode_verbose flag is set,
4162
4163 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4164
4165         * src/ds390/ralloc.h,
4166         * src/ds390/ralloc.c (ds390_regWithIdx),
4167         * src/ds390/gen.c (emitcode),
4168         * src/ds390/main.h,
4169         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
4170         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4171         ds390operandCompare, getRegsRead, getRegsWritten,
4172         initializeAsmLineNode): customized instruction size calculation for
4173         ds390, started basis for some register optimizations
4174         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
4175         corresponding assembly output
4176         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
4177         missing push/pop of r0/r1. Optimized push/pops
4178
4179 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4180
4181         * src/mcs51/main.c (instructionSize): fixed ACALL size
4182         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
4183
4184 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
4185
4186         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
4187         the sorting of rlist with NULL elements
4188         * (print_idataType, print_idata): NEW to create idata sections
4189         * src/pic16/device.h: idataSymSet new variable
4190         * src/pic16/gen.c (genFunction): fixed some bugs in string
4191         comparing, improved the absolute section creation for ISRs,
4192         added FSR0L/FSR0H in registers that are saved in an ISR,
4193         * (genInline): fixed the processing of inline snippets,
4194         now they undergo no process by the peephole optimizer
4195         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
4196         are placed in idataSymSet,
4197         * (pic16emitStaticSeg): extern symbols are added in externs,
4198         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
4199         switching when aboslute variables are placed in access bank memory
4200         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
4201         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
4202         commented out with #if,
4203         * (pic16_packRegisters): reintroduce the check for CAST because some
4204         symbols are not correctly handled,
4205         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
4206         pCodeInstruction instead of pCode,
4207         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
4208         pCodeAsmDir definition,
4209         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
4210         directive, then the argument directive is emitted without the leading
4211         tab, hack for inline labels which must be in the first column,
4212         * (compareLabel,pic16_findNextInstruction),
4213         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
4214         * (insertBankSwitch): modified for the new pCodeAsmDir,
4215
4216 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4217         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
4218
4219         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
4220         instance,
4221         * (pushSide): commented out with #if,
4222         * (assignResultValue): fixed some typos in saving
4223         registers,
4224         * (genPcall): FIXED and sync'ed with genCall,
4225         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
4226         * (genNearPointerGet): fixed to handle some more cases,
4227         implementation scheme via table reads,
4228         * (genConstPointerGet): modified to access code memory correct,
4229         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
4230         and improved to handle some cases
4231         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
4232         instead of "RETLW" for init data
4233         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
4234         not IN_DIRSPACE, work around to reduce bank switching when aboslute
4235         variables are placed in access bank memory (<0x80 and >=0xf80),
4236         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
4237         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
4238         TBLWT_POSTDEC,TBLWT_PREINC
4239         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
4240         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
4241         directives
4242         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
4243         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
4244         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
4245         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
4246
4247 2004-02-29  Borut Razem <borut.razem AT siol.net>
4248
4249         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
4250         support/Util/findme.h, support/Util/system.h: enhance binary relative
4251         search for lib and include by using findProgramPath()
4252
4253 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4254
4255         * src/SDCCpeeph.h,
4256         * src/SDCCpeeph.c (pcDistance),
4257         * src/port.h,
4258         * src/mcs51/ralloc.h,
4259         * src/mcs51/ralloc.c (mcs51_regWithIdx),
4260         * src/mcs51/main.h,
4261         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
4262         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4263         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
4264         size calculation port specific, started basis for some register
4265         optimizations
4266         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
4267         missing push/pop of r0/r1. Optimized push/pops
4268         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
4269         * device/lib/_modsint.c (_modsint),
4270         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
4271         and stack version so regression tests pass
4272
4273 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
4274
4275         * src/Makefile.in (dep): include SLIBOBJS in dependency check
4276         * src/SDCCast.c (decorateType): catch another small optimization
4277         with '?' operator
4278         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
4279         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
4280         modified to finally use computeType() all over SDCC,
4281         see Feature Request #877103
4282         * src/SDCCval.h: cosmetic
4283         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
4284         valCompare(); regression tested in muldiv.c
4285         * support/regression/tests/muldiv.c (testMod): mod sign follows
4286         dividend only
4287
4288 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
4289
4290         * src/SDCCast.c (decorateType): fixed bug #902362
4291         * doc/INSTALL.txt: fixed install instructions for win32
4292
4293 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
4294
4295         * device/include/Makefile.in (install): fixed by replacing spaces
4296         by tabs
4297         * doc/README.txt,
4298         * doc/INSTALL.txt: updated for release
4299         * doc/sdccman.lyx: added warning for --xstack being buggy
4300
4301 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
4302
4303         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
4304         to eliminate build warnings.
4305         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
4306
4307 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
4308            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4309
4310         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
4311         removed -penable-stack, added comment for stack pragma, added
4312         warning for not initializing the stack/frame registers, removed
4313         comment at interrupts section
4314
4315         Stack is made permanent, there is no ability to disable stack usage.
4316         * src/pic16/device.h,
4317         * src/pic16/device.c: removed all references to USE_STACK macro,
4318         * src/pic16/device.c (pic16_dump_section): when no elements in
4319         rlist, free rlist before return,
4320         * (pic16_dump_int_registers): NEW, internal registers are a new set
4321         of general purpose registers reused by each function,
4322         * (checkAddReg): returns 1 if registers is added to set,
4323         * (pic16_groupRegistersInSection): when a registers is of type
4324         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
4325         * src/pic16/device.h: memRange and Assigned Memory are deleted,
4326         SRCASECMP macro is moved here from device.c
4327         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
4328         PO_PCLATU, PO_PRODL, PO_PRODH,
4329         * (pic16_pCodeOpType, genMinus,
4330         changed compares to "a" register, with AOP_ACC,
4331         * (pic16_genPlus): fixed some bugs and indented properly,
4332         * (pic16_addSign): changed size to size+offset in the MOVWF
4333         instruction,
4334         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
4335         multiply 8-bit operand by literal, result is 8-bit,
4336         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
4337         multiply 2 8-bit operand, result is 8-bit,
4338         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
4339         genUMult8X*_16,
4340         * src/pic16/gen.c: changed accUse to contain WREG only,
4341         * (pic16_emitcomment): renamed to pic16_emitpcomment,
4342         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
4343         true, do not use immediate addressing any more unless sym is a
4344         pointer in codespace,
4345         * (aopForRemat): do not use immediate addressing when symbol not in
4346         codespace and when symbol's address is requested,
4347         * (aopOp): for-loop in if(sym->accUse) is modified for the new
4348         accUse size (= 1),
4349         * (aopGet): added case for AOP_ACC and don't return "accumulator
4350         bug" but WREG instead,
4351         * (popGetTempReg): pushes contents of temporary register in stack,
4352         * (popReleaseTempReg): pops contents of temporary register from
4353         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
4354         * (pic16_popGet): separated case AOP_ACC to return register WREG
4355         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
4356         or PO_IMMEDIATE and initializes their instance/offset appropriately,
4357         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
4358         the use of immediate pointers to certain cases only.
4359
4360         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
4361         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
4362         * (assignResultValue, genCall, genRet): modified to use the new
4363         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
4364         genPcall is still broken,
4365         * (genFunction): added code to create 'A' type pBlocks when
4366         interrupt functions are generated, code not extensively tested yet,
4367         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
4368         * (genEndFunction): modified so ISRs pop stored registers from stack,
4369         * (genMultOneByte): cleanup,
4370         * (AccRsh): added flag andmask, to and result with appropriate mask,
4371         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
4372         * (genDataPointerGet): fixed and reenabled its use,
4373         * (genNearDataPointerGet): bugs fixed,
4374         * (genDataPointerSet): bugs fixed,
4375         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
4376         pic16_DumpSymbol, pic16_DumpOp,
4377         * src/pic16/genutils.h: function prototypes for the above functions,
4378         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
4379         pointers,
4380         * (pic16emitRegularMap): many many many improvements, but needs a
4381         major cleanup,
4382         * src/pic16/main.c: enable_stack in pic16_options is removed,
4383         * (_pic16_parseOptions): removed command line options -penable-stack,
4384         * (_process_pragma): emit stack symbol only when stack pragma is
4385         processed,
4386         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
4387         redirected to FSR0L/FSR0H pair,
4388         * (pic16_get_op, pic16_get_op2): modifications and improvements,
4389         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4390         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
4391         for immediates,
4392         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
4393         * (dumpPicOptype): NEW,
4394         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
4395         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
4396         with movff instruction,
4397         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
4398         added pic16_int_regs, some packRegsFor* functions are commented out,
4399         because produce errors,
4400         * src/pic16/NOTES: minor modifications
4401
4402 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4403
4404         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
4405         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
4406         --pack-iram.
4407         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
4408         * as/mcs51/lkaomf51.c: fixed bug #895763
4409
4410 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
4411
4412         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
4413
4414 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4415
4416         * doc/sdccman.lyx: added details about the HC08 storage classes and
4417         interrupts, fixed the register usage info for z80 & gbz80
4418
4419 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
4420
4421         * doc/sdccman.lyx: added more pic16 port documentation
4422         * device/include/pic16/: added header pic18fregs.h
4423
4424 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
4425
4426         * doc/sdccman.lyx: added Vangelis' contribution
4427
4428 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4429
4430         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
4431         extend to the next CALL or PCALL, not just to the next CALL.
4432
4433 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
4434
4435         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
4436
4437 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4438
4439         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
4440         bug #895752 and a better fix for bug #716790
4441
4442 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4443
4444         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
4445
4446 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4447
4448         * doc/sdccman.lyx: minor changes, minor changed
4449
4450 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
4451
4452         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
4453         which can't handle SDCC_NEWONEBYTEOPS,
4454         (geniCodeMultiply): removed conversion from mult to shift for pic14
4455         and pic16
4456
4457 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4458
4459         * src/hc08/gen.h,
4460         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
4461         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
4462         thus fixing bug #895406
4463
4464 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
4465
4466         * device/lib/_modsint.c,
4467         * device/lib/_modslong.c: sign follows divisor only
4468         * src/hc08/gen.c (genMultOneByte): if result size is 1,
4469         signs or signedness can be ignored
4470         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
4471         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
4472         added optimization for IFX,
4473         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
4474         arguments;
4475         reenabled optimization for IFX, which was removed on 2004-01-11
4476         * src/SDCCast.h: added return type IFX
4477         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
4478         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
4479         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
4480         SDCC_OLDONEBYTEOPS selects the old behaviour
4481         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
4482         changed again and commented promotion rule
4483         * src/SDCCval.c (valDiv): promotion no longer necessary
4484         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
4485         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
4486         rewritten
4487         * support/regression/tests/onebyte.c: added
4488
4489 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
4490
4491         * gen.c (genInline): reverted to old code for assemnling inline
4492         code because of bug reported James Chadd
4493
4494 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
4495
4496         * ralloc.h: missing declarations from previous patch,
4497         seems that patch for ralloc.h was never applied, fixed
4498
4499 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4500            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
4501
4502         * pcode.c,
4503         * pcode.h,
4504         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
4505         indirect addressing. Marked FSR0 as deprecated
4506         * gen.c (pointerCode): commented out, not needed now
4507         (pic16_popGet2p): new MOVFF helper function
4508         (genGenPointerGet),
4509         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
4510         (shiftRLong): removed duplicate debugging info
4511
4512 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4513
4514         * src/ds390/gen.c (genNearPointerGet),
4515         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
4516         optimization with bits, but not bitfields.
4517         * src/ds390/ralloc.c (packRegisters),
4518         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
4519
4520 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
4521
4522         * src/SDCCcse.c (algebraicOpts): copy operands before modification
4523
4524 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4525
4526         * src/SDCCsymt.h,
4527         * src/SDCCicode.c (operandFromSymbol),
4528         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
4529         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
4530         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
4531         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
4532         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
4533         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
4534         bug #892038
4535         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
4536         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
4537         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
4538         * src/SDCCsymt.c (newSymbol),
4539         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4540         enumerator_list),
4541         * src/SDCCval.h,
4542         * src/SDCCval.c (newiList): fixed bug #885705
4543
4544 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4545
4546         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
4547         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
4548
4549 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4550
4551         * device/include/c8051f120.h,
4552         * device/include/c8051f300.h,
4553         * device/include/c8051f310.h: added/updated header files for Silicon
4554         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
4555         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
4556         in new section Submitting patches
4557
4558 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4559
4560         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
4561         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4562         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4563         genGenPointerSet),
4564         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
4565         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4566         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4567         genGenPointerSet),
4568         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
4569         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4570         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4571         genGenPointerSet),
4572         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
4573         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4574         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4575         genGenPointerSet): fixed bug #892400
4576         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
4577         to eliminate build warnings.
4578         * src/SDCCast.c (processParms),
4579         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
4580         fixed bug 751859
4581         * support/valdiag/valdiag.py: added GCC to the list of defines active
4582         when compiling with gcc
4583
4584 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4585
4586         * support/Util/SDCCerr.h,
4587         * support/Util/SDCCerr.c,
4588         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
4589         with an incomplete type (fixed bug #883734)
4590         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
4591
4592 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4593
4594         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
4595
4596 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4597
4598         * src/SDCCast.c (decorateType),
4599         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
4600         function pointer implementation
4601         * support/regression/tests/funptrs.c: added tests to verify both forms
4602         of function pointers work correctly. Added tests to verify parameters
4603         are passed in the correct order.
4604
4605 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
4606
4607         * device.c (regCompare): registers are sorted by ascending
4608         address and increasing size,
4609         * main.c (_pic16_finaliseOptions): removed the declaration
4610         of compiler macro MCU. Now a macro of the format pic18fxxxx
4611         will be defined from the command line
4612
4613 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4614             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
4615
4616         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
4617         PCOP_RLCF was overwritten!
4618         * gen.c (genSkip): commented out calls to pic16_emitcode,
4619         * (genCmpEQ): fixed "long" compares, only high word did get compared,
4620         * (genlshTwo),
4621         * (genRRC): added debugging info,
4622         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
4623         overwritten while shifting,
4624         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
4625         overwritten while shifting,
4626         * (AccLsh),
4627         * (AccRsh),
4628         * (shiftLLeftOrResult),
4629         * (shiftRLeftOrResult),
4630         * (shiftRLong),
4631         * (shiftLLong): Implemented with pic16_emitpcode
4632         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
4633         * (genLeftShift): Fixed bug, operand for shift by variable always
4634         was "and"ed with 0x0f,
4635         * (genLeftShiftLiteral),
4636         * (genrshTwo),
4637         * (genRightShiftLiteral): added debugging info,
4638         * (genrshFour): added comment,
4639         * (genRightShift): determined signedness from operand "left"
4640         instead of "result"
4641
4642 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4643
4644         * src/SDCCicode.c (geniCodeParms),
4645         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
4646         function pointers, fixed function pointer bugs #861242 and #861896
4647
4648 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4649
4650         * device/include/c8051f000.h,
4651         * device/include/c8051f120.h,
4652         * device/include/c8051f300.h: added header files for Silicon
4653         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
4654
4655 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
4656
4657         * src/SDCCast.c (processParams): added new type flow and restructured
4658         (gatherAutoInit): added new type flow
4659         (addCast): cosmetic changes
4660         (getLeftResultType): added new type flow for array indices, patch
4661         provided by Stas, see FR #877103
4662         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
4663         array index patch by Stas
4664         * src/SDCCast.h: added prototype getResultTypeFromType()
4665         * src/SDCCval.h,
4666         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
4667         * src/pic/glue.c (pic14emitStaticSeg),
4668         * src/pic16/glue.c (pic16emitStaticSeg),
4669         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
4670         for initialization of symbols
4671         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
4672         * support/Util/SDCCerr.h:
4673         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
4674         * .version: bumped version number to 2.3.8
4675         * device/include/Makefile.in (install),
4676         * doc/Makefile (install): changed to 'rm `find ...`' construct to
4677         avoid warnings
4678
4679 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
4680
4681         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
4682         Slade Rich fixed an optimization bug
4683         * src/pic/pcodepeep.c,
4684         * src/pic/pcoderegs.c
4685         * doc/Makefile (install): added test for directory
4686
4687 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4688
4689         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
4690         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
4691         * src/pic/ralloc.c (getRegPtr, getRegGpr),
4692         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
4693         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
4694         * as/mcs51/asexpr.c (term),
4695         * as/hc08/asexpr.c (term): fixed bug #887146
4696
4697 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4698
4699         * src/z80/gen.c (genMult): handle single byte result product
4700         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
4701         DUMMY_READ_VOLATILE (fixed bug #886367)
4702
4703 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
4704
4705         * support/regression/tests/libmullong.c: fixed logic, on little endian
4706         hosts we ended without a mullong_wrapper()
4707
4708 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4709
4710         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
4711         virus/worm forged address usage.
4712
4713 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
4714
4715         Fixed promotion, it should be done on AST level:
4716         * src/SDCCast.c (addCast): added promotion to int
4717         (decorateType): updated call to upCast()
4718         * src/SDCCicode.c (geniCodeLeftShift): removed call to
4719         usualUnaryConversions()
4720
4721 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
4722
4723         * support/regression/tests/literalop.c (mulWrapper): Added a
4724         wrapper to remove integer overflow warnings.
4725
4726         * support/regression/tests/float_trans.c: Made work on host.
4727
4728         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
4729         location of sz80.
4730
4731         * support/regression/generate-cases.py (main): Changed from inline
4732         to a main method.
4733
4734         * doc/Makefile (install): Changed to depth first to get rid of
4735         missing directory install warning.
4736
4737         * as/Makefile (install-doc): Made work on Mac.
4738
4739 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
4740
4741         * src/SDCCast.c: added an additional type flow in decorateType() of
4742         opposite direction, see feature request #860006; it's enabled at runtime
4743         by setting the environment variable SDCC_NEWTYPEFLOW
4744         * src/SDCCast.h: changed prototype of decorateType()
4745         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
4746         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
4747         'char' to 'int' can be omitted, if both operands are 'unsigned char';
4748         see feature request #877103
4749         * src/SDCCval.c: updated call of decorateType()
4750         (valBitwise): fixed bug #882876
4751         (valMinus): added promotion
4752         (valLogicAndOr): result is unsigned
4753         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
4754         * src/SDCCsymt.c (computeType),
4755         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
4756         must not cause an unsigned operation
4757         * src/pic/glue (pic14emitRegularMap),
4758         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
4759
4760 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
4761
4762         * src/pic/pcode.c (PCodeID): commented out left over debug code
4763
4764 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
4765
4766         * support/valdiag/tests/overflow.c: added shift tests
4767         * src/pic/device.c,
4768         * src/pic/gen.c,
4769         * src/pic/gen.h,
4770         * src/pic/glue.c,
4771         * src/pic/main.c,
4772         * src/pic/pcode.c,
4773         * src/pic/pcode.h,
4774         * src/pic/pcodepeep.c,
4775         * src/pic/pcoderegs.c,
4776         * src/pic/ralloc.c,
4777         * src/pic/ralloc.h: applied patch from Slade Rich;
4778         added support for multiple code pages and multiple RAM banks on the
4779         PIC 14 port. The ASM files now no longer simply assume all the
4780         code / RAM are in the same page / bank. This means the linker can
4781         safely allocate code/RAM of separate ASM files to different pages/banks.
4782         * doc/sdccman.lyx: added Slade's tips
4783         * src/mcs51/peeph.def: fixed bug #880768
4784
4785 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4786
4787         * src/hc08/ralloc.c (rematStr): fixed bug #879282
4788         * src/SDCCast.c (decorateType): fixed bug #880197
4789
4790 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
4791
4792         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
4793         getopt.h.
4794
4795         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
4796         strtof is not part of C89 and isn't included with Mac OS X.
4797
4798 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4799
4800         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
4801         shiftL2Left2Result): fixed bug #879326
4802         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
4803         (genMultOneByte): fixed bug in signed vs unsigned multiplication
4804         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
4805         address fetch for clr instruction
4806         * device/lib/hc08/_mulint.c: created optimized assembly version
4807         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
4808
4809 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
4810
4811         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
4812         proposed in FR #877103
4813
4814 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
4815
4816         * src/SDCCval.c (cheapestVal): added missing checks
4817         * src/SDCCicode.c (usualBinaryConversions): fixed condition
4818         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
4819
4820 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
4821
4822         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
4823         equal operands
4824
4825 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
4826
4827         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
4828         loaded with the linker search paths (-L arguments) and the libraries
4829         to be linked with the current source (-l arguments). Changes
4830         currently will affect only the pic16 port.
4831         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
4832         include path the port specific paths and port specific libraries,
4833         * gplink command now contains the $3 argument,
4834         * src/pic16/device.h,
4835         * src/pic16/device.c,: structure PIC_device is made public and
4836         renamed to PIC16_device, the same for variable Pics which is renamed
4837         to Pics16. Updated all references to them.
4838         * src/pic16/glue.c (pic16glue): corrected bug with code
4839         initialization which bypassed the variable initializations block.
4840
4841         * device/lib/pic16/Makefile.rules: removed --penable-stack from
4842         COMPILE_FLAGS and added the --nostdinc option
4843
4844 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4845
4846         * device/include/mc68hc908jb8.h: Register defs for another member
4847         of the hc08 family. Contributed by Bjorn Bringert - thanks!
4848
4849 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
4850
4851         Documenting changes from previous commits.
4852         * configure.in (version 1.56),
4853         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
4854         when generating output files to configure the pic16 library,
4855         but now I've commented it out, since gputils aren't installed in the
4856         SF compile farm, so library won't compile
4857
4858         * device/lib/Makefile.in (version 1.56): initially I've added in
4859         target 'all' the prerequestive 'model-pic16' so it compiled the
4860         pic16 library, but now I've commented it out for the same reasons
4861         above,
4862         * added targets 'model-pic16' and 'objects-pic16' to compile the
4863         library
4864         * added target 'port-specific-objects-pic16' to handle the
4865         generated libraries and copy them into the build/ directory
4866         * added target 'clean-intermediate-pic16' to clean intermediate
4867         files into pic16 directory
4868         * in target 'installdirs' added line to create directory pic16 in
4869         the installation path
4870
4871         * device/include/Makefile.in (version 1.11): in target 'install'
4872         added lines to copy all header files to installation path,
4873         * in target 'installdirs' added line create directory for pic16
4874         headers in the installation path
4875
4876 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
4877
4878         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
4879          a function call
4880
4881 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
4882
4883         * configure,
4884         * device/lib/configure.in,
4885         * device/lib/configure: fixed for autoconf 2.57
4886
4887 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4888
4889         * src/z80/main.c (_parseOptions): fixed the portmode= command line
4890         option so that it actually works. Made it specific to the z80, since
4891         the gbz80 doesn't have these kinds of I/O ports.
4892
4893 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4894
4895         * device/include/z180.h,
4896         * device/lib/_memcpy.c,
4897         * device/lib/_memmove.c,
4898         * device/lib/_mulint.c,
4899         * device/lib/ser_ir.c,
4900         * device/lib/ser_ir_cts_rts.c,
4901         * device/lib/_strcmp.c,
4902         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
4903         * src/z80/main.c (_process_pragma): add support for pragmas bank and
4904         portmode; added deprecation warning for bank= and protmode= forms.
4905         Also, guard against buffer overflow.
4906         * src/z80/gen.c (aopGet): generate better code for sfr banked read
4907
4908 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4909
4910         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
4911         changed interrupt vector table generation to only emit declared vectors.
4912         * device/include/Makefile.in: added missing backslash
4913         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
4914
4915 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
4916
4917         Mainly changes to support compilation of the device libraries
4918         * src/pic16/device.c: stack is allocated via symbol and not
4919         via literal number. The symbol is placed in the corresponding
4920         position of the data ram
4921         * (pic16_dump_section): relocatable and absolute uninitialized
4922         data are now emitted in sorted order to reduce section naming,
4923         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
4924         weren't marked as being in the access bank,
4925
4926 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
4927
4928         Added portion of GNU PIC Library under the directory
4929         device/include/pic16 and device/lib/pic16. These files
4930         contain the declarations of SFRs for the PIC18Fxx2 devices.
4931         The directory is initialized via configure from toplevel.
4932
4933 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
4934
4935         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
4936         the spilllocations to be compared correctly
4937
4938 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
4939
4940         * src/SDCCast.c (decorateType): fixed bug introduced today
4941
4942 2004-01-12  Borut Razem <borut.razem AT siol.net>
4943
4944         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
4945         doc/sdccman.lyx: upper case pragmas are deprecated
4946
4947 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
4948
4949         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
4950         in simpler and even better code
4951
4952 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
4953
4954         * src/SDCCicode.c (operandOperation): fixed bug #874819
4955         * src/SDCCast.c (decorateType): fixed
4956         char foo (unsigned long ul) { return ul > 0; }
4957
4958 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4959
4960         * doc/sdccman.lyx: Moved and added some sections, small changes
4961         all over. Telling LaTeX to be less strict with word spacing
4962         to better keep the right margin. Changed some notes about
4963         maintainance of the ports in section 3.2.1 - is it OK like this?
4964
4965 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
4966
4967         SDCC source changes:
4968         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
4969         convilong): modified to inform the pic16 port that builtin functions
4970         are external
4971
4972         PIC16 PORT specific changes:
4973         * src/pic16/device.c pic16_dump_equates() added,
4974         processor registers declared internally by the port are emitted in
4975         the translation as equates,
4976         * src/pic16/gen.c: inline code is passed unprocessed to the
4977         translation,
4978         * (pic16_popGetLit2): fnuction modified to take second operand as
4979         pCodeOp pointer and not as literal,
4980         * (popRegFromIdx): prefixed with pic16_,
4981         * (pic16_popCombine2): modified to receive already allocated pCode
4982         operands,
4983         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
4984         * (genFunction): initializes local stack frame and pushes on stack
4985         all the registers used by this function,
4986         * (genEndFunction): restores all registers from stack and restores
4987         stack frame,
4988         * src/pic16/glue.c (pic16emitRegularMap): various changes and
4989         improvements,
4990         * (pic16glue): changed the program startup sequence,
4991         * added new dbName code 'A' for functions placed in absolute section
4992         * src/pic16/main.c: added function attribute _naked,
4993         * added pragma 'code' to place a fnuction at an absolute address,
4994         * added command line arguments --debug-ralloc and --pcode-verbose,
4995         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
4996         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
4997         * (pic16_newpCodeOpLit2): modified to take the second operand as
4998         pCodeOp pointer,
4999         * (pic16_printpBlock): modified to emit each function in a separate
5000         section,
5001         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
5002         UPPER for immediate operands,
5003         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
5004         instruction,
5005         * src/pic16/peeph.def: all peepholes with movff are commented out,
5006         because there is a problem in the pcode peep optimizer,
5007         * src/pic16/ralloc.c: the register allocator can now reuse local
5008         function symbols for another function. This saves register usage.
5009         * src/pic16/ralloc.h: added flag isLocal in structure regs,
5010
5011         Added file src/pic16/NOTES with information about program writing on
5012         the current port version.
5013
5014 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5015
5016         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
5017         and peephole 252 (array access)
5018
5019 2004-01-09  Borut Razem <borut.razem AT siol.net>
5020
5021         * src/SDCCmain.c : fixed #872250: -l command line defined library
5022           files are scanned before standard library files
5023
5024 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5025
5026         * src/SDCCast.c (decorateType): fixed bug #874046
5027
5028 2004-01-09  Borut Razem <borut.razem AT siol.net>
5029
5030         * support/scripts/sdcc.nsi: remove previous installation
5031
5032 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5033
5034         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
5035         bytes for last interrupt vector (mcs51)
5036         * sdcc.spec: fixed typo
5037
5038 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5039
5040         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
5041         gen51Code): more efficient parameter receive for --model-large
5042         ("bug" #845294)
5043
5044 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5045
5046         * src/ds390/main.c,
5047         * src/z80/main.c: added missed needLinkerScript flags (more than
5048         one port structure defined in these file)
5049         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
5050         bug #795325
5051
5052 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
5053
5054         * src/SDCCmain.c: removed various references to DEFAULT_PORT
5055         * src/port.h: added flag needLinkerScript in port->linker
5056         structure to inform whether to create a .lnk file or not,
5057         * src/avr/main.c,
5058         * src/ds390/main.c,
5059         * src/hc08/main.c,
5060         * src/mcs51/main.c,
5061         * src/pic/main.c,
5062         * src/pic16/main.c,
5063         * src/xa51/main.c,
5064         * src/z80/main.c: changed appropriately to configure
5065         needLinkerScript flag
5066         * src/pic/gen.c,
5067         * src/pic16/gen.c (genAddrOf): fixed bug #863624
5068         * src/pic/glue.c: added variable udata_section_name to
5069         override default uninitialized data segment definition for
5070         devices only with SHAREBANK memory (reported from Erik Epetrich)
5071         * (pic14emitOverlay): modified to emit a commented overlay segment
5072         directive when no overlay data exist
5073         * (picglue): modified to emit uninitialized data segment
5074         according to udata_section_name
5075         * src/pic/main.c (_pic14_parseOptions): added command line
5076         options --udata-section-name=[name] to override default
5077         udata definition name
5078         * modified _linkCmd and _asmCmd to include compiler passed
5079         arguments via -W option
5080         * src/pic16/main.c: added $l in _asmCmd, changed extension for
5081         object file from '.rel' to '.o' in port->linker structure,
5082         changed size of fptr from 2 to 3 in port structure
5083
5084 2004-01-07  Borut Razem <borut.razem AT siol.net>
5085
5086         * support/scripts/sdcc.nsi: update PATH
5087         * support/scripts/sdcc.ico: craeted
5088
5089 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
5090
5091         * device/include/Makefile.in: fix install
5092         * doc/Makefile: fix install
5093
5094 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5095
5096         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
5097         in bug #860505
5098         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
5099         how the function variable allocation summary is displayed; also
5100         include information about variables allocated to the overlay
5101         segment
5102
5103 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5104
5105         * as/mcs51/lkmain.c: Help about -Y option
5106         * as/mcs51/lkarea.c: Fixed gcc warnings
5107
5108 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5109
5110         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
5111         fixed warning
5112         * support/valdiag/tests/overflow.c: added
5113         * src/SDCCast.c (decorateType),
5114         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
5115         LEFT_OP (left shift)
5116
5117 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5118
5119         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
5120         (default behaviour).
5121
5122 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5123
5124         A python script to validate compiler diagnostic messages. It can be
5125         used to verify that sdcc complains about bad c source code and
5126         gives a good location of the error.
5127         * support/valdiag/Makefile,
5128         * support/valdiag/valdiag.py,
5129         * support/valdiag/tests/*
5130
5131 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5132
5133         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
5134         * src/SDCCsymt.c (newEnumType),
5135         * src/SDCCsymt.h
5136         * support/Util/SDCCerr.c,
5137         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
5138         enum related bugs.
5139         * support/regression/tests/enum.c: added test for enum values that
5140         require at least 2 bytes of storage.
5141
5142 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5143
5144         * src/common.h: added ifndef/define/endif macros
5145         around the header file.
5146         Bug reported from Jesus Calvino-Fraga
5147
5148 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5149
5150         * sdcc.spec: updated
5151         * device/include/Makefile.in: don't install CVS directories
5152         * device/lib/Makefile.in: added removal of CVS directories after install
5153         * doc/Makefile: fixed install, added local_icons
5154         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
5155         * src/mcs51/gen.c (genRightShift): fixed bug #870788
5156         * src/ds390/gen.c (genRightShift): fixed bug #870788
5157         * src/SDCCast.c (decorateType): fixed bug #870781
5158
5159 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5160
5161         PIC16 port related changes:
5162         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
5163         added variable stackPos,
5164
5165         * gen.c: genCall, assignResultValue: added support for
5166         pushing/retrieving function parameters to/from stack,
5167         genFunction,genEndFunction: setup stack frame for the
5168         generated function,
5169         genAddrOf: will be changed according to bug 863624
5170
5171         * added files genutils.c and genutils.h which contain gen*
5172         debugged and optimised functions extracted from gen.c
5173
5174         * glue.c: added variable 'externs' which holds extern symbols,
5175         pic16emitRegularMap: is modified to properly handle relocatable
5176          symbols under the new scheme,
5177         pic16createInterruptVect: is modified
5178         pic16printPublics: is modified to emit 'global' assembler directives,
5179         added pic16_printExterns to print extern symbols,
5180         pic16glue: initializes stack/frame pointer in the beginning of
5181         the assembly output. Temporary hack, will be corrected later,
5182         because gplink yet does not support stack and SDCC does not
5183         yet support a type of crt0.o object to create the final binary.
5184
5185         * Removed many lines that contain 8051 legacy code.
5186         * The code is finally placed under a 'code' directive.
5187         * Added port specific options.
5188
5189         * _process_pragma: simplified since now we do not need *special*
5190         include file to define SFR registers. But a separate header
5191         will be needed. This will be developed later.
5192         * _pic16_parseOptions: added, parses port specific options:
5193         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
5194         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
5195         --preplace-udata-with=
5196
5197         * _pic16_setDefaultOptions: modified to initialize section names,
5198         but hack is temporarly out of order since it needs improvement.
5199         * _pic16_genAssemblerPreamble: configuration words are emitted by
5200         their address instead of their name. This part is incomplete and
5201         supports only the 18Fxx2 devices. Other devices will emit an error
5202         during assembly since they do not contain the same set of config
5203         registers
5204         * _pic16_genIVT: is modified,
5205
5206         * pcode.c: added definitions for some hardware registers that are needed
5207         for stack support
5208         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
5209         All PCI entries are updated. Now LFSR is supported.
5210         * Removed pic16_pciTRIS is mentioned by mdubuc in source
5211         * added pic16_newpCodeOpLit2 to support instructions with
5212         two literal arguments
5213         * pic16_pCode2str: corrected code that emits assembler instructions
5214         with two literal operands and those that have an access bit modifier
5215         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
5216         this fixes a bug which caused some labels to be lost, when an
5217         assembler directive was added, i.e. banksel,
5218         * pic16_FixRegisterBanking: improved logic that causes the insertion
5219         of bank switching,
5220         * InlineFunction: functions that are called once, are not any more
5221         inlined. This can be a port option in the future,
5222
5223         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
5224
5225         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
5226         hold the corresponding uninitialized symbols,
5227         * pic16_allocProcessorRegister: registers have explicit marked the
5228         accessBank field,
5229         * pic16_allocInternalRegister: registers are explicit marked as
5230         not used,
5231         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
5232         processing list, so bit registers were lost,
5233         *
5234
5235         * ralloc.h: added field 'accessBank' and original symbol operand
5236         in register definition,
5237         * removed the field isMapped from register definition,
5238
5239         ** Several functions have been removed from various sources:
5240         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
5241         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
5242         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
5243         pic16_assignRelocatableRegisters
5244
5245         ** others have been introduced:
5246         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
5247         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
5248
5249 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
5250
5251         * support/scripts/inc2h.pl: changed definition of BIT_AT
5252         to emit 'sbit at' instead of 'bit at'. This was a request.
5253
5254         PIC16 port related preliminary changes:
5255         * gen.c: prefixed function popRegFromString with
5256         pic16_ and all references to it corrected
5257         * pcode.c: all pic16_pc_* hardware registers prefixed
5258         with underscore (_),
5259         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
5260         * ralloc.c: newReg(): when register is REG_SFR then
5261         set address to rIdx,
5262         pic16_allocProcessorRegister(): marks register wasUsed=0
5263         pic16_writeUsedRegs(): added a call to assign processor
5264         registers via pic16_assignFixedRegisters
5265
5266 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5267
5268         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
5269         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
5270         variables in unused register banks.  Also the SSEG is placed
5271         wherever there is enough space for it, and IDATA can be anywhere
5272         in internal RAM.  For now compile using -Wl-Y[stack_size].
5273         The mem file is different for this option as well, since it
5274         makes no sense of talking about DSEG lenght.
5275
5276 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
5277
5278         * src/SDCClrange.c: fixed bug 869095 that caused segfault
5279         in certain cases, e.g. when ROM assignment, patch provided
5280         from Albert den Haan.
5281
5282 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
5283
5284         Many signedness and type propagation fixes:
5285         * src/SDCCicode.c: made geniCodeCast() static
5286         replaced SPEC_ by IS_ (cosmetic)
5287         (operandOperation): fixed div and mod operation
5288         (usualBinaryConversions): added support for promotion of char
5289         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
5290         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
5291         (geniCodeAdd): an array index will stay unsigned, even if promoted
5292         from char to int
5293         (geniCodeArray): ditto
5294         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
5295         * src/SDCCsymt.c (computeType): added more support for char;
5296         promotion of char is selectable by promoteCharToInt, fixed signedness
5297         for all cases
5298         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5299         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5300         * src/SDCCval (val*): replaced signedness calculation by
5301         computeType()
5302         rearranged if-branches (cosmetic)
5303         (valShift): added warning W_SHIFT_CHANGED
5304         (valCompare): fixed problem with different types
5305         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
5306         * support/regression/tests/literalop.c: added many cases
5307         * support/regression/tests/ast_constant_folding.c: changed finally to
5308         'unsigned int'
5309         * .version: new year, new version: 2.3.7
5310         * src/SDCCmain.c (main): applied patch #866468
5311         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
5312         provided by Scott Bronson
5313         * doc/sdccman.lyx: updated documentation for sdcdb
5314         updated and added chapter tips
5315
5316 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5317
5318         * src/SDCCsymt.h: missing from yesterday's commits
5319
5320 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5321
5322         * src/SDCC.y (struct_or_union_specifier),
5323         * support/Util/SDCCerr.c,
5324         * support/Util/SDCCerr.h: verify that struct & union tags are used
5325         as declared.
5326
5327 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5328
5329         * src/SDCCglobl.h: missing from yesterday's commits
5330
5331 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5332
5333         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
5334         sft_attributes, struct_declaration, parameter_declaration,
5335         type_name, start_block, declaration_list),
5336         * src/SDCC.lex (check_type): support redefinition of typedef names
5337
5338 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5339
5340         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
5341         aligned xdata arrays. Erik helped me with the if clause.
5342
5343 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5344
5345         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
5346         warning
5347
5348 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5349
5350         * src/SDCCast.h,
5351         * src/SDCCast.c (newAst_),
5352         * src/SDCCicode.h,
5353         * src/SDCCicode.c (ast2iCode, newiCode),
5354         * src/SDCCglobl.h,
5355         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
5356         expr, statement, expression_statement, selection_statement,
5357         iteration_statement, expr_opt, jump_statement): foundation for tracking
5358         sequence points
5359         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
5360         point code too)
5361
5362 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5363
5364         * support/Util/SDCCerr.c,
5365         * src/SDCCast.h,
5366         * src/SDCCast.c (createCase, createDefault, decorateType),
5367         * src/SDCClabel.c (labelUnreach),
5368         * src/SDCC.y (labeled_statement, jump_statement): More improvements
5369         to error messages.
5370         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
5371         (with thanks to Stas Sergeev)
5372         * device/include/time.h,
5373         * device/lib/time.c (CheckTime): suppress unreachable code warning
5374
5375 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5376
5377         * src/SDCCast.c (createIvalCharPtr),
5378         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
5379         bug #753752)
5380         * support/regression/tests/nullstring.c: tests for these two bugs
5381
5382 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5383
5384         * support/Util/SDCCerr.h,
5385         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
5386         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
5387         about storage class and 'at' used inside struct or union
5388         * src/SDCCBBlock.c (iCodeFromeBBlock),
5389         * src/SDCCcse.c (ifxOptimize),
5390         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
5391         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
5392         printIval, emitStaticSeg, emitOverlay),
5393         * src/SDCClabel.c (deleteIfx),
5394         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
5395         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
5396         gatherAutoInit, processParms),
5397         * support/Util/SDCCerr.h,
5398         * support/Util/SDCCerr.c (werrorfl): Support for better error location
5399         reporting for post-parse errors.
5400
5401 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5402
5403         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
5404         implicit casts via union; they don't work on big endian systems
5405         (possible fix for bug #861138)
5406
5407 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5408
5409         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
5410         * src/mcs51/main.c: fixed the fix for bug #737001
5411
5412 2003-12-15  Borut Razem <borut.razem AT siol.net>
5413
5414         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
5415
5416 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5417
5418         * support/makebin/makebin.c: put output in binary mode
5419
5420 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5421
5422         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
5423         xdata and data memory on startup. Set the environment variable
5424         SDCC_NOGENRAMCLEAR to disable this.
5425         * src/mcs51/peephole.def,
5426         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
5427         (allows non-interrupt and interrupt code to safely compete for a resource
5428         without the non-interrupt code having to disable interrupts)
5429
5430 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5431
5432         * src/SDCCicode.c (geniCodeAdd),
5433         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
5434         with valFromType if type might be a pointer and host is big endian).
5435         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
5436         types, not just integer types.
5437         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
5438         multiply defined with mismatching "at" address.
5439
5440 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5441
5442         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
5443         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
5444         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
5445         with embedded nulls (fixed bug #753752)
5446
5447 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5448
5449         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
5450         Apparently this did not see much testing (endless loop)
5451
5452 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5453
5454         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
5455
5456 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5457
5458         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
5459         gracefully handle NULL memmap pointers
5460
5461 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5462
5463         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
5464         instead of deleting the iCode when an operand is volatile
5465         * src/z80/gen.c (genDummyRead),
5466         * src/mcs51/gen.c (genDummyRead),
5467         * src/ds390/gen.c (genDummyRead),
5468         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
5469         not just IC_RIGHT
5470         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
5471         * src/SDCC.y: fixed bug #850420
5472
5473 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5474
5475         Applied z80 i/o port patch from Peter Townson and fixed some operators
5476         to better handle operands in A register.
5477         * device/include/z180.h
5478         * src/SDCC.y
5479         * src/SDCCglue.c
5480         * src/z80/gen.c
5481         * src/z80/gen.h
5482         * src/z80/main.c
5483         * src/z80/peeph-z80.def
5484         * src/z80/peeph.def
5485         * src/z80/z80.h
5486
5487 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5488
5489         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
5490
5491 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5492
5493         * device/lib/hc08/_mullong.c: Removed extra #endif
5494
5495 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5496
5497         * sim/ucsim/hc08.src/inst.cc,
5498         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
5499         carries from x to h
5500         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
5501         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
5502         * device/include/stdarg.h: fixed varargs for hc08
5503         * device/lib/Makefile.in,
5504         * device/lib/hc08/Makefile,
5505         * device/lib/hc08/_mulint.c,
5506         * device/lib/hc08/_mullong.c: fixed some endian problems
5507
5508 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5509
5510         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
5511         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
5512         * device/lib/_gptrget.c,
5513         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
5514
5515 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5516
5517         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
5518         * src/SDCCast.c (astErrors): fixed bug #846007
5519         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
5520
5521 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5522
5523         * src/SDCCast.c (decorateType): disabled a transformation I added in
5524         revision 1.188 (access to fields of a structure at an absolute address);
5525         it breaks with bitfields, extern declarations, and gcse analysis.
5526         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
5527         could be assigned through a pointer, so don't complain.
5528         * src/SDCCast.c (astErrors),
5529         * src/SDCCast.h,
5530         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
5531
5532 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
5533
5534         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
5535         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
5536         output of __config directives, since gpasm now supports them
5537         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
5538         pre-processor macro, i.e. -DMCU=p18f452
5539         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
5540         and modified to handle 'cast' icode similarly to '=' icode
5541         * src/pic16/device.h (typedef struct PIC_device): added field
5542         'extMIface' to indicate that chip has external memory interface
5543         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
5544         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
5545         18F8720
5546
5547 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5548
5549         * src/SDCC.y (pointer): fixed bug #846006
5550         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
5551         * src/SDCCast.c (decorateType): fixed bug #846009
5552         * src/ds390/peeph.def,
5553         * src/ds390/gen.c (genAnd, genOr),
5554         * src/mcs51/peeph.def,
5555         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
5556
5557 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5558
5559         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
5560         * src/SDCCdflow.c
5561         * src/SDCCcse.c
5562         * src/SDCCcse.h
5563         * src/SDCCBBlock.h
5564         * src/SDCCBBlock.c
5565
5566 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
5567
5568         fixed bug #845089
5569         * src/SDCCbitv.h,
5570         * src/SDCCbitv.c: added function to free a bitvector
5571         * src/SDCClrange.h,
5572         * src/SDCClrange.c: added function to recompute the liveranges
5573         * src/avr/ralloc.c,
5574         * src/ds390/ralloc.c,
5575         * src/hc08/ralloc.c,
5576         * src/mcs51/ralloc.c,
5577         * src/pic/ralloc.c,
5578         * src/pic16/ralloc.c,
5579         * src/xa51/ralloc.c,
5580         * src/z80/ralloc.c: recompute the liveranges after register packing
5581
5582 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
5583
5584         * src/SDCCloop.c (newInduction): fixed bug #845630
5585
5586 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5587
5588         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
5589         inadvertantly left behind from my 2003-11-12 change
5590
5591 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5592
5593         Updated headers I neglected to commit yesterday.
5594         * src/SDCClrange.h,
5595         * src/SDCCicode.h
5596
5597 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5598
5599         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
5600         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
5601         * src/SDCCopt.c (eBBlockFromiCode),
5602         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
5603         the creation of the key hash table from the sequencing so it can be used
5604         earlier (for some GCSE bug fixes still pending)
5605
5606 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5607
5608         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
5609         * support/regression/tests/addsub.c: testing genPlus shortcut
5610
5611 2003-11-15  Borut Razem <borut.razem AT siol.net>
5612
5613         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
5614
5615 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5616
5617         * src/SDCCcse.c (cseBBlock): fixed bug #527779
5618         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
5619         ordering is immaterial.
5620         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
5621
5622 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5623
5624         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
5625         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
5626         (SIGSEV) of bug #840381
5627         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
5628         unlink new file before rename if new and old filenames are the same)
5629
5630 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5631
5632         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
5633         uninitialized variables) for the mcs51. Set environment variable
5634         SDCC_GENRAMCLEAR to test.
5635         xdata initialization slightly shorter
5636
5637 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5638
5639         * src/SDCCsymt.h,
5640         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
5641         #838241 & 780691 (basicly the same bug)
5642         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
5643         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
5644
5645 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
5646
5647         * src/SDCCmain.c (linkEdit): "fix" #834252
5648
5649 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5650
5651         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
5652         * src/SDCCast.h,
5653         * src/SDCC.y: fixed bug #819403
5654
5655 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5656
5657         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
5658         the reentrant attribute.
5659         * src/hc08/gen.c (genPackBits): added missing stack readjustment
5660         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
5661         simulation
5662         * src/SDCCast.c (decorateType): fixed bug with storage class not being
5663         updated during pointer dereference; f.e. ~(((char *)1)*) was being
5664         erroneously reduced to a literal.
5665         * src/hc08/ralloc.c (packRegisters, rematStr),
5666         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
5667         some cases
5668
5669 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5670
5671         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
5672         * doc/sdccman.lyx: changed from 'article' to 'book'
5673         * doc/Makefile: readded test_suite_spec and cdbfileformat
5674
5675 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
5676
5677         * device/include/stdlib.h: include malloc.h to comply with ANSI
5678         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
5679
5680 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5681
5682         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
5683         * doc/clean.mk: also remove *.out files
5684         * doc/sdccman.lyx: some additions, larger top/bottom margins
5685
5686 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5687
5688         * src/SDCC.y: fixed bug #837365
5689         * support/regression/tests/bitopcse.c
5690         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
5691         a symbol (might be valop instead)
5692         * device/lib/Makefile.in: added errno.c to HC08SOURCES
5693         * device/lib/clean.mk: added hc08 to the cleaning list
5694
5695 2003-11-04  Borut Razem <borut.razem AT siol.net>
5696
5697         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
5698           made 2003-11-04
5699         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
5700           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
5701           malloc is declared in standard stdlib.h
5702
5703 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5704
5705         * device/lib/hc08/Makefile: need to clean .rel not .o files
5706         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
5707
5708 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5709
5710         * src/port.h,
5711         * src/hc08/main.c,
5712         * src/mcs51/main.c,
5713         * src/ds390/main.c,
5714         * src/z80/main.c,
5715         * src/avr/main.c,
5716         * src/pic/main.c,
5717         * src/pic16/main.c,
5718         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
5719         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
5720         tests (which uses the port's oclsExpense function)
5721         * src/SDCC.y,
5722         * src/SDCCast.c,
5723         * src/SDCCicode.c,
5724         * src/hc08/gen.c,
5725         * src/ds390/gen.c,
5726         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
5727
5728 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5729
5730         * src/SDCCcse.c (ifxOptimize),
5731         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
5732         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
5733         deleting the IFX iCode.
5734         * src/hc08/ralloc.c: reduced unneeded slocs
5735         * src/hc08/gen.c: fixed bug in asmopToBoolean
5736
5737 2003-11-04  Borut Razem <borut.razem AT siol.net>
5738
5739         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
5740           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
5741           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
5742           transferred to configure
5743
5744 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
5745
5746         Use headers defined in the C[++] standards:
5747         * sim/ucsim/gui.src/serio.src/fileio.cc
5748         * sim/ucsim/gui.src/serio.src/frontend.cc
5749         * sim/ucsim/gui.src/serio.src/main.cc
5750         * sim/ucsim/gui.src/serio.src/posix_signal.cc
5751         * support/Util/NewAlloc.c
5752         * as/hc08/lklibr.c
5753         * as/mcs51/lklibr.c
5754         * as/z80/aslist.c
5755         * as/z80/assym.c
5756
5757 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5758
5759         * Added MSVC projects for hc08 assembler and linker:
5760         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
5761         /as/hc08/link_hc08.dsp
5762
5763 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
5764
5765         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
5766
5767 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
5768
5769         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
5770
5771 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5772
5773         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
5774
5775 2003-10-31  Borut Razem <borut.razem AT siol.net>
5776
5777         * support/cpp2/cpplib.h,
5778           support/cpp2/cpplib.c,
5779           support/cpp2/cpplex.c,
5780           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
5781           to switch _asm block preprocessing on / off. Default is
5782           #pragma preproc_asm +
5783
5784 2003-10-31  Borut Razem <borut.razem AT siol.net>
5785
5786         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
5787           when outputting comment blocks (when executed with -C option) and
5788           _asm (SDCPP specific) blocks
5789
5790 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5791
5792         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
5793
5794 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
5795
5796         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
5797
5798 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
5799
5800         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
5801         * src/SDCCast.c (decorateType): fixed bug #832664
5802
5803 2003-10-31  Borut Razem <borut.razem AT siol.net>
5804
5805         * support\cpp2\cpplex.c: fixed for SDCPP:
5806           comments(when executed with -C option) and _asm blocks
5807           were included even if they where in skipped #if block.
5808           Applied solution from GCC cpp 3.3.2
5809
5810 2003-10-31  Borut Razem <borut.razem AT siol.net>
5811
5812         * src/SDCC.lex: sdcc now understands both formats:
5813           '# <line_number> <file_name>' and
5814           '#line <line_number> <file_name>'
5815         * support/cpp2/cppmain.c: sdcpp now generates the standard
5816           '# <line_number> <file_name>' instead of former
5817           '#line <line_number> <file_name>'
5818
5819 2003-10-30  Borut Razem <borut.razem AT siol.net>
5820
5821         * support/cpp2/cpphash.h,
5822         * support/cpp2/cpplib.h
5823         * support/cpp2/cpplex.c,
5824         * support/cpp2/cppmain.c,
5825         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
5826
5827 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5828
5829         Fixed a number of problems revealed by bug #827883.
5830         * src/SDCCloop.c (loopInvariants): Spill location of the
5831         result operand should be recomputed if extracted from
5832         a loop. Also, don't extract assignments of an iTemp
5833         from a literal.
5834         * src/SDCCast.c (isConformingBody): loop reversal should
5835         not occur if the control variable is involved with a
5836         relational operator.
5837
5838 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
5839
5840         * .version: bumped to 2.3.6 to reflect the big improvements
5841         made by Erik and Klaus. Thanks!
5842
5843 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
5844
5845         Replaced the livrange code.
5846         * src/SDCClrange.c: added new LR code
5847         * src/SDCCloop.c,
5848         * src/SDCCBBlock.h: removed remainig parts from old LR code
5849         * src/ds390/ralloc.c,
5850         * src/ds390/gen.c: minor fixes to make it work with new code
5851
5852 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5853
5854         * as/hc08/asm.h,
5855         * as/hc08/lkrloc.c,
5856         * src/hc08/gen.c,
5857         * src/hc08/ralloc.c: Fix various warnings related to the hc08
5858         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
5859         (tweaked fix for bug #818696)
5860
5861 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5862
5863         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
5864
5865 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5866
5867         * src/SDCCmain.c,
5868         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
5869         * src/mcs51/gen.c (gencjneshort),
5870         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
5871         more efficient (per Scott Bronson's suggestion)
5872
5873 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5874
5875         Extended the semantics of the critical keyword to include
5876         individual statements. See RFE #827755 and #799831
5877         * src/SDCC.y
5878         * src/SDCCicode.c
5879         * src/SDCCopt.c
5880         * src/SDCCast.c
5881         * support/Util/SDCCerr.c
5882         * support/Util/SDCCerr.h
5883         * src/mcs51/gen.c
5884         * src/ds390/gen.c
5885         * src/hc08/gen.c
5886
5887 2003-10-19  Borut Razem <borut.razem AT siol.net>
5888
5889         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
5890
5891 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5892
5893         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
5894         Fixed bug #818696
5895         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
5896         and predecrement operand is displayed
5897
5898 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
5899
5900         * src/SDCCval.c (valMinus): fixed bug #826041
5901
5902 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5903
5904         Some hc08 related updates that I missed earlier
5905         * sim/ucsim/stypes.h
5906         * support/regression/ports/hc08/spec.mk
5907
5908 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5909
5910         New target "hc08" for the Motorola 68hc08 family of micros
5911
5912         * configure
5913         * configure.in
5914         * Makefile
5915         * src/hc08/*
5916         * src/SDCCmain.c
5917         * src/port.h
5918         * sim/ucsim/hc08.src/*
5919         * sim/ucsim/configure.in
5920         * src/ucsim/configure
5921         * sim/ucsim/packages_in.mk
5922         * as/hc08/*
5923         * as/Makefile
5924         * device/include/mc68hc908qy.h
5925         * device/lib/hc08/*
5926         * device/lib/Makefile.in
5927         * support/regression/ports/hc08/*
5928         * support/regression/Makefile
5929
5930 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5931
5932         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
5933         regression test
5934         * src/ds390/gen.c (genCast): fixed bug #821957
5935
5936 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
5937
5938         * device/lib/logf.c: "fixed" overlay bug
5939         * support/regression/ports/host/spec.mk: added m library
5940         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
5941         * support/regression/tests/float_trans: added (for Eric)
5942
5943 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
5944
5945         * src/mcs51/gen.c (genCpl): fixed bug
5946         http://sf.net/mailarchive/message.php?msg_id=6263915
5947
5948 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
5949
5950         * src/SDCCast.c (decorateType): added extended constant folding
5951         * src/SDCCsymt.c (computeType): cleanup
5952         * src/SDCCval.c (valShift): minor optimization
5953         * support/regression/tests/ast_constant_folding.c: added
5954
5955 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5956
5957         * src/SDCCmain.c: removed some unintended changes
5958
5959 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5960
5961         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
5962         * src/z80/gen.c: fixed part of bug #817589
5963         * src/SDCCsymt.c (checkFunction): fixed bug #817895
5964
5965 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
5966
5967         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
5968         * src/SDCCcflow.c
5969         * src/SDCCcse.c
5970         * src/SDCCdflow.c
5971         * src/SDCClabel.c
5972         * src/SDCClrange.c
5973         * src/SDCCmem.c
5974         * src/SDCCopt.c
5975         * src/SDCCpeeph.c
5976         * src/SDCCset.c
5977         * src/avr/ralloc.c
5978         * src/ds390/ralloc.c
5979         * src/izt/ralloc.c
5980         * src/mcs51/ralloc.c
5981         * src/pic/ralloc.c
5982         * src/pic16/ralloc.c
5983         * src/xa51/ralloc.c
5984         * src/z80/ralloc.c
5985         * src/z80/gen.c: removed unused label "release:"
5986
5987 2003-10-06  Borut Razem <borut.razem AT siol.net>
5988
5989         * src/SDCC.lex: removed definition of unused variables
5990           save_optimize and save_options
5991
5992 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
5993
5994         * clean.mk: removed '=' in "-maxdepth=1"
5995         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
5996         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
5997
5998 2003-10-06  Borut Razem <borut.razem AT siol.net>
5999
6000         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
6001           my_unput() replaced by unput()
6002
6003 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
6004
6005         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
6006         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
6007         type-punned pointer will break strict-aliasing rules"
6008         Old LR behaviour is again default; Klaus' LR can be choosen by
6009         defining the environment variable LRKLAUS
6010         * src/SDCCBBlock.h
6011         * src/SDCCloop.c
6012         * src/SDCClrange.c
6013         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
6014         * clean.mk: fixed removal of files in bin/CVS/
6015         * device/lib/clean.mk: fixed removal of directories small and large
6016         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
6017         * src/SDCCicode.c,
6018         * src/SDCCval.c: removed superflous test for pedantic
6019
6020 2003-10-05  Borut Razem <borut.razem AT siol.net>
6021
6022         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
6023           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
6024           message "unmatched #pragma SAVE and #pragma RESTORE"
6025
6026 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6027
6028         * doc/sdccman.lyx: various additions and updates (interrupts, inline
6029           assembly, critical functions, atomic, nojtbound)
6030
6031 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
6032
6033         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
6034         * src/SDCCBBlock.h
6035         * src/SDCCloop.c
6036         * src/SDCCloop.h
6037         * src/SDCClrange.c
6038
6039 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6040
6041         * src/z80/gen.h,
6042         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6043         * src/mcs51/gen.h
6044         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6045         * src/ds390/gen.h
6046         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6047         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
6048         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
6049
6050 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6051
6052         * src/z80/gen.c (genRet): fixed bug #524753
6053         * src/z80/gen.c (genCast): fixed internal error on cast from
6054         pointer to long
6055         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
6056         fix for bug #477835 to the z80
6057         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
6058         for tracking iCodes in the peephole optimizer for z80
6059
6060 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6061
6062         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
6063         the other part of bug #814548
6064         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
6065
6066 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
6067
6068         * src/SDCCcse.c: fixed part of bug #814548
6069
6070 2003-09-28  Borut Razem <borut.razem AT siol.net>
6071
6072         * src/asm.c: rewrite of printILine() to use temporary file instead
6073           a pipe
6074         * src/xa51/main.c: commented out declaration of int rewinds
6075
6076 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6077
6078         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
6079
6080 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6081
6082         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
6083         * src/asm.c (printILine): Fixed bug #811015
6084
6085 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6086
6087         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
6088         freeing.
6089
6090 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6091
6092         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
6093         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
6094         to correctly handle general case of AOP_PAIRPTR
6095         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
6096
6097 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6098
6099         * src/mcs51/ralloc.c (fillGaps),
6100         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
6101         register positioning bug)
6102
6103 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
6104
6105         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
6106
6107 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6108
6109         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
6110         genCodePointerGet, genGenPointerGet, genFarPointerSet,
6111         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
6112         (ralloc doesn't intentionally do this now, but perhaps later)
6113         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
6114         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
6115         register positioning bugs (Fixed bug #762602 and #795325)
6116         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
6117         (Fixed bug #808779)
6118         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
6119         lines that --i-code-in-asm generates
6120
6121 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6122
6123         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
6124         trying to fclose a FILE* that was already closed.
6125
6126 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6127
6128         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
6129         of const struct should be treated as if const themselves)
6130
6131 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
6132
6133         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
6134
6135 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6136
6137         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
6138         Unix (/n) and DOS (/r/n) line terminations.
6139
6140 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6141
6142         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
6143         bug #613775
6144
6145 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6146
6147         * src/mcs51/gen.c (genFunction, genEndFunction),
6148         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
6149         and restore of EA so that stack offsets to parameters are
6150         correct when using both critical and reentrant/stack-auto.
6151         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
6152         size (can be triggered in error if sloc is shared between
6153         different sized objects)
6154         * device/include/float.h: fixed macros to explicitly use
6155         unsigned long where needed
6156
6157 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
6158
6159         Feature req. 799831: added code to allow nesting of critical functions
6160         * src/mcs51/gen.c (genFunction, genEndFunction)
6161         * src/ds390/gen.c (genFunction, genEndFunction)
6162
6163 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6164
6165         * src/SDCCsymt.c (sclsFromPtr),
6166         * src/SDCCsymt.h,
6167         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
6168         support for standard C idiom of memory mapped variables; for
6169         example, *((xdata int*)0x1234) = 1 is now internally equivalent
6170         to xdata int at 0x1234 tempvar = 1.
6171         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
6172         provided by Akiya ISHIDA
6173
6174 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
6175
6176         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
6177         * src/SDCCval.c (constVal): added reduction from int to char
6178         * src/SDCCval.c (valMult, valDiv): fixed sign handling
6179         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
6180         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
6181         to ignore the sign
6182         * support/regression/tests/shifts.c: fixed
6183
6184 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6185
6186         * src/z80/gen.c (genXor): Fixed bug #805445
6187
6188 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6189
6190         Fixed bug #621531 (const & volatile confusion in the type chain).
6191         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
6192         refer to the const or volatile state of the pointer itself.
6193
6194         * src/SDCCast.c
6195         * src/SDCCglue.c
6196         * src/SDCCicode.c
6197         * src/SDCCsymt.c
6198         * src/SDCCval.c
6199         * src/SDCC.y
6200         * src/SDCCsymt.h
6201         * src/pic/gen.c
6202         * src/pic/ralloc.c
6203         * src/pic16/gen.c
6204         * src/pic16/ralloc.c
6205         * support/regression/tests/const.c
6206
6207 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6208
6209         When checking for duplicated modules, use absolute paths
6210         instead of relative paths.  Files changed:
6211
6212         * as/mcs51/lklib.c
6213         * link/z80/lklib.c
6214
6215 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6216
6217         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
6218
6219 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6220
6221         * device/include/string.h: added size_t typedef, changed
6222         prototypes to use size_t, eliminated separate reentrant and
6223         non-reentrant declarations, added _memmove declaration
6224         * device/lib/_memcpy.c: changed to use size_t instead of int,
6225         changed /4 to >>2 to avoid division library call
6226         * device/lib/_memcmp.c,
6227         * device/lib/_memset.c,
6228         * device/lib/_strncat.c,
6229         * device/lib/_strncpy.c,
6230         * device/lib/_strncmp.c: changed to use size_t instead of int
6231         * device/lib/_memmove.c: new file (fixed bug #772294)
6232         * device/lib/Makefile.in: added _memmove.c
6233         * device/lib/z80/asm_strings.s: fixed bug #772290
6234         * support/regression/tests/bitfields.c: attempt to fix host assertion
6235         failure on amd64-unknown-linux2.2
6236
6237 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6238
6239         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
6240         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
6241         * as/z80/asmain.c (main): fixed bug #801766
6242
6243 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
6244
6245         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
6246         compilers
6247
6248 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6249
6250         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
6251         reported in bug #800609
6252
6253 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
6254
6255         * Top header beautifications in src/pic16 directory:
6256           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
6257           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
6258           pcoderegs.h, ralloc.c, ralloc.h
6259         * main.c: added top header and GPL license notice
6260         * pcode.c: fixed the if-conditional warning
6261
6262 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
6263
6264         * device/lib/_mullong.c: replaced int by short for gcc
6265
6266 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6267
6268         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
6269         and JUMPTABLE iCodes properly now (worked by accident before)
6270         * src/mcs51/gen.c (leftRightUseAcc),
6271         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
6272         iCode properly now. Use getSize instead of nRegs since a & b
6273         aren't part of the nRegs tally.
6274
6275 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
6276
6277         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
6278         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
6279           before instructions that use the _STATUS register
6280
6281 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
6282
6283         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
6284         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
6285         fetching of the pointer
6286         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
6287         copied from genNearPointerSet()
6288         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
6289         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
6290         If they pop r0/r1 they must be called in the opposite order than aopOp().
6291         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
6292         (resp. --stack-auto), prepared for --xstack
6293
6294 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6295
6296         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
6297
6298 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
6299
6300         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
6301         these ports have their own __sdcc_external_start()
6302
6303 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
6304
6305         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6306         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
6307         type for bits was changed. It resulted in bit variables becoming
6308         global, which is not permitted in PIC 14 assembly output.
6309
6310 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6311
6312         * doc/sdccman.lyx: various additions and updates. Rearranged sections
6313
6314 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6315
6316         Z80 and MCS51 linkers complaint if a public symbol is defined
6317         in more than one library module:
6318
6319         * as/mcs51/lklib.c
6320         * link/z80/lklib.c
6321         * as/mcs51/Makefile.in
6322
6323 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6324
6325         A few small changes that speed up the peephole optimizer.
6326
6327         * src/SDCCpeeph.c
6328
6329 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6330
6331         Try to make the peephole optimizer smarter by maintaining
6332         an association between the assembly source code and the
6333         iCodes that originated them. Put this information to use
6334         with a new peephole rule condition "notVolatile" so that
6335         the rules can be aggressive yet still safe.
6336
6337         * src/SDCCpeeph.c
6338         * src/SDCCpeeph.h
6339         * src/mcs51/gen.c
6340         * src/mcs51/peeph.def
6341
6342 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6343
6344         Fixed bug #741761
6345
6346         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
6347         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
6348         if the left or right operand symbols have the accuse flag set.
6349
6350 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6351
6352         Changed the type of the result of the ! (NOT) operator to char;
6353         previously it returned the same type as the source. This allows
6354         us to eliminate all the genFloatNot functions (all of its target
6355         implementations were very buggy) since !float can use the same
6356         code as !long now.
6357
6358         * src/SDCCicode.c (ast2iCode): ! returns char
6359         * src/mcs51/gen.c (genNot, genNotFloat),
6360         * src/ds390/gen.c (genNot, genNotFloat),
6361         * src/z80/gen.c (genNot, genNotFloat),
6362         * src/pic/gen.c (genNot, genNotFloat),
6363         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
6364
6365 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
6366
6367         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6368         1. Interrupt would not compile properly. Ensure PCLATH register is saved
6369            during interrupts. Ensure WSAVE is located at a shared bank address.
6370         2. Fixed page selection in some places
6371         3. Fixed BTFSS/C to where necessary use registers directly and not simply
6372            the registers name strings.
6373         4. Fixed "signed / unsigned compare" compiler warnings.
6374         5. The PIC port manages its own allocation of the general purpose
6375            registers, but makes no attempt to reuse them. As a result when
6376            compiling it soon runs out of general purpose registers. Some
6377            additional code was added to the files pcode.c and device.c to walk
6378            through the function call tree and rename the registers so that they
6379            get reused.
6380
6381         * src/pic/device.c
6382         * src/pic/gen.c
6383         * src/pic/glue.c
6384         * src/pic/pcode.c
6385         * src/pic/pcode.h
6386         * src/pic/ralloc.c
6387         * src/pic/ralloc.h
6388         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
6389         genPlus() & genMinus() when the result is the same as left or right
6390
6391 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6392
6393         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
6394
6395 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6396
6397         Made bitfield a distinct type from bit so that bitfields
6398         convert as per ANSI C and bits retain their traditional
6399         boolean style behaviour. Implemented bitfield support in
6400         the z80 port.
6401
6402         * src/SDCCsymt.h,
6403         * src/SDCCsymt.c,
6404         * src/SDCCast.c,
6405         * src/cdbFile.c,
6406         * src/mcs51/gen.c,
6407         * src/ds390/gen.c: bit v bitfield split
6408         * src/z80/gen.c: New support for bitfields
6409         * support/regression/tests/bitfields.c: reenabled z80,
6410         added more tests
6411
6412 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6413
6414         Rules 246.x, 247.x relate to bitfields, the others speed up
6415         access to xdata mapped I/O devices.
6416
6417         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
6418
6419 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6420
6421         Cleaned up genPackBits and genUnpackBits and added two helper
6422         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
6423         for literal assignments in genPackBits (thanks to Frieder for
6424         reminding me).
6425
6426         * src/mcs51/gen.c
6427         * src/ds390/gen.c
6428
6429 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6430
6431         Fixed bug #748310 (pointer to function type mishandled when the
6432         function name is omitted). Also fixed a SIGSEGV when a function
6433         attribute (reentrant, etc) is used on a non-function or on a
6434         function but misplaced before the parameter list.
6435
6436         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
6437         bug #748310
6438         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
6439         * support/Util/SDCCerr.h,
6440         * support/Util/SDCCerr.c: Added func attr misuse error msg
6441
6442 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
6443
6444         Fixed bug #787649 by anonymous
6445         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
6446         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
6447
6448 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6449
6450         Fixed numerous bitfield problems.
6451
6452         * src/SDCC.y: More bitfield related error checking
6453         * src/SDCCsymt.h,
6454         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
6455         * support/Util/SDCCerr.h,
6456         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
6457         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
6458         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
6459         * support/regression/tests/bitfields.c: tests added
6460
6461 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6462
6463         Made the constant following the "interrupt" keyword optional. If
6464         omitted, the function will not automatically be given an entry
6465         in the interrupt vector table (similar to #pragma NOIV, but
6466         less syntacticly kludgy). The interrupt number is also now
6467         range checked. Also fixed a bug in the high order bit example
6468         in the manual.
6469
6470         * src/SDCC.y
6471         * src/SDCCmem.c
6472         * src/SDCCglue.c
6473         * src/SDCCsymt.h
6474         * support/Util/SDCCerr.c
6475         * support/Util/SDCCerr.h
6476         * doc/sdccman.lyx
6477
6478 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
6479
6480         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
6481         * src/SDCCicode.c (operandOperation): rewritten some ops
6482         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
6483         * src/SDCCsymt.c (computeType): literals are handled the same way as any
6484         other type
6485         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
6486         be re-activated by defining REDUCE_LITERALS)
6487         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
6488         unsigned, but are signed by default
6489         * src/SDCCval.c (constVal): rearranged
6490         * src/SDCCval.c (valMod): preliminary fix
6491         * src/SDCCval.c (valCastLiteral): use TYPE_* types
6492         * support/regression/literalop.c: added, work in progress
6493
6494 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6495
6496         Generate warnings for useless declarations like "char data;"
6497         that don't do what new users expect.
6498
6499         * src/SDCC.y
6500         * support/Util/SDCCerr.h
6501         * support/Util/SDCCerr.c
6502
6503 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
6504
6505         * src/SDCCval.c (valMult): fix overflow detection of negative int
6506
6507 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6508
6509         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
6510
6511         Changes to support big endian targets:
6512
6513         * src/ports.h
6514         * src/SDCCglue.c
6515         * src/avr/main.c
6516         * src/ds390/main.c
6517         * src/izt/i186.c
6518         * src/mcs51/main.c
6519         * src/pic/main.c
6520         * src/pic16/main.c
6521         * src/xa51/main.c
6522         * src/z80/main.c
6523
6524 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
6525
6526         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
6527         * device/lib/time.c: fixed warning "integer overflow in expression"
6528
6529 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
6530
6531         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
6532         * src/SDCCval.c (constVal): changed default to signed; hex and octal
6533         constants are unsigned; added recognition of "u" flag for unsigned
6534         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
6535         * src/SDCCval.c (valDiv, valMod): fixed signdness
6536         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
6537         signedness of modulo, left and right shift
6538         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
6539         * support/Util/SDCCerr.h: added warning W_INT_OVL
6540         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
6541         * src/SDCCast.c (ast_print): improved output of constants
6542
6543 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6544
6545         Fixed some warnings when building with MSVC:
6546
6547         * as\mcs51\asdata.c
6548         * as\z80\asdata.c
6549         * as\mcs51\asm.h
6550         * as\z80\asm.h
6551         * link\z80\aslink.h
6552         * link\z80\lkdata.c
6553         * link\z80\lkeval.c
6554         * link\z80\lkgb.c
6555         * link\z80\lkihx.c
6556         * link\z80\lks19.c
6557         * link\z80\lksym.c
6558         * support\cpp2\cpplib.c
6559         * src\ds390\gen.c
6560         * src\mcs51\gen.c
6561
6562 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
6563
6564         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
6565
6566 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6567
6568         * support\librarian\clean.mk: Do not remove Makefile.
6569         * support\librarian\Makefile: added.
6570
6571 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6572
6573         Added librarian to MSVC build:
6574         * all.dsp
6575         * sdcc.dsw
6576         * support\librarian\librarian.dsp
6577
6578         'configure' not needed for librarian, removed:
6579         * support\librarian\configure
6580         * support\librarian\configure.in
6581         * support\librarian\config_in.h
6582         * support\librarian\Makefile.in
6583
6584         Hopefully these ones built the librarian and the rest of sdcc properly:
6585         * Makefile
6586         * Makefile.common.in
6587
6588         Messed up 'configure', so revert to previous version:
6589         * configure
6590         * configure.in
6591
6592 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
6593
6594         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
6595         there, while the mantissa of a double is "only" 53 bits wide.
6596
6597 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6598
6599         Adding sdcclib to the build.  MSVC project coming soon.
6600         Files added/changed:
6601
6602         * support\librarian\clean.mk
6603         * support\librarian\configure
6604         * support\librarian\configure.in
6605         * support\librarian\config_in.h
6606         * support\librarian\Makefile.bcc
6607         * support\librarian\Makefile.in
6608         * support\librarian\sdcclib.c
6609         * Makefile.bcc
6610         * Makefile
6611         * Makefile.common.in
6612         * configure
6613         * configure.in
6614
6615 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6616
6617         Linker now complaints if linked modules have conflicting options, for
6618         example, one compiled using --model-large and another one compiled with
6619         --model-small.  The following files were modified:
6620
6621         * as\mcs51\asdata.c
6622         * as\mcs51\aslink.h
6623         * as\mcs51\asm.h
6624         * as\mcs51\asmain.c
6625         * as\mcs51\asout.c
6626         * as\mcs51\i51pst.c
6627         * as\mcs51\lkdata.c
6628         * as\mcs51\lklibr.c
6629         * as\mcs51\lkmain.c
6630         * as\z80\asdata.c
6631         * as\z80\asm.h
6632         * as\z80\asmain.c
6633         * as\z80\asout.c
6634         * as\z80\z80pst.c
6635         * link\z80\aslink.h
6636         * link\z80\lkdata.c
6637         * link\z80\lklibr.c
6638         * link\z80\lkmain.c
6639         * src\SDCCglue.c
6640
6641 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6642
6643         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
6644         as/mcs51/lklibr.c: Generate a warning when a library is not found.
6645
6646 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
6647
6648         * src/z80/mappings.i: fix _mul[us][int,long] entries
6649
6650 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6651
6652         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
6653
6654 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
6655
6656         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
6657         * support/regression/tests/bitopcse.c: added
6658         fixed warning:
6659         * src/avr/gen.c:
6660         * src/pic/gen.c:
6661         * src/pic16/gen.c:
6662         * src/z80/gen.c:
6663         * src/xa51/gen.c:
6664
6665 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6666
6667         added support for new library format to z80, gbz80 linkers:
6668         *link/z80/aslink.h
6669         *link/z80/lklex.c
6670         *link/z80/lklib.c
6671         *link/z80/lklist.c
6672
6673 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
6674
6675         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
6676         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
6677
6678 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
6679
6680         added DUMMY_READ_VOLATILE:
6681         * src/SDCC.y:
6682         * src/avr/gen.c:
6683         * src/xa51/gen.c:
6684         * src/z80/gen.c:
6685         * src/pic/gen.c:
6686         * src/pic16/gen.c:
6687         * src/mcs51/gen.c:
6688         * src/ds390/gen.c:
6689         * src/SDCCcse.c (algebraicOpts): many improvements
6690         * src/SDCCcse.h: removed algebraicOpts()
6691         * src/SDCCicode.c (picDummyRead): added
6692
6693 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6694
6695         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
6696         "Insufficient space in data memory".
6697
6698 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6699
6700         * src/mcs51/gen.c: fixed bug #771358
6701         * src/z80/gen.c: fixed bug #759087
6702
6703 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
6704
6705         * src/pic16/glue.c: minor cleanup by Vangelis
6706
6707 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6708
6709         * device/include/regc515c.h: fixed #758477
6710         * device/lib/_gptrget.c: saving some cycles in generic pointer get
6711         * device/lib/_gptrput.c: saved a few bytes
6712         * my tab spacing is 8, yours too?)
6713         * device/lib/_ser.c: process RX bytes earlier than TX bytes
6714         * device/lib/serial.c: process RX bytes earlier than TX bytes
6715         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
6716
6717 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6718
6719         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
6720
6721 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6722
6723     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
6724
6725 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
6726
6727         * device/lib/Makefile.in: bad fix, reverted to 1.43
6728
6729 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
6730
6731         * device/lib/Makefile.in: added missing z80 object files
6732
6733 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
6734
6735         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
6736         pic16 progress by Vangelis:
6737         * src/SDCCglobl.h:
6738         * src/SDCCmain.c:
6739         * src/pic/Makefile:
6740         * src/pic:
6741         * pic/Makefile:
6742         * pic16/device.c:
6743         * pic16/device.h:
6744         * pic16/gen.c:
6745         * pic16/gen.h:
6746         * pic16/genarith.c:
6747         * pic16/glue.c:
6748         * pic16/main.c:
6749         * pic16/pcode.c:
6750         * pic16/pcode.h:
6751         * pic16/pcodepeep.c:
6752         * pic16/peeph.def:
6753
6754 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6755
6756     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
6757
6758 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6759
6760     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
6761     added gbz80 build to MSVC project.
6762     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
6763     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
6764     from 8051 stuff and setup so it links using a .lnk file.
6765
6766 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6767
6768     * support/librarian/sdcclib.c: sdcc librarian.
6769     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
6770     with sdcclib.
6771
6772 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6773
6774     * as/mcs51/lkmain.c: properly handle extensions in function afile.
6775
6776 2003-07-02  Borut Razem <borut.razem AT siol.net>
6777
6778         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
6779         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
6780         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
6781         src/xa51/main.c, src/z80/main.c:
6782         virtualization of glue() function: each port has it's own glue function,
6783         which is accessed by do_glue function pointer in PORT.general structure
6784
6785 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
6786
6787         * DS800C400 fun, improved ROM interface and tinibios.
6788
6789 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
6790
6791         * More support for DS80C400. Now includes beginning of interface to ROM.
6792
6793 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
6794
6795         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
6796
6797 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6798
6799         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
6800
6801 2003-06-19  Borut Razem <borut.razem AT siol.net>
6802
6803         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
6804
6805 2003-06-19  Borut Razem <borut.razem AT siol.net>
6806
6807         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
6808         fixed Z80 port - crt0.o: cannot open.
6809
6810 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
6811
6812         * support/Util/MySystem.c (merge_command): revert bad fix
6813
6814 2003-06-18  Borut Razem <borut.razem AT siol.net>
6815
6816         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
6817
6818 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6819
6820         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
6821         option --use-stdout sends errors to stdout instead of stderr.
6822
6823 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
6824
6825         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
6826
6827 2003-06-15  Borut Razem <borut.razem AT siol.net>
6828
6829         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
6830         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
6831         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
6832         fixed width array of pointers replaced with sets;
6833         multiple include and lib paths ared transferred to preprocessor and linker
6834         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
6835         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
6836         fixed width array of pointers
6837         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
6838         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
6839         fixupPath(), getPathDifference()
6840         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
6841         fixed width array of pointers
6842
6843 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
6844
6845         * src/pic16/ralloc.c: fix warnings
6846         * src/pic16/pcode.c: fix warning
6847
6848 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
6849
6850          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
6851         know all the details, but essentially this set of changes enable
6852         the pic16 port to generate movff instructions and generate assembler
6853         directives,
6854         * src/SDCCmain.c:
6855         * src/pic16/gen.c:
6856         * src/pic16/glue.c:
6857         * src/pic16/pcode.c:
6858         * src/pic16/device.c:
6859         * src/pic16/main.c:
6860         * src/pic16/pcode.h:
6861         * src/pic16/pcoderegs.c:
6862         * src/pic16/ralloc.c:
6863         * src/pic16/ralloc.h:
6864
6865 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6866
6867         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
6868         added option --vc, so sdcc errors and warnings are compatible with
6869         Microsoft Visual Studio.
6870
6871 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6872
6873         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
6874           device/lib/libfloat.lib: added atof function.
6875
6876 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
6877
6878         * doc/sdccman.lyx: updated to Lyx 1.3
6879         * doc/cdbfileformat.lyx: updated to Lyx 1.3
6880         * doc/test_suite_spec.lyx: updated to Lyx 1.3
6881         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
6882
6883 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
6884
6885         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
6886
6887 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6888
6889         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
6890           additions to the "related tools/documentation" section
6891
6892 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
6893
6894         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
6895
6896 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
6897
6898         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
6899         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
6900
6901 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
6902
6903         * doc/sdccman.lyx: fix double dash and other minor things
6904         * doc/Makefile: fix double dash
6905
6906 2003-05-28  Karl Bongers(patches from Martin Helmling)
6907         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
6908           condition and ignore commands.
6909
6910 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6911
6912         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
6913           is in parts still quite out of date, I did changes as far as I felt makes sense
6914           for a non-native english speaker.
6915           Please feel free to add to the manual or to correct my changes.
6916         * doc/Makefile: undid touching the date of intermediate tex files.
6917
6918 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6919
6920         * doc/sdccman.lyx: Manual has an index now
6921
6922 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
6923
6924         Finalize muluint/mulsint and mululong/mulslong merging:
6925         * device/lib/_mulint.c
6926         * device/lib/_mullong.c
6927         * device/lib/gbz80/mul.s
6928         * device/lib/gbz80/stubs.s
6929         * device/lib/z80/mul.s
6930         * device/lib/z80/stubs.s
6931         * src/SDCCsymt.c (initCSupport)
6932
6933 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6934
6935         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
6936         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
6937           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
6938           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
6939           instead of /Zm500.
6940
6941 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6942
6943         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
6944           the regression tests I'm not brave enough to enable 245.b, 245.c
6945         * doc/sdccman.lyx: added latex preamble for hyperref package.
6946           Using pdflatex this will give you a hyperlinked pdf file with
6947           bookmarks. (prepend '%' before /usepackage if this breaks something)
6948
6949 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6950
6951          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
6952
6953 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
6954
6955         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
6956
6957 2003-05-21    <johan AT balder>
6958
6959         * src/SDCCglue.c (printIval): fixed bug #739934
6960
6961 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
6962
6963         Applied patch from bug 737905 (renamed yylineo to mylineno):
6964         * src/altlex.c
6965         * src/SDCCast.c
6966         * src/SDCglobl.h
6967         * src/SDCC.lex
6968         * src/SDCCsymt.c
6969         * src/SDCCval.c
6970         * src/pic16/pcode.c: Cleaned warnings
6971         * src/pic16/pcodeflow.c: Cleaned warnings
6972         * src/pic16/pcoderegs.c: Cleaned warnings
6973
6974 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
6975
6976         * src/pic16/pcode.c: Cleaned warnings
6977         * src/pic16/pcodepeep.c: Cleaned warnings
6978         * src/pic16/ralloc.c: Cleaned warnings
6979
6980 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
6981
6982         * doc/sdccman.lyx: fixed bug 739745
6983         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
6984
6985 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
6986
6987         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
6988         it can be defined with CFLAGS when running configure
6989         * src/SDCCmain.c: fixed compiling + linking with object files
6990
6991 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
6992
6993         * configure.in: configure for pic16 port,
6994             added --disable-pic16-port
6995         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
6996         * src/SDCCmain.c: linkOptions is changed to set *,
6997             added if/endif conditional macros to remove options help
6998             messages from optionsTable when a port is not configured, added
6999             support for the PIc16 port in the ports table, when executing
7000             the compiler with no port specified on command line, a default
7001             port is selected with the new macro DEFAULT_PORT which is
7002             defined in port.h, in setDefaultOptions() linkOptions is removed
7003             from initialization assignment, since now it is a set,
7004             parseCmdLine uses setParseWithComma for linkOptions, in
7005             linkEdit() linkOptions are accessed with new function indexSet()
7006             which returns the i'th item of a set variable. See SDCCset.c, in
7007             linkEdit() when calling buildCmdLine(), added linkOptions as
7008             last argument. Now users can pass arguments to gplink via the
7009             -Wl option, main() uses pic16glue() to glue up pic16 programs
7010         * src/SDCCpeeph.c: various changes to support pic16
7011         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
7012             return the i'th item of the set
7013         * src/SDCCset.h: added function prototype for indexSet()
7014         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
7015         * src/clean.mk: added pic16 in CLEANALLPORTS variable
7016         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
7017             added macro DEFAULT_PORT
7018         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
7019         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
7020             generated
7021         * src/pic16/glue.c: commented out some error producing lines
7022         * src/pic16/main.c: __config directives are commented out to stop
7023             gpasm complaining and test the linkage with gplink, _linkCmd and
7024             _asmCmd changed to be more gplink and gpasm friendly
7025         * src/pic16/peeph.def: peep rule 3 is commented out, since it
7026             produced an error when parsed, peep rule 12 is added to utilize
7027             movff, but it is commented out since the pCode does not support
7028             yet a command with 2 address arguments
7029
7030 2003-05-18    <johan AT balder>
7031
7032         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7033         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7034 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
7035
7036         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
7037   Added feature to script commands from file.
7038
7039 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
7040
7041         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
7042         * src/SDCCutil.c: include ctype.h for win32
7043
7044 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
7045
7046         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
7047
7048 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
7049
7050         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
7051   Fixed so you can set breakpoints prior to run, run does not stop
7052   on entry now.  Add tbreak.  Other enhancements and fixes for use
7053   with ddd.
7054
7055 2003-05-12  Borut Razem <borut.razem AT siol.net>
7056
7057         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
7058
7059 2003-05-11  Borut Razem <borut.razem AT siol.net>
7060
7061         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
7062         the path of bin directory, so that PATH is the only env. variable, which has to be set
7063         in case of standard installation.
7064         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
7065         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
7066         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
7067
7068 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7069
7070         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
7071         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
7072         temp files are in the port dir; clean the gen/test directory when
7073         generating new test.c
7074         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
7075         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
7076         * support/regression/tests/zeropad.c: added
7077
7078 2003-05-09    <johan AT balder>
7079
7080         * src/SDCCglue.c: fixed bug #597940
7081
7082 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
7083
7084         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7085   cache sfr, optimize next,step, fix off by one sourceline,
7086   support ddd list function.
7087         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
7088
7089 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7090
7091         * support/regression/HTMLgen.py: added compare_s2f()
7092         * support/regression/Makefile: redo 1.27
7093         * support/regression/generate-cases.py: redo 1.5
7094
7095 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
7096
7097         * support/regression/tests/float.c: workaround 33 bit hex constant
7098         * support/regression/tests/simplefloat.c: fix division for host
7099
7100 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
7101
7102         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
7103         that tame's the PIC's over-aggressive optimizer.
7104
7105 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7106
7107          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
7108          support for MSVC.
7109
7110 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
7111
7112         Initial support for DS80C400. "Hello world" runs on TINIm400
7113         (with polled I/O).
7114
7115 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
7116
7117          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7118          * Some notes on ddd usage added in debugger/README
7119          Martin Helmling adding more features and fixes for ddd GUI debugger.
7120          Code added for nexti, stepi, up, down, and other adjustments.
7121
7122 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
7123
7124         * src/pic/pCodepeep.c non-wildcard asmops are now handled
7125         * src/pic/peeph.def Added two rules to optimize carry manipulation
7126         * src/pic/* removed debug printfs
7127
7128 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
7129
7130         * debugger/mcs51/cmd.c: added header newalloc.h
7131
7132 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
7133
7134         * as/Makefile: new EXEEXT
7135         * as/z80/Makefile: remove trailing slash of BUILDIR
7136         * as/z80/clean.mk: new EXEEXT
7137         * Makefile.common.in: add to CFLAGS (and others), don't replace it
7138         * support/cpp2/Makefile.in: new EXEEXT
7139         * src/pic/glue.c (pic14emitRegularMap): fixed warning
7140
7141 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
7142
7143         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
7144         EXEEXT was introduced to fix all related problems with targets
7145         "clean", "install" and "uninstall"; a couple of further flaws
7146         especially with "clean" have been fixed too
7147         * as/mcs51/Makefile.in
7148         * as/mcs51/clean.mk
7149         * as/z80/Makefile
7150         * Makefile
7151         * clean.mk
7152         * debugger/mcs51/Makefile.in
7153         * debugger/mcs51/clean.mk
7154         * link/z80/Makefile
7155         * link/z80/Makefile.in
7156         * link/z80/clean.mk
7157         * link/Makefile
7158         * packihx/Makefile.in
7159         * packihx/clean.mk
7160         * sim/ucsim/Makefile
7161         * sim/ucsim/clean.mk
7162         * sim/ucsim/avr.src/Makefile.in
7163         * sim/ucsim/avr.src/clean.mk
7164         * sim/ucsim/s51.src/Makefile.in
7165         * sim/ucsim/s51.src/clean.mk
7166         * sim/ucsim/xa.src/Makefile.in
7167         * sim/ucsim/xa.src/clean.mk
7168         * sim/ucsim/z80.src/Makefile.in
7169         * sim/ucsim/z80.src/clean.mk
7170         * sim/ucsim/main_in.mk
7171         * sim/ucsim/packages_in.mk
7172         * sim/ucsim/gui.src/Makefile.in
7173         * sim/ucsim/gui.src/serio.src/Makefile.in
7174         * sim/ucsim/gui.src/serio.src/clean.mk
7175         * src/Makefile.in
7176         * src/clean.mk
7177         * support/cpp2/Makefile.in
7178         * support/cpp2/clean.mk
7179         * support/makebin/Makefile
7180         * support/makebin/clean.mk
7181         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
7182         * doc/sdccman.lyx: --program-suffix no longer needed
7183
7184 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
7185
7186          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
7187          Martin Helmling added support for ddd GUI debugger.
7188          Code added to display assembly, set variables, and other commands
7189          to interface to ddd.
7190
7191 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
7192
7193         * as/Makefile: fix target clean
7194         * as/clean.mk: fix target clean
7195         * as/z80/clean.mk: fix target clean
7196
7197 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
7198
7199         * Makefile.common.in: added  AT EXEEXT AT
7200         * configure.in: removed all mingw32 stuff
7201         * configure: rebuilt from configure.in
7202         * doc/sdccman.lyx: updated section "installation"
7203         * support/scripts/sdcc_mingw32: adapted to configure
7204         * support/scripts/sdcc_cygwin_mingw32: added
7205
7206 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
7207
7208         * src/pic Added object file support for the PIC port
7209         * src/pic Applied patch from Craig Franklin (this started the object file support)
7210         * src/regression Updated the PIC regression tests for object files
7211
7212 2003-04-20  Borut Razem <borut.razem AT siol.net>
7213
7214         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
7215           lklex.c: In function `getfid':
7216           lklex.c:203: warning: array subscript has type `char'
7217         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
7218           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
7219         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
7220           stack handling macros
7221
7222 2003-04-19  Borut Razem <borut.razem AT siol.net>
7223
7224         * "handling space characters in file path" task:
7225         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
7226         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
7227         * support/Util/MySystem.h: make it self-sufficient
7228         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
7229           src/z80/main.c, sdcc/as/mcs51/lklex.c:
7230           handling space characters in file path
7231         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
7232           (it will be used by assemblers, which have their own includes, e.g. gpasm)
7233         * support/Util/MySystem.c: handling space characters in executable's path
7234
7235 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
7236
7237         * as/z80/Makefile: fix permanent rebuild of z80
7238         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
7239         * support/regression/tests/bitfields.c: added Johan's bitfields.c
7240
7241 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
7242
7243         * src/SDCCopt.c: add special case optimization to replace modulo by
7244           a power of two with a bitwise AND.
7245
7246 2003-04-18    <johan AT balder>
7247
7248         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
7249
7250 2003-04-17    <johan AT balder>
7251
7252         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
7253         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
7254
7255 2003-04-13  Borut Razem <borut.razem AT siol.net>
7256
7257         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
7258         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
7259           fixed mingw problem in adl_NORMALIZE_PATH
7260
7261 2003-04-12  Borut Razem <borut.razem AT siol.net>
7262
7263         * fixed "#pragma SAVE/RESTORE can not be nested":
7264         * src/SDCC.lex: reworked pragma handling functions
7265         * sdcc/src/SDCCglobl.h: reworked stack handling macros
7266         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
7267
7268 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7269
7270         * src/SDCCutil.c (pathEquivalent): defined but not used
7271         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
7272         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
7273         * configure: rebuilt from configure.in
7274         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7275         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7276         * device/include/Makefile.in: replace sdcc_datadir
7277         * device/lib/Makefile.in: replace sdcc_datadir
7278         * Makefile.common.in: add LDFLAGS from configure
7279         * packihx/Makefile.in: use LDFLAGS
7280         * src/Makefile.in: use LDFLAGS
7281         * support/cpp2/Makefile.in: add LDFLAGS from configure
7282         * support/makebin/Makefile: use LDFLAGS
7283         * .version: bumped version number to 2.3.5
7284
7285 2003-04-12  Borut Razem <borut.razem AT siol.net>
7286
7287         * completed "different paths" task:
7288         * src/SDCCmacro.c: fixed bug in handling quotes
7289         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
7290         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
7291
7292 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7293
7294         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
7295
7296 2003-04-11 kevin Vigor <kevin AT vigor.nu>
7297
7298         * ds390/gen.c ds390/peeph.def: fix bug 706781
7299
7300 2003-04-11  Borut Razem <borut.razem AT siol.net>
7301
7302         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
7303
7304 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
7305
7306         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
7307         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
7308          set - this bit used to not be set...).
7309         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
7310           bad code in PIC Port
7311         * src/regression/and2.c added to test bug 609268
7312         * src/regression/Makefile added and2.c to regression test
7313
7314
7315 2003-04-08    <johan AT CP255758-A>
7316
7317         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
7318         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
7319         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
7320
7321 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
7322
7323         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
7324         fix bug #487815
7325         * support/cpp2/Makefile.in: fix bug #487815
7326         * configure: rebuilt from configure.in
7327         * Makefile.common.in: docdir changed, new path suffixes
7328         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
7329         * sdcc_vc_in.h: reflect changes from sdccconf.h
7330         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
7331         * src/SDCCutil.h: remove BINDIR hack
7332         * doc/sdccman.lyx: update new path hierarchy
7333
7334 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7335
7336         * src/SDCCpeeph.c: added okToRemoveSLOC test
7337
7338 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7339
7340         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
7341
7342 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7343
7344         * src/SDCCpeeph.c: added labelIsReturnOnly test
7345         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
7346
7347 2003-04-05    <johan AT balder>
7348
7349         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
7350         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
7351         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
7352         * src/SDCCast.c: fixed a warning
7353         * src/SDCCast.h: fixed a warning
7354         * src/SDCCicode.c (operandFromAst): fixed a warning
7355
7356 2003-04-04    <johan AT balder>
7357
7358         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
7359         * src/SDCCast.c (decorateType): fixed bug #715076
7360         * src/SDCC.y: fixed bug #702907
7361
7362 2003-04-03    <johan AT balder>
7363
7364         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
7365         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
7366         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
7367         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
7368         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
7369
7370 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
7371
7372         * _decdptr.c: fix return values
7373         * _gptrget.c: fix return values
7374         * _gptrgetc.c: fix return values
7375         * _gptrput.c: fix return values
7376         * _mulint.c: fix return values
7377         * as/z80/Makefile: fix 'make -j' problem
7378
7379 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
7380
7381         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
7382         * configure.in: big cleanup, updated to autoconf 2.5x
7383         * configure: rebuilt from configure.in
7384         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
7385         * sdcc_vc_in.h: reflect changes from sdccconf.h
7386         * doc/Makefile: fixed a flaw in "make install"
7387
7388 2003-04-02    <johan AT balder>
7389
7390         * src/ds390/gen.c (genCmp): no comments
7391         * src/mcs51/gen.c (genCmp): no comments
7392         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
7393         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
7394
7395 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
7396
7397         * support/regression/generate-cases.py: place generated file in given sub directory
7398         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
7399         * support/regression/Makefile: improvements for 'make -j';
7400         side effect: it's simpler and faster now
7401
7402 2003-03-31  Borut Razem <borut.razem AT siol.net>
7403
7404         * src/z80/main.c: link-{port} and as-{port} defined without path
7405         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
7406
7407 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
7408
7409         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
7410
7411 2003-03-30  Borut Razem <borut.razem AT siol.net>
7412
7413         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
7414           changed type of list parameter to set
7415         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
7416         * src/port.h: changed type of do_assemble() parameter to set
7417         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
7418           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
7419           definition of "cppoutfilename" macro with NULL value in preProcess()
7420         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
7421         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
7422         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
7423           replaced with set *binPathSet
7424         * shash_add() deallocates the item, if allready exsists, before adding the new one
7425         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
7426
7427 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
7428
7429         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
7430           a nested for loop bug in the PIC port
7431         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
7432           for loops
7433
7434 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
7435
7436         * support/Util/dbuf.h: remove C++ stuff to make it portable
7437
7438 2003-03-28  Borut Razem <borut.razem AT siol.net>
7439
7440         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
7441           literal strings in stringLiteral()
7442         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
7443         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
7444           to the project
7445
7446 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
7447
7448         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
7449
7450 2003-03-26    <johan AT balder>
7451
7452         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
7453         * src/ds390/gen.c (saveRegisters): catched symbol abuse
7454         * src/SDCCast.c (decorateType): fixed " -v < 3"
7455
7456 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
7457
7458         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
7459         Added Lenny Story's debug infrastructure changes:
7460         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
7461         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
7462         * src/cdbFile.c: added
7463         * src/SDCCdebug.c: added
7464         * src/SDCCdebug.h: added
7465         * src/SDCCast.c (createFunction)
7466         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
7467         * src/SDCCmain.c (parseCmdLine, main)
7468         * src/SDCCmem.c (redoStackOffsets)
7469         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
7470         * src/SDCCsymt.h
7471         * src/common.h
7472         * src/avr/gen.c (genAVRCode)
7473         * src/ds390/gen.c (gen390Code)
7474         * src/mcs51/gen.c (gen51Code)
7475         * src/pic/gen.c (genpic14Code)
7476         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
7477         * src/xa51/gen.c (genXA51Code)
7478         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
7479
7480 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7481
7482         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
7483         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
7484
7485 2003-03-22    <johan AT balder>
7486
7487         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
7488
7489 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
7490
7491         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
7492         * doc/cdbfileformat.lyx: added, written by Lenny Story
7493         * doc/Makefile: added cdbfileformat.lyx
7494         * doc/clean.mk: added cdbfileformat.lyx
7495
7496 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
7497
7498         * src/mcs51/peeph.def: fix bug #705773
7499
7500 2003-03-20    <johan AT balder>
7501
7502         An sfr/sbit can have an "at #" AND an initializer
7503         * src/SDCCsymt.c (checkSClass):
7504         * src/SDCCmem.c (allocGlobal):
7505         * src/SDCCmem.c (allocLocal):
7506         * src/SDCCast.c (createBlock):
7507
7508 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
7509
7510         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
7511
7512 2003-03-16    <johan AT balder>
7513
7514         Undid the hackup of const and volatile, the problem is much bigger
7515         * src/SDCC.y:1.65
7516         * src/SDCCast.c:1.171
7517         * src/SDCCglue.c:1.138
7518         * src/SDCCicode.c:1.146
7519         * src/SDCCsymt.c:1.150
7520         * src/SDCCval.c:1.65
7521
7522 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
7523
7524         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
7525         * src/ds390/gen.c (genAddrOf): fixed bug #704087
7526
7527 2003-03-13    <johan AT balder>
7528
7529         Hackup const and volatile modifiers in type chains a bit:
7530         * src/SDCC.y:1.63
7531         * src/SDCCast.c:1.169
7532         * src/SDCCglue.c:1.136
7533         * src/SDCCicode.c:1.143
7534         * src/SDCCsymt.c1.146
7535         * src/SDCCsymt.h1.59
7536         * src/SDCCval.c:1.63
7537
7538 2003-03-12    <johan AT balder>
7539
7540         * src/SDCCBBlock.h: more LRH debugging junk
7541         * src/SDCCcflow.h: more LRH debugging junk
7542         * src/SDCCloop.c: more LRH debugging junk
7543         * src/SDCC.y (struct_declaration): fixed bug #697590
7544         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
7545         * src/ds390/gen.c (aopForRemat): fixed bug #700031
7546         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
7547
7548 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7549         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
7550         test function names must now match exactly).
7551         * src/SDCCcse.c: added special case in findCheaperOp to allow
7552         extending a short integer. Makes less awful code for bug 700121 test case.
7553
7554 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7555
7556         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
7557         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
7558
7559 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7560
7561         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
7562         actually called (operandsNotEqual() was called for all
7563         operandsNotEqualX tests).
7564
7565 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7566
7567         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
7568         with shorter literals. Fixes bug 700121.
7569
7570 2003-03-11    <johan AT balder>
7571
7572         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
7573
7574 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
7575
7576         * src/SDCCloop.c (mergeRegions): an evil beast is dead
7577         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
7578
7579 2003-03-10  Borut Razem <borut.razem AT siol.net>
7580
7581         * src/SDCCmain.c: pipe preprocessor's output
7582         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
7583         * sdcc_vc_in.h: define pclose as _pclose for WIN32
7584         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
7585         which closes all pipes in pipeSet set
7586         * src/SDCCset.c: free deleted item in function deleteSetItem()
7587         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
7588         moved from z80 to src subproject
7589         * .version: increased version number to 2.3.4
7590
7591 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
7592
7593         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
7594         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
7595         * support/regression/ports/xa51/spec.mk: fix typo
7596
7597 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
7598
7599         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
7600
7601 2003-03-09  Borut Razem <borut.razem AT siol.net>
7602
7603         * src/SDCCmain.c: pipe preprocessor's output
7604         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
7605         * sdcc_vc_in.h: define pclose as _pclose for WIN32
7606         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
7607         which closes all pipes in pipeSet set
7608         * src/SDCCset.c: free deleted item in function deleteSetItem()
7609         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
7610         moved from z80 to src subproject
7611
7612 2003-03-09  Borut Razem <borut.razem AT siol.net>
7613
7614         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
7615         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
7616         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
7617         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
7618         * src/SDCCglobl.h: unification of WIN32 native definitions
7619
7620 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7621
7622         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
7623
7624 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
7625
7626         * src/configure.in:   check for endianess (even while cross-compiling)
7627         * src/configure:      check for endianess (even while cross-compiling)
7628         * src/configure_in.h: check for endianess (even while cross-compiling)
7629         * src/avr/gen.c:        remove old endianess stuff
7630         * src/mcs51/gen.c:      remove old endianess stuff
7631         * src/ds390/gen.c:      remove old endianess stuff
7632         * src/pic/gen.c:        remove old endianess stuff
7633         * src/pic/genarith.c:   remove old endianess stuff
7634         * src/pic/glue.c:       fix endianess check
7635         * src/pic16/gen.c:      remove old endianess stuff
7636         * src/pic16/genarith.c: remove old endianess stuff
7637         * src/pic16/glue.c:     fix endianess check
7638         * src/xa51/gen.c:       remove old endianess stuff
7639         * src/z80/gen.c:        fix endianess check
7640         * src/SDCCglue.c:       fix endianess check
7641         * src/ds390/peeph.def: fix bug 700036
7642
7643 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
7644
7645         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
7646         * src/configure: find appropriate data-types on host for SDCC's int and long
7647         * src/configure.in: find appropriate data-types on host for SDCC's int and long
7648         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
7649         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
7650
7651 2003-03-07    <johan AT balder>
7652
7653         Just a big NOOP:
7654                 some minor cleanups before the big shot
7655                 OP_DEFS and OP_USES now use Kevin's protection
7656                 new option --nolabelopt
7657
7658         * src/SDCCBBlock.c:
7659         * src/SDCCast.c,:
7660         * src/SDCCcflow.c:
7661         * src/SDCCcse.c:
7662         * src/SDCCicode.c:
7663         * src/SDCCicode.h:
7664         * src/SDCClabel.c:
7665         * src/SDCCloop.c:
7666         * src/SDCCmain.c:
7667         * src/ds390/ralloc.c:
7668         * src/mcs51/ralloc.c:
7669         * src/pic/ralloc.c:
7670         * src/xa51/ralloc.c:
7671         * src/z80/ralloc.c:
7672
7673 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
7674
7675         * src/pic/pcode.c (get_op): fix 64 bit warnings
7676         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
7677         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
7678         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
7679         * support/regression/tests/malloc.c: fix 64 bit warnings
7680
7681 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
7682
7683         * src/mcs51/gen.c (genMinus): fixed bug 696436
7684
7685 2003-03-02  Borut Razem <borut.razem AT siol.net>
7686
7687         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
7688
7689 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
7690
7691         * configure.in: test for mkstemp
7692         * sdccconf_in.h: add HAVE_MKSTEMP
7693
7694 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
7695
7696         * device/include/ctype.h: removed warning while using --stack-auto
7697         * device/include/malloc.h: removed warning while using --stack-auto
7698         * device/include/string.h: removed warning while using --stack-auto
7699
7700 2003-02-23  Borut Razem <borut.razem AT siol.net>
7701
7702         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
7703         because NDEBUG is defined (see man assert)
7704         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
7705
7706 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7707
7708         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
7709         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
7710
7711 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7712
7713         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
7714         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
7715
7716 2003-02-18    <johan AT balder>
7717
7718         * as/mcs51/asmain.c (asmbl): module can start with a digit
7719         * as/z80/asmain.c (asmbl): module can start with a digit
7720
7721 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
7722
7723         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
7724         * src/asm.c: fix pipe() for Mingw32
7725
7726 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
7727
7728         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
7729         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
7730         make -V work again; --c1mode reads now from stdin
7731         * doc/sdccman.lyx: added --c1mode
7732         * support/Util/SDCCerr.c: new messages for c1 mode
7733         * support/Util/SDCCerr.h: new messages for c1 mode
7734         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
7735
7736 2003-02-15    <johan AT balder>
7737
7738         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
7739
7740 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
7741
7742         * doc/sdccman.lyx: Environment variables, -o and other minor things
7743
7744 2003-02-14    <johan AT balder>
7745
7746         * src/xa51/main.c: before anyone really tries to use it :)
7747
7748         * Install doc's in share/sdcc/doc
7749         * removed some obsolete files
7750         * Do a proper make distclean and uninstall
7751         M Makefile.common.in
7752         R sdccbuild.sh
7753         M as/Makefile
7754         M device/include/Makefile.in
7755         M device/lib/Makefile.in
7756         M doc/sdccman.lyx
7757         M link/Makefile
7758         M sim/ucsim/doc/Makefile.in
7759         M src/clean.mk
7760         R src/avr/peeph.rul
7761         R src/xa51/peeph.rul
7762         M support/cpp2/Makefile.in
7763         M support/makebin/Makefile
7764
7765
7766 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
7767
7768         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
7769
7770 2003-02-10  Borut Razem <borut.razem AT siol.net>
7771
7772         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
7773         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
7774         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
7775         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
7776         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
7777         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
7778         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
7779         src/z80/Makefile.bcc: Borland Makefile cleanup
7780         * as/z80/Makefile.bcc: Added Borland Makefile
7781         * support/cpp2/borland.h: Removed
7782
7783 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
7784
7785         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
7786         * src/SDCC.lex: new pragma NOIV
7787         * src/SDCCglobl.h: new pragma NOIV
7788         * src/SDCCmem.c: new pragma NOIV
7789
7790 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
7791
7792         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
7793
7794 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
7795
7796         * src/SDCCmain.c: signal handling is switched off by --debug
7797         * doc/Makefile: small fix for install; use clean.mk again
7798         * doc/clean.mk: clean *.pdf and *.html too
7799
7800 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
7801
7802         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
7803         * device/lib/printfl.c: fix a ds390 bug by making it portable
7804         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
7805         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
7806         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
7807         * debugger/mcs51/cmd.c: converted multi-line string literals
7808         * sim/ucsim/globals.cc: converted multi-line string literals
7809         * src/SDCCmain.c: introduced signal handler to remove temp files
7810         * doc/Makefile: small tweaks, implement clean
7811         * doc: removed generated files
7812
7813 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7814
7815         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
7816         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
7817         Address Record is not correctly generated for DS390."
7818
7819 2003-02-02  Borut Razem <borut.razem AT siol.net>
7820
7821         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
7822         * as/mcs51/asm.h: fixed compilation with Borland C
7823         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
7824         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
7825         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
7826         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
7827         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
7828         src/z80/Makefile.bcc: delete $(LIB) only if exist
7829         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
7830
7831 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
7832
7833         * device/include/malloc.h: introduced NULL
7834         * device/include/string.h: introduced NULL
7835         * device/include/stdlib.h: introduced NULL
7836         * device/lib/_memcpy.c: removed NULL
7837         * device/lib/_strcat.c: removed NULL
7838         * device/lib/_strchr.c: removed NULL
7839         * device/lib/_strcmp.c: removed NULL
7840         * device/lib/_strcpy.c: removed NULL
7841         * device/lib/_strcspn.c: removed NULL
7842         * device/lib/_strlen.c: removed NULL
7843         * device/lib/_strncat.c: removed NULL
7844         * device/lib/_strncmp.c: removed NULL
7845         * device/lib/_strncpy.c: removed NULL
7846         * device/lib/_strpbrk.c: removed NULL
7847         * device/lib/_strrchr.c: removed NULL
7848         * device/lib/_strspn.c: removed NULL
7849         * device/lib/_strstr.c: removed NULL
7850         * device/lib/_strtok.c: removed NULL
7851         * device/lib/malloc.c: removed NULL, include own header
7852
7853 2003-02-02    <johan AT balder>
7854
7855         * src/mcs51/ralloc.c (packForPush): fixed bug #631653, maybe other ports need this too? At least now some new alerts in SDCCBBlock.c and SDCCicode.c gives an early warning
7856         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
7857         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
7858         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
7859         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
7860         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
7861
7862 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7863
7864         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
7865         area 'DATA'"
7866
7867 2003-02-01    <johan AT balder>
7868
7869         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
7870
7871 2003-01-31    <johan AT CP255758-A>
7872
7873         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
7874
7875 2003-01-30    <johan AT balder>
7876
7877         * src/SDCCBBlock.c: automatic bug detection
7878         * src/SDCCicode.c: automatic bug detection
7879
7880 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7881
7882         * src/SDCCglobl.h:   now --xram-size 0 works
7883         * src/SDCCmain.c:    now --xram-size 0 works
7884
7885 2003-01-29    <johan AT balder>
7886
7887         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
7888
7889 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7890
7891         * as/mcs51/aslink.h: Added options --xram-size and --code-size
7892         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
7893         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
7894         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
7895         * src/SDCCglobl.h:   Added options --xram-size and --code-size
7896         * src/SDCCmain.c:    Added options --xram-size and --code-size
7897
7898 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
7899
7900         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
7901         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
7902
7903 2003-01-27    <johan AT balder>
7904
7905         * src/SDCC.y: fixed bug #613764
7906
7907 2003-01-26    <johan AT balder>
7908
7909         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
7910         * src/SDCCsymt.h: fixed bug #673374
7911         * src/SDCCglue.c: fixed bug #661910
7912         * src/SDCCast.c: fixed bug #458099 and 673374
7913
7914 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
7915
7916         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
7917         * as/mcs51/strcmpi.h: added
7918         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
7919         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
7920         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
7921         * as/mcs51/assym.c: strcmpi -> as_strcmpi
7922         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
7923         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
7924         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
7925         * as/mcs51/Makefile.aslink: new module strcmpi
7926         * as/mcs51/Makefile.asx8051: new module strcmpi
7927         * as/mcs51/Makefil.bcc: new module strcmpi
7928         * as/mcs51/Makefile.in: new module strcmpi
7929         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
7930
7931 2003-01-26    <johan AT balder>
7932
7933         * src/SDCCglue.c: reverted back to 1.124
7934         * src/SDCCast.c: reverted back to 1.156
7935         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
7936
7937 2003-01-25    <johan AT balder>
7938
7939         * src/SDCCglue.c: A better fix for bug #661910
7940         * src/SDCCast.c: A better fix for bug #661910
7941         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
7942
7943 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
7944
7945         * src/Makefile.in: remove spawn.o
7946         * src/SDCCmain.c: remove spawn.h
7947         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
7948         * src/spawn.c: removed
7949         * src/spawn.h: removed
7950         * support/regression/ports/ds390/spec.mk: link with -r
7951
7952 2003-01-24    <johan AT CP255758-A>
7953
7954         * src/ds390/gen.c (aopOp): fixed bug #667458
7955         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
7956         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
7957         (createIvalCharPtr): an ival doesn't always have a storage class anymore
7958
7959 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
7960
7961         * src/mcs51/peeph.def: better assembler identation by Frieder
7962         * src/mcs51/gen.c: better assembler identation by Frieder
7963
7964 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
7965
7966         * as/z80/string.h: removed for gcc 3.2
7967         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
7968         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
7969
7970 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
7971
7972         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
7973         * src/SDCCpeeph.c (replaceRule): fix bug #663503
7974         * support/regression/Makefile: separate temp files for ports
7975         * support/regression/generate-cases.py: separate temp files for ports
7976         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
7977         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
7978
7979 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
7980
7981         * moved tinitalk to device/examples/ds390
7982
7983 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
7984
7985         * as/mcs51/lkmem.c: rflag is for DS390
7986         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
7987         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
7988                          (linkEdit): move mem- and map-files the same way as ihx-files
7989         * src/z80/main.c (_setDefaultOptions): removed --generic
7990         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
7991         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
7992         * src/pic/glue.c (picglue): --c1mode works again
7993         * src/pic16/glue.c (pic16glue): --c1mode works again
7994         * src/asm.c (printCLine): fix #660034
7995
7996 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
7997
7998         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
7999         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
8000         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
8001         * as/mcs51/lkmem (summary): better fix for sp problem
8002         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
8003         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
8004         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
8005                                               remove --stack-after-data
8006
8007 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
8008
8009         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
8010         * src/SDCCutil.c (join): ugly bug: missing '\0'
8011         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
8012
8013 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8014
8015         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
8016         * src/port.h: typo
8017         * src/pic/main.c (_asmCmd): gpasm supports -o
8018         * src/z80/main.c: more general macros
8019         * device/lib/Makefile.in: remove intermediate files
8020
8021 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8022
8023         * .version: Bumped version number to 2.3.3
8024         * src/SDCCBBlock.c: new option -o
8025         * src/SDCCglobl.h: new option -o
8026         * src/SDCCglue.c: new option -o
8027         * src/SDCCmain.c: new option -o
8028         * src/asm.c: new option -o
8029         * src/ds390/main.c: new option -o
8030         * src/pic/glue.c: new option -o
8031         * src/pic/pcode.c: new option -o
8032         * src/pic/ralloc.c: new option -o
8033         * src/pic16/glue.c: new option -o
8034         * src/pic16/pcode.c: new option -o
8035         * src/pic16/ralloc.c: new option -o
8036         * src/z80/main.c: new option -o
8037         * device/lib/Makefile.in: use -o
8038         * support/regression/ports/ds390/spec.mk: use -o
8039         * support/regression/ports/gbz80/spec.mk: use -o
8040         * support/regression/ports/mcs51/spec.mk: use -o
8041         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
8042         * support/regression/ports/z80/spec.mk: use -o
8043         * support/regression/ports/ucz80/spec.mk: use -o
8044         * support/regression/ports/xa51/spec.mk: use -o
8045         * support/regression/fwk/lib/timeout.c: fix usage string
8046
8047 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
8048         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
8049
8050 2003-01-07    <johan AT balder>
8051
8052         * src/SDCCast.c (decorateType): fixed bug #600035
8053
8054 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
8055         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
8056         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
8057         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
8058         * src/pic/pcode.c: outcommented unused variable to remove warnings
8059         * src/pic/ralloc.c: outcommented unused variable to remove warnings
8060
8061 2003-01-06    <karl AT turbobit.com>
8062         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
8063    regression tests.
8064
8065 2003-01-06    <johan AT balder>
8066
8067         * src/SDCCicode.c: fixed array add
8068
8069 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
8070         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
8071         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
8072
8073 2003-01-04    <johan AT balder>
8074
8075         * src/SDCCval.c (getNelements): fixed the initialized array of structures
8076
8077 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8078         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
8079
8080 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8081         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
8082         * support/regression/tests/bug-524697.c: fit mem usage into 8032
8083
8084 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8085         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
8086
8087 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
8088         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
8089
8090 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
8091         * src/mcs51/main.c: removed {bindir}{sep} from aslink
8092
8093 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8094
8095     * in \sdcc\as\mcs51\ changed these files in order to create an
8096     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
8097     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
8098     following files to include the previous two files: aslink.dsp,
8099     Makefile.aslink, Makefile.bcc, and Makefile.in.
8100
8101     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
8102     .adb instead of .cdb
8103
8104 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8105
8106         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
8107         value from option --iram-size.
8108
8109 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8110
8111         * \sdcc\as\mcs51\lklist.c: added boundary check before using
8112         dram[] array.
8113
8114 2002-09-18    <wiml AT hhhh.org>
8115
8116         * SDCClrange.h: exposed setFromRange() and setToRange()
8117         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
8118           packRegsForAccUse() (bug 542397)
8119         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
8120           multiple times and emitting the fetch operations more than once
8121           added aopGetUsesAcc() function to allow binary operators to
8122           fetch their operands in the correct order; made genMinus() emit
8123           compact code for X = LITERAL - Y
8124
8125 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8126         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
8127         sprintf() in line 1267.
8128
8129 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8130         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
8131         like ports.
8132
8133 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8134         Changes to aslink (All the changes are marked with 'JCF'):
8135
8136         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
8137         summary().
8138
8139         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
8140         area BSEG.  Also moves, if possible, the DATA area down into the internal
8141         ram so more space is available.
8142
8143         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
8144         sflag.
8145
8146         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
8147         not bytes.  Function summary() which creates a memory usage summary
8148         file with extension .mem.  Reports of overlaping stack and small stack
8149         size.  If the space for the stack is less than 16 bytes aslink trows a
8150         warning.
8151
8152         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
8153         the 8051.  Option 'y' for memory summary output file.
8154
8155         Changes to sdcc (All the changes are marked with 'JCF'):
8156
8157         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
8158
8159         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
8160         overlaying area for it (uses RegBankUsed[4]).
8161
8162         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
8163         bank zero as used by default.  By default aslink locates the stack
8164         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
8165         the creation of the .mem file.  Delegates the allocation of data area
8166         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
8167         the begining of the stack area to aslink.
8168
8169         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
8170         glue() in SDCCglue.c creates an area for it.
8171
8172 2002-09-03  Borut Razem <borut.razem AT siol.net>
8173         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
8174         sdcc/src/pic/glue.c:
8175         introduced atexit() handler for teporay files removal in case of
8176         errors, assertions, ...
8177
8178 2002-08-29  Borut Razem <borut.razem AT siol.net>
8179         * sdcc/support/cpp2/auto-host_vc_in.h:
8180         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
8181         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
8182         Maybe there is a similar problem with BORLANDC? It should be checked!
8183
8184         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
8185         corrected improper use of assert: the assignment to clr variable was done inside the assert.
8186         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
8187         was not executed, and the compiler (cl) launched a warning:
8188         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
8189
8190 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8191         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
8192
8193 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
8194         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
8195
8196         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8197           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
8198           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
8199           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8200           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
8201           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
8202           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
8203         - added Release configuration in VS projects
8204         - review of compiler an linker options
8205         - VC .exe files are generated in bin_vc directory, not to interfere
8206           with binaries generated from other projects (cygwin, mingw, bcc ...)
8207
8208         * sdcc/src/yacc.dsp: added
8209
8210         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
8211         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
8212         and insert the version number definitions from .version
8213
8214         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
8215
8216         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
8217         added - genarate auto-host.h using auto-host_vc_in.h as template
8218
8219         * sdcc/sdcc_vc.h,
8220         removed from CVS, generated automatically
8221
8222 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
8223         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
8224
8225 2002-08-11  Borut Razem <borut.razem AT siol.net>
8226         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
8227
8228 2002-08-10  Borut Razem <borut.razem AT siol.net>
8229         * src/SDCCmain.c (main):
8230         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
8231         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
8232         The consequence was that some temporary files were not removed.
8233
8234         * src/SDCCglue.c:
8235         unification of code in functions tempfilename() and tempfile():
8236         function tempnam() is defined in Visual Studio 6.0 and .NET
8237
8238         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
8239
8240         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8241           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
8242         - removed compiler command line option /WX: Treats all warnings as errors
8243         - update a list of source files, included into the project
8244
8245         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8246           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
8247         changed project type to Generic Project so that can be correcly converted to VS.NET project
8248
8249         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
8250
8251         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
8252
8253         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
8254
8255         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
8256         added return 0 statements after assert() to make compiler happy
8257
8258         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
8259         added newline in the def file to keep MSC compiler satisfied
8260
8261         * sdcc/src/z80/gen.c:
8262         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
8263           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
8264         - solved MSC error in function aopDump()
8265
8266         * sdcc_vc.h: define PREFIX as "\\sdcc"
8267
8268 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
8269         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
8270
8271 2002-06-22  Scott Dattalo <scott AT dattalo.com>
8272         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
8273         - Rewrote the register banking algorithm.
8274         - Added pCode live-range analysis to registers (for now, only non-used and
8275         singly-used registers optimized away)
8276
8277         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
8278
8279         * support/scripts/inc2h.pl Kevin L. Pauba <klpauba AT cox.net> submitted this perl script for converting MicroChip include files into SDCC Pic include files.
8280
8281 2002-05-10  Scott Dattalo <scott AT dattalo.com>
8282         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
8283
8284 2002-04-22  Michael Hope  <michaelh AT vroom>
8285
8286         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
8287
8288         * configure.in (DD_COPT): Added include support required for gbdk.
8289
8290         * .version: Bumped version number just to increase it.
8291
8292         * src/SDCCmain.c: Added -nostdinc to the default options.
8293
8294 2002-04-15  Michael Hope  <michaelh AT vroom>
8295
8296         * device/lib/z80/printf.c (sprintf): Added.
8297
8298         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
8299
8300         * src/z80/peeph.def: Added transpose redundent load rule.
8301
8302         * src/z80/main.c: Added force callee saves for jaune.
8303
8304         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
8305
8306         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
8307
8308 2002-03-28  Johan Knol  <johan AT balder>
8309
8310         * src/SDCCval.c: fixed bug #532436
8311
8312 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8313         * /src/port.h:
8314         Added "char *Processor" field to the port structure.
8315
8316         * /src/SDCCmain.c:
8317         Added -p option. Allows port dependent processor to be specified.
8318
8319         * all ports:
8320         Initialized the new field char *Processor field to NULL in all ports
8321
8322         * /src/pic/*:
8323         Compiler generated registers for interrupt context saving
8324         were not getting allocated.
8325
8326 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
8327
8328         * /src/SDCCast.c:
8329         Fixed left shift. Will promote the left side of a left shift
8330         if a) left shifting more than size of operand or b) when assigned
8331         to something size > size of left side
8332
8333 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8334         * src/pic/*
8335         tons of changes. Register allocation has been
8336         rewritten. Added customization for the various PICs. Flow
8337         analysis is restructured. ...
8338
8339         * src/pic/device.h:
8340         Added
8341
8342         * src/pic/device.c:
8343         Added. device.c is a PIC port hack to accomodate variations
8344         in PIC devices.
8345
8346 2002-03-13  Michael Hope  <michaelh AT vroom>
8347
8348         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
8349
8350 2002-03-04  johanknol  <johanknol AT manik>
8351
8352         * /src/SDCCval.c: fixed
8353
8354         const unsigned char arr[][2] = { { 0, 1 } };
8355         t18.c:1: error: Initializer element is not constant
8356
8357 2002-03-04  bela  <bela AT manik>
8358
8359         * /device/include/mcs51reg.h:
8360         ds89c420 register definition update
8361
8362 2002-03-03    <johan AT FRIJA>
8363
8364         * support/Util/SDCCerr.c: did something, but don't no why anymore
8365
8366         * support/regression/tests/bug-524691.c: made it a little less shy
8367
8368         * src/SDCCast.c (decorateType): fixed bug #524697
8369
8370         * src/SDCCast.c: made some lineno improvements
8371
8372         * src/SDCCval.c (getNelements): changed warning to error
8373
8374         * src/SDCCglue.c (printIvalArray): changed warning to error
8375
8376         * src/SDCCicode.c: fixed a warning for mingw
8377
8378         * src/SDCCast.c (decorateType): fixed the << promotion for ops
8379
8380         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
8381
8382 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
8383
8384         * src/ds390/peeph.def:
8385         Added some more peephole rules
8386
8387         * src/ds390/gen.c: Various fixes & enhancements
8388
8389         * src/SDCClrange.c, src/SDCClrange.h:
8390         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
8391
8392         * src/ds390/ralloc.c:
8393         various fixes & enhancements (ds390) specific
8394
8395         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
8396         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
8397         from rallocs.
8398
8399         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
8400
8401 2002-03-02    <johan AT FRIJA>
8402
8403         * src/SDCCast.c (decorateType): fixed bug #524708
8404
8405         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
8406
8407         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
8408
8409 2002-03-01  Michael Hope  <michaelh AT vroom>
8410
8411         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
8412
8413         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
8414
8415 2002-03-01    <johan AT FRIJA>
8416
8417         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
8418
8419         * src/SDCCast.c (decorateType): fixed bug #524209
8420
8421         * src/SDCCval.c (valNot): fixed bug #524195
8422
8423 2002-02-26    <johan AT balder>
8424
8425         * src/xa51/gen.c: fixed a warning
8426
8427         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
8428
8429         * src/SDCCast.c (decorateType): fixed bug #522534
8430
8431 2002-02-23    <johan AT balder>
8432
8433         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
8434
8435 2002-02-22    <johan AT balder>
8436
8437         * src/SDCCast.c: fixed bug #514865
8438
8439         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
8440
8441 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
8442
8443         * sdcc/src/SDCCloop.c:
8444         Previous fix was not good. basic blocks that have "break" or "return" are
8445         not really partof a loop , but live ranges used in these blocks should
8446         be live thru the entire loop, so set partOfLoop but don't add them to
8447         loop region
8448
8449 2002-02-21    <johan AT FRIJA>
8450
8451         * src/SDCCcse.c: fixed bug #514308
8452
8453 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
8454
8455         * src/SDCCloop.c:
8456         Fixed BUG #519583. If a conditional block ended in a return/break
8457         statement inside a loop, it was not being considered part of the loop.
8458
8459         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
8460
8461 2002-02-10  Karl Bongers <karl AT turbobit.com>
8462
8463         * debugger/*:
8464         Fixed up SDCDB debugger somewhat.  Updated debugger/README
8465         with lots of comments and notes.
8466
8467         * device/examples/test2.c:
8468         Fix bug, "red" variable not being initialized(compiler complained).
8469
8470         * device/examples/Makefile, examples/test3.c:
8471         Add Makefile in device/examples folder, compiles test3.c
8472         for use as a multiple module SDCDB test case.
8473
8474         * sim/ucsim/cmd.src/cmdset.cc:
8475         Took out debug printfs in ucsim "next" command.
8476
8477         * sim/ucsim/xa.src:
8478         Karl and Johan start ucsim XA support.  Most dissassembly working,
8479         about 75% emulation done(plenty of work remaining).
8480
8481         * sim/ucsim/z80.src:
8482         Add Z80 support to ucsim, add test-ucz80 regression test,
8483         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
8484         Notice z80 compiler fails on examples/test3.c/crc code.
8485
8486 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
8487
8488         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
8489         Added support for --parms-in-bank1
8490
8491         * src/ds390/peeph.def:
8492         added a few more peephole optimzations
8493
8494         * src/ds390/main.c:
8495         1) added __builtin_inp & __builtin_outp used to read in data of given length
8496            from a memory mapped port
8497         2) added __builtin_memcmp
8498         3) added __builtin_swapw swap bytes of a short
8499
8500         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
8501         1) handle multiple send & receives from register bank1
8502         2) ralloc can now allocate DPTR1 to some liveRanges
8503
8504         * src/SDCCsymt.c, src/SDCCsymt.h:
8505         changes to handle multiple sends & receives
8506
8507         * src/SDCCptropt.h:
8508         added some pointer arithmetic optimization
8509
8510         * src/SDCCptropt.c:
8511         added some pointer arithmetic optimizations but not stable yet so not
8512         called from anywhere (will get this working shortly)
8513
8514         * src/SDCCopt.c: fixed for multiple sends & receives
8515
8516         * src/SDCCmain.c:
8517         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
8518         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
8519            set preprocessor defines (depending on options)
8520
8521         * src/SDCCicode.c, src/SDCCicode.h:
8522         changes made to handle multiple sends & receives
8523
8524         * src/SDCCglobl.h:
8525         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
8526
8527         * src/SDCCcse.c, src/SDCCcse.h:
8528         added function findbackward def (to be used in upcoming optimization)
8529
8530         * src/SDCCcflow.c, src/SDCCcflow.h:
8531         added function returnAtEnd - to determine if a basic block terminates with
8532         a RETURN iCode
8533
8534         * src/SDCCast.c, src/SDCCast.h:
8535         added option parms-in-bank1
8536
8537         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
8538         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
8539         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
8540         adjusted for --parms-in-bank1 option
8541
8542         * device/include/string.h:
8543         donot redefine "reentrant" keyword
8544
8545         * device/include/ds80c390.h: Added some more SFRs
8546
8547 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
8548
8549         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
8550
8551 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
8552
8553         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
8554
8555 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
8556
8557         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
8558
8559 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
8560
8561         * Added --xram-movc option
8562
8563 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
8564
8565         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
8566
8567 2002-01-11  Johan Knol
8568
8569         * Added math lib of Jesus Calvino-Fraga
8570
8571 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
8572
8573         * src/SDCCmain.c (processFile): fix processing of ../../src.c
8574         * support/regression/Makefile: new target test-mcs51-stack-auto
8575         * support/regression/ports/mcs51-stack-auto/spec.mk: added
8576
8577 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
8578
8579         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
8580
8581 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
8582
8583         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
8584
8585 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
8586
8587         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
8588
8589         * src/SDCCglue.h: add definition for printIvalChar()
8590
8591 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
8592
8593         * src/SDCCast.c: fix #498138 by Johan
8594
8595         * src/SDCCglue.c: fix #498138 by Johan
8596
8597 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
8598
8599         * support/regression/Makefile: fix clean
8600
8601         * support/regression/ports/ds390/support.c: fix transmission of last character
8602
8603 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
8604
8605         * /sdcc/src/ds390/gen.c:
8606         a) improved computing address of stack variable
8607         b) took out some #if 0 code
8608         c) improved parmBytes adjustment
8609         d) improved genPlusIncr & genMinusIncr
8610         e) genCmp could generate bad code (when left assigned to DPTR)
8611         f) Fixed bug in hasInc
8612
8613         * /sdcc/src/ds390/ralloc.c:
8614         a) packRegsForSupport could mess up live information (Fixed)
8615         b) packRegsDPTRuse could be incorrect for left & right shift
8616
8617         * /sdcc/src/mcs51/ralloc.c:
8618         packRegsForSupport could mess up the live information (Fixed)
8619
8620         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
8621
8622         * /sdcc/src/SDCCast.c:
8623         can reverse a loop even if function call is present as long
8624         as the loop control variable is local & is not passed as parameter
8625
8626 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
8627
8628         * /sdcc/ChangeLog: *** empty log message ***
8629
8630         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
8631         More builtin function additions for TININative
8632
8633         * /sdcc/src/ds390/ralloc.c:
8634         Had broken the regression testsuite
8635
8636         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
8637
8638         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
8639         Added funcattr hasStackParms will be set for reentrant functions when there
8640         are paramteres on the stack, this helps in minimizing frame pointer generation
8641         typeFromStr can handle function pointers now
8642
8643         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
8644         *** empty log message ***
8645
8646 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
8647
8648         * /src/ds390/gen.c, /src/ds390/main.c:
8649         More builtin function additions for TININative
8650
8651         * /src/ds390/ralloc.c:
8652         Had broken the regression testsuite
8653
8654         * /src/SDCCast.c: Fixed a bug in dumptree
8655
8656         * /src/SDCCsymt.c, /src/SDCCsymt.h:
8657         Added funcattr hasStackParms will be set for reentrant functions when there
8658         are paramteres on the stack, this helps in minimizing frame pointer generation
8659         typeFromStr can handle function pointers now
8660
8661         * /doc/builtins.txt, /doc/TININative.txt:
8662         *** empty log message ***
8663
8664
8665 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
8666
8667         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
8668         ALPHA version for -mTININative
8669
8670         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
8671         updated to reflect changes in the port structure
8672
8673         * /src/port.h:
8674         added function do_assemble (similar to do_link) if non-null this function
8675         will be called to do assembly (-mTININative) requires a multi command
8676         assembly
8677         added function genAssemblerEnd will be called to generate assembler Epilogue
8678
8679         * /src/SDCCsymt.c:
8680         added _JavaNative to debug info printing
8681
8682         * /src/SDCCmain.c: added option --tini-libid
8683         added port->do_assemble function (-mTININative) has a multi command assemble
8684
8685         * /src/SDCCglue.c: Disabled "constExpr" check
8686         added port->genAssemblerEnd function
8687
8688         * /src/SDCCglobl.h: Added option --tini-libid value
8689
8690         * /src/SDCCast.h:
8691         tookout optimizeCompare from the header (has no external references)
8692
8693         * /src/SDCCast.c: made one more function "static"
8694
8695 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
8696
8697         * src/z80/mappings.i: Added z80asm support.
8698
8699         * src/z80/main.c: Added z80asm support on --asm=z80asm
8700
8701         * src/z80/gen.c: Fixed asm portability issues.
8702
8703         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
8704
8705         * src/SDCCglue.c (printExterns): Added global/extern split.
8706
8707 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
8708
8709         * support/regression/Makefile: added test for mcs51 model large
8710
8711         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
8712
8713         * support/regression/ports/gbz80/spec.mk: added -mgbz80
8714
8715 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
8716
8717         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
8718
8719 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
8720
8721         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
8722
8723         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
8724
8725 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
8726
8727         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
8728
8729         * support/regression/tests/simplefloat.c: Port to mcs51.
8730
8731 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
8732         * support/regression/tests/bug-485362.c: Added.
8733
8734         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
8735
8736         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
8737
8738         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
8739
8740         * src/z80/gen.c (aopDump): Added a dump function.
8741
8742 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
8743         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
8744
8745         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
8746
8747         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
8748
8749         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
8750
8751         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
8752
8753         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
8754
8755         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
8756
8757         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
8758
8759         * support/regression/ports/ds390/support.c: Use tinibios.
8760
8761         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
8762
8763 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
8764
8765         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
8766         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
8767
8768         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
8769
8770         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
8771
8772 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
8773
8774         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
8775
8776         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
8777         (packRegsForIYUse): Created and optimised.
8778
8779 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
8780
8781         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
8782 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
8783
8784         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
8785
8786         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
8787
8788         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
8789
8790 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
8791
8792         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
8793
8794         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
8795
8796 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
8797
8798         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
8799
8800         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
8801
8802         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
8803
8804 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
8805
8806         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
8807         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
8808         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
8809
8810         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
8811
8812         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
8813         (genNotFloat): Added.
8814         (genUminusFloat): Added.
8815
8816         * device/lib/z80/Makefile: Added floating pt stubs.
8817
8818         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
8819
8820         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
8821
8822         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
8823
8824 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
8825
8826         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
8827
8828         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
8829
8830         * sdcc/support/regression/Makefile: Add port ds390.
8831
8832         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
8833
8834         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
8835
8836         * sdcc/support/regression/ports/ds390/spec.mk: Added.
8837
8838         * sdcc/support/regression/ports/ds390/support.c: Added.
8839
8840         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
8841
8842         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
8843
8844         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
8845
8846 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
8847
8848         * device/include/malloc.h: Added z80 and gbz80 support.
8849
8850         * device/lib/gbz80/heap.s: Added.
8851
8852         * device/lib/z80/heap.s: Added.
8853
8854         * device/lib/malloc.c: Added z80 and gbz80 support.
8855
8856         * support/regression/tests/malloc.c (testMalloc): Added.
8857
8858         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
8859
8860         * support/regression/tests/bug-478094.c: Added.
8861
8862         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
8863
8864 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
8865
8866         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
8867
8868         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
8869
8870         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
8871
8872         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
8873
8874         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
8875
8876 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
8877
8878         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
8879
8880 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
8881
8882         * support/regression/tests/bug-477927.c: Added.
8883
8884         * src/z80/peeph.def: Added minor rules.
8885
8886         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
8887
8888         * src/z80/peeph.def: Added jump optimisation modification.
8889
8890 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
8891
8892         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
8893
8894 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
8895
8896         * support/regression/tests/funptrs.c: Added.
8897
8898 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
8899
8900         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
8901
8902 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
8903
8904         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
8905
8906         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
8907
8908         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
8909         (movLeft2ResultLong): Created.
8910
8911         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
8912         (joinPushes): Added.  Joins two char pushes into a word push.
8913
8914 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
8915
8916         * support/cpp2/Makefile.in (install): Added creation of dest dir.
8917
8918         * support/makebin/Makefile (install): Added creation of dest dir.
8919
8920 2001-10-24 Karl Bongers <karl AT turbobit.com>
8921
8922         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
8923
8924 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
8925
8926         * src/z80/ralloc.c: Turned off faulty pack for one use.
8927
8928         * src/z80/peeph-gbz80.def: Removed redundent restart options.
8929
8930         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
8931
8932 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
8933
8934         * support/regression/Makefile: Improved clean
8935
8936         * support/regression/ports/gbz80/spec.mk: Added clean
8937
8938         * support/regression/ports/host/spec.mk: Added clean
8939
8940         * support/regression/ports/z80/spec.mk: Added clean
8941
8942         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
8943
8944         * support/regression/ports/mcs51/timeout.c: little improvements
8945
8946 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
8947
8948         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
8949
8950         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
8951
8952         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
8953
8954 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
8955
8956         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
8957
8958         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
8959
8960 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
8961         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
8962
8963         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
8964
8965         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
8966
8967         * src/mcs51/main.c (_linkCmd): Added bin path to command.
8968
8969         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
8970
8971         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
8972
8973         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
8974
8975         * support/regression/tests/longor.c: Added.
8976
8977 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
8978
8979         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
8980
8981         * as/mcs51/aslink.h: define PATH_MAX
8982
8983         * as/mcs51/asm.h: define PATH_MAX
8984
8985         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
8986
8987         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
8988
8989         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
8990
8991         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
8992
8993         * src/SDCCglobl.h: define PATH_MAX
8994
8995         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
8996
8997         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
8998
8999 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
9000
9001         * src/z80/gen.c (gencjneshort): Fixed
9002
9003         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
9004
9005 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
9006
9007         * support/regression/tests/bug-469671.c: Added.
9008
9009         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
9010
9011 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
9012
9013         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
9014
9015         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
9016
9017 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
9018
9019         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
9020
9021         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
9022
9023         * src/device/lib/_mullong.c : removed hint: nooverlay bug
9024
9025         * src/device/lib/_divuint.c : removed hint: nooverlay bug
9026
9027         * src/device/lib/_divulong.c: removed hint: nooverlay bug
9028
9029         * src/device/lib/_moduint.c : removed hint: nooverlay bug
9030
9031         * src/device/lib/_modulong.c: removed hint: nooverlay bug
9032
9033 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
9034
9035         * src/z80/gen.c (setupPair): Added 'extended stack' support for the z80.  Can now have local variables or parameters of more than 127 bytes in size.  Increadibly slow, but it will work.  Currently anything involving the carry flag.
9036
9037         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
9038
9039         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
9040
9041 2001-10-07    <johan AT FRIJA>
9042
9043         * device/lib/gets.c (gets): fixed the return value.
9044
9045 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
9046         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
9047
9048         * src/SDCCpeeph.c (peepHole): Fixed all leaks.  Added trace support for freeing lines.  Optimised restart logic to re-run instead of restart.  Now compiles dscan.c on ~60MB instead of ~200MB.
9049
9050         * support/Util/NewAlloc.c: Added ability to use libgc instead of malloc.  Added Safe_free and Safe_strdup.  Added trace support where you can log allocations and free all at once.
9051
9052         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
9053
9054         * src/pic/gen.c: Removed Safe_strdup.
9055
9056         * configure.in: Added option to enable libgc support.
9057
9058         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
9059         (bitVectUnion): Optimised.
9060         (bitVectIntersect): Optimised.
9061         (bitVectBitsInCommon): Optimised.
9062         (bitVectCplAnd): Optimised.
9063
9064         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
9065
9066 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9067
9068         * src/SDCCmain.c: distinguish between assembler debug and plain options
9069
9070         * src/avr/main.c:   remove standard assembler options
9071
9072         * src/ds390/main.c: remove standard assembler options
9073
9074         * src/mcs51/main.c: remove standard assembler options
9075
9076         * src/port.h: removed "PENDING" comment
9077
9078 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9079
9080         * src/device/lib/_mulint.c  : new, with assember functions
9081
9082         * src/device/lib/_mullong.c : new, with assember functions
9083
9084         * src/device/lib/_divuint.c : with assember functions
9085
9086         * src/device/lib/_divsint.c : with assember functions
9087
9088         * src/device/lib/_divulong.c: with assember functions
9089
9090         * src/device/lib/_divslong.c: with assember functions
9091
9092         * src/device/lib/_moduint.c : with assember functions
9093
9094         * src/device/lib/_modsint.c : with assember functions
9095
9096         * src/device/lib/_modulong.c: with assember functions
9097
9098         * src/device/lib/_modslong.c: with assember functions
9099
9100         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
9101
9102         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
9103
9104         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
9105                                       replaced _mululong.c and _mulslong.c by _mullong.c
9106
9107 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9108
9109         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
9110
9111 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9112
9113         * src/SDCCglue.c: test, if win32api is available for MINGW
9114
9115 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9116
9117         * src/SDCCsymt.c: no more _modifier in printTypeChain()
9118         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
9119         * support/regression/ports/gbz80/spec.mk: removed GENERIC
9120         * support/regression/ports/host/spec.mk: removed GENERIC
9121         * support/regression/ports/mcs51/spec.mk: removed GENERIC
9122         * support/regression/ports/z80/spec.mk: removed GENERIC
9123
9124 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
9125
9126         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
9127
9128         * support/regression/tests/bug-467035.c: Created.
9129
9130 2001-10-01    <johan AT FRIJA>
9131
9132         * src/SDCC.y: fixed bug #466586 part 1
9133
9134 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
9135
9136         * SDCCicode.c: z80 has no generic pointers
9137         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
9138
9139 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
9140
9141         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
9142
9143 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
9144
9145         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
9146
9147         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
9148
9149 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
9150
9151         * configure.in: Fixed up so that ucsim is only configured once.
9152
9153         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
9154
9155         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
9156         (getPathDifference): As above.
9157
9158         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
9159
9160         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
9161
9162 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
9163         * .version: Updated to 2.3.1
9164
9165         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
9166         Added copyright header.
9167
9168         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
9169         (assemble): Added support for macro based assembler commands.
9170         (linkEdit): Added support for macro based linker commands.
9171         (preProcess): Changed the pre-processor to use macros.
9172         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
9173         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
9174
9175         * device/lib/z80/crt0.s: Added module name for debugging.
9176
9177 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
9178
9179         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9180
9181         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
9182
9183         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
9184
9185         * src/Makefile.in: Added SDCCmacro and SDCCutil
9186
9187 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
9188
9189         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9190
9191 2001-09-16    <johan AT FRIJA>
9192
9193         * support/Util/SDCCerr.c: fixed up the error/warning/info database. I only changed the E_ W_ I_ prefix to what SDCCerr.c says it is.
9194
9195 2001-09-15    <johan AT FRIJA>
9196
9197         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
9198         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
9199
9200 2001-09-11    <johan AT FRIJA>
9201
9202         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
9203
9204 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
9205
9206         * support/regression/tests/bug-460444.c: Added test case.
9207
9208         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
9209         (genCast): Added justification for all of the asserts.
9210
9211 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
9212
9213         * support/regression/support.c: _xdata replaced by xdata
9214
9215         * support/regression/spec.mk: removed _generic
9216
9217 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
9218
9219         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
9220
9221         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
9222         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
9223
9224         * src/z80/peeph.def: Added a rule to optimise shift then compare.
9225
9226         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
9227
9228         * support/regression/tests/bug-460010.c: Added test case.
9229
9230         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
9231
9232 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
9233
9234         * support/regression/Makefile: inter-port-clean adjusted for mcs51
9235
9236         * support/regression/testfwk.c: removed workaround for bug #436344
9237
9238         * support/regression/tests/bp.c: use less memory with mcs51
9239
9240         * support/regression/tests/bug-441448.c: use less memory
9241
9242         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
9243
9244         * support/regression/collate-results.py: typo
9245
9246 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
9247
9248         * support/regression/tests/fetchoverlap.c: Added new test case.
9249
9250         * support/regression/tests/bp.c: Added new test case.
9251
9252         * support/regression/tests/bug-448984.c: Added new test case.
9253
9254         * support/regression/tests/pow2shifts.c: Added new test case.
9255
9256         * src/z80/gen.c: Turned off the noise it normally generates for the release.
9257         (genlshTwo): Fixed right shift for count > 8.
9258
9259         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
9260
9261 2001-09-08    <johan AT FRIJA>
9262
9263         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
9264
9265 2001-09-07    <johan AT FRIJA>
9266
9267         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
9268
9269         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
9270
9271 2001-09-06    <johan AT FRIJA>
9272
9273         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
9274         * bernhard noted me at this: "() equals to (void)" (1.38)
9275
9276 2001-09-05    <johan AT FRIJA>
9277
9278         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
9279
9280 2001-09-04    <johan AT FRIJA>
9281
9282         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
9283
9284
9285 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
9286
9287         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
9288
9289 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
9290
9291         * link/z80/aslink.h: Fixed path for PATH_MAX
9292
9293 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
9294
9295         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
9296
9297         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
9298
9299         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
9300
9301         * src/z80/gen.c (genUminus): Fixed add, sub, and uminus on the gbz80 port for longs.  Had to shift some functions about to do it.
9302
9303 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
9304
9305         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
9306         (genCmp): Fixed up genCmp for the GB with longs.
9307
9308         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
9309
9310         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
9311
9312         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
9313
9314         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
9315
9316 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
9317
9318         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
9319
9320 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
9321
9322         * device/lib/gbz80/crt0.s (init): Fixed up support for the gbz80 such that it will at least run (and fail badly) the regression tests.
9323
9324         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
9325
9326 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
9327
9328         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
9329
9330         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
9331
9332 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
9333
9334   * sim/ucsim/configure:    little improvement of Cygwin-detection
9335   * sim/ucsim/configure.in: little improvement of Cygwin-detection
9336   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
9337   * support/regression/tests/bug-221100.c: small changes for mcs51
9338   * support/regression/tests/bug-221168.c: small changes for mcs51
9339   * support/regression/tests/bug-227710.c: small changes for mcs51
9340   * support/regression/tests/staticinit.c: small changes for mcs51
9341   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
9342   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
9343   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
9344
9345 $Revision$