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