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