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