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