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