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