* src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
[fw/sdcc] / ChangeLog
1 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2
3         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
4
5 2005-03-26 Raphael Neider <rneider AT web.de>
6
7         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
8           if condition == CARRY)
9         * (genCmp): adapted to new genSkipc semantics
10         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
11           on rIfx (genCmp was broken)
12
13 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
14
15         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
16         * src/z80/main.c (_keywords[]),
17         * src/SDCCglobal.h (struct options),
18         * src/SDCC.y,
19         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
20         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
21         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
22         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
23         always available in leading double underscore form. The C99 support is
24         mostly missing, but it's a start.
25         * support/regression/tests/bug-227710.c: fixed nonconforming use of
26         reserved identifier "__data".
27
28 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
29
30         * src/mcs51/peeph.def: fixed bug 1170013
31
32 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
33
34         * device/include/mcs51reg.h: fixed bug 842007
35
36 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
37
38         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
39         last time.
40
41 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
42
43         * src/port.h (struct PORT),
44         * src/avr/ralloc.c (avr_assignRegisters),
45         * src/avr/main.c,
46         * src/ds390/ralloc.c (ds390_assignRegisters),
47         * src/ds390/main.c,
48         * src/hc08/ralloc.c (hc08_assignRegisters),
49         * src/hc08/main.c,
50         * src/mcs51/ralloc.c (mcs51_assignRegisters),
51         * src/mcs51/main.c,
52         * src/pic/ralloc.c (pic14_assignRegisters),
53         * src/pic/main.c,
54         * src/pic16/ralloc.c (pic16_assignRegisters),
55         * src/pic16/main.c,
56         * src/xa51/ralloc.c (xa51_assignRegisters),
57         * src/xa51/main.c,
58         * src/z80/ralloc.c (z80_assignRegisters),
59         * src/z80/ralloc.h,
60         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
61         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
62         * src/SDCCcse.h,
63         * src/SDCCdflow.c (computeDataFlow),
64         * src/SDCCdflow.h,
65         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
66         * src/SDCCloop.h,
67         * src/SDCCcflow.c (*),
68         * src/SDCCcflow.h,
69         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
70         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
71         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
72         immedDom() returning wrong block; probably fixes bug #1160833)
73
74 2005-03-20 Borut Razem <borut.razem AT siol.net>
75
76         * support/scripts/inc2h.pl: WIN32 port
77
78 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
79
80         * device/lib/makefile.in: added abs.c and labs.c
81
82 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
83
84         * device/include/stdint.h: added
85         * device/lib/abs.c: added
86         * device/lib/labs.c: added
87         * device/include/stdlib.h: added abs() and labs() prototypes
88         * device/lib/libsdcc.lib: added abs and labs
89         * device/include/float.h,
90         * device/lib/_fsmul.c,
91         * device/lib/printf_fast.c,
92         * device/lib/printf_tiny.c: updated comments
93
94 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
95
96         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
97         bug #1164313
98
99 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
100
101         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
102         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
103
104 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
105
106         * device/lib/printf_large.c: removed inline assembly for portability and
107           readability. Use printf_fast if speed or size are more important.
108         * src/pic16/gen.c: removed conditions around use of DEBUGpc
109         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
110
111 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
112
113         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
114         prevent compiler warning
115
116 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
117
118         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
119         moved to level 0 and declared as static. Also they are explicit
120         placed in access bank. This was necessery because some times they
121         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
122         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
123         optimizations. Currently only compare to unsigned char is implemented,
124         * src/pic16/gen.c: added fReturnIdx array,
125         * (struct resolvedIfx) is moved to gen.h and made public,
126         * (struct _G): added sregsAlloc and sregsAllocSet fields,
127         * (aopForSym): added an optimization to directly store in stack of
128         the operand of a SEND iCode,
129         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
130         but as registers instead (AOP_REG) using the fReturnIdx array,
131         * (pic16_freeAsmop): remove the freed register from the
132         _G.sregsAlloc field,
133         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
134         a compare of 'WREG',
135         * (pic16_popGetTempRegCond): changed function prototype, now
136         function takes also a bitVector argument v which holds the current
137         set of registers that are allocated for stack access by aopForSym,
138         registers allocated in aopForSym for accessing stack symbols are not
139         any more part of the functions usedRegs field,
140         * (genCall): some times aopOp is called for a stack variable to be
141         send, aopForSym might perform the push, if this is true make sure
142         that genCall doesn't push the variable twice by testing _G.resDirect,
143         * (genFunction): changed testing for unspecified interrupt number
144         from 256 to INTNO_UNSPEC,
145         * modified selection scheme of frame pointer generation. Previously
146         if function did use local registers a frame pointer was generated,
147         now a frame pointer is generated only if function has arguments
148         (that need PLUSW2 register access), or has stack arguments, or the
149         compiler is not instructed to omit the frame pointer,
150         * (genEndFunction): before restoring local registers that were saved
151         in the function preamble, also restore the registers that *might*
152         have been allocated for stack access,
153         * (genRet): removed some old comments,
154         * (genCmp, the active (RN's) version): added a call to the
155         pic16_genCmp_special function to perform the compare with a more
156         robust and optimized way,
157         * (genInline): a feature has been added in inline code generation,
158         which allows a wildcard variable substitution when writing inline
159         assembly. Code is incomplete and experimental therefore undocumented,
160         * (genCast): changed order of aopOp for result and right to allow
161         aopForSym to directly load the result if possible,
162         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
163         perform an optimized compare on some selected special occasions,
164         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
165         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
166         generate an IVT any more,
167         * src/pic16/main.c (pic16_optionsTable): added command line option
168         --optimize-cmp,
169         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
170         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
171         macros,
172         * src/pic16/NOTES: Raphael Neider added in list of active developers
173         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
174         jumptable_end to prevent bug #,
175         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
176         inCond and outCond fields,
177         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
178         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
179         turn off register spilling,
180         * (packRegsForOneUse): synced with other ports' versions although it
181         is not used currently,
182         * (pic16_packRegisters): added an optimization while reading
183         structure bitfields, some registers may be saved (malloc code is
184         decreased by 80 bytes)
185
186 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
187
188         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
189         left is a bitfield, if yes, then don't optimize assignment. Perhaps
190         this can be optimized more?
191
192 2005-03-10 Raphael Neider <rneider AT web.de>
193
194         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
195           genNearPointerGet): (hopefully) fixed access to bitfields via
196           pointers (p->bitN = x; and x = p->bitN; failed)
197
198 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
199
200         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
201
202 2005-03-09 Raphael Neider <rneider AT web.de>
203
204         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
205
206 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
207
208         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
209         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
210           (regTypeNum): set REG_BIT type if necessary
211         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
212         * support/regression/tests/critical.c: check bug 1144613
213
214 2005-03-02 Raphael Neider <rneider AT web.de>
215
216         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
217
218 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
219
220         * src/avr/ralloc.c (serialRegAssign),
221         * src/ds390/ralloc.c (serialRegAssign),
222         * src/hc08/ralloc.c (serialRegAssign),
223         * src/mcs51/ralloc.c (serialRegAssign),
224         * src/pic/ralloc.c (serialRegAssign),
225         * src/pic16/ralloc.c (serialRegAssign),
226         * src/xa51/ralloc.c (serialRegAssign),
227         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
228
229 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
230
231         * src/SDCCast.c (decorateType): fixed bug 1124787
232
233 2005-02-20 Hubert Sack <sack AT digiplan.de>
234         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
235
236         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
237         patch #1121755
238
239 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
240
241         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
242         to keep the correct label reference count when adding/removing references
243         to labels. A peephole file using this is appended to patch #1144962.
244
245 2005-02-14 Raphael Neider <rneider AT web.de>
246
247         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
248         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
249         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
250           retrievals of result operand's value on assignment
251
252 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
253
254         * device/include/pic16/string.h: modified prototype for memccpy()
255         to memccpy(void *, void *, char, size_t)
256         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
257         check whether to omit frame pointer or not,
258         * (genInline): convert all occurences of "\n" to LF in inline
259         assembler blocks, this helps formatting the inline text,
260         * (pic16_loadFSR0): modified prototype,
261         * (genNearPointerGet, genNearPointerSet): reorganization of code,
262         removed some 8051 legacy code,
263         * (genPackBits): enabled handling bitfields exceeding one byte in size,
264         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
265         before allocating temporary registers in functions,
266
267 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
268
269         * support/regression/tests/bitvars.c: corrected the "fix"
270
271 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
272
273         * support/regression/tests/bitvars.c,
274         * support/regression/tests/bitwise.c,
275         * support/regression/tests/rotate.c: "fixed" problems on Alpha
276
277 2005-02-10 Raphael Neider <rneider AT web.de>
278
279         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
280           different size for Alpha
281         * src/pic16/gen.c (genCmpEq) : improved compare with 0
282
283 2005-02-09 Raphael Neider <rneider AT web.de>
284
285         * src/SDCC.lex(doPragma) : save and restore warning options as well
286           (also added new stack plus clone- and copyAndFreeSDCCERRG())
287         * have #pragma less_pedantic set the errorlevel to WARNING
288           (fixes #1117001)
289         * (cloneOptimize) : fixed wrong malloc's size
290         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
291           facilitate correct handling of #pragma (save|restore)
292
293 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
294
295         * src/mcs51/gen.c: removed non-standard C nameless struct/union
296
297 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
298
299         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
300
301 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
302
303         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
304
305 2005-02-02 Raphael Neider <rneider AT web.de>
306
307         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
308         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
309         * (pic16_storeForReturn): fixed to allow returning function pointers
310         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
311         * device/include/pic16/{stddef.h,stdbool.h}: added
312
313 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
314
315         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
316
317 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
318
319         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
320         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
321          appeared to be required
322
323 2005-01-31 Borut Razem <borut.razem AT siol.net>
324
325         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
326           include/mcs51 and include/z80 directories to the package
327
328 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
329
330         * src/hc08/gen.c (genFunction): fixed bug #1112752
331
332 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
333
334         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
335
336 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
337
338         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
339
340 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
341
342         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
343
344 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
345
346         * device/include/c8051fxxx.h: removed these 6 files
347         * device/include/mcs51/c8051fxxx.h: added these 11 new files
348
349 2005-01-26 Raphael Neider <rneider AT web.de>
350
351         * src/pic16/gen.c (genAssign): fixed assignment from longs
352           in codespace (were cut to three bytes)
353         * (genDummyRead): implemented (except for CODESPACE...),
354           fixed bug #1108575
355         * src/pic16/glue.c (emitStatistics): beautified
356         * device/lib/pic16/libm/Makefile: added include path
357
358 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
359
360         * src/z80/gen.c (aopPut): fixed bug #1103902
361
362 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
363
364         * device/lib/expf.c: fixed bug #1095792
365
366 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
367
368         * device/lib/pic16/libm: added Math library sources
369
370 2005-01-24 Raphael Neider <rneider AT web.de>
371
372         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
373           to enable upcast to pCodeOpReg2 (there is no type tag to
374           differenciate the two and pic16_popGet2p cast into PCOR2)
375         * src/pic16/main.c (_process_pragma): fixed another malloc bug
376           (sizeof(sectNames) changed to sizeof(sectName))
377           Both patches fix segfaults under MinGW.
378
379 2005-01-23 Raphael Neider <rneider AT web.de>
380
381         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
382           Safe_[mc]?alloc()'ed variables
383         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
384           of (byte sized) temporaries (assign them to WREG for now)
385         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
386           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
387           this might fix SIGSEGVs on MinGW...
388         * src/SDCCopt.c (killDeadCode): restored original behaviour
389           (volatile operands might get thrown away though)
390
391 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
392
393         * src/pic16/gen.c: fixed bug #1106975,
394         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
395         pointer update, INTCON is saved, global interrupts are disabled and
396         restored after updateing TOS.
397         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
398         * added function attribute 'shadowregs' to take advantage of shadow
399         registers,
400         * added function attribute 'wparam' as an alternative to the wparam
401         pragma,
402         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
403         user declares a non-ISR function as 'shadowregs',
404         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
405
406 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
407
408         * .version: bumped version number to 2.4.8
409         * device/lib/pic16/pics.all: list of PIC18F devices supported by
410         pic16 port,
411         * device/lib/pic16/libio/i2c/: I2C module support library,
412         * device/include/pic16/i2c.h: I2C support library header,
413         * device/lib/pic16/libc/stdio/: standard IO support sources,
414         * (printf_small.c): printf_small() source, supports float print,
415         * (printf_tiny.c): printf_tiny() source, does not support floats,
416         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
417         enable global optimizations for entire library source, other
418         Makefiles in the source tree are also modified to reflect this,
419         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
420         function,
421         * doc/sdccman.lyx: updated to reflect new changes,
422         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
423         sym->onStack if-case,
424         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
425         sbit, idata, _idata, xdata, _xdata,
426         * added pragma library, to link an external library, (see doc),
427         * removed command line options, --pomit-config-words, --pomit-ivt,
428         --pleave-reset-vector,
429         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
430         when calling assembler to reflect memory model used, also define
431         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
432         reflect stack model used,
433         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
434         on stack return NULL,
435
436 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
437
438         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
439           of the operands is volatile. Fixes #1020220
440
441 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
442
443         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
444         * (OptimizeRegUsage): make sure that there is really no other flow where
445           the first pCode is used
446
447 2005-01-22 Raphael Neider <rneider AT web.de>
448
449         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
450           to fix #1106967 (pCode->seq are not set up correctly)
451
452 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
453
454         * src/SDCCglue.c (glue): make sure code area is declared before the
455         static initialization area.
456
457 2005-01-21 Raphael Neider <rneider AT web.de>
458
459         * device/lib/Makefile.in: fixed test for pic16 install dir
460         * device/lib/pic16/*/Makefile*: modified compile flags to enable
461           optimizations
462         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
463           added --optimize-goto compiler switch and pragma wparam documentation
464         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
465         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
466           and PRODH closing bug #1071770 (peephole optimizer)
467
468 2005-01-19 Raphael Neider <rneider AT web.de>
469
470         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
471           cmdLine buffers (used when calling sdcpp...) are large enough
472           (MAX_PATH=256 truncates arguments leading to system halts when
473           used in MinGW...)
474         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
475         * (genUminus): rewritten to for efficiency
476         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
477           used uninitialized in some cases)
478         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
479           copy the third byte from the int -- now assumes 0x80 (data memory)
480         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
481           operands (genAddLit expects the iCode's operands to swapped as
482           well), fixed leftover bytes (crashed for short left operands)
483         * (pic16_genMinusDec): performance improvements, removed false
484           PIC14 emitSKPNCs
485         * (pic16_genMinus): fixed to cope with differently sized operands
486         * src/pic16/glue.c (pic16_glue): added new banksel optimization
487           for --obanksel > 1
488         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
489         * src/pic16/graph.[ch]: implementation of directed graphs, used by
490           new banksel optimization
491         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
492           analysis for temporary registers (segfaults...)
493         * src/pic16/peeph.def: added rule
494
495 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
496
497         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
498         which converts a float number to its ASCII representation
499         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
500         functions to convert the fractional and integer part of a float to ASCII,
501         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
502         realloc.c): added _MALLOC_SPEC to explicit place variables in data
503         ram
504         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
505         _STATMEM macros,
506         * device/include/pic16/adc.h: added GPL info,
507         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
508         a pCodeOp as tested operand,
509         * (genNearPointerGet): optimized bit testing, does not use
510         intermediate register for bit value, test directly instead with
511         BTFSS, BTFSC, works only for single bits,
512         * (genpic16Code): dump the name of the iCode in the asm,
513         * src/pic16/ralloc.c (decodeOp): removed static declaration and
514         renamed to pic16_decodeOp,
515         * (serialRegAssign): do not allocate a temporary register for iCode
516         sequences that test a single bit for 1/0
517
518 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
519
520         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
521         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
522         access stack and frame pointers. They are initially assigned to
523         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
524         accessing SFRs. Updated all occurences of modification of stack or
525         frame pointer in gen.c and pcode.c,
526         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
527         assigning of a literal value to pointers,
528         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
529         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
530         selected
531
532 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
533
534         * doc/sdccman.lyx: update documentation about stack pragma, added
535         some info for stack memory models
536
537 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
538
539         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
540
541 2005-01-08 Raphael Neider <rneider AT web.de>
542
543         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
544           udata sections to fix bug #1097823
545
546 2005-01-05 Raphael Neider <rneider AT web.de>
547
548         * src/pic16/gen.c (genGenericShift): added handling of differently
549           sized left operand and result
550
551 2005-01-04 Raphael Neider <rneider AT web.de>
552
553         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
554         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
555           to hold the condition bit)
556         * added new version of genCmp (old code available via #define)
557         * added new version of genShiftLeft/genShiftRight in a generic
558           way, now supports shifting by negative values
559         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
560           shiftCount (expected by genGenericShift)
561         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
562         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
563           dump
564         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
565           is an invalid literal too...)
566
567 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
568
569         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
570         from Raphael Neider,
571         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
572         for 8-bit literals. This fixes some literal operands which are sign
573         extended to 16-bits ints when instruction needs only 8-bits.
574
575 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
576
577         * device/lib/logf.c: added mcs51 assembly version
578         * device/lib/expf.c: added mcs51 assembly version
579         * device/lib/_logexpf.c: new shared asm code for expf and logf
580         * device/include/math.h: add defines for assembly math library
581         * device/lib/Makefile.in: build new _logexpf.c
582         * device/lib/libfloat.lib: use new _logexpf.c
583
584 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
585
586         * src/pic/device.c
587         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
588           device types which have less than 0x7f registers.
589
590 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
591
592         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
593
594 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
595
596         * device/lib/printf_fast.c: only build on supported arch.
597         * device/lib/printf_tiny.c: only build on supported arch.
598         * device/lib/printf_fast_f.c: only build if asm float lib
599         * device/lib/_fsget1arg.c: only build if asm float lib
600         * device/lib/_fsget2args.c: only build if asm float lib
601         * device/lib/_fsnormalize.c: only build if asm float lib
602         * device/lib/_fsreturnval.c: only build if asm float lib
603         * device/lib/_fsrshift.c: only build if asm float lib
604         * device/lib/_fsswapargs.c: only build if asm float lib
605         * device/include/stdio.h: don't provide print_fast,
606           print_fast_f, print_tiny prototypes if --xstack used
607
608 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
609
610         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
611         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
612           to the SOURCES
613
614 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
615
616         * device/lib/printf_fast_f.c: same as printf_fast, but
617           with floating point enabled
618         * device/lib/printf_fast.c: minor tweaks
619         * device/include/stdio.h: add printf_fast_f
620
621 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
622
623         * src/SDCCmain.c: make --float-reent default for mcs51
624         * device/lib/_fsadd.c: added mcs51 assembly version
625         * device/lib/_fssub.c: added mcs51 assembly version
626         * device/lib/_fsmul.c: added mcs51 assembly version
627         * device/lib/_fsdiv.c: added mcs51 assembly version
628         * device/lib/_fseq.c: added mcs51 assembly version
629         * device/lib/_fsneq.c: added mcs51 assembly version
630         * device/lib/_fsgt.c: added mcs51 assembly version
631         * device/lib/_fslt.c: added mcs51 assembly version
632         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
633         * device/lib/Makefile.in: add _fscmp to build
634         * device/lib/libfloat.lib: add _fscmp to build
635
636 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
637
638         * device/lib/_fs2slong.c: added mcs51 assembly version
639         * device/lib/_fs2sint.c: added mcs51 assembly version
640         * device/lib/_fs2schar.c: added mcs51 assembly version
641         * device/lib/_fs2ulong.c: added mcs51 assembly version
642         * device/lib/_fs2uint.c: added mcs51 assembly version
643         * device/lib/_fs2uchar.c: added mcs51 assembly version
644         * device/lib/_slong2fs.c: added mcs51 assembly version
645         * device/lib/_sint2fs.c: added mcs51 assembly version
646         * device/lib/_schar2fs.c: added mcs51 assembly version
647         * device/lib/_ulong2fs.c: added mcs51 assembly version
648         * device/lib/_uint2fs.c: added mcs51 assembly version
649         * device/lib/_uchar2fs.c: added mcs51 assembly version
650         * device/include/float.h: added #define to select asm vs c
651
652 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
653
654         * device/lib/printf_fast.c: improvements to float output
655         * device/include/float.h: add defines for assembly float library
656         * device/lib/_fsget1arg.c: receive 1 float arg
657         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
658         * device/lib/_fsnormalize.c: normalize a float
659         * device/lib/_fsreturnval.c: return float, various helper routines
660         * device/lib/_fsrshift.c: right shift a float's mantissa
661         * device/lib/_fsswapargs.c: swap 2 floats
662         * device/lib/Makefile.in: build these 6 new files for mcs51
663         * device/lib/libfloat.lib: add these 6 files to the library
664
665 2004-12-26 Borut Razem <borut.razem AT siol.net>
666
667         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
668           built by gcc 3.4.2
669
670 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
671
672         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
673           and fully reentrant and register bank neutral.
674         * device/lib/printf_fast.c: added float (not enabled by default),
675           added compact/slower integer (also not enabled by default),
676           improved size/speed of fast integer code, other minor changes
677         * device/include/stdio.h, device/lib/Makefile.in,
678           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
679
680 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
681
682         * src/pic16/pcode.c: declaring variables other than at the start of a
683           block is not supported in C by VC6.
684
685 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
686
687         * applied a previous patch from Raphael Neider that wasn't included
688         in the previous commits, which fixes infinite loops within jumptable
689         improvements,
690         * made some fixes that previous patches introduced
691
692 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
693
694         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
695         that fixes an issue with AOP_PCODE asmop's offset,
696         * (pic16_popCopyReg): update instance field too,
697         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
698         function of pic port,
699         * (genCmp, genAnd, genAssign),
700         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
701
702 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
703
704         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
705         variables initial values to idata section,
706         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
707         variables in some functions. This utilizes parmBytes field of iCode
708         structure to hold the offset of the variable in stack. (might be
709         able to use the stack field too?)
710         * applied patch from Raphael Neider # ### , # ###
711         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
712         variable initial values in idata section,
713         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
714         for static variables with initial value
715         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
716         applied fix in while loop from Raphael Neider.
717
718 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
719
720         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
721         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
722         * src/ds390/ralloc.c (serialRegAssign): spill bits
723         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
724         * support/Util/SDCCerr.c,
725         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
726         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
727         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
728
729 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
730
731         * device/include/sdcc-lib.h: inserted LGPL, added includes
732           asm/ds390/features.h and asm/mcs51/features.h
733         * device/include/asm/default/features.h,
734         * device/include/asm/gbz80/features.h,
735         * device/include/asm/z80/features.h: added empty _AUTOMEM
736           and _STATMEM
737         * device/include/asm/ds390/features.h,
738         * device/include/asm/mcs51/features.h: added files with defines for
739           _AUTOMEM and _STATMEM indicating automatic and static storage class
740         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
741         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
742         * src/SDCCicode.c (geniCodeCast),
743         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
744         * src/SDCCloop.c (loopInduction): removed unused variable lr
745         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
746           to convertToFcall to include char modulo (RFE 1065037), added check
747           if left operand is unsigned and use abs of literal value
748         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
749           as it doesn't work after conversion from peephole.def to peephole.rul
750         * src/mcs51/gen.c (toBoolean): added check for size,
751           (genModOneByte): optimized code for signed char modulo a literal
752           power of 2 (thanks to Hubert Sack),
753           (genRRC): removed unnecessary "clr c",
754           (genRLC): replaced "add a,acc" with cheaper "rlc a"
755         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
756           jump optimization,
757           swapped rules 256.c and 256.d,
758           extended 256.d by using new multiple checks (thanks Erik),
759           added rules 256.e and 256.f,
760           updated rule 261.a and 261.b to new generated code
761         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
762
763 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
764
765         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
766           induction related bugs, including first part of bug #1074377
767
768 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
769
770         * applied patch from bug-report #1076292,
771         * applied patches for genAnd and Goto-optimizations for Raphael
772         Neider,
773         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
774         dump a less iCode information,
775         * src/pic16/device.h (pic16_options_t): added field debgen,
776         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
777         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
778         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
779         puclic,
780         * (various functions): added macros FENTRY and FENTRY2 to functions,
781         to emit function prologue,
782         * (various functions): fixed indentation,
783         * (genNearPointerGet): fixed loading of FSR0,
784         * (genPackBits): applied patch from Raphael Neider to fix updating
785         of FSR0 and touching only the modified bits,
786         * src/pic16/genarith.c (various functions): added macros FENTRY to
787         emit function prologue in comments,
788         * src/pic16/pcode.h: added functions debugf2, debugf3,
789         * src/pic16/ralloc.c: partial fix for packForPush caused
790         segmentation fault,
791
792 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
793
794         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
795           <stsp AT users.sourceforge.net> with reversed byte order
796         * support/regression/tests/rotate.c: added (ds390 skips some tests)
797
798 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
799
800         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
801           bug #1074377
802         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
803         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
804
805 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
806
807         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
808
809 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
810
811         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
812           conditions,
813           (setFromConditionArgs): friendly operand parser for peephole rules,
814           (operandBaseName, operandsNotRelated): new peephole condition
815           "operandsNotRelated" -- similar to "operandsNotSame", but takes
816           architecture specific register naming into account, handles n-way
817           comparisons, and supports quoted literals
818         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
819
820 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
821
822         * src/mcs51/peeph.def: fixed bug #1076940
823
824 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
825
826         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
827
828 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
829
830         Adding support for replacing ljmps with sjmps in jumptables
831         generated for switch statements. For now you need to set the
832         environment variable SDCC_SJMP_JUMPTABLE to enable this.
833         Now 4 algorithms for mcs51 jumptable generation are used:
834         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
835         addresses loaded pc-relative for up to 112 cases and stack-pushing
836         target addresses loaded with offset from dptr for up to 256 cases.
837
838         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
839         * src/mcs51/main.c: adapted constants for switch table generation
840         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
841
842 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
843
844         * device/lib/printf_large.c (_print_format): fixed bug 1073386
845         * support/regression/tests/bug1057979.c: added test for bug 1073386
846
847 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
848
849         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
850         compilers
851
852 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
853
854         * src/pic16/device.h,
855         * src/pic16/genarith.c,
856         * src/pic16/glue.c,
857         * src/pic16/main.c,
858         * src/pic16/pcode.c: applied patches #1068154 and #1070213
859
860 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
861
862         Large cummulative patch for pic16 port.
863         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
864         to call when a stack overflow occurs,
865         * (malloc.h): added CVS Id tag,
866         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
867         variable,
868         * added libc directory. The current version of LibC contains string
869         functions, ctype functions and macros and some functions of the
870         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
871         be extensively tested in the future. Standard disclaimer here.
872         Library is not automatically build yet. But one can build it by
873         invoking 'make' inside the libc directory.
874         * added ADC library under libio. Preliminary version yet.
875
876         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
877         * src/pic16/gen.c (aopForRemat): asmop size is filled by
878         aopForRemat() now and not by pic16_aopOp(),
879         * (pic16_popGetTempReg): removed warning messgae when allocating
880         temporary registers, its a buggy feature and will be removed,
881         * (pic16_popGet): set register instance field in AOP_CRY,
882         * (pic16_outBitC): fixed for results in size greater than 1,
883         * (genUminusFloat): fixed for pic16, ported code from mcs51,
884         * (pic16_storeForReturn): optimized return of 0,
885         * (genCmp): experimental code for new genCmp which uses PIC18's
886         special compare&skip instructions. Initial tests fail some times
887         with variables grater than 1 byte in size, so new code is disabled,
888         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
889         a single bit,
890         * (genCast): began a fix to optimize the casting of a bit to another
891         bit, now assigning a bitfield to another bitfield will fail, sorry,
892         * src/pic16/main.c: disabled the use of lr-support feature,
893         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
894         * added some function prototypes, added function _debugf prototype,
895         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
896         bits with offset (case PO_GPR_BIT),
897         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
898         command line,
899         * (isBankInstruction): modified to return 0 for no banking instruction,
900         and 1 for banking instruction,
901         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
902         caused stop processing pCodes after a inline assembly block,
903         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
904         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
905         registers when it shouldn't,
906         * src/pic16/ralloc.c (allocReg): add preliminary support for
907         supporting a limited set of temporary registers,
908
909 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
910
911         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
912           genDataPointerSet): ensure assignments always copy in MSB to LSB
913           order,
914           (loadRegFromAop): recognize CLRH optimization,
915           (genFunction): optimize RECEIVE iCodes in reentrant functions
916
917 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
918
919         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
920           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
921           selected.
922         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
923         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
924           contiguous with data
925
926 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
927
928         * device/lib/_gptrget.c (_gptrget),
929         * device/lib/_gptrgetc.c (_gptrgetc),
930         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
931           instead of sjmp to ret
932         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
933           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
934
935 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
936
937         * .version: bumped version to 2.4.7
938         * device/lib/_gptrget.c (_gptrget): is now _naked
939         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
940         * device/lib/_gptrput.c (_gptrput): is now _naked
941         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
942           (createFunction): fixed xstack
943         * src/SDCCglue.c (emitMaps): set allocation required for bit area
944         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
945           or bit either,
946           (geniCodeCritical): store original interrupt state in an iTemp bit
947           var unless stack-auto
948         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
949         * src/SDCCmain.c (setIncludePath): added include/target to search path
950         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
951         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
952           prototype,
953           (processFuncArgs): put bit vars in bit area
954         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
955           unsaveRBank): fixed xstack,
956           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
957           (genFunction, genEndFunction): fixed xstack,
958           (genAssign): optimization don't walk backwards through mem
959         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
960         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
961         * support/regression/Makefile: also make library (for stack-auto) when
962           making "all" and added "test-mcs51-xstack-auto"
963         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
964         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
965         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
966         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
967         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
968           make-library by MAKE_LIBRARY
969         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
970           regression tests for xstack
971         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
972         * support/regression/tests/critical.c: test for critical on mcs51
973
974 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
975
976         * support/regression/ports/ucz80/spec.mk: use include and lib files from
977           built version of sdcc instead of installed version
978
979 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
980
981         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
982         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
983           vprintf.c now
984         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
985         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
986           WARNING: remove device/lib/build/z80/printf.o by hand when
987           updating from previous build!
988         * device/lib/z80/printf.c: updated comment
989         * support/regression/tests/bug1057979.c: test all ports now
990         * support/regression/tests/bug1065458.c: file added
991
992 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
993
994         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
995           *_start and *_end symbols for static functions
996
997 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
998
999         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
1000           and search crt0.o in all library paths,
1001           (setIncludePath): proper handling of --nostdinc,
1002           (setLibPath): proper handling of --nostdlib
1003         * support/regression/Makefile,
1004         * support/regression/ports/ds390/spec.mk,
1005         * support/regression/ports/gbz80/spec.mk,
1006         * support/regression/ports/hc08/spec.mk,
1007         * support/regression/ports/mcs51/spec.mk,
1008         * support/regression/ports/mcs51-large/spec.mk,
1009         * support/regression/ports/mcs51-stack-auto/spec.mk,
1010         * support/regression/ports/z80/spec.mk: use include and lib files from
1011           built version of sdcc instead of installed version
1012         * doc/sdccman.lyx: fixed typo in --nostdinc
1013
1014 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
1015
1016         * src/pic/pcode.c,
1017         * src/pic/device.c,
1018         * src/pic/ralloc.c,
1019         * src/pic/gen.c : added support to generate code for struct bit fields.
1020
1021 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
1022
1023         * as/xa51/xa_version.h,
1024         * device/include/errno.h,
1025         * device/include/regc515c.h,
1026         * device/lib/_itoa.c,
1027         * device/lib/_ltoa.c,
1028         * device/lib/ser_ir_cts_rts.c,
1029         * sim/ucsim/xa.src/glob.cc,
1030         * sim/ucsim/xa.src/inst_gen.cc,
1031         * sim/ucsim/xa.src/xa_bit.cc,
1032         * sim/ucsim/xa.src/xa_sfr.cc,
1033         * sim/ucsim/z80.src/inst_dd.cc,
1034         * sim/ucsim/z80.src/inst_fdcb.cc,
1035         * support/scripts/keil2sdcc.pl,
1036         * src/pic16/pic16.dsp,
1037         * src/pic16/pic16a.dsp: corrected cvs line endings
1038         * device/lib/printf_large.c: fixed bug 1057979
1039         * src/pic16/gen.c: fixed non-C standard code
1040         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
1041         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
1042         * support/regression/ports/mcs51/support.c: reload T1 asap
1043         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
1044           pdata use and clear idata startup behaviour
1045         * support/regression/tests/bug1057979.c: added
1046
1047 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
1048
1049         * device/examples/ds390/ow390/ad26.h,
1050         * device/examples/ds390/ow390/cnt1d.h,
1051         * device/examples/ds390/ow390/crcutil.c,
1052         * device/examples/ds390/ow390/ownet.h,
1053         * device/examples/ds390/ow390/owsesu.c,
1054         * device/examples/ds390/ow390/swt12.h,
1055         * device/examples/ds390/ow390/swtoper.c,
1056         * device/examples/ds390/ow390/temp10.h,
1057         * device/examples/ds390/ow390/thermodl.c,
1058         * device/examples/ds390/tinitalk/tinitalk.dsp,
1059         * device/examples/ds390/tinitalk/tinitalk.dsw,
1060         * device/examples/mcs51/clock/hw.h,
1061         * device/examples/mcs51/simple2/go.bat,
1062         * device/examples/serialcomm/windows/serial.h,
1063         * device/examples/xa51/dummy.c,
1064         * device/examples/xa51/hello.c,
1065         * device/include/80c51xa.h,
1066         * device/include/at89x051.h: corrected cvs line endings
1067
1068 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
1069
1070         * src/pic16/main.c (options): added command line --gstack, to trace
1071         stack over/under flows,
1072         * added pragma 'wparam' to allow passing first byte of function
1073         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
1074         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
1075         call to __gstack_test function and sets up the symbol as extern,
1076         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
1077         * popaop): added call to pic16_testStackOverflow,
1078         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
1079         wparamList list,
1080         * (genCall, genPcall): now all parameters are passed via stack
1081         except in functions that are pass to wparam pragma in which WREG is
1082         used too,
1083         * (genPcall): REENTRANT flag is checked to see if variable prototype
1084         contains reentrant keyword, don't call a non-reentrant function, via
1085         a reentrant function pointer or vice versa, functions are never
1086         passed via WREG,
1087         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
1088         D.Winkler,
1089         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
1090         SIGSEGV when accessing a NULL register stucture,
1091         * (pic16_printGPointerType): modified to handle UPPER modifier for
1092         function initializers, changed prototype of function to simpler one,
1093         * (pic16_printIvalFuncPtr): check to see if function is already
1094         added in externs list,
1095         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
1096         optimized a move from W to SFR with a move to the same register
1097         later after a CALL,
1098         * device/lib/pic16/debug: NEW directory, contains debug features
1099         which are enabled when linking with libdebug.lib, currently command
1100         line option --gstack enables stack pointer tracing for over/under
1101         flow, corresponding sources are in debug/gstack
1102
1103 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
1104
1105         * doc/sdccman.lyx: updated SDCC version,
1106         * (PIC16 port): update list of command line options,
1107         * src/pic16/device.h (structure pic16_options_t): added field gstack
1108         to enable stack overflow tracing on push/pops,
1109         * src/pic16/device.c (statistics structure): added statistics
1110         structure,
1111         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
1112         pic16_dump_int_registers): increase statistics counters for each
1113         * variable which is encountered
1114         * (pic16_dump_usection): emit each .udata variable to its own udata
1115         section,
1116         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
1117         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
1118         parameters via stack, otherwise use old scheme,
1119         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
1120         assembler output file,
1121         * src/pic16/main.c: added command line options --gstack to enable
1122         push/pop tracing for stack overflow,
1123         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
1124         instructions): added size of each instruction,
1125         * (pic16_countInstruction): estimate size of instructions in
1126         the_pFile list, inline assembly blocks are not counted,
1127         * (pic16_FixRegisterBanking): trace previous register usage, when
1128         banksel optimizations is greater than 0, don't emit a redudant
1129         banksel directive,
1130
1131 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
1132
1133         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
1134         * src/pic16/ralloc.c : applied same fix for pic16.
1135         * src/pic/gen.c : tidied it up a little.
1136
1137 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1138
1139         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
1140         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
1141
1142 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1143
1144         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
1145
1146 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1147
1148         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
1149         non-reentrant function __modsint in the interrupt function (thus
1150         corrupting math operations during serial I/O)
1151         * device/lib/ser_ir.c: as above, changed buffersize
1152         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
1153         256.c,d for zeroing
1154         * doc/Makefile: added option -t for rsync
1155
1156 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1157
1158         * src/SDCCast.h (struct ast),
1159         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
1160
1161 2004-10-20 Borut Razem <borut.razem AT siol.net>
1162
1163         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
1164         package
1165
1166 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
1167
1168         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
1169         makefile targets,
1170         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
1171         support functions to replace long sequences of MOVFF's from access
1172         bank registers to stack and vice versa,
1173         * src/pic16/device.h: added new field opt_flags, where optimization
1174         flags can be set to enable certain features,
1175         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
1176         * pBlock, (genFunction, genEndFunction): surroung loop for
1177         saving/loading used registers in stack with PC_INFO pCodes,
1178         INF_LREGS. Code in between can then be optimized by pCode optimizer
1179         to support function calls,
1180         * (genDataPointerSet): fixed bug which loaded float fields in
1181         structures with corrupt data,
1182         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
1183         in a standard way debug info on stderr. Feature used for developing
1184         and debugging only,
1185         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
1186         obsolete chunks of code,
1187         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
1188         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
1189         * pic16/src/pcode.c (pic16_newpCodeInfo,
1190         * (pic16_newpCodeOpLocalRegs),
1191         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
1192         feature,
1193         * (pic16_pCodeConstString): printing of the initial value of a
1194         symbol as a comment is inhibited since parsing was already done by
1195         copyStr and output is corrupt,
1196         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
1197
1198 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1199
1200         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
1201
1202 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
1203
1204         * as/mcs51/lkarea.c: removed old K&R style,
1205           (lnksect): changed check on boundary error,
1206           (lnksect2): changed check on boundary error,
1207           (lnksect2): extend XSTK to end of page if size = 1
1208         * as/mcs51/lkmain.c: removed old K&R style,
1209           (Areas51): create l_IRAM symbol
1210         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
1211         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
1212           model-mcs51-stack-auto, added model-mcs51-xstack-auto
1213         * device/lib/_mullong.c: added version to be compiled with xstack
1214         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
1215         * device/lib/mcs51/crtxclear.asm: clear pdata as well
1216         * device/lib/mcs51/crtxstack.asm: fixed comment
1217         * src/SDCCglue.c: maxInterrupts defaults to 0,
1218           (emitMaps): added pdata,
1219           (createInterruptVect): (re)moved default,
1220           (glue): added pdata,
1221           (glue): moved __start__xstack to XSTK with default size 1
1222         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
1223           and options.float_rent when options.stackAuto is set,
1224           (linkEdit): only write XDATA_NAME if provided on command line
1225         * src/SDCCmem.h,
1226         * src/SDCCmem.c: added pdata
1227         * src/port.h: added pdata_name to PORT
1228         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
1229           (saveRegisters, unsaveRegisters): removed usage of B,
1230           (genMinus): fixed accumulator clash,
1231           (genJumpTab): added comment, this needs another look
1232         * src/mcs51/gen.c: added check for "B in use" paranoia,
1233           added pushB() and popB()
1234         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
1235           chance
1236         * src/avr/main.c,
1237         * src/ds390/main.c,
1238         * src/hc08/main.c,
1239         * src/mcs51/main.c,
1240         * src/pic/main.c,
1241         * src/pic16/main.c,
1242         * src/xa51/main.c,
1243         * src/z80/main.c: (reset_regparms) made void parameter explicit and
1244           added PSEG (PAG,XDATA) or NULL to port specifier
1245         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
1246         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
1247           (_mcs51_genInitStartup): removed __start__xstack equ,
1248           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
1249         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
1250         * src/z80/gen.c (_rleAppend): fixed warnings
1251         * support/regression/tests/zeropad.c: added pdata test
1252         * .version: bumped to 2.4.6
1253
1254 2004-10-17 Borut Razem <borut.razem AT siol.net>
1255
1256         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
1257         as a part of nightly build
1258
1259 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
1260
1261         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
1262         WREG holds the first byte function parameters,
1263         * (aopForSym): take special case for symbols which are in FARSPACE
1264         but in CODESPACE too,
1265         * (assignResultValue): modified to take into account _G.useWreg,
1266         * (genCall): don't use wreg for parameter passing when function is
1267         declared as reentrant, too, added optimization INCF to stack
1268         pointer when stack parameter count is 1,
1269         * (genFunction, genEndFunction): refurnished and fixed to not using
1270         wreg for passing parameters when function has varargs or is
1271         reentrant, fixed bug with symbol name compare for generating
1272         functions in absolute address,
1273         * (pic16_storeForReturn): refurnished,
1274         * (genCmp): began writing a new version of the function, not ready
1275         yet, therefore it is disabled,
1276         * (genAssign): do not read code memory when assigning a function to
1277         a pointer function,
1278         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
1279         array of characters, not pointer,
1280         * (pic16initialComments): in debug mode emit an .ident directive for
1281         the assembler,
1282         * (_process_pragma): emit a new warning type (internal to pic16)
1283         when setting stack to default length, emit a similar warning when
1284         placing a function at absolute address and address is not word aligned
1285         * (_pic16_parseOptions): added 'return TRUE' statement,
1286         * (_pic16_linkEdit): if compiling a source, then add the source's
1287         file object, first in the list of objects to link,
1288
1289 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
1290
1291         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
1292         * src/pic/main.c : removed VC warning.
1293         * src/pic/gen.c : changed comment.
1294
1295 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
1296
1297         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
1298         reference to a deprecated symbol _GPTRREG was causing failure to
1299         link. Thanks G. M. Gallant for the info.
1300
1301 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
1302
1303         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
1304         comments for Bugs item #954788.
1305
1306 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
1307
1308         * src/pic16/device.c (pic16_dump_gsection,
1309         * pic16_groupRegistersInSection): handle symbols declared to be in
1310         access bank differently,
1311         * src/pic16/gen.c (struct _G): added field resDirect,
1312         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
1313         send values read from stack directly to result and don't allocate
1314         temporary values,
1315         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
1316         same registers,
1317         * (pic16_sameRegsOfs): NEW,
1318         * (freeAsmop): if _G.resDirect is set then do not mark registers as
1319         free because they were not allocated from temporary pool,
1320         * pic16_popRegFromString): workaround to fix a problem with
1321         allocating variables twice or never,
1322         * (genGenPointerGet): using PRODL instead of FSR0H,
1323         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
1324         instead of FSR0H,
1325         * (genAssign): take advantage of the _G.resDirect flag,
1326         * (genCast): around line 11844, use mov2f instead of directly
1327         MOVFF'ing between operands to account for literal values,
1328         * src/pic16/genutils.c: some new debug functions for gpsim have been
1329         added,
1330         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
1331         float with integer part only,
1332         * src/pic16/main.c (_process_pragma): handle pragma udata access to
1333         place variables in access bank
1334         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
1335         updated sources to reflect recent changes in gen.c
1336
1337 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
1338
1339         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
1340         sources that searched for headers in installation path, now the
1341         device/include/pic16 is used,
1342         * src/pic16/glue.c (pic16glue),
1343         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
1344         .line directives if not in debug mode, this suppresses assembler's
1345         warnings for ignored directives
1346
1347 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
1348
1349         * src/port.h: made reset_regparms prototype void parameter explicit.
1350         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
1351         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
1352         * doc/sdccman.lyx: documented warning disabling and how to use
1353           printf_large to make it print floats.
1354         * device/include/stdbool.h: NEW
1355         * device/lib/_atof.c,
1356         * device/lib/_divuint.c,
1357         * device/lib/_divulong.c,
1358         * device/lib/expf.c,
1359         * device/lib/printf_large.c,
1360         * device/lib/sincosf.c,
1361         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
1362         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
1363           a completely reentrant lib.
1364
1365 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
1366
1367         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
1368         * device/include/pic16/stdio.h: fixed bug with colon
1369
1370 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
1371
1372         * device/include/pic16/stdio.h,
1373         * device/include/pic16/stdlib.h,
1374         * device/include/pic16/math.h: NEW
1375         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
1376         declared as _naked to reduce overhead
1377         * device/lib/Makefile.in (target port-specific-objects-pic16):
1378         changed * to *.* so to ignore the CVS directory,
1379         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
1380         stacked variables back in stack,
1381         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
1382         corruption
1383
1384 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
1385
1386         * .version: bumped version number to 2.4.5
1387         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
1388         * support/Util/SDCCerr.c (messages structure): added entry for
1389         W_POSSBUG2
1390
1391         Large cumulative patch for pic16 port and libraries.
1392         * device/include/pic16/sdcc-lib.h,
1393         * device/include/pic16/stdarg.h,
1394         * device/include/asm/pic16/features.h,
1395         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
1396         * device/include/pic16/float.h: changes reentrant keyword with
1397         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
1398         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
1399         updated target build-libraries to include objects from gptr,
1400         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
1401         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
1402         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
1403         all function headings,
1404         * src/SDCCmain.c: added global parameter userIncDirsSet,
1405         * (parseCmdLine): when option -I is encountered add directory to
1406         userIncDirsSet too,
1407         * src/version.awk: added space between control and long,
1408         * src/pic16/NOTES: added some notes for the port,
1409         * src/pic16/gen.c: added prototype for mov2fp function,
1410         * (fReturnpic16[]): properly named return value registers,
1411         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
1412         * (aopForSym): added code to handle symbols with onStack flag set,
1413         symbols onStack are allocated PTRSIZE bytes,
1414         * (aopFreeAsmop): handles special case where asmops are stack objects,
1415         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
1416         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
1417         added argument lock to trace flaws in allocating temporary registers
1418         when developing port,
1419         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
1420         * (pic16_popRegFromString): reenabled allocating a direct register
1421         from string,
1422         * (assignResultValue): various beautifications,
1423         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
1424         referenced function argument,
1425         * (genIpush): reenabled to allow stacked arguments, handles only
1426         ic->parmPush iCodes,
1427         * (genCall, genPcall): major changes to allow for variable argument
1428         functions, fixed a bug with falsely restoring stack pointer after
1429         returning from call,
1430         * (genFunction): pending code for critical function,
1431         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
1432         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
1433         * (genNearPointerGet): fixed bug with indirect reading, was always
1434         reading from INDF0
1435         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
1436         pointers,
1437         * (genAddrOf): rewrote code to take address of a stacked function parameter
1438         * (genCast): fixed casting to generic pointer type,
1439         * src/pic16/gen.h: added AOP_STA,
1440         * (struct asmop): added field stk,
1441         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
1442         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
1443         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
1444         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
1445         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
1446         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
1447         generic pointers,
1448         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
1449         and library paths,
1450         * (pic16_port structure): generic pointer size is set to 3,
1451         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
1452         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
1453         compiler warning,
1454         * src/pic16/ralloc.c (allocReg): prevent allocating register when
1455         operand is an iTemp,
1456
1457 2004-09-24 Martin Helmling <mh AT octo-soft.de>
1458
1459         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
1460         * debugger/mcs51/simi.c: addapt new syntax of s51
1461
1462 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
1463
1464         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
1465         * src/pic16/pcode.c: commented out some calls to free() in order to
1466         fix bug #989576,
1467
1468 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1469
1470         * src/SDCCicode.h,
1471         * src/SDCCicode.c (isiCodeInFunctionCall),
1472         * src/avr/ralloc.c (selectSpil),
1473         * src/pic/ralloc.c (selectSpil),
1474         * src/pic16/ralloc.c (selectSpil),
1475         * src/ds390/ralloc.c (selectSpil),
1476         * src/hc08/ralloc.c (selectSpil),
1477         * src/xa51/ralloc.c (selectSpil),
1478         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
1479         stack in the middle of a function call sequence (fixes bug #1020268)
1480         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
1481         costs associated with the minimum switch case.
1482
1483 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1484
1485         * src/SDCC.lex: fixed bug #1030549
1486
1487 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1488
1489         * src/SDCCcse.h (struct cseDef),
1490         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
1491         over a function call if the CSE is derived from a symbol whose
1492         address has been taken (fixes bug #1029883)
1493         * support/regression/tests/bug-1029883: a new regression test for
1494         this bug
1495
1496 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1497
1498         * src/hc08/gen.c (emitinline): fixed bug #1029778
1499         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
1500         to a cast object is no longer a syntax error ("fixes" bug #1030006,
1501         and starts toward RFE #905167)
1502
1503 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
1504
1505         * src/pic16/gen.c (mov2f): New function to move an operand to
1506         another without considering if it is a literal or a register,
1507         * (pic16_sameRegs): don't check if they are both AOP_REG,
1508         * (AccRsh): removed andmask=0 lines,
1509         * (genLeftShift): duplicated to be improved in future versions,
1510         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
1511         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
1512         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
1513         * (pic16initMnemonics): added initialization for POC_INFSNZW,
1514         * (insertBankSwitch): fixed inserting banksel directives algorithm
1515         for instructions that follow a skip instruction, this fixes a report
1516         for broken subtraction code generation,
1517         * src/pic16/ralloc.c (deassignLRs): do not free register if current
1518         iCode is a left op, just in case result and right share the same
1519         registers
1520
1521 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1522
1523         * src/hc08/main.c,
1524         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
1525         preservation of HX
1526         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
1527         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
1528         on 2004-09-12; it was buggy
1529
1530 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
1531
1532         * src/SDCCsymt.h: removed RESULT_CHECK
1533         * src/SDCCast.c,
1534         * src/SDCCglue.c,
1535         * src/SDCCval.c,
1536         * src/pic/glue.c,
1537         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
1538
1539 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
1540
1541         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
1542         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
1543         configuration values no more rejected by compiler, they are assigned
1544         to configuration registers with a warning message instead,
1545         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
1546         the for-loop so last conf register is emitted too,
1547         * (_pic16_initPaths): link library libsdcc.lib by default,
1548         * (_hasNativeMulFor): modified test for multiplication according to
1549         Raphael Neider's remarks. Integer multiplication is also done with
1550         support functions,
1551         * device/include/pic16/pic18fregs.h: corrected type error in while
1552         testing and including 18f6720 header file
1553
1554 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
1555
1556         * src/pic16/device.h (pic16_options): removed field use_crt,
1557         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
1558         until an optimization to handle single bits is added,
1559         * (pic16_loadFSR0): moved before genUnpackBits,
1560         * (genAnd): some white lines removed,
1561         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
1562         leave_reset flags in pic16_options when using crt modules,
1563
1564 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
1565
1566         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
1567           for bugs 898889 & 979599. Also used some safer print instructions.
1568
1569 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
1570
1571         * src/pic16/device.h (pic16_options_t): added field use_crt,
1572         crt_name, no_crt,
1573         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
1574         catch a probable future bug,
1575         * src/pic16/gen.c: aopIdx function commented out,
1576         * (genAssign): commented out old code which used aopIdx,
1577         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
1578         code, added if conditionals to take into account the --use-crt
1579         command line options,
1580         * src/pic16/main.c (pic16_optionsTable): added new command line
1581         options, --use-crt= and --no-crt,
1582         * (_pic16_linkEdit): now the proper crt object is added in the
1583         linker command line except than when --no-crt is specified,
1584         * src/pic16/pcode.c,
1585         * src/pic16/pcode.h: added some structures and functions for a new
1586         optimization scheme to compansate for instruction overhead between
1587         same iCodes, this scheme is currently under development and is not
1588         working in any way,
1589         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
1590         to && operator,
1591         * device/lib/pic16/startup/crt0i.c,
1592         * device/lib/pic16/startup/crt0iz.c: added global char variable
1593         __uflags to force the generation of an idata section
1594
1595 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
1596
1597         * doc/Makefile,
1598         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
1599         * doc/sdccman.lyx: updated sdcc version to 2.4.4
1600
1601 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1602
1603         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
1604         Frieder) and clarified the default code optimization mode
1605
1606 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1607
1608         * src/SDCC.lex (doPragma, process_pragma),
1609         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
1610         "opt_code_size", and "opt_code_balanced"
1611         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
1612         regrouped options by category, added support for category headers
1613         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
1614         and "--opt-code-size"
1615         * doc/sdccman.lyx: documented these new options and pragmas
1616         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
1617         preference into account
1618
1619 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
1620
1621         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
1622           geniCodePreDec): Fixed bug 904237 by generating a warning
1623         * src/SDCCerr.h,
1624         * src/SDCCerr.c: added warning W_SIZEOF_VOID
1625
1626 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
1627
1628         * src/pic/device.c : When no max ram set validate full memory range.
1629         * src/pic/pcode.c,
1630         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
1631
1632 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
1633
1634         * device/lib/_gptrget.c,
1635         * device/lib/_gptrput.c: updated comment
1636         * device/lib/calloc.c,
1637         * device/lib/free.c,
1638         * device/lib/malloc.c,
1639         * device/lib/realloc.c: added LGPL, made them reentrant-safe
1640         * src/SDCCcse.c (cseBBlock),
1641         * src/SDCCicode.c (printOperand, geniCodeArray),
1642         * src/SDCCicode.h (struct operand): fixed bug 868103
1643         * support/regression/tests/bug-868103.c: added
1644         * src/SDCCast.c (searchLitOp),
1645         * src/SDCCcse.h (struct cseDef),
1646         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
1647         * src/SDCCicode.h (struct operand),
1648         * src/SDCCsymt.h (struct sym_link),
1649         * src/avr/gen.c (hasInc),
1650         * src/ds390/gen.c (hasInc),
1651         * src/hc08/gen.c (genPlusIncr, hasInc),
1652         * src/mcs51/gen.c (hasInc),
1653         * src/pic16/glue.c (pic16_printIvalChar),
1654         * src/pic16/ralloc.c (regWithIdx),
1655         * src/xa51/gen.c (hasInc) : removed warnings
1656         * src/SDCCast.c (createBlock): added comment ???
1657         * src/hc08/ralloc.c: updated comments
1658
1659 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1660
1661         * doc/sdccman.lyx: updated section on switch statements, added
1662         section about semaphore locking
1663         * doc/Makefile: added option -info for latex2html
1664         * device/lib/_gptrget.c,
1665         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
1666
1667 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
1668
1669         * src/pic/device.h,
1670         * src/pic/device.c,
1671         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
1672          maxram is less than 0x100.
1673
1674 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
1675
1676         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
1677
1678 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1679
1680         * src/port.h,
1681         * src/mcs51/main.c,
1682         * src/ds390/main.c,
1683         * src/z80/main.c,
1684         * src/hc08/main.c,
1685         * src/pic/main.c,
1686         * src/pic16/main.c,
1687         * src/avr/main.c,
1688         * src/xa51/main.c
1689         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
1690         a jump table is the best form for a switch statement, including
1691         automatic insertion of missing cases to make the case range
1692         continuous. Developed in collaboration with Frieder Ferlemann.
1693
1694 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1695
1696         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
1697         accumulator result if it needs sign extension
1698
1699 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
1700
1701         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
1702
1703 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
1704
1705         * device/lib/gbz80/printf.c,
1706         * device/lib/z80/printf.c: removed define for NULL
1707
1708 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
1709
1710         * as/xa51/xa_link.c,
1711         * device/examples/ds390/ow390/ad26.c,
1712         * device/examples/ds390/ow390/cnt1d.c,
1713         * device/examples/ds390/ow390/counter.c,
1714         * device/examples/ds390/ow390/ds2480.h,
1715         * device/examples/ds390/ow390/ds2480ut.c,
1716         * device/examples/ds390/ow390/findtype.c,
1717         * device/examples/ds390/ow390/gethumd.c,
1718         * device/examples/ds390/ow390/owllu.c,
1719         * device/examples/ds390/ow390/ownetu.c,
1720         * device/examples/ds390/ow390/swt12.c,
1721         * device/examples/ds390/ow390/swtloop.c,
1722         * device/examples/ds390/ow390/temp.c,
1723         * device/examples/ds390/ow390/temp10.c,
1724         * device/examples/ds390/ow390/thermo21.c,
1725         * device/examples/ds390/ow390/tinilnk.c,
1726         * device/examples/ds390/ow390/tstfind.c,
1727         * device/examples/serialcomm/windows/serial.cpp,
1728         * device/examples/serialcomm/windows/test_serialcomm.cpp,
1729         * device/include/reg51.h: fixed line endings for cvs
1730
1731 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1732
1733         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
1734         packRegsForAccUse, packRegisters): new accumulator register
1735         packing algorithm
1736         * support/regression/ports/hc08/support.c (_putchar): suppress
1737         warning of unused variable
1738         * src/SDCCicode.c: added SWAP entry to codeTable
1739
1740 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
1741
1742         * device/lib/sprintf.c: forgot to add this file before previous commit
1743
1744 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
1745
1746         * src/pic16/gen.c (genPackBits): added operand right in function
1747         parameters, load result directly if p_type is POINTER (that is
1748         called by genNearPointerSet)
1749         * (genUnPackBits): added operand left in function parameters,
1750         * (genNearPointerGet, genNearPointerSet): prevent the loading of
1751         FSR0 if accessing bitfields,
1752
1753 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
1754
1755         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
1756           _print_format; updated printf, sprintf, vsprintf
1757         * device/include/asm/default/features.h: corrected comment/define
1758         * device/lib/Makefile.in: added sprintf.c
1759         * device/lib/libsdcc.lib: added sprintf module
1760         * device/lib/printf_large.c,
1761         * device/lib/vprintf.c,
1762         * device/lib/sprintf.c: totally refactored printf_large and vprintf
1763           into these 3 files
1764         * support/regression/Makefile: changed ALL_PORTS into a usefull default
1765         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
1766         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
1767           hc08 test
1768         * support/regression/tests/zeropad.c: define idata as data for hc08
1769
1770 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1771
1772         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
1773         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
1774         labels are referenced at least once (even if a reference is not found)
1775         * src/hc08/gen.c (emitcode): set isComment flag for comments
1776         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
1777         loads), rules 6a..6b (optimize jumps to return)
1778
1779 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1780
1781         * device/lib/acosf.c (acosf),
1782         * device/lib/asinf.c (asinf),
1783         * device/lib/atanf.c (atanf),
1784         * device/lib/ceilf.c (ceilf),
1785         * device/lib/cosf.c (cosf),
1786         * device/lib/coshf.c (coshf),
1787         * device/lib/cotf.c (cotf),
1788         * device/lib/fabsf.c (fabsf),
1789         * device/lib/floorf.c (floorf),
1790         * device/lib/log10f.c (log10f),
1791         * device/lib/logf.c (logf),
1792         * device/lib/sinf.c (sinf),
1793         * device/lib/sinhf.c (sinhf),
1794         * device/lib/sqrtf.c (sqrtf),
1795         * device/lib/tanf.c (tanf),
1796         * device/lib/tanhf.c (tanhf),
1797         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
1798         replaced all instances of "reentrant" in the library functions
1799         defined in math.h with this macro.
1800         * support/regression/tests/float_trans.c: reenabled test for hc08
1801
1802 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
1803
1804         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
1805         erroneously deleted
1806
1807 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1808
1809         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
1810         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
1811         multi-byte volatile operands are used
1812         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
1813         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
1814         initialization to area GSINIT0 so that it would always precede
1815         any static initializers in GSINIT
1816         * support/regression/tests/zeropad.c: fixed idata define for hc08
1817         * support/regression/tests/bug-927659.c,
1818         * support/regression/tests/float_trans.c: disabled tests for hc08
1819         pending missing library routines
1820         * .version: increased version number to 2.4.4 - hc08 port now passes
1821         regression tests
1822
1823
1824 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
1825
1826         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
1827         * Makefile.common.in,
1828         * as/Makefile,
1829         * as/hc08/Makefile.in,
1830         * as/mcs51/Makefile.in,
1831         * as/z80/Makefile.in,
1832         * debugger/mcs51/Makefile.in,
1833         * device/include/Makefile.in,
1834         * device/lib/Makefile.in,
1835         * doc/Makefile,
1836         * link/Makefile,
1837         * link/z80/Makefile.in,
1838         * packihx/Makefile.in,
1839         * sim/ucsim/main_in.mk,
1840         * sim/ucsim/avr.src/Makefile.in,
1841         * sim/ucsim/doc/Makefile.in,
1842         * sim/ucsim/gui.src/serio.src/Makefile.in,
1843         * sim/ucsim/hc08.src/Makefile.in,
1844         * sim/ucsim/s51.src/Makefile.in,
1845         * sim/ucsim/xa.src/Makefile.in,
1846         * sim/ucsim/z80.src/Makefile.in,
1847         * src/Makefile.in,
1848         * support/cpp2/Makefile.in,
1849         * support/librarian/Makefile,
1850         * support/makebin/Makefile: added DESTDIR to the install path proposed
1851         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
1852         * doc/sdccman.lyx: added DESTDIR documentation
1853
1854 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
1855
1856         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
1857         instruction for interrupt handlers, use fast returns when returning
1858         from high priority interrupts
1859
1860 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1861
1862         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
1863         code generation
1864         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
1865         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
1866         bugs, ported much of Bernhard's code from mcs51
1867         * src/mcs51/gen.c (genSend),
1868         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
1869         than one when calling a reentrant function
1870         * device/lib/_mullong.c: defined an alternate struct layout for big
1871         endian ports (hc08)
1872
1873 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1874
1875         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
1876         test
1877
1878 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1879
1880         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
1881         are sane and complete before asking the port its prefered parameter
1882         passing method (fixes bug #1017633)
1883         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
1884         and _ret3
1885
1886 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1887
1888         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
1889         problem in bitfields >= 8 bits.
1890
1891 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
1892
1893         * src/SDCCsymt.c: undid changes that were not meant to be committed
1894
1895 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
1896
1897         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
1898
1899 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
1900
1901         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
1902           copied and wrong bit got inverted
1903
1904 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1905
1906         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
1907         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
1908         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
1909         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
1910         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
1911         assignments to bitfields at known addresses
1912         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
1913         reads from bitfields at known addresses
1914         * src/hc08/ralloc.c (packRegisters),
1915         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
1916         genhc08Code): optimize pointer get values used as conditionals
1917         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
1918         and branch
1919
1920 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1921
1922         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
1923         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
1924         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
1925         as conditionals
1926
1927 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1928
1929         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
1930
1931 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1932
1933         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
1934         related problems
1935
1936 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
1937
1938         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
1939
1940 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1941
1942         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
1943         mcs51 port
1944
1945 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
1946
1947         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
1948
1949 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1950
1951         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
1952         cases use more compact code.
1953
1954 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
1955
1956         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
1957
1958 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1959
1960         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
1961
1962 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1963
1964         * src/SDCCsymt.h,
1965         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
1966         parameter of changePointer() from symbol* to sym_link*
1967         * src/SDCCast.c (decorateType): call changePointer() for CAST op
1968         * src/SDCCsymt.c (compareType): void* type is castable to other
1969         pointers, but not necesarily an exact match.
1970         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
1971         is no longer blindly treated as an exact match.
1972         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
1973
1974 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
1975
1976         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
1977
1978 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
1979
1980         * src/pic/gen.c,
1981         * src/pic/pcode.c,
1982         * src/pic/ralloc.h,
1983         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
1984
1985 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
1986
1987         * src/pic/device.c,
1988         * src/pic/device.h,
1989         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
1990
1991 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1992
1993         * src/mcs51/gen.c (emitcode): fixed bug #992819
1994
1995 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
1996
1997         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
1998           there's no need to make it worse
1999
2000 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2001
2002         * src/mcs51/ralloc.c (deassignLR),
2003         * src/ds390/ralloc.c (deassignLR),
2004         * src/hc08/ralloc.c (deassignLR),
2005         * src/z80/ralloc.c (deassignLR),
2006         * src/pic/ralloc.c (deassignLR),
2007         * src/pic16/ralloc.c (deassignLR),
2008         * src/avr/ralloc.c (deassignLR),
2009         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
2010         rlivePoint): fixed another part of bug #971834
2011
2012 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2013
2014         * src/z80/main.c: enabled "critical" keyword
2015         * src/z80/mappings.i,
2016         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
2017         functions (fixes bug #979646)
2018         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
2019
2020 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2021
2022         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
2023           such as c:\mydir.
2024
2025 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
2026
2027         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
2028           doesn't disable too much optimizations
2029
2030 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
2031
2032         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
2033
2034 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
2035
2036         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
2037
2038 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
2039
2040         * src/pic/gen.c tidied up tabs
2041         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
2042         * src/pic/main.c tidied up tabs
2043         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
2044         * src/pic/pcoderegs.c tidied up tabs
2045         * src/pic/ralloc.c tidied up tabs
2046
2047 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
2048
2049         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
2050         to S_FIXED for pic16 port and when symbol is not in level 0,
2051         allocate for S_REGISTER storage class and pic16 port, too,
2052         * src/pic16/device.h: prototype for checkSym,
2053         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
2054         * (pic16_assignConfigWordValue): test the value and the mask to
2055         validate that the value is suitable for the configuration word,
2056         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
2057         collect extern declared symbols, don't emit symbol twice, check
2058         first if symbol is in publics set first,
2059         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
2060         * added command line '--fstack' which enables an experimental
2061         feature for stack access, too buggy to be used yet...
2062         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
2063         * (pic16_allocDirReg): when register has storage class S_REGISTER
2064         allocate in pic16_dynAccessRegs,
2065         * device/include/pic16/pic18f????.h: modified configuration word
2066         naming convention, words started as CONFIG0H but should be CONFIG1H
2067
2068 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
2069
2070         * device/include/mcs51reg.h: fixed bug 970993
2071
2072 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
2073
2074         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
2075         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
2076         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
2077         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
2078         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
2079         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
2080           error/warning numbers,
2081           added function setWarningDisabled()
2082         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
2083         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
2084           _memcmp.c _memmove.c calloc.c realloc.c free.c
2085         * support/regression/tests/malloc.c: added tests for new functionality
2086         * support/regression/tests/zeropad.c: added tests for truncated initializers
2087           and initialized char arrays starting with '\x0'
2088         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
2089
2090 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
2091
2092         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
2093
2094 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2095
2096         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
2097         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
2098         peephole 177.e. Thanks to anonymous
2099
2100 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
2101
2102         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
2103         function isn't used in the source but referenced as a
2104         variable initializer then declare it as extern in .asm file
2105
2106 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
2107
2108         * .version: increased version number to 2.4.3
2109
2110         Adding version extension according to ChangeLog CVS revision
2111         * src/Makefile.in (target all): added dependency 'version.h'
2112         * (rule version.h): added rule to create version.h from ChangeLog,
2113         * (rule dep): added dependency version.h,
2114         * src/version.awk: AWK script to create version.h
2115         * src/SDCCdwarf2.c (dwWriteModule),
2116         * src/SDCCglue.c (initialComments),
2117         * src/SDCCmain.c (printVersionInfo): modified to write after
2118         version string the version extension number,
2119         * src/SDCCutil.c: included "version.h"
2120         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
2121         number,
2122         * src/SDCCutil.h: added prototype for getBuildNumber
2123
2124         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
2125         includeDirsSet, too,
2126         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
2127         const char [] is found in function prototype...
2128
2129         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
2130         moving to WREG with source is already in WREG,
2131         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
2132         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
2133         * (aopForSym): stack'ed symbols are partially supported, added
2134         if-clause to support symbols in FARSPACE,
2135         * (sameRegs): added test for AOP_ACC to see if registers are same,
2136         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
2137         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
2138         * (pic16_popRegFromString): will not allocate a new register if it
2139         doesn't find one by name, bug may have introduced...
2140         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
2141         * (genIpush): revived to use pic16 port's stack,
2142         * (genAddrOf): added incomplete case for stack'ed operand,
2143         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
2144         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
2145         can handle multibyte operands,
2146         * src/pic16/glue.c (pic16_printIval*): some debug info added,
2147         * (pic16initialComments): added message for MPLAB compatibility
2148         mode enabled,
2149         * src/pic16/main.h: prototype for pic16_mplab_comp,
2150         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
2151         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
2152         * (_pic16_linkEdit): NEW, handles link stage, transferred here
2153         because of increased complexity of procedure,
2154         * (_process_pragma): stack pragma changed to format 'stack pos len',
2155         emit symbol '_stack_end' to conform with gplink,
2156         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
2157         to search for register,
2158         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
2159         PO_GPR_REGISTER,
2160         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
2161         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
2162         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
2163         case for PO_GPR_REGISTER,
2164         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
2165         dies, the new era is ahead !...
2166         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
2167         pic16_dynInternalRegs,
2168         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
2169         * (pic16_allocDirReg): minor optimizations and bug fixes,
2170         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
2171
2172         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
2173         load stack and frame pointer with address of 'stack_end' symbol
2174
2175 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
2176
2177         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
2178         without source code but only variable initializers
2179
2180 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
2181
2182         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
2183         external are not declared as extern to reduce overhead while linking
2184
2185 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
2186
2187         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
2188
2189 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
2190
2191         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
2192           Yee Keat for the patch
2193         * src/SDCCast.c (decorateType): fixed bug #979599
2194         * src/ds390/gen.h: removed local fReturnSizeDS390
2195         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
2196         * src/ds390/gen.c (genAnd, genOr, genXor),
2197         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
2198
2199 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
2200
2201         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
2202         add relFilesSet to $3, manipulate $2 to handle linking of object
2203         files without source files in command line,
2204         * device/include/pic16 (all headers): added ID location macros,
2205         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
2206         entries for ID location bytes,
2207         * (pic16_assignIdByteValue): NEW,
2208         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
2209         added field dumpcalltree to pic16_options_t,
2210         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
2211         is used instead of pic16_Gstack_base_addr, check if (ifx) before
2212         emitting rFalseIfx label after check_carry label,
2213         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
2214         pic16_emitDIRegs), NEW
2215         * (pic16glue): dump .calltree file when option --calltree found,
2216         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
2217         * (_pic16_genAssemblerPreamble): emit ID locations after
2218         configuration registers,
2219         * (pic16_linkCmd): modifications of the link command,
2220         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
2221         * (pic16_pCodeInitRegisters): don't init stack registers,
2222         * (pic16_findPrevInstruction): fixed bug,
2223         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
2224         bug with immediate registers,
2225         * (buildCallTree): traces stack push and pop,
2226         * (pct2): dump also stack usage for each function,
2227         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
2228         * (pic16_allocDirReg): various modifications,
2229         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
2230         fixed to 1,
2231
2232 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
2233
2234         * src/pic16/pcode.c: removed buggy double colon
2235
2236 2004-07-01 Borut Razem <borut.razem AT siol.net>
2237
2238         * support/scripts/sdcc.nsi: added include/pic16 to setup
2239
2240 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
2241
2242         * device/lib/Makefile.in: fixed bug in target objects-pic16,
2243         * device/lib/pic16/Makefile: prefixed with dash (-) command under
2244         target 'clean',
2245         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
2246         specific command line arguments. Also added sample lkr script
2247         for placing a variable at a specific memory bank.
2248         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
2249         at a specific memory bank,
2250         * (pic16_dump_isection): fixed bug which caused string literals to
2251         be omitted when dumping idata section,
2252         * (pic16_groupRegistersInSection): added code to handle registers
2253         in specific memory banks,
2254         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
2255         public, all references are renamed too,
2256         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
2257         AOP_DPTR2,
2258         * (pic16_storeForReturn): added case to handle when dest is WREG,
2259         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
2260         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
2261         pic16_rel_udata, check to see if that register is marked as being
2262         a member of a specific memory bank,
2263         * (pic16_printIvalCharPtr): added code to add string literals either
2264         to code or the idata sections,
2265         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
2266         also accept the 'udata' pragma,
2267         * src/pic16/main.h: new structure types sectName and sectSym
2268         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
2269         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
2270         * (pic16_findPrevInstruction): fixed, it returned nothing,
2271         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
2272         instruction combinations,
2273         * (pic16_FixRegisterBanking): heavily reorganised,
2274         * (pic16_AnalyzeBanking): if generating banksel directives is
2275         disabled, then don't call FixRegisterBanking at all,
2276         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
2277         completely removed,
2278         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
2279
2280 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
2281
2282         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
2283         Phuah Yee Keat <yk.phuah AT nestac.com>
2284
2285 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
2286
2287         * src/pic16/glue.c (pic16createInterruptVect): function now emits
2288         correctly the IVT even if it is relocated to some other location
2289
2290 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
2291
2292         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
2293         * device/include/pic16/pic18f2220.h: NEW,
2294         * device/lib/pic16/libdev/pic18f2220.c: NEW,
2295         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
2296         * src/pic16/device.c (struct Pics16): added info for 18f2220,
2297         * src/pic16/device.h (struct pic16_options): added ivt_loc and
2298         nodefaultlibs, ivt_loc is the location of the interrupt vector
2299         table, and nodefaultlibs signs that default libraries should not be
2300         linked in link stage,
2301         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
2302         according to --ivt-loc argument,
2303         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
2304         when pragma stack is found,
2305
2306 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2307
2308         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
2309         256 (range check), 257 (do while), 258.a-f (bit banging
2310         f.e. on 3-wire SPI bus)
2311
2312 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2313
2314         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
2315         variables used exclusively within a loop
2316
2317 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
2318
2319         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
2320
2321 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2322
2323         * src/SDCClrange.c (computeClash): fixed bug #971834
2324
2325 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2326
2327         * src/mcs51/gen.c (genCmp): fixed bug #975903
2328         * src/hc08/gen.c (operandsEqu),
2329         * src/ds390/gen.c (operandsEqu),
2330         * src/z80/gen.c (operandsEqu),
2331         * src/pic/gen.c (operandsEqu),
2332         * src/pic16/gen.c (operandsEqu),
2333         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
2334         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
2335
2336 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2337
2338         * src/SDCCcse.c (cseBBlock): fixed bug #966963
2339
2340 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
2341
2342         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
2343         default case in switch statement,
2344         * glue.c (pic16_initPointer): expr is initialised via decoarteType
2345         to eliminate problem with initialisation of pointers, but problem
2346         still exists,
2347         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
2348         * (emitStaticSegment): removed various lines emitting debug info,
2349         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
2350         added processor registers for utilizing EEPROM,
2351         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
2352         configurable and set 8
2353
2354 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
2355
2356         * .version: increased version number to 2.4.2,
2357
2358         Cumulative patch for pic16 port
2359         * src/pic16/device.c: changed scheme to dump initial values for
2360         variables in idata segment, all print_idata* functions were removed,
2361         now the pic16_printIval* will be called,
2362         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
2363         * _pic16_printPointerType, pic16_printPointerType,
2364         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
2365         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
2366         NEW, similar to the respective functions in SDCCglue.c,
2367         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
2368         way, emitting hex bytes,
2369         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
2370
2371 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2372
2373         * src/avr/ralloc.c (serialRegAssign),
2374         * src/xa51/ralloc.c (serialRegAssign),
2375         * src/pic/ralloc.c (serialRegAssign),
2376         * src/pic16/ralloc.c (serialRegAssign),
2377         * src/hc08/ralloc.c (serialRegAssign),
2378         * src/z80/ralloc.c (serialRegAssign),
2379         * src/ds390/ralloc.c (serialRegAssign),
2380         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
2381
2382 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2383
2384         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
2385         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
2386
2387 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
2388
2389         Cumulative patch for pic16 port:
2390         * src/pic16/device.h (typedef PIC16_device) modified fields for
2391         defining microcontrollers,
2392         * src/pic16/device.c: added new info for all devices in Pics16 array,
2393         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
2394         to be optimised out by the pCode optimiser,
2395         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
2396         specially, bug reported by G.M. Gallant,
2397         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
2398         as force'd so that cannot be optimised out by pCode optimiser,
2399         * src/pic16/pcode.c,
2400         * src/pic16/pcodepeeph.c,
2401         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
2402         they are disabled by default, but can be enabled explicit with
2403         command argument --denable-peeps, for testing,
2404         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
2405         --pomit-ivt in COMPILE_FLAGS
2406
2407 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
2408
2409         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
2410           compilation on MSVC
2411
2412 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
2413
2414         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
2415
2416 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2417
2418         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
2419         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
2420
2421 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
2422
2423         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
2424         would only assign 0x300001 register.
2425
2426 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
2427
2428         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
2429         in COMPILE_FLAGS. Thanks to G. Gallant for report.
2430
2431 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2432
2433         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
2434         for ds80c400
2435         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
2436         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
2437         added peephole 254 (left shift), 255 (jump table)
2438
2439 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
2440
2441         * device/lib/Makefile.in: removed comment line with model-pic16,
2442         * (target port-specific-objects-pic16): the libraries and objects
2443         are copied to the build directory form the device/lib/pic16/bin
2444         directory
2445
2446         Cumulative patch concerning pic16 port:
2447         * library directory has been re-organized,
2448         * added support for PIC18F1220,
2449         * added headers and library sources for chips 18f1220,18f6520,
2450         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
2451
2452         * configuration registers setting has changed, now each supported
2453         device has a complete description of the registers it uses,
2454         * all initialisations are moved to idata sections, these section
2455         can be absolute or relocatable,
2456         * fixed initialisation of codespace variables,
2457         * fixed warning about PCLATU and gpsim,
2458         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
2459         * (genAssign): use table reads when assigning from variables in codespace,
2460         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
2461         char/int variables placed in codespace,
2462         * (pic16_emitConfigRegs): NEW, emits a list with configuration
2463         registers set in .asm file, no need for --pomit-config-words anymore,
2464         * (pic16glue): some 8051 legacy segments are commented out
2465         (to be removed completely),
2466         * added support for alternative assembler and linker with --asm=
2467         and --link= command line arguments,
2468         * peepholes are disabled automatically in the port, no need to
2469         specify on command line,
2470         * port supports natively char/int/long multiplication, but converts
2471         all divisions to support functions,
2472         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
2473         to the file set in variable $2,
2474         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
2475         strings in ASCII format and not in hex,
2476         * ralloc.c (serialRegAssign): added a triplet of conditional calls
2477         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
2478         allocate proper register if iCodes aren't temporary,
2479
2480 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
2481
2482         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
2483
2484 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
2485
2486         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
2487         is commented out
2488
2489 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2490
2491         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
2492         computed address is reused
2493         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
2494         multi-byte bitfields
2495
2496 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
2497
2498         * src/z80/gen.c: (genArrayInit): must check for pointers too
2499
2500 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
2501
2502         * support/regression/tests/zeropad.c: never meant to commit the
2503           nestedstruct test: removed, added check for GCC version
2504
2505 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
2506
2507         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
2508         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
2509         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
2510           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
2511           bugs 928906 and 954082 half-empty initializers
2512         * src/SDCCsymt.h,
2513         * src/SDCCsymt.c (getAllocSize): added for above fix
2514         * src/z80/gen.c (genArrayInit): fixed bug 741044
2515         * support/regression/tests/zeropad.c: added tests
2516
2517 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
2518
2519         * src/pic16/device.c (pic16_dump_section): corrected bug which
2520         caused some symbols of the libraries to be misplaced
2521
2522 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
2523
2524         * src/pic16/glue.c,
2525         * src/pic16/ralloc.h,
2526         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
2527         to fix conflict with pic port
2528
2529 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
2530
2531         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
2532         externs configuration variables,
2533         * src/pic16/ralloc.h,
2534         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
2535         prototype in header, commented out some debug messages
2536
2537 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
2538
2539         * src/pic16/glue.c,
2540         * src/pic16/main.c,
2541         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
2542         for gpasm COFF object generation. Thanks to D. Hawkins for
2543         his patch info
2544
2545 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2546
2547         * src/ds390/main.c,
2548         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
2549         Brock for spotting this)
2550         * src/ds390/gen.c (genEndFunction),
2551         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
2552         interrupt handler and critical. Disable push/pop optimizations when
2553         peephole optimizations disabled.
2554
2555 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
2556
2557         Updated pic16 library sources and headers.
2558         * device/lib/pic16/pic18f*/ ,
2559         * device/include/pic16/*.h: modified to handle structured SFR
2560         definitions
2561
2562 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
2563
2564         * src/port.h (PORT structure): added hook initPaths, now each
2565         port can declare its own default search paths,
2566         which can been seen with the --print-search-dirs option,
2567         see pic16 port for example,
2568         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
2569         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
2570         * (doPrintSearchDirs): NEW, replaces in a central manner the
2571         printing of search dirs which was split in set*Paths functions,
2572         * (main): added call to port->initPaths and doPrintSearchDirs,
2573         * src/avr/main.c,
2574         * src/ds390/main.c,
2575         * src/hc08/main.c,
2576         * src/izt/i186.c,
2577         * src/izt/tlcs900h.c,
2578         * src/mcs51/main.c,
2579         * src/pic/main.c,
2580         * src/pic16/main.c: modified port structures to reflect addition of
2581         initPaths hook,
2582
2583         * src/pic16/device.c (regCompare): registers are finally sorted by name,
2584         * (pic16_dump_section): for registers in same address reserve memory once,
2585         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
2586         to no_banksel,
2587         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
2588         result is greater in size than right or left,
2589         * (pic16_genUMult8X8_8): there are some cases where the result can
2590         be 16 bits size, so handle these,
2591         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
2592         * (pic16_outBitC): modified to emit pcodes,
2593         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
2594         or not,
2595         * (genDivOneByte): implemented algorithm to divide 8-bits,
2596         * (genCmp): uncommented goto, but issues still exist,
2597         * (genAnd): fixed a bug with variables >8bits,
2598         * (genPackBits): optimization added that uses BCF/BSF to change a
2599         single bit,
2600         * (genAssign): fixed bug when assigning floating point literals,
2601         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
2602         __sdcc_gsinit_startup label,
2603         * src/pic16/main.c (_pic16_init): removed search directory
2604         initialisations,
2605         * (_pic16_initPaths): NEW, used to initialise search directories,
2606         * (_hasNativeMulFor): support functions for all except char/int
2607         multiplication, and char division,
2608         * (PIC16_port struct): modified entry for native mul support,
2609         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
2610         no_banksel option,
2611         * (buildCallTree): call to register_usage is ifdef'ed out,
2612
2613 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2614
2615         * device/include/string.h: applied Stas Sergeev's patch to make this
2616         header file compatible with the preprocessor -Wundef option
2617         * src/SDCCmain.c (main): abort compilation if preprocessor reports
2618         failure (fixes bug #941458)
2619
2620 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2621
2622         * src/SDCCopt.c (killDeadCode): fixed bug #907733
2623         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
2624         that the variable, not the function, should be static
2625         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
2626         to be consistent with non-literal case
2627
2628 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2629
2630         * src/SDCCast.c (isConformingBody): fixed bug #949967
2631         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
2632         convilong): fixed bug #952086
2633
2634 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2635
2636         * src/SDCCmem.c (allocVariables): fixed bug #955321
2637
2638 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2639
2640         * src/hc08/main.c (_hc08_genAssemblerEnd),
2641         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
2642         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
2643         completely eliminated the use of a temporary file
2644         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
2645         when more than one file linked
2646         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
2647
2648 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2649
2650         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
2651         which fixes bug #543481
2652         * support/regression/tests/bug-751703.c: fixed comments left from a
2653         cut and paste error
2654         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
2655         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
2656         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
2657         scopes
2658         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
2659         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
2660         are now changed to underscores in moduleName
2661
2662 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2663
2664         * as/mcs51/lkmem.c: better fix for bug #954173
2665
2666 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
2667         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2668
2669         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
2670         * device/include/c8051f000.h,
2671         * device/include/c8051f120.h,
2672         * device/include/c8051f300.h,
2673         * device/include/c8051f310.h,
2674         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
2675         PWM16) and detab'ed
2676
2677 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2678
2679         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
2680         and mailing lists, doc'ed --no-peep-comments, removed reference
2681         to knoppix (newest version has no LyX/LaTeX), other minor changes
2682         * src/SDCCglue.c (glue): save 2 bytes stack space with
2683         option --main-return. The ljmp could probably be avoided too
2684
2685 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2686
2687         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
2688
2689 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2690
2691         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
2692         * src/SDCCopt.c (isLocalWithoutDef),
2693         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
2694         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
2695         (credit to Maarten Brock for patch #949363, on which this is based)
2696         * support/regression/tests/bug-751703.c: some test cases of extern used
2697         within inner scopes.
2698
2699 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2700
2701         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
2702         SPEC_STRUCT
2703         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
2704         struct definitions
2705         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
2706         dwWriteLabel): fix to create valid debugger symbols even when
2707         the module name has non-alphanumeric symbols in it
2708         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
2709         when a variable's allocation has been optimized away
2710
2711
2712 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2713
2714         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
2715         * src/hc08/main.c,
2716         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
2717         * src/mcs51/main.c,
2718         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
2719         * src/ds390/main.c,
2720         * src/z80/gen.c (z80_emitDebuggerSymbol),
2721         * src/z80/main.c,
2722         * src/pic/gen.c (pic14_emitDebuggerSymbol),
2723         * src/pic/main.c,
2724         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
2725         * src/pic16/main.c,
2726         * src/avr/gen.c (avr_emitDebuggerSymbol),
2727         * src/avr/main.c,
2728         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
2729         * src/xa51/main.c,
2730         * src/SDCCdebug.c (emitDebuggerSymbol),
2731         * src/SDCCdebug.h,
2732         * src/port.h: added a debugger struct to the port struct. Added a
2733         callback for defining debugger symbols
2734
2735         * src/SDCCast.c (createLabel),
2736         * src/SDCC.y (labeled_statement): mark all compiler generated labels
2737         with isitmp = 1
2738         * src/SDCCicode.h,
2739         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
2740         iCode back to the ast for the function
2741
2742         * src/hc08/ralloc.c (hc08_assignRegisters),
2743         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
2744         unneeded fields from the regs struct.
2745         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
2746         pushReg() & pullReg() functions instead of emitcode()
2747
2748         * src/hc08/gen.c (genLabel, genhc08Code),
2749         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
2750
2751         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
2752         debugger hooks
2753
2754         * src/hc08/gen.c (genEndFunction, genhc08Code),
2755         * src/hc08/gen.h,
2756         * src/mcs51/gen.c (genEndFunction, gen51Code),
2757         * src/mcs51/gen.h,
2758         * src/ds390/gen.c (genEndFunction, gen390Code),
2759         * src/ds390/gen.h,
2760         * src/z80/gen.c (genEndFunction, genZ80Code),
2761         * src/z80/gen.h,
2762         * src/z80/z80.h,
2763         * src/pic/gen.c (genEndFunction, genpic14Code),
2764         * src/pic/gen.h,
2765         * src/pic16/gen.c (genEndFunction, genpic16Code),
2766         * src/pic16/gen.h,
2767         * src/avr/gen.c (genEndFunction, genAVRCode),
2768         * src/avr/gen.h,
2769         * src/xa51/gen.c (genEndFunction, genXA51Code),
2770         * src/xa51/gen.h,
2771         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
2772         specific code to cdbFile.c and out of the backend code generators
2773
2774         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
2775         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
2776         starting address is now 0
2777
2778         * as/hc08/asm.h,
2779         * as/hc08/m08pst.c,
2780         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
2781         assembler directive for DWARF support
2782         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
2783
2784         * src/src.dsp,
2785         * src/Makefile.in,
2786         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
2787
2788 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2789
2790         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
2791         and inappropriate peephole optimization in jump tables
2792
2793 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2794
2795         * as/hc08/m08pst.c,
2796         * src/SDCCglue.c: sdccopt works for the hc08 port now
2797
2798 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
2799
2800         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
2801
2802 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2803
2804         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
2805
2806 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2807
2808         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
2809         rules
2810         * src/SDCCmain.c,
2811         * src/SDCCglobl.h,
2812         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
2813         comments from the peephole optimizer replacement rules
2814         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
2815         symbols
2816         * src/SDCCcse.c (updateSpillLocation),
2817         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
2818         equivalents
2819         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
2820         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
2821         objects far pointers
2822
2823 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2824
2825         * src/SDCCsymt.h: a missing part of my last change
2826         * src/pic/ralloc.c (regTypeNum),
2827         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
2828
2829 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2830
2831         * src/SDCCicode.h,
2832         * src/SDCCicode.c (aggrToPtrDclType),
2833         * src/SDCCptropt.h,
2834         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
2835         ptrPseudoSymConvert),
2836         * src/pic/ralloc.c (regTypeNum),
2837         * src/pic16/ralloc.c (regTypeNum),
2838         * src/hc08/ralloc.c (regTypeNum),
2839         * src/ds390/ralloc.c (regTypeNum),
2840         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
2841         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
2842
2843 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2844
2845         * link/z80/lkmain.c (afile),
2846         * as/hc08/lkmain.c (afile),
2847         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
2848         prevent a pointer problem when a filename has no directory and
2849         no extension specified.
2850
2851 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2852
2853         * link/z80/lkmain.c (afile): allow periods in directory names
2854         * link/z80/lkmain.c (afile),
2855         * as/mcs51/lkmain.c (afile),
2856         * as/hc08/lkmain.c (afile): allow linker script file to have an
2857         extension other than ".lnk"
2858         * link/z80/lklex.c (getfid),
2859         * link/z80/lkmain.c (parse),
2860         * as/mcs51/lklex.c (getfid),
2861         * as/mcs51/lkmain.c (parse),
2862         * as/hc08/lklex.c (getfid),
2863         * as/hc08/lkmain.c (parse): Support comments in the linker script
2864         file on lines by themselves and after filenames
2865
2866 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2867
2868         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
2869
2870 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2871
2872         * src/z80/peeph-z80.def: removed some peephole rules that don't
2873         work with multibyte arithmetic (fixed bug #937126)
2874         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
2875         to registers and not global variables
2876         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
2877         geniCodePreInc, geniCodePostDec, geniCodePreDec,
2878         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
2879         checking for assignments not internally generated (fixed bug #931895)
2880         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
2881         structure member (fixed bug #930072)
2882
2883 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2884
2885         * src/SDCCmain.c (linkEdit),
2886         * src/hc08/main.c (_hc08_parseOptions),
2887         * as/hc08/Makefile.in,
2888         * as/hc08/aslink.h,
2889         * as/hc08/asm.h,
2890         * as/hc08/m08pst.c,
2891         * as/hc08/lkrloc.c (relr, rele),
2892         * as/hc08/lkarea.c (lnkarea)
2893         * as/hc08/lkmain.c (afile, parse),
2894         * as/hc08/lkelf.c: support for ELF output
2895         * as/hc08/lks19.c (s19),
2896         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
2897
2898 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2899
2900         * as/mcs51/lkihx.c: Fixed bug #899105.
2901
2902 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2903
2904         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
2905         .dsp files from Unix to DOS.
2906
2907 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2908
2909         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
2910         function pointers; we have been compliant for several months now.
2911         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
2912         change that was accidently commented out
2913         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
2914         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
2915         bug #922319
2916
2917 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2918
2919         * src/hc08/gen.c: output of all of the internal debugging information
2920         is now controlled by the D() macro; it is disabled by default
2921
2922 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2923
2924         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
2925         harder to keep the same registers during a CAST iCode
2926         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
2927         long via int can be done in a single cast, if the signedness is
2928         correct.
2929         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
2930         putchar() in tinibios.c in ds390's library
2931
2932 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
2933
2934         * src/SDCCast.c (decorateType): fixed bug #898889,
2935         cast result of a literal complement too
2936         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
2937         fixed check for bitfields
2938
2939 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
2940
2941         * src/SDCCicode.c (geniCodeLogic): made it static,
2942         (geniCodeLogicAndOr): added in order to fix bug #905492,
2943         (ast2iCode): fixed bug #905492
2944         * support/regression/tests/bug-905492.c: added
2945         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
2946         (processParms): fixed bug #927659: don't copy parms, this will clear
2947         decorated flag
2948         * support/regression/tests/bug-927659.c: added
2949
2950 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
2951
2952         * src/SDCCast.c (addCast): don't cast float to char
2953         * device/lib/libsdcc.lib: added _memmove
2954
2955 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
2956
2957         * device/lib/large/Makefile: fixed parallel execution by
2958         replacing `make` by `$(MAKE)`
2959
2960 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2961
2962         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
2963         offsets (fixes bug #923936)
2964
2965 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
2966
2967         * device/lib/small/Makefile: fixed parallel execution by
2968         replacing `make` by `$(MAKE)`
2969
2970 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
2971
2972         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
2973
2974 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
2975
2976         * src/pic/gen.c (genCpl): multi-byte complements were not working.
2977         * src/regression/Makefile: Regression test was not running.
2978
2979 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
2980
2981         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
2982         complement if possible
2983         * src/SDCCval.c (valComplement),
2984         * src/SDCCicode.c (operandOperation): fixed complement of literal
2985         * support/regression/tests/onebyte.c (testComplement): added
2986
2987 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
2988
2989         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
2990         return an optimized tree; actually replace actParm with the new tree
2991         * src/SDCCast.h: added some parantheses to remove side effects
2992         * support/regression/tests/bug-920866.c
2993
2994 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
2995         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
2996         Bit operands were not being handled properly in the pic14 port.
2997         (now src/regression/add.c passes again).
2998
2999 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3000
3001         * src/SDCC.y (labeled_statement): case and default no longer require
3002         a following statement (RFE #893037)
3003
3004 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3005
3006         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
3007         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
3008         disabled (fixes bug #916294)
3009         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
3010         "mov a,acc"; patch provided by Lenny Story
3011         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
3012
3013 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3014
3015         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
3016         functions
3017         * src/ds390/gen.c (genFunction, genEndFunction),
3018         * src/ds390/ralloc.c (ds390_assignRegisters),
3019         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
3020         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
3021         pushed if there are parameters passed on the stack. Also, a cleaner
3022         way to decide if r0/r1 should be pushed/popped. (Together they fix
3023         bug #918693)
3024
3025 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3026
3027         * doc/sdccman.lyx,
3028         * device/lib/mcs51/crtpagesfr.asm,
3029         * device/lib/mcs51/crtxinit.asm,
3030         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
3031         to avoid confusion with Si Lab's SFRPAGE register.
3032
3033 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3034
3035         * src/SDCCglue.c (emitMaps): allow public sfr variables
3036         * src/SDCCglue.c (initialComments): include compiler build date
3037         with compiler version and put the timestamp of the generated
3038         assembly file on a serperate line to be less confusing.
3039         * src/port.h: added genInitStartup hook
3040         * src/avr/main.c,
3041         * src/ds390/main.c,
3042         * src/hc08/main.c,
3043         * src/pic/main.c,
3044         * src/pic16/main.c,
3045         * src/xa51/main.c,
3046         * src/z80/main.c: genInitStartup initialize as NULL (default to
3047         historical behaviour)
3048         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
3049         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
3050         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
3051         library instead of hard coding it into the compiler.
3052         * support/regression/ports/mcs51-stack-auto/spec.mk,
3053         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
3054         * device/lib/mcs51/Makefile,
3055         * device/lib/small/Makefile,
3056         * device/lib/large/Makefile,
3057         * device/lib/mcs51/crtpagesfr.asm,
3058         * device/lib/mcs51/crtstart.asm,
3059         * device/lib/mcs51/crtxclear.asm,
3060         * device/lib/mcs51/crtxinit.asm,
3061         * device/lib/mcs51/crtclear.asm,
3062         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
3063         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
3064         and into user configurable files.
3065         * device/lib/clean.mk: clean mcs51 directory too
3066         * support/regression/tests/longlit.c: added static to T1 declaration
3067         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
3068         accesses in the initialization code
3069
3070 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3071
3072         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
3073         OSCTRIMVAL as noted in bug #916008
3074
3075 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3076
3077         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
3078         in loops with multiple exits (reported as incorrect registers
3079         used by Martin Helmling in Sdcc-user list)
3080
3081 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3082
3083         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
3084         made ds390 register extensions look less like error messages
3085
3086 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3087
3088         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
3089         reported by Adam Wozniak in Sdcc-user list
3090
3091 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
3092
3093         * src/SDCCast.c (decorateType): fixed with bug and promotion in
3094         arithmetic optimizations, added debug output
3095
3096 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
3097
3098         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
3099         * sdcc.spec: updated and split sdcc into 3 rpms
3100         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
3101         needed for literals of LEFT_OP and '+'
3102         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
3103         introduced RESULT_TYPE_NOPROM
3104         (geniCodeMultiply): fixed logic for decision if mul is optimized to
3105         left shift
3106         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
3107         limited promotion to int only for '*'
3108         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
3109
3110 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
3111
3112         * src/pic16/gen.c (genSkip),
3113         (genc16bit2lit), (gencjneshort): commented out
3114         (is_LitOp): new helper function, checks operand type
3115         (genCmpEq): rewritten
3116
3117 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
3118
3119         * support/regression/tests/bug-908454.c: added
3120
3121 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
3122
3123         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
3124         * src/SDCCicode.c (usualBinaryConversions): op needs int type
3125         (geniCodeCast): cosmetic, don't preserve bit storage class
3126         (geniCodeLeftShift): added promotion
3127         (geniCodeLogic): fixed regression
3128         * src/SDCCsymt.c (computeTypeOr): accept bits too
3129         (compareType): 2nd part of fix for bug #908454, needed for bitfields
3130
3131 2004-03-07  Borut Razem <borut.razem AT siol.net>
3132
3133         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
3134
3135 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
3136
3137         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
3138         version of pic16_genPackRegisters which does not check if ic is a
3139         CAST operator,
3140         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
3141         function cause string1.c regression test fails
3142
3143 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
3144
3145         * sim/ucsim/configure.in,
3146         * sim/ucsim/configure,
3147         * sim/ucsim/doc/Makefile.in: use docdir
3148         * src/SDCC.y: fixed sbit atrributes
3149         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
3150         * src/SDCCast.c (decorateType): |^& need special promotion handling
3151         * src/SDCCast.h,
3152         * src/SDCCsymt.h: moved definition of RESULT_TYPE
3153         * src/SDCCsymt.h (computeType),
3154         * src/SDCCicode.c: computeType() needs op
3155         * src/SDCCsymt.c (checkTypeSanity),
3156         * doc/sddman.lyx: "plain" bitfields are unsigned
3157         * src/SDCCsymt.c (computeTypeOr): added
3158         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
3159         |^& ops
3160         * src/SDCCval.c (val*): computeType() needs op
3161         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
3162         * support/regression/tests/onebyte.c: added tests for |^&
3163
3164 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
3165
3166         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
3167         for writing icode into asm output.
3168
3169 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
3170
3171         * src/pic16/device.c: added some debug lines enabled
3172         with macro DEBUG_CHECK,
3173         * src/pic16/genarith.c: more debug in genPlus,
3174         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
3175         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
3176         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
3177         * (aopForSym): onStack symbols are re-placed in data memspace,
3178         and onStack flag is cleared,
3179         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
3180         copy temporary pcodeop,
3181         * (genPcall): added warning for not updating PCLATU,
3182         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
3183         always true for pic16 port,
3184         * (genMultOneWord): NEW, supports integer multiplication,
3185         * (genMult): modified to call genMultOneWord,
3186         * (ifxForOp): added warning when return NULL,
3187         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
3188         flag is set before call to operandFromSymbol for implicit
3189         added structures,
3190         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
3191         options.intlong_rent are set by default,
3192         * (_hasNativeMulFor): modified to allow port generation of integer
3193         multiplication,
3194         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
3195         set regtype to REG_SFR for all registers, restricting seting the
3196         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
3197
3198 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3199
3200         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
3201         more than 500 times in the regression tests
3202
3203 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3204
3205         * support/Util/SDCCerr.h,
3206         * support/Util/SDCCerr.c,
3207         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
3208         enumerator_list),
3209         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
3210         for symbol conflicts.
3211         * support/valdiags/tests/enum.c,
3212         * support/valdiags/tests/tentdecl.c,
3213         * support/valdiags/tests/struct.c: expect possible error messages
3214         referring to original symbol definitions.
3215         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
3216         * src/SDCCsymt.h,
3217         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
3218
3219 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
3220
3221         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
3222
3223 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
3224
3225         * src/pic16/ralloc.c (newReg): fixed bug #908929
3226
3227 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3228
3229         * src/ds390/gen.c: added missing #include "main.h"
3230
3231 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
3232
3233         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
3234         checking if symbol is already in set,
3235         * src/pic16/device.h: prototype for checkAddSym,
3236         * src/pic16/gen.c: (_G): added entry interruptvector,
3237         * (assignResultValue): removed some commented out lines,
3238         * (genFunction): check for ISR via sym->type, absolute section for
3239         interrupt code is created via a new pBlock, the goto instruction is
3240         placed now correctly at the interrupt vector position, changed all
3241         references from ivec to _G.interruptvector,
3242         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
3243         is the interrupt is a high priority one, same for return from ISR,
3244         * src/pic16/glue.c: changed all calls of addSetHead for publics and
3245         externs to calls of checkAddSym,
3246         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
3247         pic16_pcode_verbose flag is set,
3248         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
3249         * src/pic16/pcoderegs.c: message about how many registers are saved
3250         will only be emitted if pic16_pcode_verbose flag is set,
3251
3252 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3253
3254         * src/ds390/ralloc.h,
3255         * src/ds390/ralloc.c (ds390_regWithIdx),
3256         * src/ds390/gen.c (emitcode),
3257         * src/ds390/main.h,
3258         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
3259         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
3260         ds390operandCompare, getRegsRead, getRegsWritten,
3261         initializeAsmLineNode): customized instruction size calculation for
3262         ds390, started basis for some register optimizations
3263         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
3264         corresponding assembly output
3265         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
3266         missing push/pop of r0/r1. Optimized push/pops
3267
3268 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3269
3270         * src/mcs51/main.c (instructionSize): fixed ACALL size
3271         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
3272
3273 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
3274
3275         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
3276         the sorting of rlist with NULL elements
3277         * (print_idataType, print_idata): NEW to create idata sections
3278         * src/pic16/device.h: idataSymSet new variable
3279         * src/pic16/gen.c (genFunction): fixed some bugs in string
3280         comparing, improved the absolute section creation for ISRs,
3281         added FSR0L/FSR0H in registers that are saved in an ISR,
3282         * (genInline): fixed the processing of inline snippets,
3283         now they undergo no process by the peephole optimizer
3284         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
3285         are placed in idataSymSet,
3286         * (pic16emitStaticSeg): extern symbols are added in externs,
3287         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
3288         switching when aboslute variables are placed in access bank memory
3289         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
3290         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
3291         commented out with #if,
3292         * (pic16_packRegisters): reintroduce the check for CAST because some
3293         symbols are not correctly handled,
3294         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
3295         pCodeInstruction instead of pCode,
3296         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
3297         pCodeAsmDir definition,
3298         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
3299         directive, then the argument directive is emitted without the leading
3300         tab, hack for inline labels which must be in the first column,
3301         * (compareLabel,pic16_findNextInstruction),
3302         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
3303         * (insertBankSwitch): modified for the new pCodeAsmDir,
3304
3305 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
3306         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
3307
3308         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
3309         instance,
3310         * (pushSide): commented out with #if,
3311         * (assignResultValue): fixed some typos in saving
3312         registers,
3313         * (genPcall): FIXED and sync'ed with genCall,
3314         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
3315         * (genNearPointerGet): fixed to handle some more cases,
3316         implementation scheme via table reads,
3317         * (genConstPointerGet): modified to access code memory correct,
3318         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
3319         and improved to handle some cases
3320         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
3321         instead of "RETLW" for init data
3322         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
3323         not IN_DIRSPACE, work around to reduce bank switching when aboslute
3324         variables are placed in access bank memory (<0x80 and >=0xf80),
3325         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
3326         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
3327         TBLWT_POSTDEC,TBLWT_PREINC
3328         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
3329         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
3330         directives
3331         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
3332         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
3333         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
3334         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
3335
3336 2004-02-29  Borut Razem <borut.razem AT siol.net>
3337
3338         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
3339         support/Util/findme.h, support/Util/system.h: enhance binary relative
3340         search for lib and include by using findProgramPath()
3341
3342 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3343
3344         * src/SDCCpeeph.h,
3345         * src/SDCCpeeph.c (pcDistance),
3346         * src/port.h,
3347         * src/mcs51/ralloc.h,
3348         * src/mcs51/ralloc.c (mcs51_regWithIdx),
3349         * src/mcs51/main.h,
3350         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
3351         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
3352         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
3353         size calculation port specific, started basis for some register
3354         optimizations
3355         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
3356         missing push/pop of r0/r1. Optimized push/pops
3357         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
3358         * device/lib/_modsint.c (_modsint),
3359         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
3360         and stack version so regression tests pass
3361
3362 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
3363
3364         * src/Makefile.in (dep): include SLIBOBJS in dependency check
3365         * src/SDCCast.c (decorateType): catch another small optimization
3366         with '?' operator
3367         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
3368         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
3369         modified to finally use computeType() all over SDCC,
3370         see Feature Request #877103
3371         * src/SDCCval.h: cosmetic
3372         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
3373         valCompare(); regression tested in muldiv.c
3374         * support/regression/tests/muldiv.c (testMod): mod sign follows
3375         dividend only
3376
3377 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
3378
3379         * src/SDCCast.c (decorateType): fixed bug #902362
3380         * doc/INSTALL.txt: fixed install instructions for win32
3381
3382 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
3383
3384         * device/include/Makefile.in (install): fixed by replacing spaces
3385         by tabs
3386         * doc/README.txt,
3387         * doc/INSTALL.txt: updated for release
3388         * doc/sdccman.lyx: added warning for --xstack being buggy
3389
3390 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
3391
3392         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
3393         to eliminate build warnings.
3394         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
3395
3396 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
3397            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
3398
3399         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
3400         removed -penable-stack, added comment for stack pragma, added
3401         warning for not initializing the stack/frame registers, removed
3402         comment at interrupts section
3403
3404         Stack is made permanent, there is no ability to disable stack usage.
3405         * src/pic16/device.h,
3406         * src/pic16/device.c: removed all references to USE_STACK macro,
3407         * src/pic16/device.c (pic16_dump_section): when no elements in
3408         rlist, free rlist before return,
3409         * (pic16_dump_int_registers): NEW, internal registers are a new set
3410         of general purpose registers reused by each function,
3411         * (checkAddReg): returns 1 if registers is added to set,
3412         * (pic16_groupRegistersInSection): when a registers is of type
3413         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
3414         * src/pic16/device.h: memRange and Assigned Memory are deleted,
3415         SRCASECMP macro is moved here from device.c
3416         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
3417         PO_PCLATU, PO_PRODL, PO_PRODH,
3418         * (pic16_pCodeOpType, genMinus,
3419         changed compares to "a" register, with AOP_ACC,
3420         * (pic16_genPlus): fixed some bugs and indented properly,
3421         * (pic16_addSign): changed size to size+offset in the MOVWF
3422         instruction,
3423         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
3424         multiply 8-bit operand by literal, result is 8-bit,
3425         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
3426         multiply 2 8-bit operand, result is 8-bit,
3427         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
3428         genUMult8X*_16,
3429         * src/pic16/gen.c: changed accUse to contain WREG only,
3430         * (pic16_emitcomment): renamed to pic16_emitpcomment,
3431         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
3432         true, do not use immediate addressing any more unless sym is a
3433         pointer in codespace,
3434         * (aopForRemat): do not use immediate addressing when symbol not in
3435         codespace and when symbol's address is requested,
3436         * (aopOp): for-loop in if(sym->accUse) is modified for the new
3437         accUse size (= 1),
3438         * (aopGet): added case for AOP_ACC and don't return "accumulator
3439         bug" but WREG instead,
3440         * (popGetTempReg): pushes contents of temporary register in stack,
3441         * (popReleaseTempReg): pops contents of temporary register from
3442         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
3443         * (pic16_popGet): separated case AOP_ACC to return register WREG
3444         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
3445         or PO_IMMEDIATE and initializes their instance/offset appropriately,
3446         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
3447         the use of immediate pointers to certain cases only.
3448
3449         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
3450         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
3451         * (assignResultValue, genCall, genRet): modified to use the new
3452         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
3453         genPcall is still broken,
3454         * (genFunction): added code to create 'A' type pBlocks when
3455         interrupt functions are generated, code not extensively tested yet,
3456         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
3457         * (genEndFunction): modified so ISRs pop stored registers from stack,
3458         * (genMultOneByte): cleanup,
3459         * (AccRsh): added flag andmask, to and result with appropriate mask,
3460         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
3461         * (genDataPointerGet): fixed and reenabled its use,
3462         * (genNearDataPointerGet): bugs fixed,
3463         * (genDataPointerSet): bugs fixed,
3464         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
3465         pic16_DumpSymbol, pic16_DumpOp,
3466         * src/pic16/genutils.h: function prototypes for the above functions,
3467         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
3468         pointers,
3469         * (pic16emitRegularMap): many many many improvements, but needs a
3470         major cleanup,
3471         * src/pic16/main.c: enable_stack in pic16_options is removed,
3472         * (_pic16_parseOptions): removed command line options -penable-stack,
3473         * (_process_pragma): emit stack symbol only when stack pragma is
3474         processed,
3475         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
3476         redirected to FSR0L/FSR0H pair,
3477         * (pic16_get_op, pic16_get_op2): modifications and improvements,
3478         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
3479         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
3480         for immediates,
3481         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
3482         * (dumpPicOptype): NEW,
3483         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
3484         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
3485         with movff instruction,
3486         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
3487         added pic16_int_regs, some packRegsFor* functions are commented out,
3488         because produce errors,
3489         * src/pic16/NOTES: minor modifications
3490
3491 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3492
3493         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
3494         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
3495         --pack-iram.
3496         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
3497         * as/mcs51/lkaomf51.c: fixed bug #895763
3498
3499 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
3500
3501         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
3502
3503 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3504
3505         * doc/sdccman.lyx: added details about the HC08 storage classes and
3506         interrupts, fixed the register usage info for z80 & gbz80
3507
3508 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
3509
3510         * doc/sdccman.lyx: added more pic16 port documentation
3511         * device/include/pic16/: added header pic18fregs.h
3512
3513 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
3514
3515         * doc/sdccman.lyx: added Vangelis' contribution
3516
3517 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3518
3519         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
3520         extend to the next CALL or PCALL, not just to the next CALL.
3521
3522 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
3523
3524         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
3525
3526 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3527
3528         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
3529         bug #895752 and a better fix for bug #716790
3530
3531 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3532
3533         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
3534
3535 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3536
3537         * doc/sdccman.lyx: minor changes, minor changed
3538
3539 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
3540
3541         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
3542         which can't handle SDCC_NEWONEBYTEOPS,
3543         (geniCodeMultiply): removed conversion from mult to shift for pic14
3544         and pic16
3545
3546 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3547
3548         * src/hc08/gen.h,
3549         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
3550         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
3551         thus fixing bug #895406
3552
3553 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
3554
3555         * device/lib/_modsint.c,
3556         * device/lib/_modslong.c: sign follows divisor only
3557         * src/hc08/gen.c (genMultOneByte): if result size is 1,
3558         signs or signedness can be ignored
3559         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
3560         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
3561         added optimization for IFX,
3562         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
3563         arguments;
3564         reenabled optimization for IFX, which was removed on 2004-01-11
3565         * src/SDCCast.h: added return type IFX
3566         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
3567         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
3568         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
3569         SDCC_OLDONEBYTEOPS selects the old behaviour
3570         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
3571         changed again and commented promotion rule
3572         * src/SDCCval.c (valDiv): promotion no longer necessary
3573         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
3574         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
3575         rewritten
3576         * support/regression/tests/onebyte.c: added
3577
3578 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
3579
3580         * gen.c (genInline): reverted to old code for assemnling inline
3581         code because of bug reported James Chadd
3582
3583 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
3584
3585         * ralloc.h: missing declarations from previous patch,
3586         seems that patch for ralloc.h was never applied, fixed
3587
3588 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
3589            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
3590
3591         * pcode.c,
3592         * pcode.h,
3593         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
3594         indirect addressing. Marked FSR0 as deprecated
3595         * gen.c (pointerCode): commented out, not needed now
3596         (pic16_popGet2p): new MOVFF helper function
3597         (genGenPointerGet),
3598         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
3599         (shiftRLong): removed duplicate debugging info
3600
3601 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3602
3603         * src/ds390/gen.c (genNearPointerGet),
3604         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
3605         optimization with bits, but not bitfields.
3606         * src/ds390/ralloc.c (packRegisters),
3607         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
3608
3609 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
3610
3611         * src/SDCCcse.c (algebraicOpts): copy operands before modification
3612
3613 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3614
3615         * src/SDCCsymt.h,
3616         * src/SDCCicode.c (operandFromSymbol),
3617         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
3618         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
3619         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
3620         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
3621         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
3622         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
3623         bug #892038
3624         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
3625         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
3626         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
3627         * src/SDCCsymt.c (newSymbol),
3628         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
3629         enumerator_list),
3630         * src/SDCCval.h,
3631         * src/SDCCval.c (newiList): fixed bug #885705
3632
3633 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3634
3635         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
3636         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
3637
3638 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3639
3640         * device/include/c8051f120.h,
3641         * device/include/c8051f300.h,
3642         * device/include/c8051f310.h: added/updated header files for Silicon
3643         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
3644         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
3645         in new section Submitting patches
3646
3647 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3648
3649         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
3650         genFarPointerGet, genCodePointerGet, genGenPointerGet,
3651         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
3652         genGenPointerSet),
3653         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
3654         genFarPointerGet, genCodePointerGet, genGenPointerGet,
3655         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
3656         genGenPointerSet),
3657         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
3658         genFarPointerGet, genCodePointerGet, genGenPointerGet,
3659         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
3660         genGenPointerSet),
3661         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
3662         genFarPointerGet, genCodePointerGet, genGenPointerGet,
3663         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
3664         genGenPointerSet): fixed bug #892400
3665         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
3666         to eliminate build warnings.
3667         * src/SDCCast.c (processParms),
3668         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
3669         fixed bug 751859
3670         * support/valdiag/valdiag.py: added GCC to the list of defines active
3671         when compiling with gcc
3672
3673 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3674
3675         * support/Util/SDCCerr.h,
3676         * support/Util/SDCCerr.c,
3677         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
3678         with an incomplete type (fixed bug #883734)
3679         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
3680
3681 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3682
3683         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
3684
3685 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3686
3687         * src/SDCCast.c (decorateType),
3688         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
3689         function pointer implementation
3690         * support/regression/tests/funptrs.c: added tests to verify both forms
3691         of function pointers work correctly. Added tests to verify parameters
3692         are passed in the correct order.
3693
3694 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
3695
3696         * device.c (regCompare): registers are sorted by ascending
3697         address and increasing size,
3698         * main.c (_pic16_finaliseOptions): removed the declaration
3699         of compiler macro MCU. Now a macro of the format pic18fxxxx
3700         will be defined from the command line
3701
3702 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
3703             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
3704
3705         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
3706         PCOP_RLCF was overwritten!
3707         * gen.c (genSkip): commented out calls to pic16_emitcode,
3708         * (genCmpEQ): fixed "long" compares, only high word did get compared,
3709         * (genlshTwo),
3710         * (genRRC): added debugging info,
3711         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
3712         overwritten while shifting,
3713         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
3714         overwritten while shifting,
3715         * (AccLsh),
3716         * (AccRsh),
3717         * (shiftLLeftOrResult),
3718         * (shiftRLeftOrResult),
3719         * (shiftRLong),
3720         * (shiftLLong): Implemented with pic16_emitpcode
3721         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
3722         * (genLeftShift): Fixed bug, operand for shift by variable always
3723         was "and"ed with 0x0f,
3724         * (genLeftShiftLiteral),
3725         * (genrshTwo),
3726         * (genRightShiftLiteral): added debugging info,
3727         * (genrshFour): added comment,
3728         * (genRightShift): determined signedness from operand "left"
3729         instead of "result"
3730
3731 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3732
3733         * src/SDCCicode.c (geniCodeParms),
3734         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
3735         function pointers, fixed function pointer bugs #861242 and #861896
3736
3737 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3738
3739         * device/include/c8051f000.h,
3740         * device/include/c8051f120.h,
3741         * device/include/c8051f300.h: added header files for Silicon
3742         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
3743
3744 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
3745
3746         * src/SDCCast.c (processParams): added new type flow and restructured
3747         (gatherAutoInit): added new type flow
3748         (addCast): cosmetic changes
3749         (getLeftResultType): added new type flow for array indices, patch
3750         provided by Stas, see FR #877103
3751         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
3752         array index patch by Stas
3753         * src/SDCCast.h: added prototype getResultTypeFromType()
3754         * src/SDCCval.h,
3755         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
3756         * src/pic/glue.c (pic14emitStaticSeg),
3757         * src/pic16/glue.c (pic16emitStaticSeg),
3758         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
3759         for initialization of symbols
3760         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
3761         * support/Util/SDCCerr.h:
3762         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
3763         * .version: bumped version number to 2.3.8
3764         * device/include/Makefile.in (install),
3765         * doc/Makefile (install): changed to 'rm `find ...`' construct to
3766         avoid warnings
3767
3768 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
3769
3770         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
3771         Slade Rich fixed an optimization bug
3772         * src/pic/pcodepeep.c,
3773         * src/pic/pcoderegs.c
3774         * doc/Makefile (install): added test for directory
3775
3776 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3777
3778         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
3779         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
3780         * src/pic/ralloc.c (getRegPtr, getRegGpr),
3781         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
3782         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
3783         * as/mcs51/asexpr.c (term),
3784         * as/hc08/asexpr.c (term): fixed bug #887146
3785
3786 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3787
3788         * src/z80/gen.c (genMult): handle single byte result product
3789         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
3790         DUMMY_READ_VOLATILE (fixed bug #886367)
3791
3792 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
3793
3794         * support/regression/tests/libmullong.c: fixed logic, on little endian
3795         hosts we ended without a mullong_wrapper()
3796
3797 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3798
3799         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
3800         virus/worm forged address usage.
3801
3802 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
3803
3804         Fixed promotion, it should be done on AST level:
3805         * src/SDCCast.c (addCast): added promotion to int
3806         (decorateType): updated call to upCast()
3807         * src/SDCCicode.c (geniCodeLeftShift): removed call to
3808         usualUnaryConversions()
3809
3810 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
3811
3812         * support/regression/tests/literalop.c (mulWrapper): Added a
3813         wrapper to remove integer overflow warnings.
3814
3815         * support/regression/tests/float_trans.c: Made work on host.
3816
3817         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
3818         location of sz80.
3819
3820         * support/regression/generate-cases.py (main): Changed from inline
3821         to a main method.
3822
3823         * doc/Makefile (install): Changed to depth first to get rid of
3824         missing directory install warning.
3825
3826         * as/Makefile (install-doc): Made work on Mac.
3827
3828 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
3829
3830         * src/SDCCast.c: added an additional type flow in decorateType() of
3831         opposite direction, see feature request #860006; it's enabled at runtime
3832         by setting the environment variable SDCC_NEWTYPEFLOW
3833         * src/SDCCast.h: changed prototype of decorateType()
3834         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
3835         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
3836         'char' to 'int' can be omitted, if both operands are 'unsigned char';
3837         see feature request #877103
3838         * src/SDCCval.c: updated call of decorateType()
3839         (valBitwise): fixed bug #882876
3840         (valMinus): added promotion
3841         (valLogicAndOr): result is unsigned
3842         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
3843         * src/SDCCsymt.c (computeType),
3844         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
3845         must not cause an unsigned operation
3846         * src/pic/glue (pic14emitRegularMap),
3847         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
3848
3849 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
3850
3851         * src/pic/pcode.c (PCodeID): commented out left over debug code
3852
3853 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
3854
3855         * support/valdiag/tests/overflow.c: added shift tests
3856         * src/pic/device.c,
3857         * src/pic/gen.c,
3858         * src/pic/gen.h,
3859         * src/pic/glue.c,
3860         * src/pic/main.c,
3861         * src/pic/pcode.c,
3862         * src/pic/pcode.h,
3863         * src/pic/pcodepeep.c,
3864         * src/pic/pcoderegs.c,
3865         * src/pic/ralloc.c,
3866         * src/pic/ralloc.h: applied patch from Slade Rich;
3867         added support for multiple code pages and multiple RAM banks on the
3868         PIC 14 port. The ASM files now no longer simply assume all the
3869         code / RAM are in the same page / bank. This means the linker can
3870         safely allocate code/RAM of separate ASM files to different pages/banks.
3871         * doc/sdccman.lyx: added Slade's tips
3872         * src/mcs51/peeph.def: fixed bug #880768
3873
3874 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3875
3876         * src/hc08/ralloc.c (rematStr): fixed bug #879282
3877         * src/SDCCast.c (decorateType): fixed bug #880197
3878
3879 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
3880
3881         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
3882         getopt.h.
3883
3884         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
3885         strtof is not part of C89 and isn't included with Mac OS X.
3886
3887 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3888
3889         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
3890         shiftL2Left2Result): fixed bug #879326
3891         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
3892         (genMultOneByte): fixed bug in signed vs unsigned multiplication
3893         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
3894         address fetch for clr instruction
3895         * device/lib/hc08/_mulint.c: created optimized assembly version
3896         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
3897
3898 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
3899
3900         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
3901         proposed in FR #877103
3902
3903 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
3904
3905         * src/SDCCval.c (cheapestVal): added missing checks
3906         * src/SDCCicode.c (usualBinaryConversions): fixed condition
3907         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
3908
3909 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
3910
3911         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
3912         equal operands
3913
3914 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
3915
3916         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
3917         loaded with the linker search paths (-L arguments) and the libraries
3918         to be linked with the current source (-l arguments). Changes
3919         currently will affect only the pic16 port.
3920         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
3921         include path the port specific paths and port specific libraries,
3922         * gplink command now contains the $3 argument,
3923         * src/pic16/device.h,
3924         * src/pic16/device.c,: structure PIC_device is made public and
3925         renamed to PIC16_device, the same for variable Pics which is renamed
3926         to Pics16. Updated all references to them.
3927         * src/pic16/glue.c (pic16glue): corrected bug with code
3928         initialization which bypassed the variable initializations block.
3929
3930         * device/lib/pic16/Makefile.rules: removed --penable-stack from
3931         COMPILE_FLAGS and added the --nostdinc option
3932
3933 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3934
3935         * device/include/mc68hc908jb8.h: Register defs for another member
3936         of the hc08 family. Contributed by Bjorn Bringert - thanks!
3937
3938 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
3939
3940         Documenting changes from previous commits.
3941         * configure.in (version 1.56),
3942         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
3943         when generating output files to configure the pic16 library,
3944         but now I've commented it out, since gputils aren't installed in the
3945         SF compile farm, so library won't compile
3946
3947         * device/lib/Makefile.in (version 1.56): initially I've added in
3948         target 'all' the prerequestive 'model-pic16' so it compiled the
3949         pic16 library, but now I've commented it out for the same reasons
3950         above,
3951         * added targets 'model-pic16' and 'objects-pic16' to compile the
3952         library
3953         * added target 'port-specific-objects-pic16' to handle the
3954         generated libraries and copy them into the build/ directory
3955         * added target 'clean-intermediate-pic16' to clean intermediate
3956         files into pic16 directory
3957         * in target 'installdirs' added line to create directory pic16 in
3958         the installation path
3959
3960         * device/include/Makefile.in (version 1.11): in target 'install'
3961         added lines to copy all header files to installation path,
3962         * in target 'installdirs' added line create directory for pic16
3963         headers in the installation path
3964
3965 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
3966
3967         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
3968          a function call
3969
3970 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
3971
3972         * configure,
3973         * device/lib/configure.in,
3974         * device/lib/configure: fixed for autoconf 2.57
3975
3976 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3977
3978         * src/z80/main.c (_parseOptions): fixed the portmode= command line
3979         option so that it actually works. Made it specific to the z80, since
3980         the gbz80 doesn't have these kinds of I/O ports.
3981
3982 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3983
3984         * device/include/z180.h,
3985         * device/lib/_memcpy.c,
3986         * device/lib/_memmove.c,
3987         * device/lib/_mulint.c,
3988         * device/lib/ser_ir.c,
3989         * device/lib/ser_ir_cts_rts.c,
3990         * device/lib/_strcmp.c,
3991         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
3992         * src/z80/main.c (_process_pragma): add support for pragmas bank and
3993         portmode; added deprecation warning for bank= and protmode= forms.
3994         Also, guard against buffer overflow.
3995         * src/z80/gen.c (aopGet): generate better code for sfr banked read
3996
3997 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3998
3999         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
4000         changed interrupt vector table generation to only emit declared vectors.
4001         * device/include/Makefile.in: added missing backslash
4002         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
4003
4004 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
4005
4006         Mainly changes to support compilation of the device libraries
4007         * src/pic16/device.c: stack is allocated via symbol and not
4008         via literal number. The symbol is placed in the corresponding
4009         position of the data ram
4010         * (pic16_dump_section): relocatable and absolute uninitialized
4011         data are now emitted in sorted order to reduce section naming,
4012         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
4013         weren't marked as being in the access bank,
4014
4015 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
4016
4017         Added portion of GNU PIC Library under the directory
4018         device/include/pic16 and device/lib/pic16. These files
4019         contain the declarations of SFRs for the PIC18Fxx2 devices.
4020         The directory is initialized via configure from toplevel.
4021
4022 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
4023
4024         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
4025         the spilllocations to be compared correctly
4026
4027 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
4028
4029         * src/SDCCast.c (decorateType): fixed bug introduced today
4030
4031 2004-01-12  Borut Razem <borut.razem AT siol.net>
4032
4033         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
4034         doc/sdccman.lyx: upper case pragmas are deprecated
4035
4036 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
4037
4038         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
4039         in simpler and even better code
4040
4041 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
4042
4043         * src/SDCCicode.c (operandOperation): fixed bug #874819
4044         * src/SDCCast.c (decorateType): fixed
4045         char foo (unsigned long ul) { return ul > 0; }
4046
4047 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4048
4049         * doc/sdccman.lyx: Moved and added some sections, small changes
4050         all over. Telling LaTeX to be less strict with word spacing
4051         to better keep the right margin. Changed some notes about
4052         maintainance of the ports in section 3.2.1 - is it OK like this?
4053
4054 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
4055
4056         SDCC source changes:
4057         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
4058         convilong): modified to inform the pic16 port that builtin functions
4059         are external
4060
4061         PIC16 PORT specific changes:
4062         * src/pic16/device.c pic16_dump_equates() added,
4063         processor registers declared internally by the port are emitted in
4064         the translation as equates,
4065         * src/pic16/gen.c: inline code is passed unprocessed to the
4066         translation,
4067         * (pic16_popGetLit2): fnuction modified to take second operand as
4068         pCodeOp pointer and not as literal,
4069         * (popRegFromIdx): prefixed with pic16_,
4070         * (pic16_popCombine2): modified to receive already allocated pCode
4071         operands,
4072         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
4073         * (genFunction): initializes local stack frame and pushes on stack
4074         all the registers used by this function,
4075         * (genEndFunction): restores all registers from stack and restores
4076         stack frame,
4077         * src/pic16/glue.c (pic16emitRegularMap): various changes and
4078         improvements,
4079         * (pic16glue): changed the program startup sequence,
4080         * added new dbName code 'A' for functions placed in absolute section
4081         * src/pic16/main.c: added function attribute _naked,
4082         * added pragma 'code' to place a fnuction at an absolute address,
4083         * added command line arguments --debug-ralloc and --pcode-verbose,
4084         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
4085         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
4086         * (pic16_newpCodeOpLit2): modified to take the second operand as
4087         pCodeOp pointer,
4088         * (pic16_printpBlock): modified to emit each function in a separate
4089         section,
4090         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
4091         UPPER for immediate operands,
4092         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
4093         instruction,
4094         * src/pic16/peeph.def: all peepholes with movff are commented out,
4095         because there is a problem in the pcode peep optimizer,
4096         * src/pic16/ralloc.c: the register allocator can now reuse local
4097         function symbols for another function. This saves register usage.
4098         * src/pic16/ralloc.h: added flag isLocal in structure regs,
4099
4100         Added file src/pic16/NOTES with information about program writing on
4101         the current port version.
4102
4103 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4104
4105         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
4106         and peephole 252 (array access)
4107
4108 2004-01-09  Borut Razem <borut.razem AT siol.net>
4109
4110         * src/SDCCmain.c : fixed #872250: -l command line defined library
4111           files are scanned before standard library files
4112
4113 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4114
4115         * src/SDCCast.c (decorateType): fixed bug #874046
4116
4117 2004-01-09  Borut Razem <borut.razem AT siol.net>
4118
4119         * support/scripts/sdcc.nsi: remove previous installation
4120
4121 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4122
4123         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
4124         bytes for last interrupt vector (mcs51)
4125         * sdcc.spec: fixed typo
4126
4127 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4128
4129         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
4130         gen51Code): more efficient parameter receive for --model-large
4131         ("bug" #845294)
4132
4133 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4134
4135         * src/ds390/main.c,
4136         * src/z80/main.c: added missed needLinkerScript flags (more than
4137         one port structure defined in these file)
4138         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
4139         bug #795325
4140
4141 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
4142
4143         * src/SDCCmain.c: removed various references to DEFAULT_PORT
4144         * src/port.h: added flag needLinkerScript in port->linker
4145         structure to inform whether to create a .lnk file or not,
4146         * src/avr/main.c,
4147         * src/ds390/main.c,
4148         * src/hc08/main.c,
4149         * src/mcs51/main.c,
4150         * src/pic/main.c,
4151         * src/pic16/main.c,
4152         * src/xa51/main.c,
4153         * src/z80/main.c: changed appropriately to configure
4154         needLinkerScript flag
4155         * src/pic/gen.c,
4156         * src/pic16/gen.c (genAddrOf): fixed bug #863624
4157         * src/pic/glue.c: added variable udata_section_name to
4158         override default uninitialized data segment definition for
4159         devices only with SHAREBANK memory (reported from Erik Epetrich)
4160         * (pic14emitOverlay): modified to emit a commented overlay segment
4161         directive when no overlay data exist
4162         * (picglue): modified to emit uninitialized data segment
4163         according to udata_section_name
4164         * src/pic/main.c (_pic14_parseOptions): added command line
4165         options --udata-section-name=[name] to override default
4166         udata definition name
4167         * modified _linkCmd and _asmCmd to include compiler passed
4168         arguments via -W option
4169         * src/pic16/main.c: added $l in _asmCmd, changed extension for
4170         object file from '.rel' to '.o' in port->linker structure,
4171         changed size of fptr from 2 to 3 in port structure
4172
4173 2004-01-07  Borut Razem <borut.razem AT siol.net>
4174
4175         * support/scripts/sdcc.nsi: update PATH
4176         * support/scripts/sdcc.ico: craeted
4177
4178 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
4179
4180         * device/include/Makefile.in: fix install
4181         * doc/Makefile: fix install
4182
4183 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4184
4185         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
4186         in bug #860505
4187         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
4188         how the function variable allocation summary is displayed; also
4189         include information about variables allocated to the overlay
4190         segment
4191
4192 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4193
4194         * as/mcs51/lkmain.c: Help about -Y option
4195         * as/mcs51/lkarea.c: Fixed gcc warnings
4196
4197 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
4198
4199         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
4200         fixed warning
4201         * support/valdiag/tests/overflow.c: added
4202         * src/SDCCast.c (decorateType),
4203         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
4204         LEFT_OP (left shift)
4205
4206 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4207
4208         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
4209         (default behaviour).
4210
4211 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4212
4213         A python script to validate compiler diagnostic messages. It can be
4214         used to verify that sdcc complains about bad c source code and
4215         gives a good location of the error.
4216         * support/valdiag/Makefile,
4217         * support/valdiag/valdiag.py,
4218         * support/valdiag/tests/*
4219
4220 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4221
4222         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
4223         * src/SDCCsymt.c (newEnumType),
4224         * src/SDCCsymt.h
4225         * support/Util/SDCCerr.c,
4226         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
4227         enum related bugs.
4228         * support/regression/tests/enum.c: added test for enum values that
4229         require at least 2 bytes of storage.
4230
4231 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
4232
4233         * src/common.h: added ifndef/define/endif macros
4234         around the header file.
4235         Bug reported from Jesus Calvino-Fraga
4236
4237 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
4238
4239         * sdcc.spec: updated
4240         * device/include/Makefile.in: don't install CVS directories
4241         * device/lib/Makefile.in: added removal of CVS directories after install
4242         * doc/Makefile: fixed install, added local_icons
4243         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
4244         * src/mcs51/gen.c (genRightShift): fixed bug #870788
4245         * src/ds390/gen.c (genRightShift): fixed bug #870788
4246         * src/SDCCast.c (decorateType): fixed bug #870781
4247
4248 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
4249
4250         PIC16 port related changes:
4251         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
4252         added variable stackPos,
4253
4254         * gen.c: genCall, assignResultValue: added support for
4255         pushing/retrieving function parameters to/from stack,
4256         genFunction,genEndFunction: setup stack frame for the
4257         generated function,
4258         genAddrOf: will be changed according to bug 863624
4259
4260         * added files genutils.c and genutils.h which contain gen*
4261         debugged and optimised functions extracted from gen.c
4262
4263         * glue.c: added variable 'externs' which holds extern symbols,
4264         pic16emitRegularMap: is modified to properly handle relocatable
4265          symbols under the new scheme,
4266         pic16createInterruptVect: is modified
4267         pic16printPublics: is modified to emit 'global' assembler directives,
4268         added pic16_printExterns to print extern symbols,
4269         pic16glue: initializes stack/frame pointer in the beginning of
4270         the assembly output. Temporary hack, will be corrected later,
4271         because gplink yet does not support stack and SDCC does not
4272         yet support a type of crt0.o object to create the final binary.
4273
4274         * Removed many lines that contain 8051 legacy code.
4275         * The code is finally placed under a 'code' directive.
4276         * Added port specific options.
4277
4278         * _process_pragma: simplified since now we do not need *special*
4279         include file to define SFR registers. But a separate header
4280         will be needed. This will be developed later.
4281         * _pic16_parseOptions: added, parses port specific options:
4282         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
4283         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
4284         --preplace-udata-with=
4285
4286         * _pic16_setDefaultOptions: modified to initialize section names,
4287         but hack is temporarly out of order since it needs improvement.
4288         * _pic16_genAssemblerPreamble: configuration words are emitted by
4289         their address instead of their name. This part is incomplete and
4290         supports only the 18Fxx2 devices. Other devices will emit an error
4291         during assembly since they do not contain the same set of config
4292         registers
4293         * _pic16_genIVT: is modified,
4294
4295         * pcode.c: added definitions for some hardware registers that are needed
4296         for stack support
4297         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
4298         All PCI entries are updated. Now LFSR is supported.
4299         * Removed pic16_pciTRIS is mentioned by mdubuc in source
4300         * added pic16_newpCodeOpLit2 to support instructions with
4301         two literal arguments
4302         * pic16_pCode2str: corrected code that emits assembler instructions
4303         with two literal operands and those that have an access bit modifier
4304         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
4305         this fixes a bug which caused some labels to be lost, when an
4306         assembler directive was added, i.e. banksel,
4307         * pic16_FixRegisterBanking: improved logic that causes the insertion
4308         of bank switching,
4309         * InlineFunction: functions that are called once, are not any more
4310         inlined. This can be a port option in the future,
4311
4312         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
4313
4314         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
4315         hold the corresponding uninitialized symbols,
4316         * pic16_allocProcessorRegister: registers have explicit marked the
4317         accessBank field,
4318         * pic16_allocInternalRegister: registers are explicit marked as
4319         not used,
4320         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
4321         processing list, so bit registers were lost,
4322         *
4323
4324         * ralloc.h: added field 'accessBank' and original symbol operand
4325         in register definition,
4326         * removed the field isMapped from register definition,
4327
4328         ** Several functions have been removed from various sources:
4329         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
4330         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
4331         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
4332         pic16_assignRelocatableRegisters
4333
4334         ** others have been introduced:
4335         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
4336         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
4337
4338 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
4339
4340         * support/scripts/inc2h.pl: changed definition of BIT_AT
4341         to emit 'sbit at' instead of 'bit at'. This was a request.
4342
4343         PIC16 port related preliminary changes:
4344         * gen.c: prefixed function popRegFromString with
4345         pic16_ and all references to it corrected
4346         * pcode.c: all pic16_pc_* hardware registers prefixed
4347         with underscore (_),
4348         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
4349         * ralloc.c: newReg(): when register is REG_SFR then
4350         set address to rIdx,
4351         pic16_allocProcessorRegister(): marks register wasUsed=0
4352         pic16_writeUsedRegs(): added a call to assign processor
4353         registers via pic16_assignFixedRegisters
4354
4355 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4356
4357         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
4358         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
4359         variables in unused register banks.  Also the SSEG is placed
4360         wherever there is enough space for it, and IDATA can be anywhere
4361         in internal RAM.  For now compile using -Wl-Y[stack_size].
4362         The mem file is different for this option as well, since it
4363         makes no sense of talking about DSEG lenght.
4364
4365 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
4366
4367         * src/SDCClrange.c: fixed bug 869095 that caused segfault
4368         in certain cases, e.g. when ROM assignment, patch provided
4369         from Albert den Haan.
4370
4371 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
4372
4373         Many signedness and type propagation fixes:
4374         * src/SDCCicode.c: made geniCodeCast() static
4375         replaced SPEC_ by IS_ (cosmetic)
4376         (operandOperation): fixed div and mod operation
4377         (usualBinaryConversions): added support for promotion of char
4378         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
4379         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
4380         (geniCodeAdd): an array index will stay unsigned, even if promoted
4381         from char to int
4382         (geniCodeArray): ditto
4383         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
4384         * src/SDCCsymt.c (computeType): added more support for char;
4385         promotion of char is selectable by promoteCharToInt, fixed signedness
4386         for all cases
4387         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
4388         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
4389         * src/SDCCval (val*): replaced signedness calculation by
4390         computeType()
4391         rearranged if-branches (cosmetic)
4392         (valShift): added warning W_SHIFT_CHANGED
4393         (valCompare): fixed problem with different types
4394         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
4395         * support/regression/tests/literalop.c: added many cases
4396         * support/regression/tests/ast_constant_folding.c: changed finally to
4397         'unsigned int'
4398         * .version: new year, new version: 2.3.7
4399         * src/SDCCmain.c (main): applied patch #866468
4400         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
4401         provided by Scott Bronson
4402         * doc/sdccman.lyx: updated documentation for sdcdb
4403         updated and added chapter tips
4404
4405 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4406
4407         * src/SDCCsymt.h: missing from yesterday's commits
4408
4409 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4410
4411         * src/SDCC.y (struct_or_union_specifier),
4412         * support/Util/SDCCerr.c,
4413         * support/Util/SDCCerr.h: verify that struct & union tags are used
4414         as declared.
4415
4416 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4417
4418         * src/SDCCglobl.h: missing from yesterday's commits
4419
4420 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4421
4422         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
4423         sft_attributes, struct_declaration, parameter_declaration,
4424         type_name, start_block, declaration_list),
4425         * src/SDCC.lex (check_type): support redefinition of typedef names
4426
4427 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4428
4429         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
4430         aligned xdata arrays. Erik helped me with the if clause.
4431
4432 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4433
4434         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
4435         warning
4436
4437 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4438
4439         * src/SDCCast.h,
4440         * src/SDCCast.c (newAst_),
4441         * src/SDCCicode.h,
4442         * src/SDCCicode.c (ast2iCode, newiCode),
4443         * src/SDCCglobl.h,
4444         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
4445         expr, statement, expression_statement, selection_statement,
4446         iteration_statement, expr_opt, jump_statement): foundation for tracking
4447         sequence points
4448         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
4449         point code too)
4450
4451 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4452
4453         * support/Util/SDCCerr.c,
4454         * src/SDCCast.h,
4455         * src/SDCCast.c (createCase, createDefault, decorateType),
4456         * src/SDCClabel.c (labelUnreach),
4457         * src/SDCC.y (labeled_statement, jump_statement): More improvements
4458         to error messages.
4459         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
4460         (with thanks to Stas Sergeev)
4461         * device/include/time.h,
4462         * device/lib/time.c (CheckTime): suppress unreachable code warning
4463
4464 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4465
4466         * src/SDCCast.c (createIvalCharPtr),
4467         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
4468         bug #753752)
4469         * support/regression/tests/nullstring.c: tests for these two bugs
4470
4471 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4472
4473         * support/Util/SDCCerr.h,
4474         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
4475         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
4476         about storage class and 'at' used inside struct or union
4477         * src/SDCCBBlock.c (iCodeFromeBBlock),
4478         * src/SDCCcse.c (ifxOptimize),
4479         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
4480         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
4481         printIval, emitStaticSeg, emitOverlay),
4482         * src/SDCClabel.c (deleteIfx),
4483         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
4484         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
4485         gatherAutoInit, processParms),
4486         * support/Util/SDCCerr.h,
4487         * support/Util/SDCCerr.c (werrorfl): Support for better error location
4488         reporting for post-parse errors.
4489
4490 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4491
4492         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
4493         implicit casts via union; they don't work on big endian systems
4494         (possible fix for bug #861138)
4495
4496 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4497
4498         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
4499         * src/mcs51/main.c: fixed the fix for bug #737001
4500
4501 2003-12-15  Borut Razem <borut.razem AT siol.net>
4502
4503         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
4504
4505 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4506
4507         * support/makebin/makebin.c: put output in binary mode
4508
4509 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4510
4511         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
4512         xdata and data memory on startup. Set the environment variable
4513         SDCC_NOGENRAMCLEAR to disable this.
4514         * src/mcs51/peephole.def,
4515         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
4516         (allows non-interrupt and interrupt code to safely compete for a resource
4517         without the non-interrupt code having to disable interrupts)
4518
4519 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4520
4521         * src/SDCCicode.c (geniCodeAdd),
4522         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
4523         with valFromType if type might be a pointer and host is big endian).
4524         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
4525         types, not just integer types.
4526         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
4527         multiply defined with mismatching "at" address.
4528
4529 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4530
4531         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
4532         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
4533         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
4534         with embedded nulls (fixed bug #753752)
4535
4536 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4537
4538         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
4539         Apparently this did not see much testing (endless loop)
4540
4541 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4542
4543         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
4544
4545 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4546
4547         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
4548         gracefully handle NULL memmap pointers
4549
4550 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4551
4552         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
4553         instead of deleting the iCode when an operand is volatile
4554         * src/z80/gen.c (genDummyRead),
4555         * src/mcs51/gen.c (genDummyRead),
4556         * src/ds390/gen.c (genDummyRead),
4557         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
4558         not just IC_RIGHT
4559         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
4560         * src/SDCC.y: fixed bug #850420
4561
4562 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4563
4564         Applied z80 i/o port patch from Peter Townson and fixed some operators
4565         to better handle operands in A register.
4566         * device/include/z180.h
4567         * src/SDCC.y
4568         * src/SDCCglue.c
4569         * src/z80/gen.c
4570         * src/z80/gen.h
4571         * src/z80/main.c
4572         * src/z80/peeph-z80.def
4573         * src/z80/peeph.def
4574         * src/z80/z80.h
4575
4576 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4577
4578         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
4579
4580 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4581
4582         * device/lib/hc08/_mullong.c: Removed extra #endif
4583
4584 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4585
4586         * sim/ucsim/hc08.src/inst.cc,
4587         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
4588         carries from x to h
4589         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
4590         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
4591         * device/include/stdarg.h: fixed varargs for hc08
4592         * device/lib/Makefile.in,
4593         * device/lib/hc08/Makefile,
4594         * device/lib/hc08/_mulint.c,
4595         * device/lib/hc08/_mullong.c: fixed some endian problems
4596
4597 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4598
4599         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
4600         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
4601         * device/lib/_gptrget.c,
4602         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
4603
4604 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4605
4606         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
4607         * src/SDCCast.c (astErrors): fixed bug #846007
4608         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
4609
4610 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4611
4612         * src/SDCCast.c (decorateType): disabled a transformation I added in
4613         revision 1.188 (access to fields of a structure at an absolute address);
4614         it breaks with bitfields, extern declarations, and gcse analysis.
4615         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
4616         could be assigned through a pointer, so don't complain.
4617         * src/SDCCast.c (astErrors),
4618         * src/SDCCast.h,
4619         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
4620
4621 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
4622
4623         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
4624         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
4625         output of __config directives, since gpasm now supports them
4626         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
4627         pre-processor macro, i.e. -DMCU=p18f452
4628         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
4629         and modified to handle 'cast' icode similarly to '=' icode
4630         * src/pic16/device.h (typedef struct PIC_device): added field
4631         'extMIface' to indicate that chip has external memory interface
4632         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
4633         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
4634         18F8720
4635
4636 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4637
4638         * src/SDCC.y (pointer): fixed bug #846006
4639         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
4640         * src/SDCCast.c (decorateType): fixed bug #846009
4641         * src/ds390/peeph.def,
4642         * src/ds390/gen.c (genAnd, genOr),
4643         * src/mcs51/peeph.def,
4644         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
4645
4646 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4647
4648         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
4649         * src/SDCCdflow.c
4650         * src/SDCCcse.c
4651         * src/SDCCcse.h
4652         * src/SDCCBBlock.h
4653         * src/SDCCBBlock.c
4654
4655 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
4656
4657         fixed bug #845089
4658         * src/SDCCbitv.h,
4659         * src/SDCCbitv.c: added function to free a bitvector
4660         * src/SDCClrange.h,
4661         * src/SDCClrange.c: added function to recompute the liveranges
4662         * src/avr/ralloc.c,
4663         * src/ds390/ralloc.c,
4664         * src/hc08/ralloc.c,
4665         * src/mcs51/ralloc.c,
4666         * src/pic/ralloc.c,
4667         * src/pic16/ralloc.c,
4668         * src/xa51/ralloc.c,
4669         * src/z80/ralloc.c: recompute the liveranges after register packing
4670
4671 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
4672
4673         * src/SDCCloop.c (newInduction): fixed bug #845630
4674
4675 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4676
4677         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
4678         inadvertantly left behind from my 2003-11-12 change
4679
4680 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4681
4682         Updated headers I neglected to commit yesterday.
4683         * src/SDCClrange.h,
4684         * src/SDCCicode.h
4685
4686 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4687
4688         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
4689         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
4690         * src/SDCCopt.c (eBBlockFromiCode),
4691         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
4692         the creation of the key hash table from the sequencing so it can be used
4693         earlier (for some GCSE bug fixes still pending)
4694
4695 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4696
4697         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
4698         * support/regression/tests/addsub.c: testing genPlus shortcut
4699
4700 2003-11-15  Borut Razem <borut.razem AT siol.net>
4701
4702         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
4703
4704 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4705
4706         * src/SDCCcse.c (cseBBlock): fixed bug #527779
4707         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
4708         ordering is immaterial.
4709         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
4710
4711 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4712
4713         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
4714         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
4715         (SIGSEV) of bug #840381
4716         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
4717         unlink new file before rename if new and old filenames are the same)
4718
4719 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4720
4721         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
4722         uninitialized variables) for the mcs51. Set environment variable
4723         SDCC_GENRAMCLEAR to test.
4724         xdata initialization slightly shorter
4725
4726 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4727
4728         * src/SDCCsymt.h,
4729         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
4730         #838241 & 780691 (basicly the same bug)
4731         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
4732         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
4733
4734 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
4735
4736         * src/SDCCmain.c (linkEdit): "fix" #834252
4737
4738 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4739
4740         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
4741         * src/SDCCast.h,
4742         * src/SDCC.y: fixed bug #819403
4743
4744 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4745
4746         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
4747         the reentrant attribute.
4748         * src/hc08/gen.c (genPackBits): added missing stack readjustment
4749         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
4750         simulation
4751         * src/SDCCast.c (decorateType): fixed bug with storage class not being
4752         updated during pointer dereference; f.e. ~(((char *)1)*) was being
4753         erroneously reduced to a literal.
4754         * src/hc08/ralloc.c (packRegisters, rematStr),
4755         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
4756         some cases
4757
4758 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4759
4760         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
4761         * doc/sdccman.lyx: changed from 'article' to 'book'
4762         * doc/Makefile: readded test_suite_spec and cdbfileformat
4763
4764 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
4765
4766         * device/include/stdlib.h: include malloc.h to comply with ANSI
4767         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
4768
4769 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4770
4771         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
4772         * doc/clean.mk: also remove *.out files
4773         * doc/sdccman.lyx: some additions, larger top/bottom margins
4774
4775 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4776
4777         * src/SDCC.y: fixed bug #837365
4778         * support/regression/tests/bitopcse.c
4779         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
4780         a symbol (might be valop instead)
4781         * device/lib/Makefile.in: added errno.c to HC08SOURCES
4782         * device/lib/clean.mk: added hc08 to the cleaning list
4783
4784 2003-11-04  Borut Razem <borut.razem AT siol.net>
4785
4786         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
4787           made 2003-11-04
4788         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
4789           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
4790           malloc is declared in standard stdlib.h
4791
4792 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4793
4794         * device/lib/hc08/Makefile: need to clean .rel not .o files
4795         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
4796
4797 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4798
4799         * src/port.h,
4800         * src/hc08/main.c,
4801         * src/mcs51/main.c,
4802         * src/ds390/main.c,
4803         * src/z80/main.c,
4804         * src/avr/main.c,
4805         * src/pic/main.c,
4806         * src/pic16/main.c,
4807         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
4808         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
4809         tests (which uses the port's oclsExpense function)
4810         * src/SDCC.y,
4811         * src/SDCCast.c,
4812         * src/SDCCicode.c,
4813         * src/hc08/gen.c,
4814         * src/ds390/gen.c,
4815         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
4816
4817 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4818
4819         * src/SDCCcse.c (ifxOptimize),
4820         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
4821         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
4822         deleting the IFX iCode.
4823         * src/hc08/ralloc.c: reduced unneeded slocs
4824         * src/hc08/gen.c: fixed bug in asmopToBoolean
4825
4826 2003-11-04  Borut Razem <borut.razem AT siol.net>
4827
4828         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
4829           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
4830           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
4831           transferred to configure
4832
4833 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
4834
4835         Use headers defined in the C[++] standards:
4836         * sim/ucsim/gui.src/serio.src/fileio.cc
4837         * sim/ucsim/gui.src/serio.src/frontend.cc
4838         * sim/ucsim/gui.src/serio.src/main.cc
4839         * sim/ucsim/gui.src/serio.src/posix_signal.cc
4840         * support/Util/NewAlloc.c
4841         * as/hc08/lklibr.c
4842         * as/mcs51/lklibr.c
4843         * as/z80/aslist.c
4844         * as/z80/assym.c
4845
4846 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4847
4848         * Added MSVC projects for hc08 assembler and linker:
4849         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
4850         /as/hc08/link_hc08.dsp
4851
4852 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
4853
4854         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
4855
4856 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
4857
4858         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
4859
4860 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4861
4862         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
4863
4864 2003-10-31  Borut Razem <borut.razem AT siol.net>
4865
4866         * support/cpp2/cpplib.h,
4867           support/cpp2/cpplib.c,
4868           support/cpp2/cpplex.c,
4869           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
4870           to switch _asm block preprocessing on / off. Default is
4871           #pragma preproc_asm +
4872
4873 2003-10-31  Borut Razem <borut.razem AT siol.net>
4874
4875         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
4876           when outputting comment blocks (when executed with -C option) and
4877           _asm (SDCPP specific) blocks
4878
4879 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4880
4881         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
4882
4883 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
4884
4885         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
4886
4887 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
4888
4889         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
4890         * src/SDCCast.c (decorateType): fixed bug #832664
4891
4892 2003-10-31  Borut Razem <borut.razem AT siol.net>
4893
4894         * support\cpp2\cpplex.c: fixed for SDCPP:
4895           comments(when executed with -C option) and _asm blocks
4896           were included even if they where in skipped #if block.
4897           Applied solution from GCC cpp 3.3.2
4898
4899 2003-10-31  Borut Razem <borut.razem AT siol.net>
4900
4901         * src/SDCC.lex: sdcc now understands both formats:
4902           '# <line_number> <file_name>' and
4903           '#line <line_number> <file_name>'
4904         * support/cpp2/cppmain.c: sdcpp now generates the standard
4905           '# <line_number> <file_name>' instead of former
4906           '#line <line_number> <file_name>'
4907
4908 2003-10-30  Borut Razem <borut.razem AT siol.net>
4909
4910         * support/cpp2/cpphash.h,
4911         * support/cpp2/cpplib.h
4912         * support/cpp2/cpplex.c,
4913         * support/cpp2/cppmain.c,
4914         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
4915
4916 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4917
4918         Fixed a number of problems revealed by bug #827883.
4919         * src/SDCCloop.c (loopInvariants): Spill location of the
4920         result operand should be recomputed if extracted from
4921         a loop. Also, don't extract assignments of an iTemp
4922         from a literal.
4923         * src/SDCCast.c (isConformingBody): loop reversal should
4924         not occur if the control variable is involved with a
4925         relational operator.
4926
4927 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
4928
4929         * .version: bumped to 2.3.6 to reflect the big improvements
4930         made by Erik and Klaus. Thanks!
4931
4932 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
4933
4934         Replaced the livrange code.
4935         * src/SDCClrange.c: added new LR code
4936         * src/SDCCloop.c,
4937         * src/SDCCBBlock.h: removed remainig parts from old LR code
4938         * src/ds390/ralloc.c,
4939         * src/ds390/gen.c: minor fixes to make it work with new code
4940
4941 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4942
4943         * as/hc08/asm.h,
4944         * as/hc08/lkrloc.c,
4945         * src/hc08/gen.c,
4946         * src/hc08/ralloc.c: Fix various warnings related to the hc08
4947         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
4948         (tweaked fix for bug #818696)
4949
4950 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4951
4952         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
4953
4954 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4955
4956         * src/SDCCmain.c,
4957         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
4958         * src/mcs51/gen.c (gencjneshort),
4959         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
4960         more efficient (per Scott Bronson's suggestion)
4961
4962 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4963
4964         Extended the semantics of the critical keyword to include
4965         individual statements. See RFE #827755 and #799831
4966         * src/SDCC.y
4967         * src/SDCCicode.c
4968         * src/SDCCopt.c
4969         * src/SDCCast.c
4970         * support/Util/SDCCerr.c
4971         * support/Util/SDCCerr.h
4972         * src/mcs51/gen.c
4973         * src/ds390/gen.c
4974         * src/hc08/gen.c
4975
4976 2003-10-19  Borut Razem <borut.razem AT siol.net>
4977
4978         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
4979
4980 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4981
4982         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
4983         Fixed bug #818696
4984         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
4985         and predecrement operand is displayed
4986
4987 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
4988
4989         * src/SDCCval.c (valMinus): fixed bug #826041
4990
4991 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4992
4993         Some hc08 related updates that I missed earlier
4994         * sim/ucsim/stypes.h
4995         * support/regression/ports/hc08/spec.mk
4996
4997 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4998
4999         New target "hc08" for the Motorola 68hc08 family of micros
5000
5001         * configure
5002         * configure.in
5003         * Makefile
5004         * src/hc08/*
5005         * src/SDCCmain.c
5006         * src/port.h
5007         * sim/ucsim/hc08.src/*
5008         * sim/ucsim/configure.in
5009         * src/ucsim/configure
5010         * sim/ucsim/packages_in.mk
5011         * as/hc08/*
5012         * as/Makefile
5013         * device/include/mc68hc908qy.h
5014         * device/lib/hc08/*
5015         * device/lib/Makefile.in
5016         * support/regression/ports/hc08/*
5017         * support/regression/Makefile
5018
5019 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5020
5021         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
5022         regression test
5023         * src/ds390/gen.c (genCast): fixed bug #821957
5024
5025 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
5026
5027         * device/lib/logf.c: "fixed" overlay bug
5028         * support/regression/ports/host/spec.mk: added m library
5029         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
5030         * support/regression/tests/float_trans: added (for Eric)
5031
5032 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
5033
5034         * src/mcs51/gen.c (genCpl): fixed bug
5035         http://sf.net/mailarchive/message.php?msg_id=6263915
5036
5037 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
5038
5039         * src/SDCCast.c (decorateType): added extended constant folding
5040         * src/SDCCsymt.c (computeType): cleanup
5041         * src/SDCCval.c (valShift): minor optimization
5042         * support/regression/tests/ast_constant_folding.c: added
5043
5044 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5045
5046         * src/SDCCmain.c: removed some unintended changes
5047
5048 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5049
5050         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
5051         * src/z80/gen.c: fixed part of bug #817589
5052         * src/SDCCsymt.c (checkFunction): fixed bug #817895
5053
5054 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
5055
5056         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
5057         * src/SDCCcflow.c
5058         * src/SDCCcse.c
5059         * src/SDCCdflow.c
5060         * src/SDCClabel.c
5061         * src/SDCClrange.c
5062         * src/SDCCmem.c
5063         * src/SDCCopt.c
5064         * src/SDCCpeeph.c
5065         * src/SDCCset.c
5066         * src/avr/ralloc.c
5067         * src/ds390/ralloc.c
5068         * src/izt/ralloc.c
5069         * src/mcs51/ralloc.c
5070         * src/pic/ralloc.c
5071         * src/pic16/ralloc.c
5072         * src/xa51/ralloc.c
5073         * src/z80/ralloc.c
5074         * src/z80/gen.c: removed unused label "release:"
5075
5076 2003-10-06  Borut Razem <borut.razem AT siol.net>
5077
5078         * src/SDCC.lex: removed definition of unused variables
5079           save_optimize and save_options
5080
5081 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
5082
5083         * clean.mk: removed '=' in "-maxdepth=1"
5084         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
5085         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
5086
5087 2003-10-06  Borut Razem <borut.razem AT siol.net>
5088
5089         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
5090           my_unput() replaced by unput()
5091
5092 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
5093
5094         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
5095         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
5096         type-punned pointer will break strict-aliasing rules"
5097         Old LR behaviour is again default; Klaus' LR can be choosen by
5098         defining the environment variable LRKLAUS
5099         * src/SDCCBBlock.h
5100         * src/SDCCloop.c
5101         * src/SDCClrange.c
5102         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
5103         * clean.mk: fixed removal of files in bin/CVS/
5104         * device/lib/clean.mk: fixed removal of directories small and large
5105         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
5106         * src/SDCCicode.c,
5107         * src/SDCCval.c: removed superflous test for pedantic
5108
5109 2003-10-05  Borut Razem <borut.razem AT siol.net>
5110
5111         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
5112           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
5113           message "unmatched #pragma SAVE and #pragma RESTORE"
5114
5115 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5116
5117         * doc/sdccman.lyx: various additions and updates (interrupts, inline
5118           assembly, critical functions, atomic, nojtbound)
5119
5120 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
5121
5122         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
5123         * src/SDCCBBlock.h
5124         * src/SDCCloop.c
5125         * src/SDCCloop.h
5126         * src/SDCClrange.c
5127
5128 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5129
5130         * src/z80/gen.h,
5131         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
5132         * src/mcs51/gen.h
5133         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
5134         * src/ds390/gen.h
5135         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
5136         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
5137         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
5138
5139 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5140
5141         * src/z80/gen.c (genRet): fixed bug #524753
5142         * src/z80/gen.c (genCast): fixed internal error on cast from
5143         pointer to long
5144         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
5145         fix for bug #477835 to the z80
5146         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
5147         for tracking iCodes in the peephole optimizer for z80
5148
5149 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5150
5151         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
5152         the other part of bug #814548
5153         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
5154
5155 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
5156
5157         * src/SDCCcse.c: fixed part of bug #814548
5158
5159 2003-09-28  Borut Razem <borut.razem AT siol.net>
5160
5161         * src/asm.c: rewrite of printILine() to use temporary file instead
5162           a pipe
5163         * src/xa51/main.c: commented out declaration of int rewinds
5164
5165 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5166
5167         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
5168
5169 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5170
5171         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
5172         * src/asm.c (printILine): Fixed bug #811015
5173
5174 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5175
5176         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
5177         freeing.
5178
5179 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5180
5181         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
5182         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
5183         to correctly handle general case of AOP_PAIRPTR
5184         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
5185
5186 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5187
5188         * src/mcs51/ralloc.c (fillGaps),
5189         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
5190         register positioning bug)
5191
5192 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
5193
5194         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
5195
5196 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5197
5198         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
5199         genCodePointerGet, genGenPointerGet, genFarPointerSet,
5200         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
5201         (ralloc doesn't intentionally do this now, but perhaps later)
5202         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
5203         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
5204         register positioning bugs (Fixed bug #762602 and #795325)
5205         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
5206         (Fixed bug #808779)
5207         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
5208         lines that --i-code-in-asm generates
5209
5210 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5211
5212         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
5213         trying to fclose a FILE* that was already closed.
5214
5215 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5216
5217         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
5218         of const struct should be treated as if const themselves)
5219
5220 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
5221
5222         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
5223
5224 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5225
5226         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
5227         Unix (/n) and DOS (/r/n) line terminations.
5228
5229 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5230
5231         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
5232         bug #613775
5233
5234 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5235
5236         * src/mcs51/gen.c (genFunction, genEndFunction),
5237         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
5238         and restore of EA so that stack offsets to parameters are
5239         correct when using both critical and reentrant/stack-auto.
5240         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
5241         size (can be triggered in error if sloc is shared between
5242         different sized objects)
5243         * device/include/float.h: fixed macros to explicitly use
5244         unsigned long where needed
5245
5246 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
5247
5248         Feature req. 799831: added code to allow nesting of critical functions
5249         * src/mcs51/gen.c (genFunction, genEndFunction)
5250         * src/ds390/gen.c (genFunction, genEndFunction)
5251
5252 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5253
5254         * src/SDCCsymt.c (sclsFromPtr),
5255         * src/SDCCsymt.h,
5256         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
5257         support for standard C idiom of memory mapped variables; for
5258         example, *((xdata int*)0x1234) = 1 is now internally equivalent
5259         to xdata int at 0x1234 tempvar = 1.
5260         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
5261         provided by Akiya ISHIDA
5262
5263 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
5264
5265         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
5266         * src/SDCCval.c (constVal): added reduction from int to char
5267         * src/SDCCval.c (valMult, valDiv): fixed sign handling
5268         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
5269         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
5270         to ignore the sign
5271         * support/regression/tests/shifts.c: fixed
5272
5273 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5274
5275         * src/z80/gen.c (genXor): Fixed bug #805445
5276
5277 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5278
5279         Fixed bug #621531 (const & volatile confusion in the type chain).
5280         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
5281         refer to the const or volatile state of the pointer itself.
5282
5283         * src/SDCCast.c
5284         * src/SDCCglue.c
5285         * src/SDCCicode.c
5286         * src/SDCCsymt.c
5287         * src/SDCCval.c
5288         * src/SDCC.y
5289         * src/SDCCsymt.h
5290         * src/pic/gen.c
5291         * src/pic/ralloc.c
5292         * src/pic16/gen.c
5293         * src/pic16/ralloc.c
5294         * support/regression/tests/const.c
5295
5296 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5297
5298         When checking for duplicated modules, use absolute paths
5299         instead of relative paths.  Files changed:
5300
5301         * as/mcs51/lklib.c
5302         * link/z80/lklib.c
5303
5304 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5305
5306         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
5307
5308 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5309
5310         * device/include/string.h: added size_t typedef, changed
5311         prototypes to use size_t, eliminated separate reentrant and
5312         non-reentrant declarations, added _memmove declaration
5313         * device/lib/_memcpy.c: changed to use size_t instead of int,
5314         changed /4 to >>2 to avoid division library call
5315         * device/lib/_memcmp.c,
5316         * device/lib/_memset.c,
5317         * device/lib/_strncat.c,
5318         * device/lib/_strncpy.c,
5319         * device/lib/_strncmp.c: changed to use size_t instead of int
5320         * device/lib/_memmove.c: new file (fixed bug #772294)
5321         * device/lib/Makefile.in: added _memmove.c
5322         * device/lib/z80/asm_strings.s: fixed bug #772290
5323         * support/regression/tests/bitfields.c: attempt to fix host assertion
5324         failure on amd64-unknown-linux2.2
5325
5326 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5327
5328         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
5329         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
5330         * as/z80/asmain.c (main): fixed bug #801766
5331
5332 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
5333
5334         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
5335         compilers
5336
5337 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5338
5339         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
5340         reported in bug #800609
5341
5342 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
5343
5344         * Top header beautifications in src/pic16 directory:
5345           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
5346           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
5347           pcoderegs.h, ralloc.c, ralloc.h
5348         * main.c: added top header and GPL license notice
5349         * pcode.c: fixed the if-conditional warning
5350
5351 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
5352
5353         * device/lib/_mullong.c: replaced int by short for gcc
5354
5355 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5356
5357         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
5358         and JUMPTABLE iCodes properly now (worked by accident before)
5359         * src/mcs51/gen.c (leftRightUseAcc),
5360         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
5361         iCode properly now. Use getSize instead of nRegs since a & b
5362         aren't part of the nRegs tally.
5363
5364 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
5365
5366         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
5367         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
5368           before instructions that use the _STATUS register
5369
5370 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
5371
5372         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
5373         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
5374         fetching of the pointer
5375         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
5376         copied from genNearPointerSet()
5377         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
5378         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
5379         If they pop r0/r1 they must be called in the opposite order than aopOp().
5380         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
5381         (resp. --stack-auto), prepared for --xstack
5382
5383 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5384
5385         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
5386
5387 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
5388
5389         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
5390         these ports have their own __sdcc_external_start()
5391
5392 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
5393
5394         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
5395         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
5396         type for bits was changed. It resulted in bit variables becoming
5397         global, which is not permitted in PIC 14 assembly output.
5398
5399 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5400
5401         * doc/sdccman.lyx: various additions and updates. Rearranged sections
5402
5403 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5404
5405         Z80 and MCS51 linkers complaint if a public symbol is defined
5406         in more than one library module:
5407
5408         * as/mcs51/lklib.c
5409         * link/z80/lklib.c
5410         * as/mcs51/Makefile.in
5411
5412 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5413
5414         A few small changes that speed up the peephole optimizer.
5415
5416         * src/SDCCpeeph.c
5417
5418 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5419
5420         Try to make the peephole optimizer smarter by maintaining
5421         an association between the assembly source code and the
5422         iCodes that originated them. Put this information to use
5423         with a new peephole rule condition "notVolatile" so that
5424         the rules can be aggressive yet still safe.
5425
5426         * src/SDCCpeeph.c
5427         * src/SDCCpeeph.h
5428         * src/mcs51/gen.c
5429         * src/mcs51/peeph.def
5430
5431 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5432
5433         Fixed bug #741761
5434
5435         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
5436         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
5437         if the left or right operand symbols have the accuse flag set.
5438
5439 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5440
5441         Changed the type of the result of the ! (NOT) operator to char;
5442         previously it returned the same type as the source. This allows
5443         us to eliminate all the genFloatNot functions (all of its target
5444         implementations were very buggy) since !float can use the same
5445         code as !long now.
5446
5447         * src/SDCCicode.c (ast2iCode): ! returns char
5448         * src/mcs51/gen.c (genNot, genNotFloat),
5449         * src/ds390/gen.c (genNot, genNotFloat),
5450         * src/z80/gen.c (genNot, genNotFloat),
5451         * src/pic/gen.c (genNot, genNotFloat),
5452         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
5453
5454 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
5455
5456         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
5457         1. Interrupt would not compile properly. Ensure PCLATH register is saved
5458            during interrupts. Ensure WSAVE is located at a shared bank address.
5459         2. Fixed page selection in some places
5460         3. Fixed BTFSS/C to where necessary use registers directly and not simply
5461            the registers name strings.
5462         4. Fixed "signed / unsigned compare" compiler warnings.
5463         5. The PIC port manages its own allocation of the general purpose
5464            registers, but makes no attempt to reuse them. As a result when
5465            compiling it soon runs out of general purpose registers. Some
5466            additional code was added to the files pcode.c and device.c to walk
5467            through the function call tree and rename the registers so that they
5468            get reused.
5469
5470         * src/pic/device.c
5471         * src/pic/gen.c
5472         * src/pic/glue.c
5473         * src/pic/pcode.c
5474         * src/pic/pcode.h
5475         * src/pic/ralloc.c
5476         * src/pic/ralloc.h
5477         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
5478         genPlus() & genMinus() when the result is the same as left or right
5479
5480 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5481
5482         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
5483
5484 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5485
5486         Made bitfield a distinct type from bit so that bitfields
5487         convert as per ANSI C and bits retain their traditional
5488         boolean style behaviour. Implemented bitfield support in
5489         the z80 port.
5490
5491         * src/SDCCsymt.h,
5492         * src/SDCCsymt.c,
5493         * src/SDCCast.c,
5494         * src/cdbFile.c,
5495         * src/mcs51/gen.c,
5496         * src/ds390/gen.c: bit v bitfield split
5497         * src/z80/gen.c: New support for bitfields
5498         * support/regression/tests/bitfields.c: reenabled z80,
5499         added more tests
5500
5501 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5502
5503         Rules 246.x, 247.x relate to bitfields, the others speed up
5504         access to xdata mapped I/O devices.
5505
5506         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
5507
5508 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5509
5510         Cleaned up genPackBits and genUnpackBits and added two helper
5511         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
5512         for literal assignments in genPackBits (thanks to Frieder for
5513         reminding me).
5514
5515         * src/mcs51/gen.c
5516         * src/ds390/gen.c
5517
5518 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5519
5520         Fixed bug #748310 (pointer to function type mishandled when the
5521         function name is omitted). Also fixed a SIGSEGV when a function
5522         attribute (reentrant, etc) is used on a non-function or on a
5523         function but misplaced before the parameter list.
5524
5525         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
5526         bug #748310
5527         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
5528         * support/Util/SDCCerr.h,
5529         * support/Util/SDCCerr.c: Added func attr misuse error msg
5530
5531 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
5532
5533         Fixed bug #787649 by anonymous
5534         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
5535         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
5536
5537 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5538
5539         Fixed numerous bitfield problems.
5540
5541         * src/SDCC.y: More bitfield related error checking
5542         * src/SDCCsymt.h,
5543         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
5544         * support/Util/SDCCerr.h,
5545         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
5546         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
5547         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
5548         * support/regression/tests/bitfields.c: tests added
5549
5550 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5551
5552         Made the constant following the "interrupt" keyword optional. If
5553         omitted, the function will not automatically be given an entry
5554         in the interrupt vector table (similar to #pragma NOIV, but
5555         less syntacticly kludgy). The interrupt number is also now
5556         range checked. Also fixed a bug in the high order bit example
5557         in the manual.
5558
5559         * src/SDCC.y
5560         * src/SDCCmem.c
5561         * src/SDCCglue.c
5562         * src/SDCCsymt.h
5563         * support/Util/SDCCerr.c
5564         * support/Util/SDCCerr.h
5565         * doc/sdccman.lyx
5566
5567 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
5568
5569         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
5570         * src/SDCCicode.c (operandOperation): rewritten some ops
5571         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
5572         * src/SDCCsymt.c (computeType): literals are handled the same way as any
5573         other type
5574         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
5575         be re-activated by defining REDUCE_LITERALS)
5576         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
5577         unsigned, but are signed by default
5578         * src/SDCCval.c (constVal): rearranged
5579         * src/SDCCval.c (valMod): preliminary fix
5580         * src/SDCCval.c (valCastLiteral): use TYPE_* types
5581         * support/regression/literalop.c: added, work in progress
5582
5583 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5584
5585         Generate warnings for useless declarations like "char data;"
5586         that don't do what new users expect.
5587
5588         * src/SDCC.y
5589         * support/Util/SDCCerr.h
5590         * support/Util/SDCCerr.c
5591
5592 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
5593
5594         * src/SDCCval.c (valMult): fix overflow detection of negative int
5595
5596 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5597
5598         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
5599
5600         Changes to support big endian targets:
5601
5602         * src/ports.h
5603         * src/SDCCglue.c
5604         * src/avr/main.c
5605         * src/ds390/main.c
5606         * src/izt/i186.c
5607         * src/mcs51/main.c
5608         * src/pic/main.c
5609         * src/pic16/main.c
5610         * src/xa51/main.c
5611         * src/z80/main.c
5612
5613 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
5614
5615         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
5616         * device/lib/time.c: fixed warning "integer overflow in expression"
5617
5618 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
5619
5620         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
5621         * src/SDCCval.c (constVal): changed default to signed; hex and octal
5622         constants are unsigned; added recognition of "u" flag for unsigned
5623         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
5624         * src/SDCCval.c (valDiv, valMod): fixed signdness
5625         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
5626         signedness of modulo, left and right shift
5627         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
5628         * support/Util/SDCCerr.h: added warning W_INT_OVL
5629         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
5630         * src/SDCCast.c (ast_print): improved output of constants
5631
5632 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5633
5634         Fixed some warnings when building with MSVC:
5635
5636         * as\mcs51\asdata.c
5637         * as\z80\asdata.c
5638         * as\mcs51\asm.h
5639         * as\z80\asm.h
5640         * link\z80\aslink.h
5641         * link\z80\lkdata.c
5642         * link\z80\lkeval.c
5643         * link\z80\lkgb.c
5644         * link\z80\lkihx.c
5645         * link\z80\lks19.c
5646         * link\z80\lksym.c
5647         * support\cpp2\cpplib.c
5648         * src\ds390\gen.c
5649         * src\mcs51\gen.c
5650
5651 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
5652
5653         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
5654
5655 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5656
5657         * support\librarian\clean.mk: Do not remove Makefile.
5658         * support\librarian\Makefile: added.
5659
5660 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5661
5662         Added librarian to MSVC build:
5663         * all.dsp
5664         * sdcc.dsw
5665         * support\librarian\librarian.dsp
5666
5667         'configure' not needed for librarian, removed:
5668         * support\librarian\configure
5669         * support\librarian\configure.in
5670         * support\librarian\config_in.h
5671         * support\librarian\Makefile.in
5672
5673         Hopefully these ones built the librarian and the rest of sdcc properly:
5674         * Makefile
5675         * Makefile.common.in
5676
5677         Messed up 'configure', so revert to previous version:
5678         * configure
5679         * configure.in
5680
5681 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
5682
5683         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
5684         there, while the mantissa of a double is "only" 53 bits wide.
5685
5686 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5687
5688         Adding sdcclib to the build.  MSVC project coming soon.
5689         Files added/changed:
5690
5691         * support\librarian\clean.mk
5692         * support\librarian\configure
5693         * support\librarian\configure.in
5694         * support\librarian\config_in.h
5695         * support\librarian\Makefile.bcc
5696         * support\librarian\Makefile.in
5697         * support\librarian\sdcclib.c
5698         * Makefile.bcc
5699         * Makefile
5700         * Makefile.common.in
5701         * configure
5702         * configure.in
5703
5704 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5705
5706         Linker now complaints if linked modules have conflicting options, for
5707         example, one compiled using --model-large and another one compiled with
5708         --model-small.  The following files were modified:
5709
5710         * as\mcs51\asdata.c
5711         * as\mcs51\aslink.h
5712         * as\mcs51\asm.h
5713         * as\mcs51\asmain.c
5714         * as\mcs51\asout.c
5715         * as\mcs51\i51pst.c
5716         * as\mcs51\lkdata.c
5717         * as\mcs51\lklibr.c
5718         * as\mcs51\lkmain.c
5719         * as\z80\asdata.c
5720         * as\z80\asm.h
5721         * as\z80\asmain.c
5722         * as\z80\asout.c
5723         * as\z80\z80pst.c
5724         * link\z80\aslink.h
5725         * link\z80\lkdata.c
5726         * link\z80\lklibr.c
5727         * link\z80\lkmain.c
5728         * src\SDCCglue.c
5729
5730 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5731
5732         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
5733         as/mcs51/lklibr.c: Generate a warning when a library is not found.
5734
5735 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
5736
5737         * src/z80/mappings.i: fix _mul[us][int,long] entries
5738
5739 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5740
5741         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
5742
5743 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
5744
5745         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
5746         * support/regression/tests/bitopcse.c: added
5747         fixed warning:
5748         * src/avr/gen.c:
5749         * src/pic/gen.c:
5750         * src/pic16/gen.c:
5751         * src/z80/gen.c:
5752         * src/xa51/gen.c:
5753
5754 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5755
5756         added support for new library format to z80, gbz80 linkers:
5757         *link/z80/aslink.h
5758         *link/z80/lklex.c
5759         *link/z80/lklib.c
5760         *link/z80/lklist.c
5761
5762 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
5763
5764         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
5765         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
5766
5767 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
5768
5769         added DUMMY_READ_VOLATILE:
5770         * src/SDCC.y:
5771         * src/avr/gen.c:
5772         * src/xa51/gen.c:
5773         * src/z80/gen.c:
5774         * src/pic/gen.c:
5775         * src/pic16/gen.c:
5776         * src/mcs51/gen.c:
5777         * src/ds390/gen.c:
5778         * src/SDCCcse.c (algebraicOpts): many improvements
5779         * src/SDCCcse.h: removed algebraicOpts()
5780         * src/SDCCicode.c (picDummyRead): added
5781
5782 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5783
5784         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
5785         "Insufficient space in data memory".
5786
5787 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5788
5789         * src/mcs51/gen.c: fixed bug #771358
5790         * src/z80/gen.c: fixed bug #759087
5791
5792 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
5793
5794         * src/pic16/glue.c: minor cleanup by Vangelis
5795
5796 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5797
5798         * device/include/regc515c.h: fixed #758477
5799         * device/lib/_gptrget.c: saving some cycles in generic pointer get
5800         * device/lib/_gptrput.c: saved a few bytes
5801         * my tab spacing is 8, yours too?)
5802         * device/lib/_ser.c: process RX bytes earlier than TX bytes
5803         * device/lib/serial.c: process RX bytes earlier than TX bytes
5804         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
5805
5806 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5807
5808         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
5809
5810 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5811
5812     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
5813
5814 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
5815
5816         * device/lib/Makefile.in: bad fix, reverted to 1.43
5817
5818 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
5819
5820         * device/lib/Makefile.in: added missing z80 object files
5821
5822 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
5823
5824         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
5825         pic16 progress by Vangelis:
5826         * src/SDCCglobl.h:
5827         * src/SDCCmain.c:
5828         * src/pic/Makefile:
5829         * src/pic:
5830         * pic/Makefile:
5831         * pic16/device.c:
5832         * pic16/device.h:
5833         * pic16/gen.c:
5834         * pic16/gen.h:
5835         * pic16/genarith.c:
5836         * pic16/glue.c:
5837         * pic16/main.c:
5838         * pic16/pcode.c:
5839         * pic16/pcode.h:
5840         * pic16/pcodepeep.c:
5841         * pic16/peeph.def:
5842
5843 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5844
5845     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
5846
5847 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5848
5849     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
5850     added gbz80 build to MSVC project.
5851     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
5852     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
5853     from 8051 stuff and setup so it links using a .lnk file.
5854
5855 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5856
5857     * support/librarian/sdcclib.c: sdcc librarian.
5858     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
5859     with sdcclib.
5860
5861 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5862
5863     * as/mcs51/lkmain.c: properly handle extensions in function afile.
5864
5865 2003-07-02  Borut Razem <borut.razem AT siol.net>
5866
5867         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
5868         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
5869         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
5870         src/xa51/main.c, src/z80/main.c:
5871         virtualization of glue() function: each port has it's own glue function,
5872         which is accessed by do_glue function pointer in PORT.general structure
5873
5874 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
5875
5876         * DS800C400 fun, improved ROM interface and tinibios.
5877
5878 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
5879
5880         * More support for DS80C400. Now includes beginning of interface to ROM.
5881
5882 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
5883
5884         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
5885
5886 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5887
5888         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
5889
5890 2003-06-19  Borut Razem <borut.razem AT siol.net>
5891
5892         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
5893
5894 2003-06-19  Borut Razem <borut.razem AT siol.net>
5895
5896         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
5897         fixed Z80 port - crt0.o: cannot open.
5898
5899 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
5900
5901         * support/Util/MySystem.c (merge_command): revert bad fix
5902
5903 2003-06-18  Borut Razem <borut.razem AT siol.net>
5904
5905         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
5906
5907 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5908
5909         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
5910         option --use-stdout sends errors to stdout instead of stderr.
5911
5912 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
5913
5914         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
5915
5916 2003-06-15  Borut Razem <borut.razem AT siol.net>
5917
5918         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
5919         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
5920         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
5921         fixed width array of pointers replaced with sets;
5922         multiple include and lib paths ared transferred to preprocessor and linker
5923         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
5924         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
5925         fixed width array of pointers
5926         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
5927         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
5928         fixupPath(), getPathDifference()
5929         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
5930         fixed width array of pointers
5931
5932 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
5933
5934         * src/pic16/ralloc.c: fix warnings
5935         * src/pic16/pcode.c: fix warning
5936
5937 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
5938
5939          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
5940         know all the details, but essentially this set of changes enable
5941         the pic16 port to generate movff instructions and generate assembler
5942         directives,
5943         * src/SDCCmain.c:
5944         * src/pic16/gen.c:
5945         * src/pic16/glue.c:
5946         * src/pic16/pcode.c:
5947         * src/pic16/device.c:
5948         * src/pic16/main.c:
5949         * src/pic16/pcode.h:
5950         * src/pic16/pcoderegs.c:
5951         * src/pic16/ralloc.c:
5952         * src/pic16/ralloc.h:
5953
5954 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5955
5956         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
5957         added option --vc, so sdcc errors and warnings are compatible with
5958         Microsoft Visual Studio.
5959
5960 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5961
5962         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
5963           device/lib/libfloat.lib: added atof function.
5964
5965 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
5966
5967         * doc/sdccman.lyx: updated to Lyx 1.3
5968         * doc/cdbfileformat.lyx: updated to Lyx 1.3
5969         * doc/test_suite_spec.lyx: updated to Lyx 1.3
5970         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
5971
5972 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
5973
5974         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
5975
5976 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5977
5978         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
5979           additions to the "related tools/documentation" section
5980
5981 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
5982
5983         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
5984
5985 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
5986
5987         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
5988         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
5989
5990 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
5991
5992         * doc/sdccman.lyx: fix double dash and other minor things
5993         * doc/Makefile: fix double dash
5994
5995 2003-05-28  Karl Bongers(patches from Martin Helmling)
5996         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
5997           condition and ignore commands.
5998
5999 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6000
6001         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
6002           is in parts still quite out of date, I did changes as far as I felt makes sense
6003           for a non-native english speaker.
6004           Please feel free to add to the manual or to correct my changes.
6005         * doc/Makefile: undid touching the date of intermediate tex files.
6006
6007 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6008
6009         * doc/sdccman.lyx: Manual has an index now
6010
6011 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
6012
6013         Finalize muluint/mulsint and mululong/mulslong merging:
6014         * device/lib/_mulint.c
6015         * device/lib/_mullong.c
6016         * device/lib/gbz80/mul.s
6017         * device/lib/gbz80/stubs.s
6018         * device/lib/z80/mul.s
6019         * device/lib/z80/stubs.s
6020         * src/SDCCsymt.c (initCSupport)
6021
6022 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6023
6024         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
6025         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
6026           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
6027           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
6028           instead of /Zm500.
6029
6030 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6031
6032         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
6033           the regression tests I'm not brave enough to enable 245.b, 245.c
6034         * doc/sdccman.lyx: added latex preamble for hyperref package.
6035           Using pdflatex this will give you a hyperlinked pdf file with
6036           bookmarks. (prepend '%' before /usepackage if this breaks something)
6037
6038 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6039
6040          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
6041
6042 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
6043
6044         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
6045
6046 2003-05-21    <johan AT balder>
6047
6048         * src/SDCCglue.c (printIval): fixed bug #739934
6049
6050 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
6051
6052         Applied patch from bug 737905 (renamed yylineo to mylineno):
6053         * src/altlex.c
6054         * src/SDCCast.c
6055         * src/SDCglobl.h
6056         * src/SDCC.lex
6057         * src/SDCCsymt.c
6058         * src/SDCCval.c
6059         * src/pic16/pcode.c: Cleaned warnings
6060         * src/pic16/pcodeflow.c: Cleaned warnings
6061         * src/pic16/pcoderegs.c: Cleaned warnings
6062
6063 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
6064
6065         * src/pic16/pcode.c: Cleaned warnings
6066         * src/pic16/pcodepeep.c: Cleaned warnings
6067         * src/pic16/ralloc.c: Cleaned warnings
6068
6069 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
6070
6071         * doc/sdccman.lyx: fixed bug 739745
6072         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
6073
6074 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
6075
6076         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
6077         it can be defined with CFLAGS when running configure
6078         * src/SDCCmain.c: fixed compiling + linking with object files
6079
6080 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
6081
6082         * configure.in: configure for pic16 port,
6083             added --disable-pic16-port
6084         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
6085         * src/SDCCmain.c: linkOptions is changed to set *,
6086             added if/endif conditional macros to remove options help
6087             messages from optionsTable when a port is not configured, added
6088             support for the PIc16 port in the ports table, when executing
6089             the compiler with no port specified on command line, a default
6090             port is selected with the new macro DEFAULT_PORT which is
6091             defined in port.h, in setDefaultOptions() linkOptions is removed
6092             from initialization assignment, since now it is a set,
6093             parseCmdLine uses setParseWithComma for linkOptions, in
6094             linkEdit() linkOptions are accessed with new function indexSet()
6095             which returns the i'th item of a set variable. See SDCCset.c, in
6096             linkEdit() when calling buildCmdLine(), added linkOptions as
6097             last argument. Now users can pass arguments to gplink via the
6098             -Wl option, main() uses pic16glue() to glue up pic16 programs
6099         * src/SDCCpeeph.c: various changes to support pic16
6100         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
6101             return the i'th item of the set
6102         * src/SDCCset.h: added function prototype for indexSet()
6103         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
6104         * src/clean.mk: added pic16 in CLEANALLPORTS variable
6105         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
6106             added macro DEFAULT_PORT
6107         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
6108         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
6109             generated
6110         * src/pic16/glue.c: commented out some error producing lines
6111         * src/pic16/main.c: __config directives are commented out to stop
6112             gpasm complaining and test the linkage with gplink, _linkCmd and
6113             _asmCmd changed to be more gplink and gpasm friendly
6114         * src/pic16/peeph.def: peep rule 3 is commented out, since it
6115             produced an error when parsed, peep rule 12 is added to utilize
6116             movff, but it is commented out since the pCode does not support
6117             yet a command with 2 address arguments
6118
6119 2003-05-18    <johan AT balder>
6120
6121         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
6122         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
6123 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
6124
6125         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
6126   Added feature to script commands from file.
6127
6128 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
6129
6130         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
6131         * src/SDCCutil.c: include ctype.h for win32
6132
6133 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
6134
6135         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
6136
6137 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
6138
6139         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
6140   Fixed so you can set breakpoints prior to run, run does not stop
6141   on entry now.  Add tbreak.  Other enhancements and fixes for use
6142   with ddd.
6143
6144 2003-05-12  Borut Razem <borut.razem AT siol.net>
6145
6146         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
6147
6148 2003-05-11  Borut Razem <borut.razem AT siol.net>
6149
6150         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
6151         the path of bin directory, so that PATH is the only env. variable, which has to be set
6152         in case of standard installation.
6153         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
6154         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
6155         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
6156
6157 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
6158
6159         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
6160         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
6161         temp files are in the port dir; clean the gen/test directory when
6162         generating new test.c
6163         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
6164         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
6165         * support/regression/tests/zeropad.c: added
6166
6167 2003-05-09    <johan AT balder>
6168
6169         * src/SDCCglue.c: fixed bug #597940
6170
6171 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
6172
6173         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
6174   cache sfr, optimize next,step, fix off by one sourceline,
6175   support ddd list function.
6176         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
6177
6178 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
6179
6180         * support/regression/HTMLgen.py: added compare_s2f()
6181         * support/regression/Makefile: redo 1.27
6182         * support/regression/generate-cases.py: redo 1.5
6183
6184 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
6185
6186         * support/regression/tests/float.c: workaround 33 bit hex constant
6187         * support/regression/tests/simplefloat.c: fix division for host
6188
6189 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
6190
6191         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
6192         that tame's the PIC's over-aggressive optimizer.
6193
6194 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6195
6196          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
6197          support for MSVC.
6198
6199 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
6200
6201         Initial support for DS80C400. "Hello world" runs on TINIm400
6202         (with polled I/O).
6203
6204 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
6205
6206          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
6207          * Some notes on ddd usage added in debugger/README
6208          Martin Helmling adding more features and fixes for ddd GUI debugger.
6209          Code added for nexti, stepi, up, down, and other adjustments.
6210
6211 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
6212
6213         * src/pic/pCodepeep.c non-wildcard asmops are now handled
6214         * src/pic/peeph.def Added two rules to optimize carry manipulation
6215         * src/pic/* removed debug printfs
6216
6217 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
6218
6219         * debugger/mcs51/cmd.c: added header newalloc.h
6220
6221 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
6222
6223         * as/Makefile: new EXEEXT
6224         * as/z80/Makefile: remove trailing slash of BUILDIR
6225         * as/z80/clean.mk: new EXEEXT
6226         * Makefile.common.in: add to CFLAGS (and others), don't replace it
6227         * support/cpp2/Makefile.in: new EXEEXT
6228         * src/pic/glue.c (pic14emitRegularMap): fixed warning
6229
6230 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
6231
6232         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
6233         EXEEXT was introduced to fix all related problems with targets
6234         "clean", "install" and "uninstall"; a couple of further flaws
6235         especially with "clean" have been fixed too
6236         * as/mcs51/Makefile.in
6237         * as/mcs51/clean.mk
6238         * as/z80/Makefile
6239         * Makefile
6240         * clean.mk
6241         * debugger/mcs51/Makefile.in
6242         * debugger/mcs51/clean.mk
6243         * link/z80/Makefile
6244         * link/z80/Makefile.in
6245         * link/z80/clean.mk
6246         * link/Makefile
6247         * packihx/Makefile.in
6248         * packihx/clean.mk
6249         * sim/ucsim/Makefile
6250         * sim/ucsim/clean.mk
6251         * sim/ucsim/avr.src/Makefile.in
6252         * sim/ucsim/avr.src/clean.mk
6253         * sim/ucsim/s51.src/Makefile.in
6254         * sim/ucsim/s51.src/clean.mk
6255         * sim/ucsim/xa.src/Makefile.in
6256         * sim/ucsim/xa.src/clean.mk
6257         * sim/ucsim/z80.src/Makefile.in
6258         * sim/ucsim/z80.src/clean.mk
6259         * sim/ucsim/main_in.mk
6260         * sim/ucsim/packages_in.mk
6261         * sim/ucsim/gui.src/Makefile.in
6262         * sim/ucsim/gui.src/serio.src/Makefile.in
6263         * sim/ucsim/gui.src/serio.src/clean.mk
6264         * src/Makefile.in
6265         * src/clean.mk
6266         * support/cpp2/Makefile.in
6267         * support/cpp2/clean.mk
6268         * support/makebin/Makefile
6269         * support/makebin/clean.mk
6270         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
6271         * doc/sdccman.lyx: --program-suffix no longer needed
6272
6273 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
6274
6275          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
6276          Martin Helmling added support for ddd GUI debugger.
6277          Code added to display assembly, set variables, and other commands
6278          to interface to ddd.
6279
6280 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
6281
6282         * as/Makefile: fix target clean
6283         * as/clean.mk: fix target clean
6284         * as/z80/clean.mk: fix target clean
6285
6286 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
6287
6288         * Makefile.common.in: added  AT EXEEXT AT
6289         * configure.in: removed all mingw32 stuff
6290         * configure: rebuilt from configure.in
6291         * doc/sdccman.lyx: updated section "installation"
6292         * support/scripts/sdcc_mingw32: adapted to configure
6293         * support/scripts/sdcc_cygwin_mingw32: added
6294
6295 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
6296
6297         * src/pic Added object file support for the PIC port
6298         * src/pic Applied patch from Craig Franklin (this started the object file support)
6299         * src/regression Updated the PIC regression tests for object files
6300
6301 2003-04-20  Borut Razem <borut.razem AT siol.net>
6302
6303         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
6304           lklex.c: In function `getfid':
6305           lklex.c:203: warning: array subscript has type `char'
6306         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
6307           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
6308         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
6309           stack handling macros
6310
6311 2003-04-19  Borut Razem <borut.razem AT siol.net>
6312
6313         * "handling space characters in file path" task:
6314         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
6315         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
6316         * support/Util/MySystem.h: make it self-sufficient
6317         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
6318           src/z80/main.c, sdcc/as/mcs51/lklex.c:
6319           handling space characters in file path
6320         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
6321           (it will be used by assemblers, which have their own includes, e.g. gpasm)
6322         * support/Util/MySystem.c: handling space characters in executable's path
6323
6324 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
6325
6326         * as/z80/Makefile: fix permanent rebuild of z80
6327         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
6328         * support/regression/tests/bitfields.c: added Johan's bitfields.c
6329
6330 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
6331
6332         * src/SDCCopt.c: add special case optimization to replace modulo by
6333           a power of two with a bitwise AND.
6334
6335 2003-04-18    <johan AT balder>
6336
6337         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
6338
6339 2003-04-17    <johan AT balder>
6340
6341         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
6342         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
6343
6344 2003-04-13  Borut Razem <borut.razem AT siol.net>
6345
6346         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
6347         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
6348           fixed mingw problem in adl_NORMALIZE_PATH
6349
6350 2003-04-12  Borut Razem <borut.razem AT siol.net>
6351
6352         * fixed "#pragma SAVE/RESTORE can not be nested":
6353         * src/SDCC.lex: reworked pragma handling functions
6354         * sdcc/src/SDCCglobl.h: reworked stack handling macros
6355         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
6356
6357 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
6358
6359         * src/SDCCutil.c (pathEquivalent): defined but not used
6360         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
6361         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
6362         * configure: rebuilt from configure.in
6363         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
6364         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
6365         * device/include/Makefile.in: replace sdcc_datadir
6366         * device/lib/Makefile.in: replace sdcc_datadir
6367         * Makefile.common.in: add LDFLAGS from configure
6368         * packihx/Makefile.in: use LDFLAGS
6369         * src/Makefile.in: use LDFLAGS
6370         * support/cpp2/Makefile.in: add LDFLAGS from configure
6371         * support/makebin/Makefile: use LDFLAGS
6372         * .version: bumped version number to 2.3.5
6373
6374 2003-04-12  Borut Razem <borut.razem AT siol.net>
6375
6376         * completed "different paths" task:
6377         * src/SDCCmacro.c: fixed bug in handling quotes
6378         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
6379         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
6380
6381 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
6382
6383         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
6384
6385 2003-04-11 kevin Vigor <kevin AT vigor.nu>
6386
6387         * ds390/gen.c ds390/peeph.def: fix bug 706781
6388
6389 2003-04-11  Borut Razem <borut.razem AT siol.net>
6390
6391         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
6392
6393 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
6394
6395         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
6396         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
6397          set - this bit used to not be set...).
6398         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
6399           bad code in PIC Port
6400         * src/regression/and2.c added to test bug 609268
6401         * src/regression/Makefile added and2.c to regression test
6402
6403
6404 2003-04-08    <johan AT CP255758-A>
6405
6406         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
6407         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
6408         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
6409
6410 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
6411
6412         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
6413         fix bug #487815
6414         * support/cpp2/Makefile.in: fix bug #487815
6415         * configure: rebuilt from configure.in
6416         * Makefile.common.in: docdir changed, new path suffixes
6417         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
6418         * sdcc_vc_in.h: reflect changes from sdccconf.h
6419         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
6420         * src/SDCCutil.h: remove BINDIR hack
6421         * doc/sdccman.lyx: update new path hierarchy
6422
6423 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
6424
6425         * src/SDCCpeeph.c: added okToRemoveSLOC test
6426
6427 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
6428
6429         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
6430
6431 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
6432
6433         * src/SDCCpeeph.c: added labelIsReturnOnly test
6434         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
6435
6436 2003-04-05    <johan AT balder>
6437
6438         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
6439         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
6440         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
6441         * src/SDCCast.c: fixed a warning
6442         * src/SDCCast.h: fixed a warning
6443         * src/SDCCicode.c (operandFromAst): fixed a warning
6444
6445 2003-04-04    <johan AT balder>
6446
6447         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
6448         * src/SDCCast.c (decorateType): fixed bug #715076
6449         * src/SDCC.y: fixed bug #702907
6450
6451 2003-04-03    <johan AT balder>
6452
6453         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
6454         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
6455         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
6456         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
6457         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
6458
6459 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
6460
6461         * _decdptr.c: fix return values
6462         * _gptrget.c: fix return values
6463         * _gptrgetc.c: fix return values
6464         * _gptrput.c: fix return values
6465         * _mulint.c: fix return values
6466         * as/z80/Makefile: fix 'make -j' problem
6467
6468 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
6469
6470         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
6471         * configure.in: big cleanup, updated to autoconf 2.5x
6472         * configure: rebuilt from configure.in
6473         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
6474         * sdcc_vc_in.h: reflect changes from sdccconf.h
6475         * doc/Makefile: fixed a flaw in "make install"
6476
6477 2003-04-02    <johan AT balder>
6478
6479         * src/ds390/gen.c (genCmp): no comments
6480         * src/mcs51/gen.c (genCmp): no comments
6481         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
6482         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
6483
6484 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
6485
6486         * support/regression/generate-cases.py: place generated file in given sub directory
6487         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
6488         * support/regression/Makefile: improvements for 'make -j';
6489         side effect: it's simpler and faster now
6490
6491 2003-03-31  Borut Razem <borut.razem AT siol.net>
6492
6493         * src/z80/main.c: link-{port} and as-{port} defined without path
6494         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
6495
6496 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
6497
6498         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
6499
6500 2003-03-30  Borut Razem <borut.razem AT siol.net>
6501
6502         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
6503           changed type of list parameter to set
6504         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
6505         * src/port.h: changed type of do_assemble() parameter to set
6506         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
6507           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
6508           definition of "cppoutfilename" macro with NULL value in preProcess()
6509         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
6510         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
6511         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
6512           replaced with set *binPathSet
6513         * shash_add() deallocates the item, if allready exsists, before adding the new one
6514         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
6515
6516 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
6517
6518         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
6519           a nested for loop bug in the PIC port
6520         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
6521           for loops
6522
6523 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
6524
6525         * support/Util/dbuf.h: remove C++ stuff to make it portable
6526
6527 2003-03-28  Borut Razem <borut.razem AT siol.net>
6528
6529         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
6530           literal strings in stringLiteral()
6531         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
6532         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
6533           to the project
6534
6535 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
6536
6537         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
6538
6539 2003-03-26    <johan AT balder>
6540
6541         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
6542         * src/ds390/gen.c (saveRegisters): catched symbol abuse
6543         * src/SDCCast.c (decorateType): fixed " -v < 3"
6544
6545 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
6546
6547         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
6548         Added Lenny Story's debug infrastructure changes:
6549         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
6550         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
6551         * src/cdbFile.c: added
6552         * src/SDCCdebug.c: added
6553         * src/SDCCdebug.h: added
6554         * src/SDCCast.c (createFunction)
6555         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
6556         * src/SDCCmain.c (parseCmdLine, main)
6557         * src/SDCCmem.c (redoStackOffsets)
6558         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
6559         * src/SDCCsymt.h
6560         * src/common.h
6561         * src/avr/gen.c (genAVRCode)
6562         * src/ds390/gen.c (gen390Code)
6563         * src/mcs51/gen.c (gen51Code)
6564         * src/pic/gen.c (genpic14Code)
6565         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
6566         * src/xa51/gen.c (genXA51Code)
6567         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
6568
6569 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6570
6571         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
6572         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
6573
6574 2003-03-22    <johan AT balder>
6575
6576         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
6577
6578 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
6579
6580         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
6581         * doc/cdbfileformat.lyx: added, written by Lenny Story
6582         * doc/Makefile: added cdbfileformat.lyx
6583         * doc/clean.mk: added cdbfileformat.lyx
6584
6585 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
6586
6587         * src/mcs51/peeph.def: fix bug #705773
6588
6589 2003-03-20    <johan AT balder>
6590
6591         An sfr/sbit can have an "at #" AND an initializer
6592         * src/SDCCsymt.c (checkSClass):
6593         * src/SDCCmem.c (allocGlobal):
6594         * src/SDCCmem.c (allocLocal):
6595         * src/SDCCast.c (createBlock):
6596
6597 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
6598
6599         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
6600
6601 2003-03-16    <johan AT balder>
6602
6603         Undid the hackup of const and volatile, the problem is much bigger
6604         * src/SDCC.y:1.65
6605         * src/SDCCast.c:1.171
6606         * src/SDCCglue.c:1.138
6607         * src/SDCCicode.c:1.146
6608         * src/SDCCsymt.c:1.150
6609         * src/SDCCval.c:1.65
6610
6611 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
6612
6613         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
6614         * src/ds390/gen.c (genAddrOf): fixed bug #704087
6615
6616 2003-03-13    <johan AT balder>
6617
6618         Hackup const and volatile modifiers in type chains a bit:
6619         * src/SDCC.y:1.63
6620         * src/SDCCast.c:1.169
6621         * src/SDCCglue.c:1.136
6622         * src/SDCCicode.c:1.143
6623         * src/SDCCsymt.c1.146
6624         * src/SDCCsymt.h1.59
6625         * src/SDCCval.c:1.63
6626
6627 2003-03-12    <johan AT balder>
6628
6629         * src/SDCCBBlock.h: more LRH debugging junk
6630         * src/SDCCcflow.h: more LRH debugging junk
6631         * src/SDCCloop.c: more LRH debugging junk
6632         * src/SDCC.y (struct_declaration): fixed bug #697590
6633         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
6634         * src/ds390/gen.c (aopForRemat): fixed bug #700031
6635         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
6636
6637 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
6638         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
6639         test function names must now match exactly).
6640         * src/SDCCcse.c: added special case in findCheaperOp to allow
6641         extending a short integer. Makes less awful code for bug 700121 test case.
6642
6643 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6644
6645         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
6646         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
6647
6648 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
6649
6650         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
6651         actually called (operandsNotEqual() was called for all
6652         operandsNotEqualX tests).
6653
6654 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
6655
6656         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
6657         with shorter literals. Fixes bug 700121.
6658
6659 2003-03-11    <johan AT balder>
6660
6661         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
6662
6663 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
6664
6665         * src/SDCCloop.c (mergeRegions): an evil beast is dead
6666         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
6667
6668 2003-03-10  Borut Razem <borut.razem AT siol.net>
6669
6670         * src/SDCCmain.c: pipe preprocessor's output
6671         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
6672         * sdcc_vc_in.h: define pclose as _pclose for WIN32
6673         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
6674         which closes all pipes in pipeSet set
6675         * src/SDCCset.c: free deleted item in function deleteSetItem()
6676         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
6677         moved from z80 to src subproject
6678         * .version: increased version number to 2.3.4
6679
6680 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
6681
6682         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
6683         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
6684         * support/regression/ports/xa51/spec.mk: fix typo
6685
6686 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
6687
6688         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
6689
6690 2003-03-09  Borut Razem <borut.razem AT siol.net>
6691
6692         * src/SDCCmain.c: pipe preprocessor's output
6693         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
6694         * sdcc_vc_in.h: define pclose as _pclose for WIN32
6695         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
6696         which closes all pipes in pipeSet set
6697         * src/SDCCset.c: free deleted item in function deleteSetItem()
6698         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
6699         moved from z80 to src subproject
6700
6701 2003-03-09  Borut Razem <borut.razem AT siol.net>
6702
6703         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
6704         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
6705         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
6706         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
6707         * src/SDCCglobl.h: unification of WIN32 native definitions
6708
6709 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6710
6711         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
6712
6713 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
6714
6715         * src/configure.in:   check for endianess (even while cross-compiling)
6716         * src/configure:      check for endianess (even while cross-compiling)
6717         * src/configure_in.h: check for endianess (even while cross-compiling)
6718         * src/avr/gen.c:        remove old endianess stuff
6719         * src/mcs51/gen.c:      remove old endianess stuff
6720         * src/ds390/gen.c:      remove old endianess stuff
6721         * src/pic/gen.c:        remove old endianess stuff
6722         * src/pic/genarith.c:   remove old endianess stuff
6723         * src/pic/glue.c:       fix endianess check
6724         * src/pic16/gen.c:      remove old endianess stuff
6725         * src/pic16/genarith.c: remove old endianess stuff
6726         * src/pic16/glue.c:     fix endianess check
6727         * src/xa51/gen.c:       remove old endianess stuff
6728         * src/z80/gen.c:        fix endianess check
6729         * src/SDCCglue.c:       fix endianess check
6730         * src/ds390/peeph.def: fix bug 700036
6731
6732 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
6733
6734         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
6735         * src/configure: find appropriate data-types on host for SDCC's int and long
6736         * src/configure.in: find appropriate data-types on host for SDCC's int and long
6737         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
6738         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
6739
6740 2003-03-07    <johan AT balder>
6741
6742         Just a big NOOP:
6743                 some minor cleanups before the big shot
6744                 OP_DEFS and OP_USES now use Kevin's protection
6745                 new option --nolabelopt
6746
6747         * src/SDCCBBlock.c:
6748         * src/SDCCast.c,:
6749         * src/SDCCcflow.c:
6750         * src/SDCCcse.c:
6751         * src/SDCCicode.c:
6752         * src/SDCCicode.h:
6753         * src/SDCClabel.c:
6754         * src/SDCCloop.c:
6755         * src/SDCCmain.c:
6756         * src/ds390/ralloc.c:
6757         * src/mcs51/ralloc.c:
6758         * src/pic/ralloc.c:
6759         * src/xa51/ralloc.c:
6760         * src/z80/ralloc.c:
6761
6762 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
6763
6764         * src/pic/pcode.c (get_op): fix 64 bit warnings
6765         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
6766         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
6767         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
6768         * support/regression/tests/malloc.c: fix 64 bit warnings
6769
6770 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
6771
6772         * src/mcs51/gen.c (genMinus): fixed bug 696436
6773
6774 2003-03-02  Borut Razem <borut.razem AT siol.net>
6775
6776         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
6777
6778 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
6779
6780         * configure.in: test for mkstemp
6781         * sdccconf_in.h: add HAVE_MKSTEMP
6782
6783 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
6784
6785         * device/include/ctype.h: removed warning while using --stack-auto
6786         * device/include/malloc.h: removed warning while using --stack-auto
6787         * device/include/string.h: removed warning while using --stack-auto
6788
6789 2003-02-23  Borut Razem <borut.razem AT siol.net>
6790
6791         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
6792         because NDEBUG is defined (see man assert)
6793         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
6794
6795 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6796
6797         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
6798         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
6799
6800 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6801
6802         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
6803         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
6804
6805 2003-02-18    <johan AT balder>
6806
6807         * as/mcs51/asmain.c (asmbl): module can start with a digit
6808         * as/z80/asmain.c (asmbl): module can start with a digit
6809
6810 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
6811
6812         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
6813         * src/asm.c: fix pipe() for Mingw32
6814
6815 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
6816
6817         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
6818         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
6819         make -V work again; --c1mode reads now from stdin
6820         * doc/sdccman.lyx: added --c1mode
6821         * support/Util/SDCCerr.c: new messages for c1 mode
6822         * support/Util/SDCCerr.h: new messages for c1 mode
6823         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
6824
6825 2003-02-15    <johan AT balder>
6826
6827         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
6828
6829 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
6830
6831         * doc/sdccman.lyx: Environment variables, -o and other minor things
6832
6833 2003-02-14    <johan AT balder>
6834
6835         * src/xa51/main.c: before anyone really tries to use it :)
6836
6837         * Install doc's in share/sdcc/doc
6838         * removed some obsolete files
6839         * Do a proper make distclean and uninstall
6840         M Makefile.common.in
6841         R sdccbuild.sh
6842         M as/Makefile
6843         M device/include/Makefile.in
6844         M device/lib/Makefile.in
6845         M doc/sdccman.lyx
6846         M link/Makefile
6847         M sim/ucsim/doc/Makefile.in
6848         M src/clean.mk
6849         R src/avr/peeph.rul
6850         R src/xa51/peeph.rul
6851         M support/cpp2/Makefile.in
6852         M support/makebin/Makefile
6853
6854
6855 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
6856
6857         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
6858
6859 2003-02-10  Borut Razem <borut.razem AT siol.net>
6860
6861         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
6862         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
6863         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
6864         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
6865         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
6866         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
6867         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
6868         src/z80/Makefile.bcc: Borland Makefile cleanup
6869         * as/z80/Makefile.bcc: Added Borland Makefile
6870         * support/cpp2/borland.h: Removed
6871
6872 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
6873
6874         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
6875         * src/SDCC.lex: new pragma NOIV
6876         * src/SDCCglobl.h: new pragma NOIV
6877         * src/SDCCmem.c: new pragma NOIV
6878
6879 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
6880
6881         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
6882
6883 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
6884
6885         * src/SDCCmain.c: signal handling is switched off by --debug
6886         * doc/Makefile: small fix for install; use clean.mk again
6887         * doc/clean.mk: clean *.pdf and *.html too
6888
6889 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
6890
6891         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
6892         * device/lib/printfl.c: fix a ds390 bug by making it portable
6893         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
6894         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
6895         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
6896         * debugger/mcs51/cmd.c: converted multi-line string literals
6897         * sim/ucsim/globals.cc: converted multi-line string literals
6898         * src/SDCCmain.c: introduced signal handler to remove temp files
6899         * doc/Makefile: small tweaks, implement clean
6900         * doc: removed generated files
6901
6902 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6903
6904         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
6905         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
6906         Address Record is not correctly generated for DS390."
6907
6908 2003-02-02  Borut Razem <borut.razem AT siol.net>
6909
6910         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
6911         * as/mcs51/asm.h: fixed compilation with Borland C
6912         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
6913         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
6914         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
6915         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
6916         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
6917         src/z80/Makefile.bcc: delete $(LIB) only if exist
6918         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
6919
6920 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
6921
6922         * device/include/malloc.h: introduced NULL
6923         * device/include/string.h: introduced NULL
6924         * device/include/stdlib.h: introduced NULL
6925         * device/lib/_memcpy.c: removed NULL
6926         * device/lib/_strcat.c: removed NULL
6927         * device/lib/_strchr.c: removed NULL
6928         * device/lib/_strcmp.c: removed NULL
6929         * device/lib/_strcpy.c: removed NULL
6930         * device/lib/_strcspn.c: removed NULL
6931         * device/lib/_strlen.c: removed NULL
6932         * device/lib/_strncat.c: removed NULL
6933         * device/lib/_strncmp.c: removed NULL
6934         * device/lib/_strncpy.c: removed NULL
6935         * device/lib/_strpbrk.c: removed NULL
6936         * device/lib/_strrchr.c: removed NULL
6937         * device/lib/_strspn.c: removed NULL
6938         * device/lib/_strstr.c: removed NULL
6939         * device/lib/_strtok.c: removed NULL
6940         * device/lib/malloc.c: removed NULL, include own header
6941
6942 2003-02-02    <johan AT balder>
6943
6944         * 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
6945         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
6946         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
6947         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
6948         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
6949         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
6950
6951 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6952
6953         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
6954         area 'DATA'"
6955
6956 2003-02-01    <johan AT balder>
6957
6958         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
6959
6960 2003-01-31    <johan AT CP255758-A>
6961
6962         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
6963
6964 2003-01-30    <johan AT balder>
6965
6966         * src/SDCCBBlock.c: automatic bug detection
6967         * src/SDCCicode.c: automatic bug detection
6968
6969 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6970
6971         * src/SDCCglobl.h:   now --xram-size 0 works
6972         * src/SDCCmain.c:    now --xram-size 0 works
6973
6974 2003-01-29    <johan AT balder>
6975
6976         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
6977
6978 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6979
6980         * as/mcs51/aslink.h: Added options --xram-size and --code-size
6981         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
6982         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
6983         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
6984         * src/SDCCglobl.h:   Added options --xram-size and --code-size
6985         * src/SDCCmain.c:    Added options --xram-size and --code-size
6986
6987 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
6988
6989         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
6990         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
6991
6992 2003-01-27    <johan AT balder>
6993
6994         * src/SDCC.y: fixed bug #613764
6995
6996 2003-01-26    <johan AT balder>
6997
6998         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
6999         * src/SDCCsymt.h: fixed bug #673374
7000         * src/SDCCglue.c: fixed bug #661910
7001         * src/SDCCast.c: fixed bug #458099 and 673374
7002
7003 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
7004
7005         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
7006         * as/mcs51/strcmpi.h: added
7007         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
7008         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
7009         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
7010         * as/mcs51/assym.c: strcmpi -> as_strcmpi
7011         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
7012         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
7013         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
7014         * as/mcs51/Makefile.aslink: new module strcmpi
7015         * as/mcs51/Makefile.asx8051: new module strcmpi
7016         * as/mcs51/Makefil.bcc: new module strcmpi
7017         * as/mcs51/Makefile.in: new module strcmpi
7018         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
7019
7020 2003-01-26    <johan AT balder>
7021
7022         * src/SDCCglue.c: reverted back to 1.124
7023         * src/SDCCast.c: reverted back to 1.156
7024         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
7025
7026 2003-01-25    <johan AT balder>
7027
7028         * src/SDCCglue.c: A better fix for bug #661910
7029         * src/SDCCast.c: A better fix for bug #661910
7030         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
7031
7032 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
7033
7034         * src/Makefile.in: remove spawn.o
7035         * src/SDCCmain.c: remove spawn.h
7036         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
7037         * src/spawn.c: removed
7038         * src/spawn.h: removed
7039         * support/regression/ports/ds390/spec.mk: link with -r
7040
7041 2003-01-24    <johan AT CP255758-A>
7042
7043         * src/ds390/gen.c (aopOp): fixed bug #667458
7044         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
7045         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
7046         (createIvalCharPtr): an ival doesn't always have a storage class anymore
7047
7048 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
7049
7050         * src/mcs51/peeph.def: better assembler identation by Frieder
7051         * src/mcs51/gen.c: better assembler identation by Frieder
7052
7053 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
7054
7055         * as/z80/string.h: removed for gcc 3.2
7056         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
7057         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
7058
7059 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
7060
7061         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
7062         * src/SDCCpeeph.c (replaceRule): fix bug #663503
7063         * support/regression/Makefile: separate temp files for ports
7064         * support/regression/generate-cases.py: separate temp files for ports
7065         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
7066         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
7067
7068 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
7069
7070         * moved tinitalk to device/examples/ds390
7071
7072 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
7073
7074         * as/mcs51/lkmem.c: rflag is for DS390
7075         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
7076         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
7077                          (linkEdit): move mem- and map-files the same way as ihx-files
7078         * src/z80/main.c (_setDefaultOptions): removed --generic
7079         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
7080         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
7081         * src/pic/glue.c (picglue): --c1mode works again
7082         * src/pic16/glue.c (pic16glue): --c1mode works again
7083         * src/asm.c (printCLine): fix #660034
7084
7085 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
7086
7087         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
7088         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
7089         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
7090         * as/mcs51/lkmem (summary): better fix for sp problem
7091         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
7092         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
7093         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
7094                                               remove --stack-after-data
7095
7096 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
7097
7098         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
7099         * src/SDCCutil.c (join): ugly bug: missing '\0'
7100         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
7101
7102 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
7103
7104         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
7105         * src/port.h: typo
7106         * src/pic/main.c (_asmCmd): gpasm supports -o
7107         * src/z80/main.c: more general macros
7108         * device/lib/Makefile.in: remove intermediate files
7109
7110 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
7111
7112         * .version: Bumped version number to 2.3.3
7113         * src/SDCCBBlock.c: new option -o
7114         * src/SDCCglobl.h: new option -o
7115         * src/SDCCglue.c: new option -o
7116         * src/SDCCmain.c: new option -o
7117         * src/asm.c: new option -o
7118         * src/ds390/main.c: new option -o
7119         * src/pic/glue.c: new option -o
7120         * src/pic/pcode.c: new option -o
7121         * src/pic/ralloc.c: new option -o
7122         * src/pic16/glue.c: new option -o
7123         * src/pic16/pcode.c: new option -o
7124         * src/pic16/ralloc.c: new option -o
7125         * src/z80/main.c: new option -o
7126         * device/lib/Makefile.in: use -o
7127         * support/regression/ports/ds390/spec.mk: use -o
7128         * support/regression/ports/gbz80/spec.mk: use -o
7129         * support/regression/ports/mcs51/spec.mk: use -o
7130         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
7131         * support/regression/ports/z80/spec.mk: use -o
7132         * support/regression/ports/ucz80/spec.mk: use -o
7133         * support/regression/ports/xa51/spec.mk: use -o
7134         * support/regression/fwk/lib/timeout.c: fix usage string
7135
7136 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
7137         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
7138
7139 2003-01-07    <johan AT balder>
7140
7141         * src/SDCCast.c (decorateType): fixed bug #600035
7142
7143 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
7144         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
7145         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
7146         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
7147         * src/pic/pcode.c: outcommented unused variable to remove warnings
7148         * src/pic/ralloc.c: outcommented unused variable to remove warnings
7149
7150 2003-01-06    <karl AT turbobit.com>
7151         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
7152    regression tests.
7153
7154 2003-01-06    <johan AT balder>
7155
7156         * src/SDCCicode.c: fixed array add
7157
7158 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
7159         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
7160         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
7161
7162 2003-01-04    <johan AT balder>
7163
7164         * src/SDCCval.c (getNelements): fixed the initialized array of structures
7165
7166 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7167         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
7168
7169 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
7170         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
7171         * support/regression/tests/bug-524697.c: fit mem usage into 8032
7172
7173 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
7174         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
7175
7176 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
7177         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
7178
7179 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
7180         * src/mcs51/main.c: removed {bindir}{sep} from aslink
7181
7182 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7183
7184     * in \sdcc\as\mcs51\ changed these files in order to create an
7185     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
7186     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
7187     following files to include the previous two files: aslink.dsp,
7188     Makefile.aslink, Makefile.bcc, and Makefile.in.
7189
7190     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
7191     .adb instead of .cdb
7192
7193 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7194
7195         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
7196         value from option --iram-size.
7197
7198 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7199
7200         * \sdcc\as\mcs51\lklist.c: added boundary check before using
7201         dram[] array.
7202
7203 2002-09-18    <wiml AT hhhh.org>
7204
7205         * SDCClrange.h: exposed setFromRange() and setToRange()
7206         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
7207           packRegsForAccUse() (bug 542397)
7208         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
7209           multiple times and emitting the fetch operations more than once
7210           added aopGetUsesAcc() function to allow binary operators to
7211           fetch their operands in the correct order; made genMinus() emit
7212           compact code for X = LITERAL - Y
7213
7214 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7215         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
7216         sprintf() in line 1267.
7217
7218 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7219         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
7220         like ports.
7221
7222 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7223         Changes to aslink (All the changes are marked with 'JCF'):
7224
7225         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
7226         summary().
7227
7228         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
7229         area BSEG.  Also moves, if possible, the DATA area down into the internal
7230         ram so more space is available.
7231
7232         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
7233         sflag.
7234
7235         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
7236         not bytes.  Function summary() which creates a memory usage summary
7237         file with extension .mem.  Reports of overlaping stack and small stack
7238         size.  If the space for the stack is less than 16 bytes aslink trows a
7239         warning.
7240
7241         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
7242         the 8051.  Option 'y' for memory summary output file.
7243
7244         Changes to sdcc (All the changes are marked with 'JCF'):
7245
7246         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
7247
7248         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
7249         overlaying area for it (uses RegBankUsed[4]).
7250
7251         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
7252         bank zero as used by default.  By default aslink locates the stack
7253         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
7254         the creation of the .mem file.  Delegates the allocation of data area
7255         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
7256         the begining of the stack area to aslink.
7257
7258         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
7259         glue() in SDCCglue.c creates an area for it.
7260
7261 2002-09-03  Borut Razem <borut.razem AT siol.net>
7262         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
7263         sdcc/src/pic/glue.c:
7264         introduced atexit() handler for teporay files removal in case of
7265         errors, assertions, ...
7266
7267 2002-08-29  Borut Razem <borut.razem AT siol.net>
7268         * sdcc/support/cpp2/auto-host_vc_in.h:
7269         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
7270         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
7271         Maybe there is a similar problem with BORLANDC? It should be checked!
7272
7273         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
7274         corrected improper use of assert: the assignment to clr variable was done inside the assert.
7275         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
7276         was not executed, and the compiler (cl) launched a warning:
7277         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
7278
7279 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
7280         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
7281
7282 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
7283         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
7284
7285         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
7286           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
7287           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
7288           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
7289           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
7290           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
7291           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
7292         - added Release configuration in VS projects
7293         - review of compiler an linker options
7294         - VC .exe files are generated in bin_vc directory, not to interfere
7295           with binaries generated from other projects (cygwin, mingw, bcc ...)
7296
7297         * sdcc/src/yacc.dsp: added
7298
7299         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
7300         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
7301         and insert the version number definitions from .version
7302
7303         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
7304
7305         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
7306         added - genarate auto-host.h using auto-host_vc_in.h as template
7307
7308         * sdcc/sdcc_vc.h,
7309         removed from CVS, generated automatically
7310
7311 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
7312         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
7313
7314 2002-08-11  Borut Razem <borut.razem AT siol.net>
7315         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
7316
7317 2002-08-10  Borut Razem <borut.razem AT siol.net>
7318         * src/SDCCmain.c (main):
7319         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
7320         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
7321         The consequence was that some temporary files were not removed.
7322
7323         * src/SDCCglue.c:
7324         unification of code in functions tempfilename() and tempfile():
7325         function tempnam() is defined in Visual Studio 6.0 and .NET
7326
7327         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
7328
7329         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
7330           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
7331         - removed compiler command line option /WX: Treats all warnings as errors
7332         - update a list of source files, included into the project
7333
7334         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
7335           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
7336         changed project type to Generic Project so that can be correcly converted to VS.NET project
7337
7338         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
7339
7340         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
7341
7342         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
7343
7344         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
7345         added return 0 statements after assert() to make compiler happy
7346
7347         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
7348         added newline in the def file to keep MSC compiler satisfied
7349
7350         * sdcc/src/z80/gen.c:
7351         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
7352           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
7353         - solved MSC error in function aopDump()
7354
7355         * sdcc_vc.h: define PREFIX as "\\sdcc"
7356
7357 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
7358         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
7359
7360 2002-06-22  Scott Dattalo <scott AT dattalo.com>
7361         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
7362         - Rewrote the register banking algorithm.
7363         - Added pCode live-range analysis to registers (for now, only non-used and
7364         singly-used registers optimized away)
7365
7366         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
7367
7368         * 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.
7369
7370 2002-05-10  Scott Dattalo <scott AT dattalo.com>
7371         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
7372
7373 2002-04-22  Michael Hope  <michaelh AT vroom>
7374
7375         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
7376
7377         * configure.in (DD_COPT): Added include support required for gbdk.
7378
7379         * .version: Bumped version number just to increase it.
7380
7381         * src/SDCCmain.c: Added -nostdinc to the default options.
7382
7383 2002-04-15  Michael Hope  <michaelh AT vroom>
7384
7385         * device/lib/z80/printf.c (sprintf): Added.
7386
7387         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
7388
7389         * src/z80/peeph.def: Added transpose redundent load rule.
7390
7391         * src/z80/main.c: Added force callee saves for jaune.
7392
7393         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
7394
7395         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
7396
7397 2002-03-28  Johan Knol  <johan AT balder>
7398
7399         * src/SDCCval.c: fixed bug #532436
7400
7401 2002-03-14  Scott Dattalo <scott AT dattalo.com>
7402         * /src/port.h:
7403         Added "char *Processor" field to the port structure.
7404
7405         * /src/SDCCmain.c:
7406         Added -p option. Allows port dependent processor to be specified.
7407
7408         * all ports:
7409         Initialized the new field char *Processor field to NULL in all ports
7410
7411         * /src/pic/*:
7412         Compiler generated registers for interrupt context saving
7413         were not getting allocated.
7414
7415 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
7416
7417         * /src/SDCCast.c:
7418         Fixed left shift. Will promote the left side of a left shift
7419         if a) left shifting more than size of operand or b) when assigned
7420         to something size > size of left side
7421
7422 2002-03-14  Scott Dattalo <scott AT dattalo.com>
7423         * src/pic/*
7424         tons of changes. Register allocation has been
7425         rewritten. Added customization for the various PICs. Flow
7426         analysis is restructured. ...
7427
7428         * src/pic/device.h:
7429         Added
7430
7431         * src/pic/device.c:
7432         Added. device.c is a PIC port hack to accomodate variations
7433         in PIC devices.
7434
7435 2002-03-13  Michael Hope  <michaelh AT vroom>
7436
7437         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
7438
7439 2002-03-04  johanknol  <johanknol AT manik>
7440
7441         * /src/SDCCval.c: fixed
7442
7443         const unsigned char arr[][2] = { { 0, 1 } };
7444         t18.c:1: error: Initializer element is not constant
7445
7446 2002-03-04  bela  <bela AT manik>
7447
7448         * /device/include/mcs51reg.h:
7449         ds89c420 register definition update
7450
7451 2002-03-03    <johan AT FRIJA>
7452
7453         * support/Util/SDCCerr.c: did something, but don't no why anymore
7454
7455         * support/regression/tests/bug-524691.c: made it a little less shy
7456
7457         * src/SDCCast.c (decorateType): fixed bug #524697
7458
7459         * src/SDCCast.c: made some lineno improvements
7460
7461         * src/SDCCval.c (getNelements): changed warning to error
7462
7463         * src/SDCCglue.c (printIvalArray): changed warning to error
7464
7465         * src/SDCCicode.c: fixed a warning for mingw
7466
7467         * src/SDCCast.c (decorateType): fixed the << promotion for ops
7468
7469         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
7470
7471 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
7472
7473         * src/ds390/peeph.def:
7474         Added some more peephole rules
7475
7476         * src/ds390/gen.c: Various fixes & enhancements
7477
7478         * src/SDCClrange.c, src/SDCClrange.h:
7479         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
7480
7481         * src/ds390/ralloc.c:
7482         various fixes & enhancements (ds390) specific
7483
7484         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
7485         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
7486         from rallocs.
7487
7488         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
7489
7490 2002-03-02    <johan AT FRIJA>
7491
7492         * src/SDCCast.c (decorateType): fixed bug #524708
7493
7494         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
7495
7496         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
7497
7498 2002-03-01  Michael Hope  <michaelh AT vroom>
7499
7500         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
7501
7502         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
7503
7504 2002-03-01    <johan AT FRIJA>
7505
7506         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
7507
7508         * src/SDCCast.c (decorateType): fixed bug #524209
7509
7510         * src/SDCCval.c (valNot): fixed bug #524195
7511
7512 2002-02-26    <johan AT balder>
7513
7514         * src/xa51/gen.c: fixed a warning
7515
7516         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
7517
7518         * src/SDCCast.c (decorateType): fixed bug #522534
7519
7520 2002-02-23    <johan AT balder>
7521
7522         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
7523
7524 2002-02-22    <johan AT balder>
7525
7526         * src/SDCCast.c: fixed bug #514865
7527
7528         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
7529
7530 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
7531
7532         * sdcc/src/SDCCloop.c:
7533         Previous fix was not good. basic blocks that have "break" or "return" are
7534         not really partof a loop , but live ranges used in these blocks should
7535         be live thru the entire loop, so set partOfLoop but don't add them to
7536         loop region
7537
7538 2002-02-21    <johan AT FRIJA>
7539
7540         * src/SDCCcse.c: fixed bug #514308
7541
7542 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
7543
7544         * src/SDCCloop.c:
7545         Fixed BUG #519583. If a conditional block ended in a return/break
7546         statement inside a loop, it was not being considered part of the loop.
7547
7548         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
7549
7550 2002-02-10  Karl Bongers <karl AT turbobit.com>
7551
7552         * debugger/*:
7553         Fixed up SDCDB debugger somewhat.  Updated debugger/README
7554         with lots of comments and notes.
7555
7556         * device/examples/test2.c:
7557         Fix bug, "red" variable not being initialized(compiler complained).
7558
7559         * device/examples/Makefile, examples/test3.c:
7560         Add Makefile in device/examples folder, compiles test3.c
7561         for use as a multiple module SDCDB test case.
7562
7563         * sim/ucsim/cmd.src/cmdset.cc:
7564         Took out debug printfs in ucsim "next" command.
7565
7566         * sim/ucsim/xa.src:
7567         Karl and Johan start ucsim XA support.  Most dissassembly working,
7568         about 75% emulation done(plenty of work remaining).
7569
7570         * sim/ucsim/z80.src:
7571         Add Z80 support to ucsim, add test-ucz80 regression test,
7572         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
7573         Notice z80 compiler fails on examples/test3.c/crc code.
7574
7575 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
7576
7577         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
7578         Added support for --parms-in-bank1
7579
7580         * src/ds390/peeph.def:
7581         added a few more peephole optimzations
7582
7583         * src/ds390/main.c:
7584         1) added __builtin_inp & __builtin_outp used to read in data of given length
7585            from a memory mapped port
7586         2) added __builtin_memcmp
7587         3) added __builtin_swapw swap bytes of a short
7588
7589         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
7590         1) handle multiple send & receives from register bank1
7591         2) ralloc can now allocate DPTR1 to some liveRanges
7592
7593         * src/SDCCsymt.c, src/SDCCsymt.h:
7594         changes to handle multiple sends & receives
7595
7596         * src/SDCCptropt.h:
7597         added some pointer arithmetic optimization
7598
7599         * src/SDCCptropt.c:
7600         added some pointer arithmetic optimizations but not stable yet so not
7601         called from anywhere (will get this working shortly)
7602
7603         * src/SDCCopt.c: fixed for multiple sends & receives
7604
7605         * src/SDCCmain.c:
7606         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
7607         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
7608            set preprocessor defines (depending on options)
7609
7610         * src/SDCCicode.c, src/SDCCicode.h:
7611         changes made to handle multiple sends & receives
7612
7613         * src/SDCCglobl.h:
7614         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
7615
7616         * src/SDCCcse.c, src/SDCCcse.h:
7617         added function findbackward def (to be used in upcoming optimization)
7618
7619         * src/SDCCcflow.c, src/SDCCcflow.h:
7620         added function returnAtEnd - to determine if a basic block terminates with
7621         a RETURN iCode
7622
7623         * src/SDCCast.c, src/SDCCast.h:
7624         added option parms-in-bank1
7625
7626         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
7627         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
7628         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
7629         adjusted for --parms-in-bank1 option
7630
7631         * device/include/string.h:
7632         donot redefine "reentrant" keyword
7633
7634         * device/include/ds80c390.h: Added some more SFRs
7635
7636 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
7637
7638         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
7639
7640 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
7641
7642         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
7643
7644 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
7645
7646         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
7647
7648 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
7649
7650         * Added --xram-movc option
7651
7652 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
7653
7654         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
7655
7656 2002-01-11  Johan Knol
7657
7658         * Added math lib of Jesus Calvino-Fraga
7659
7660 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
7661
7662         * src/SDCCmain.c (processFile): fix processing of ../../src.c
7663         * support/regression/Makefile: new target test-mcs51-stack-auto
7664         * support/regression/ports/mcs51-stack-auto/spec.mk: added
7665
7666 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
7667
7668         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
7669
7670 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
7671
7672         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
7673
7674 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
7675
7676         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
7677
7678         * src/SDCCglue.h: add definition for printIvalChar()
7679
7680 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
7681
7682         * src/SDCCast.c: fix #498138 by Johan
7683
7684         * src/SDCCglue.c: fix #498138 by Johan
7685
7686 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
7687
7688         * support/regression/Makefile: fix clean
7689
7690         * support/regression/ports/ds390/support.c: fix transmission of last character
7691
7692 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
7693
7694         * /sdcc/src/ds390/gen.c:
7695         a) improved computing address of stack variable
7696         b) took out some #if 0 code
7697         c) improved parmBytes adjustment
7698         d) improved genPlusIncr & genMinusIncr
7699         e) genCmp could generate bad code (when left assigned to DPTR)
7700         f) Fixed bug in hasInc
7701
7702         * /sdcc/src/ds390/ralloc.c:
7703         a) packRegsForSupport could mess up live information (Fixed)
7704         b) packRegsDPTRuse could be incorrect for left & right shift
7705
7706         * /sdcc/src/mcs51/ralloc.c:
7707         packRegsForSupport could mess up the live information (Fixed)
7708
7709         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
7710
7711         * /sdcc/src/SDCCast.c:
7712         can reverse a loop even if function call is present as long
7713         as the loop control variable is local & is not passed as parameter
7714
7715 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
7716
7717         * /sdcc/ChangeLog: *** empty log message ***
7718
7719         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
7720         More builtin function additions for TININative
7721
7722         * /sdcc/src/ds390/ralloc.c:
7723         Had broken the regression testsuite
7724
7725         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
7726
7727         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
7728         Added funcattr hasStackParms will be set for reentrant functions when there
7729         are paramteres on the stack, this helps in minimizing frame pointer generation
7730         typeFromStr can handle function pointers now
7731
7732         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
7733         *** empty log message ***
7734
7735 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
7736
7737         * /src/ds390/gen.c, /src/ds390/main.c:
7738         More builtin function additions for TININative
7739
7740         * /src/ds390/ralloc.c:
7741         Had broken the regression testsuite
7742
7743         * /src/SDCCast.c: Fixed a bug in dumptree
7744
7745         * /src/SDCCsymt.c, /src/SDCCsymt.h:
7746         Added funcattr hasStackParms will be set for reentrant functions when there
7747         are paramteres on the stack, this helps in minimizing frame pointer generation
7748         typeFromStr can handle function pointers now
7749
7750         * /doc/builtins.txt, /doc/TININative.txt:
7751         *** empty log message ***
7752
7753
7754 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
7755
7756         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
7757         ALPHA version for -mTININative
7758
7759         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
7760         updated to reflect changes in the port structure
7761
7762         * /src/port.h:
7763         added function do_assemble (similar to do_link) if non-null this function
7764         will be called to do assembly (-mTININative) requires a multi command
7765         assembly
7766         added function genAssemblerEnd will be called to generate assembler Epilogue
7767
7768         * /src/SDCCsymt.c:
7769         added _JavaNative to debug info printing
7770
7771         * /src/SDCCmain.c: added option --tini-libid
7772         added port->do_assemble function (-mTININative) has a multi command assemble
7773
7774         * /src/SDCCglue.c: Disabled "constExpr" check
7775         added port->genAssemblerEnd function
7776
7777         * /src/SDCCglobl.h: Added option --tini-libid value
7778
7779         * /src/SDCCast.h:
7780         tookout optimizeCompare from the header (has no external references)
7781
7782         * /src/SDCCast.c: made one more function "static"
7783
7784 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
7785
7786         * src/z80/mappings.i: Added z80asm support.
7787
7788         * src/z80/main.c: Added z80asm support on --asm=z80asm
7789
7790         * src/z80/gen.c: Fixed asm portability issues.
7791
7792         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
7793
7794         * src/SDCCglue.c (printExterns): Added global/extern split.
7795
7796 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
7797
7798         * support/regression/Makefile: added test for mcs51 model large
7799
7800         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
7801
7802         * support/regression/ports/gbz80/spec.mk: added -mgbz80
7803
7804 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
7805
7806         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
7807
7808 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
7809
7810         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
7811
7812         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
7813
7814 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
7815
7816         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
7817
7818         * support/regression/tests/simplefloat.c: Port to mcs51.
7819
7820 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
7821         * support/regression/tests/bug-485362.c: Added.
7822
7823         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
7824
7825         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
7826
7827         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
7828
7829         * src/z80/gen.c (aopDump): Added a dump function.
7830
7831 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
7832         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
7833
7834         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
7835
7836         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
7837
7838         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
7839
7840         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
7841
7842         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
7843
7844         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
7845
7846         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
7847
7848         * support/regression/ports/ds390/support.c: Use tinibios.
7849
7850         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
7851
7852 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
7853
7854         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
7855         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
7856
7857         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
7858
7859         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
7860
7861 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
7862
7863         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
7864
7865         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
7866         (packRegsForIYUse): Created and optimised.
7867
7868 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
7869
7870         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
7871 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
7872
7873         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
7874
7875         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
7876
7877         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
7878
7879 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
7880
7881         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
7882
7883         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
7884
7885 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
7886
7887         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
7888
7889         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
7890
7891         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
7892
7893 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
7894
7895         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
7896         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
7897         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
7898
7899         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
7900
7901         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
7902         (genNotFloat): Added.
7903         (genUminusFloat): Added.
7904
7905         * device/lib/z80/Makefile: Added floating pt stubs.
7906
7907         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
7908
7909         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
7910
7911         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
7912
7913 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
7914
7915         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
7916
7917         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
7918
7919         * sdcc/support/regression/Makefile: Add port ds390.
7920
7921         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
7922
7923         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
7924
7925         * sdcc/support/regression/ports/ds390/spec.mk: Added.
7926
7927         * sdcc/support/regression/ports/ds390/support.c: Added.
7928
7929         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
7930
7931         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
7932
7933         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
7934
7935 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
7936
7937         * device/include/malloc.h: Added z80 and gbz80 support.
7938
7939         * device/lib/gbz80/heap.s: Added.
7940
7941         * device/lib/z80/heap.s: Added.
7942
7943         * device/lib/malloc.c: Added z80 and gbz80 support.
7944
7945         * support/regression/tests/malloc.c (testMalloc): Added.
7946
7947         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
7948
7949         * support/regression/tests/bug-478094.c: Added.
7950
7951         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
7952
7953 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
7954
7955         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
7956
7957         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
7958
7959         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
7960
7961         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
7962
7963         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
7964
7965 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
7966
7967         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
7968
7969 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
7970
7971         * support/regression/tests/bug-477927.c: Added.
7972
7973         * src/z80/peeph.def: Added minor rules.
7974
7975         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
7976
7977         * src/z80/peeph.def: Added jump optimisation modification.
7978
7979 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
7980
7981         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
7982
7983 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
7984
7985         * support/regression/tests/funptrs.c: Added.
7986
7987 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
7988
7989         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
7990
7991 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
7992
7993         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
7994
7995         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
7996
7997         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
7998         (movLeft2ResultLong): Created.
7999
8000         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
8001         (joinPushes): Added.  Joins two char pushes into a word push.
8002
8003 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
8004
8005         * support/cpp2/Makefile.in (install): Added creation of dest dir.
8006
8007         * support/makebin/Makefile (install): Added creation of dest dir.
8008
8009 2001-10-24 Karl Bongers <karl AT turbobit.com>
8010
8011         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
8012
8013 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
8014
8015         * src/z80/ralloc.c: Turned off faulty pack for one use.
8016
8017         * src/z80/peeph-gbz80.def: Removed redundent restart options.
8018
8019         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
8020
8021 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
8022
8023         * support/regression/Makefile: Improved clean
8024
8025         * support/regression/ports/gbz80/spec.mk: Added clean
8026
8027         * support/regression/ports/host/spec.mk: Added clean
8028
8029         * support/regression/ports/z80/spec.mk: Added clean
8030
8031         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
8032
8033         * support/regression/ports/mcs51/timeout.c: little improvements
8034
8035 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
8036
8037         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
8038
8039         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
8040
8041         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
8042
8043 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
8044
8045         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
8046
8047         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
8048
8049 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
8050         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
8051
8052         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
8053
8054         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
8055
8056         * src/mcs51/main.c (_linkCmd): Added bin path to command.
8057
8058         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
8059
8060         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
8061
8062         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
8063
8064         * support/regression/tests/longor.c: Added.
8065
8066 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
8067
8068         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
8069
8070         * as/mcs51/aslink.h: define PATH_MAX
8071
8072         * as/mcs51/asm.h: define PATH_MAX
8073
8074         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
8075
8076         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
8077
8078         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
8079
8080         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
8081
8082         * src/SDCCglobl.h: define PATH_MAX
8083
8084         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
8085
8086         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
8087
8088 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
8089
8090         * src/z80/gen.c (gencjneshort): Fixed
8091
8092         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
8093
8094 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
8095
8096         * support/regression/tests/bug-469671.c: Added.
8097
8098         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
8099
8100 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
8101
8102         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
8103
8104         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
8105
8106 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
8107
8108         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
8109
8110         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
8111
8112         * src/device/lib/_mullong.c : removed hint: nooverlay bug
8113
8114         * src/device/lib/_divuint.c : removed hint: nooverlay bug
8115
8116         * src/device/lib/_divulong.c: removed hint: nooverlay bug
8117
8118         * src/device/lib/_moduint.c : removed hint: nooverlay bug
8119
8120         * src/device/lib/_modulong.c: removed hint: nooverlay bug
8121
8122 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
8123
8124         * 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.
8125
8126         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
8127
8128         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
8129
8130 2001-10-07    <johan AT FRIJA>
8131
8132         * device/lib/gets.c (gets): fixed the return value.
8133
8134 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
8135         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
8136
8137         * 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.
8138
8139         * 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.
8140
8141         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
8142
8143         * src/pic/gen.c: Removed Safe_strdup.
8144
8145         * configure.in: Added option to enable libgc support.
8146
8147         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
8148         (bitVectUnion): Optimised.
8149         (bitVectIntersect): Optimised.
8150         (bitVectBitsInCommon): Optimised.
8151         (bitVectCplAnd): Optimised.
8152
8153         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
8154
8155 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
8156
8157         * src/SDCCmain.c: distinguish between assembler debug and plain options
8158
8159         * src/avr/main.c:   remove standard assembler options
8160
8161         * src/ds390/main.c: remove standard assembler options
8162
8163         * src/mcs51/main.c: remove standard assembler options
8164
8165         * src/port.h: removed "PENDING" comment
8166
8167 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
8168
8169         * src/device/lib/_mulint.c  : new, with assember functions
8170
8171         * src/device/lib/_mullong.c : new, with assember functions
8172
8173         * src/device/lib/_divuint.c : with assember functions
8174
8175         * src/device/lib/_divsint.c : with assember functions
8176
8177         * src/device/lib/_divulong.c: with assember functions
8178
8179         * src/device/lib/_divslong.c: with assember functions
8180
8181         * src/device/lib/_moduint.c : with assember functions
8182
8183         * src/device/lib/_modsint.c : with assember functions
8184
8185         * src/device/lib/_modulong.c: with assember functions
8186
8187         * src/device/lib/_modslong.c: with assember functions
8188
8189         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
8190
8191         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
8192
8193         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
8194                                       replaced _mululong.c and _mulslong.c by _mullong.c
8195
8196 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
8197
8198         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
8199
8200 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
8201
8202         * src/SDCCglue.c: test, if win32api is available for MINGW
8203
8204 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
8205
8206         * src/SDCCsymt.c: no more _modifier in printTypeChain()
8207         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
8208         * support/regression/ports/gbz80/spec.mk: removed GENERIC
8209         * support/regression/ports/host/spec.mk: removed GENERIC
8210         * support/regression/ports/mcs51/spec.mk: removed GENERIC
8211         * support/regression/ports/z80/spec.mk: removed GENERIC
8212
8213 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
8214
8215         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
8216
8217         * support/regression/tests/bug-467035.c: Created.
8218
8219 2001-10-01    <johan AT FRIJA>
8220
8221         * src/SDCC.y: fixed bug #466586 part 1
8222
8223 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
8224
8225         * SDCCicode.c: z80 has no generic pointers
8226         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
8227
8228 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
8229
8230         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
8231
8232 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
8233
8234         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
8235
8236         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
8237
8238 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
8239
8240         * configure.in: Fixed up so that ucsim is only configured once.
8241
8242         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
8243
8244         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
8245         (getPathDifference): As above.
8246
8247         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
8248
8249         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
8250
8251 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
8252         * .version: Updated to 2.3.1
8253
8254         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
8255         Added copyright header.
8256
8257         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
8258         (assemble): Added support for macro based assembler commands.
8259         (linkEdit): Added support for macro based linker commands.
8260         (preProcess): Changed the pre-processor to use macros.
8261         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
8262         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
8263
8264         * device/lib/z80/crt0.s: Added module name for debugging.
8265
8266 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
8267
8268         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
8269
8270         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
8271
8272         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
8273
8274         * src/Makefile.in: Added SDCCmacro and SDCCutil
8275
8276 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
8277
8278         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
8279
8280 2001-09-16    <johan AT FRIJA>
8281
8282         * 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.
8283
8284 2001-09-15    <johan AT FRIJA>
8285
8286         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
8287         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
8288
8289 2001-09-11    <johan AT FRIJA>
8290
8291         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
8292
8293 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
8294
8295         * support/regression/tests/bug-460444.c: Added test case.
8296
8297         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
8298         (genCast): Added justification for all of the asserts.
8299
8300 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
8301
8302         * support/regression/support.c: _xdata replaced by xdata
8303
8304         * support/regression/spec.mk: removed _generic
8305
8306 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
8307
8308         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
8309
8310         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
8311         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
8312
8313         * src/z80/peeph.def: Added a rule to optimise shift then compare.
8314
8315         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
8316
8317         * support/regression/tests/bug-460010.c: Added test case.
8318
8319         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
8320
8321 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
8322
8323         * support/regression/Makefile: inter-port-clean adjusted for mcs51
8324
8325         * support/regression/testfwk.c: removed workaround for bug #436344
8326
8327         * support/regression/tests/bp.c: use less memory with mcs51
8328
8329         * support/regression/tests/bug-441448.c: use less memory
8330
8331         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
8332
8333         * support/regression/collate-results.py: typo
8334
8335 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
8336
8337         * support/regression/tests/fetchoverlap.c: Added new test case.
8338
8339         * support/regression/tests/bp.c: Added new test case.
8340
8341         * support/regression/tests/bug-448984.c: Added new test case.
8342
8343         * support/regression/tests/pow2shifts.c: Added new test case.
8344
8345         * src/z80/gen.c: Turned off the noise it normally generates for the release.
8346         (genlshTwo): Fixed right shift for count > 8.
8347
8348         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
8349
8350 2001-09-08    <johan AT FRIJA>
8351
8352         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
8353
8354 2001-09-07    <johan AT FRIJA>
8355
8356         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
8357
8358         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
8359
8360 2001-09-06    <johan AT FRIJA>
8361
8362         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
8363         * bernhard noted me at this: "() equals to (void)" (1.38)
8364
8365 2001-09-05    <johan AT FRIJA>
8366
8367         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
8368
8369 2001-09-04    <johan AT FRIJA>
8370
8371         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
8372
8373
8374 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
8375
8376         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
8377
8378 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
8379
8380         * link/z80/aslink.h: Fixed path for PATH_MAX
8381
8382 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
8383
8384         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
8385
8386         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
8387
8388         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
8389
8390         * 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.
8391
8392 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
8393
8394         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
8395         (genCmp): Fixed up genCmp for the GB with longs.
8396
8397         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
8398
8399         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
8400
8401         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
8402
8403         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
8404
8405 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
8406
8407         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
8408
8409 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
8410
8411         * 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.
8412
8413         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
8414
8415 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
8416
8417         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
8418
8419         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
8420
8421 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
8422
8423   * sim/ucsim/configure:    little improvement of Cygwin-detection
8424   * sim/ucsim/configure.in: little improvement of Cygwin-detection
8425   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
8426   * support/regression/tests/bug-221100.c: small changes for mcs51
8427   * support/regression/tests/bug-221168.c: small changes for mcs51
8428   * support/regression/tests/bug-227710.c: small changes for mcs51
8429   * support/regression/tests/staticinit.c: small changes for mcs51
8430   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
8431   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
8432   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
8433
8434 $Revision$