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