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