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