* src/pic16/device.c (pic16_dump_section): corrected bug which
[fw/sdcc] / ChangeLog
1 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
2
3         * src/pic16/device.c (pic16_dump_section): corrected bug which
4         caused some symbols of the libraries to be misplaced
5
6 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
7
8         * src/pic16/glue.c,
9         * src/pic16/ralloc.h,
10         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
11         to fix conflict with pic port
12
13 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
14
15         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
16         externs configuration variables,
17         * src/pic16/ralloc.h,
18         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
19         prototype in header, commented out some debug messages
20
21 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
22
23         * src/pic16/glue.c,
24         * src/pic16/main.c,
25         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
26         for gpasm COFF object generation. Thanks to D. Hawkins for
27         his patch info
28
29 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
30
31         * src/ds390/main.c,
32         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
33         Brock for spotting this)
34         * src/ds390/gen.c (genEndFunction),
35         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
36         interrupt handler and critical. Disable push/pop optimizations when
37         peephole optimizations disabled.
38
39 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
40
41         Updated pic16 library sources and headers.
42         * device/lib/pic16/pic18f*/ ,
43         * device/include/pic16/*.h: modified to handle structured SFR
44         definitions
45
46 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
47
48         * src/port.h (PORT structure): added hook initPaths, now each
49         port can declare its own default search paths,
50         which can been seen with the --print-search-dirs option,
51         see pic16 port for example,
52         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
53         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
54         * (doPrintSearchDirs): NEW, replaces in a central manner the
55         printing of search dirs which was split in set*Paths functions,
56         * (main): added call to port->initPaths and doPrintSearchDirs,
57         * src/avr/main.c,
58         * src/ds390/main.c,
59         * src/hc08/main.c,
60         * src/izt/i186.c,
61         * src/izt/tlcs900h.c,
62         * src/mcs51/main.c,
63         * src/pic/main.c,
64         * src/pic16/main.c: modified port structures to reflect addition of
65         initPaths hook,
66                 
67         * src/pic16/device.c (regCompare): registers are finally sorted by name,
68         * (pic16_dump_section): for registers in same address reserve memory once,
69         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
70         to no_banksel,
71         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
72         result is greater in size than right or left,
73         * (pic16_genUMult8X8_8): there are some cases where the result can
74         be 16 bits size, so handle these,
75         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
76         * (pic16_outBitC): modified to emit pcodes,
77         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
78         or not,
79         * (genDivOneByte): implemented algorithm to divide 8-bits,
80         * (genCmp): uncommented goto, but issues still exist,
81         * (genAnd): fixed a bug with variables >8bits,
82         * (genPackBits): optimization added that uses BCF/BSF to change a
83         single bit,
84         * (genAssign): fixed bug when assigning floating point literals,
85         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
86         __sdcc_gsinit_startup label,
87         * src/pic16/main.c (_pic16_init): removed search directory
88         initialisations,
89         * (_pic16_initPaths): NEW, used to initialise search directories,
90         * (_hasNativeMulFor): support functions for all except char/int
91         multiplication, and char division,
92         * (PIC16_port struct): modified entry for native mul support,
93         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
94         no_banksel option,
95         * (buildCallTree): call to register_usage is ifdef'ed out,
96
97 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
98
99         * device/include/string.h: applied Stas Sergeev's patch to make this
100         header file compatible with the preprocessor -Wundef option
101         * src/SDCCmain.c (main): abort compilation if preprocessor reports
102         failure (fixes bug #941458)
103
104 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
105
106         * src/SDCCopt.c (killDeadCode): fixed bug #907733
107         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
108         that the variable, not the function, should be static
109         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
110         to be consistent with non-literal case
111
112 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
113
114         * src/SDCCast.c (isConformingBody): fixed bug #949967
115         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
116         convilong): fixed bug #952086
117
118 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
119
120         * src/SDCCmem.c (allocVariables): fixed bug #955321
121
122 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
123
124         * src/hc08/main.c (_hc08_genAssemblerEnd),
125         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
126         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
127         completely eliminated the use of a temporary file
128         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
129         when more than one file linked
130         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
131
132 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
133
134         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
135         which fixes bug #543481
136         * support/regression/tests/bug-751703.c: fixed comments left from a
137         cut and paste error
138         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
139         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
140         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
141         scopes
142         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
143         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
144         are now changed to underscores in moduleName
145
146 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
147
148         * as/mcs51/lkmem.c: better fix for bug #954173
149
150 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
151         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
152
153         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
154         * device/include/c8051f000.h,
155         * device/include/c8051f120.h,
156         * device/include/c8051f300.h,
157         * device/include/c8051f310.h,
158         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
159         PWM16) and detab'ed
160
161 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
162
163         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
164         and mailing lists, doc'ed --no-peep-comments, removed reference
165         to knoppix (newest version has no LyX/LaTeX), other minor changes
166         * src/SDCCglue.c (glue): save 2 bytes stack space with 
167         option --main-return. The ljmp could probably be avoided too
168
169 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
170
171         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
172
173 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
174
175         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
176         * src/SDCCopt.c (isLocalWithoutDef),
177         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
178         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
179         (credit to Maarten Brock for patch #949363, on which this is based)
180         * support/regression/tests/bug-751703.c: some test cases of extern used
181         within inner scopes.
182
183 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
184
185         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
186         SPEC_STRUCT
187         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
188         struct definitions
189         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
190         dwWriteLabel): fix to create valid debugger symbols even when
191         the module name has non-alphanumeric symbols in it
192         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
193         when a variable's allocation has been optimized away
194         
195
196 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
197
198         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
199         * src/hc08/main.c,
200         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
201         * src/mcs51/main.c,
202         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
203         * src/ds390/main.c,
204         * src/z80/gen.c (z80_emitDebuggerSymbol),
205         * src/z80/main.c,
206         * src/pic/gen.c (pic14_emitDebuggerSymbol),
207         * src/pic/main.c,
208         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
209         * src/pic16/main.c,
210         * src/avr/gen.c (avr_emitDebuggerSymbol),
211         * src/avr/main.c,
212         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
213         * src/xa51/main.c,
214         * src/SDCCdebug.c (emitDebuggerSymbol),
215         * src/SDCCdebug.h,
216         * src/port.h: added a debugger struct to the port struct. Added a
217         callback for defining debugger symbols
218         
219         * src/SDCCast.c (createLabel),
220         * src/SDCC.y (labeled_statement): mark all compiler generated labels
221         with isitmp = 1
222         * src/SDCCicode.h,
223         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
224         iCode back to the ast for the function
225         
226         * src/hc08/ralloc.c (hc08_assignRegisters),
227         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
228         unneeded fields from the regs struct.
229         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
230         pushReg() & pullReg() functions instead of emitcode()
231         
232         * src/hc08/gen.c (genLabel, genhc08Code),
233         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
234         
235         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
236         debugger hooks
237         
238         * src/hc08/gen.c (genEndFunction, genhc08Code),
239         * src/hc08/gen.h,
240         * src/mcs51/gen.c (genEndFunction, gen51Code),
241         * src/mcs51/gen.h,
242         * src/ds390/gen.c (genEndFunction, gen390Code),
243         * src/ds390/gen.h,
244         * src/z80/gen.c (genEndFunction, genZ80Code),
245         * src/z80/gen.h,
246         * src/z80/z80.h,
247         * src/pic/gen.c (genEndFunction, genpic14Code),
248         * src/pic/gen.h,
249         * src/pic16/gen.c (genEndFunction, genpic16Code),
250         * src/pic16/gen.h,
251         * src/avr/gen.c (genEndFunction, genAVRCode),
252         * src/avr/gen.h,
253         * src/xa51/gen.c (genEndFunction, genXA51Code),
254         * src/xa51/gen.h,
255         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
256         specific code to cdbFile.c and out of the backend code generators
257         
258         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
259         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
260         starting address is now 0
261
262         * as/hc08/asm.h,
263         * as/hc08/m08pst.c,
264         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
265         assembler directive for DWARF support
266         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
267         
268         * src/src.dsp,
269         * src/Makefile.in,
270         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
271         
272 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
273
274         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
275         and inappropriate peephole optimization in jump tables
276
277 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
278
279         * as/hc08/m08pst.c,
280         * src/SDCCglue.c: sdccopt works for the hc08 port now
281
282 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
283
284         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
285
286 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
287
288         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
289
290 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
291
292         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
293         rules
294         * src/SDCCmain.c,
295         * src/SDCCglobl.h,
296         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
297         comments from the peephole optimizer replacement rules
298         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
299         symbols
300         * src/SDCCcse.c (updateSpillLocation),
301         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
302         equivalents
303         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
304         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
305         objects far pointers
306
307 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
308
309         * src/SDCCsymt.h: a missing part of my last change
310         * src/pic/ralloc.c (regTypeNum),
311         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
312
313 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
314
315         * src/SDCCicode.h,
316         * src/SDCCicode.c (aggrToPtrDclType),
317         * src/SDCCptropt.h,
318         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
319         ptrPseudoSymConvert),
320         * src/pic/ralloc.c (regTypeNum),
321         * src/pic16/ralloc.c (regTypeNum),
322         * src/hc08/ralloc.c (regTypeNum),
323         * src/ds390/ralloc.c (regTypeNum),
324         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
325         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
326
327 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
328
329         * link/z80/lkmain.c (afile),
330         * as/hc08/lkmain.c (afile),
331         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
332         prevent a pointer problem when a filename has no directory and
333         no extension specified.
334
335 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
336
337         * link/z80/lkmain.c (afile): allow periods in directory names
338         * link/z80/lkmain.c (afile),
339         * as/mcs51/lkmain.c (afile),
340         * as/hc08/lkmain.c (afile): allow linker script file to have an
341         extension other than ".lnk"
342         * link/z80/lklex.c (getfid),
343         * link/z80/lkmain.c (parse),
344         * as/mcs51/lklex.c (getfid),
345         * as/mcs51/lkmain.c (parse),
346         * as/hc08/lklex.c (getfid),
347         * as/hc08/lkmain.c (parse): Support comments in the linker script
348         file on lines by themselves and after filenames
349
350 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
351
352         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
353
354 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
355
356         * src/z80/peeph-z80.def: removed some peephole rules that don't
357         work with multibyte arithmetic (fixed bug #937126)
358         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
359         to registers and not global variables
360         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
361         geniCodePreInc, geniCodePostDec, geniCodePreDec,
362         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
363         checking for assignments not internally generated (fixed bug #931895)
364         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
365         structure member (fixed bug #930072)
366
367 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
368
369         * src/SDCCmain.c (linkEdit),
370         * src/hc08/main.c (_hc08_parseOptions),
371         * as/hc08/Makefile.in,
372         * as/hc08/aslink.h,
373         * as/hc08/asm.h,
374         * as/hc08/m08pst.c,
375         * as/hc08/lkrloc.c (relr, rele),
376         * as/hc08/lkarea.c (lnkarea)
377         * as/hc08/lkmain.c (afile, parse),
378         * as/hc08/lkelf.c: support for ELF output
379         * as/hc08/lks19.c (s19),
380         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
381
382 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
383
384         * as/mcs51/lkihx.c: Fixed bug #899105.
385
386 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
387
388         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
389         .dsp files from Unix to DOS.
390
391 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
392
393         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
394         function pointers; we have been compliant for several months now.
395         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
396         change that was accidently commented out
397         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
398         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
399         bug #922319
400
401 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
402
403         * src/hc08/gen.c: output of all of the internal debugging information
404         is now controlled by the D() macro; it is disabled by default
405
406 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
407
408         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
409         harder to keep the same registers during a CAST iCode
410         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
411         long via int can be done in a single cast, if the signedness is
412         correct.
413         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
414         putchar() in tinibios.c in ds390's library
415         
416 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
417
418         * src/SDCCast.c (decorateType): fixed bug #898889,
419         cast result of a literal complement too
420         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
421         fixed check for bitfields
422
423 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
424
425         * src/SDCCicode.c (geniCodeLogic): made it static,
426         (geniCodeLogicAndOr): added in order to fix bug #905492,
427         (ast2iCode): fixed bug #905492
428         * support/regression/tests/bug-905492.c: added
429         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
430         (processParms): fixed bug #927659: don't copy parms, this will clear
431         decorated flag
432         * support/regression/tests/bug-927659.c: added
433
434 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
435
436         * src/SDCCast.c (addCast): don't cast float to char
437         * device/lib/libsdcc.lib: added _memmove
438
439 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
440
441         * device/lib/large/Makefile: fixed parallel execution by
442         replacing `make` by `$(MAKE)`
443
444 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
445
446         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
447         offsets (fixes bug #923936)
448
449 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
450
451         * device/lib/small/Makefile: fixed parallel execution by
452         replacing `make` by `$(MAKE)`
453
454 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
455
456         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
457
458 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
459
460         * src/pic/gen.c (genCpl): multi-byte complements were not working.
461         * src/regression/Makefile: Regression test was not running.
462
463 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
464
465         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
466         complement if possible
467         * src/SDCCval.c (valComplement),
468         * src/SDCCicode.c (operandOperation): fixed complement of literal
469         * support/regression/tests/onebyte.c (testComplement): added
470
471 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
472
473         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
474         return an optimized tree; actually replace actParm with the new tree
475         * src/SDCCast.h: added some parantheses to remove side effects
476         * support/regression/tests/bug-920866.c
477
478 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
479         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
480         Bit operands were not being handled properly in the pic14 port.
481         (now src/regression/add.c passes again).
482
483 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
484
485         * src/SDCC.y (labeled_statement): case and default no longer require
486         a following statement (RFE #893037)
487
488 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
489
490         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
491         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
492         disabled (fixes bug #916294)
493         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
494         "mov a,acc"; patch provided by Lenny Story
495         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
496
497 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
498
499         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
500         functions
501         * src/ds390/gen.c (genFunction, genEndFunction),
502         * src/ds390/ralloc.c (ds390_assignRegisters),
503         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
504         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
505         pushed if there are parameters passed on the stack. Also, a cleaner
506         way to decide if r0/r1 should be pushed/popped. (Together they fix
507         bug #918693)
508
509 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
510
511         * doc/sdccman.lyx,
512         * device/lib/mcs51/crtpagesfr.asm,
513         * device/lib/mcs51/crtxinit.asm,
514         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
515         to avoid confusion with Si Lab's SFRPAGE register.
516
517 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
518
519         * src/SDCCglue.c (emitMaps): allow public sfr variables
520         * src/SDCCglue.c (initialComments): include compiler build date
521         with compiler version and put the timestamp of the generated
522         assembly file on a serperate line to be less confusing.
523         * src/port.h: added genInitStartup hook
524         * src/avr/main.c,
525         * src/ds390/main.c,
526         * src/hc08/main.c,
527         * src/pic/main.c,
528         * src/pic16/main.c,
529         * src/xa51/main.c,
530         * src/z80/main.c: genInitStartup initialize as NULL (default to
531         historical behaviour)
532         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
533         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
534         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
535         library instead of hard coding it into the compiler.
536         * support/regression/ports/mcs51-stack-auto/spec.mk,
537         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
538         * device/lib/mcs51/Makefile,
539         * device/lib/small/Makefile,
540         * device/lib/large/Makefile,
541         * device/lib/mcs51/crtpagesfr.asm,
542         * device/lib/mcs51/crtstart.asm,
543         * device/lib/mcs51/crtxclear.asm,
544         * device/lib/mcs51/crtxinit.asm,
545         * device/lib/mcs51/crtclear.asm,
546         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
547         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
548         and into user configurable files.
549         * device/lib/clean.mk: clean mcs51 directory too
550         * support/regression/tests/longlit.c: added static to T1 declaration
551         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
552         accesses in the initialization code
553
554 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
555
556         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
557         OSCTRIMVAL as noted in bug #916008
558
559 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
560
561         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
562         in loops with multiple exits (reported as incorrect registers
563         used by Martin Helmling in Sdcc-user list)
564
565 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
566
567         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
568         made ds390 register extensions look less like error messages
569
570 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
571
572         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
573         reported by Adam Wozniak in Sdcc-user list
574
575 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
576
577         * src/SDCCast.c (decorateType): fixed with bug and promotion in
578         arithmetic optimizations, added debug output
579
580 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
581
582         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
583         * sdcc.spec: updated and split sdcc into 3 rpms
584         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
585         needed for literals of LEFT_OP and '+'
586         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
587         introduced RESULT_TYPE_NOPROM
588         (geniCodeMultiply): fixed logic for decision if mul is optimized to 
589         left shift
590         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
591         limited promotion to int only for '*'
592         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
593
594 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
595
596         * src/pic16/gen.c (genSkip),
597         (genc16bit2lit), (gencjneshort): commented out
598         (is_LitOp): new helper function, checks operand type
599         (genCmpEq): rewritten
600
601 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
602
603         * support/regression/tests/bug-908454.c: added
604
605 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
606
607         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
608         * src/SDCCicode.c (usualBinaryConversions): op needs int type
609         (geniCodeCast): cosmetic, don't preserve bit storage class
610         (geniCodeLeftShift): added promotion
611         (geniCodeLogic): fixed regression
612         * src/SDCCsymt.c (computeTypeOr): accept bits too
613         (compareType): 2nd part of fix for bug #908454, needed for bitfields
614
615 2004-03-07  Borut Razem <borut.razem AT siol.net>
616
617         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
618
619 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
620
621         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
622         version of pic16_genPackRegisters which does not check if ic is a
623         CAST operator,
624         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
625         function cause string1.c regression test fails
626
627 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
628
629         * sim/ucsim/configure.in,
630         * sim/ucsim/configure,
631         * sim/ucsim/doc/Makefile.in: use docdir
632         * src/SDCC.y: fixed sbit atrributes
633         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
634         * src/SDCCast.c (decorateType): |^& need special promotion handling
635         * src/SDCCast.h,
636         * src/SDCCsymt.h: moved definition of RESULT_TYPE
637         * src/SDCCsymt.h (computeType),
638         * src/SDCCicode.c: computeType() needs op
639         * src/SDCCsymt.c (checkTypeSanity),
640         * doc/sddman.lyx: "plain" bitfields are unsigned
641         * src/SDCCsymt.c (computeTypeOr): added
642         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
643         |^& ops
644         * src/SDCCval.c (val*): computeType() needs op
645         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
646         * support/regression/tests/onebyte.c: added tests for |^&
647
648 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
649
650         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
651         for writing icode into asm output.
652
653 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
654
655         * src/pic16/device.c: added some debug lines enabled
656         with macro DEBUG_CHECK,
657         * src/pic16/genarith.c: more debug in genPlus,
658         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
659         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
660         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
661         * (aopForSym): onStack symbols are re-placed in data memspace,
662         and onStack flag is cleared,
663         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
664         copy temporary pcodeop,
665         * (genPcall): added warning for not updating PCLATU,
666         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
667         always true for pic16 port,
668         * (genMultOneWord): NEW, supports integer multiplication,
669         * (genMult): modified to call genMultOneWord,
670         * (ifxForOp): added warning when return NULL,
671         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
672         flag is set before call to operandFromSymbol for implicit
673         added structures,
674         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
675         options.intlong_rent are set by default,
676         * (_hasNativeMulFor): modified to allow port generation of integer
677         multiplication,
678         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
679         set regtype to REG_SFR for all registers, restricting seting the
680         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
681
682 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
683
684         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
685         more than 500 times in the regression tests
686
687 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
688
689         * support/Util/SDCCerr.h,
690         * support/Util/SDCCerr.c,
691         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
692         enumerator_list),
693         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
694         for symbol conflicts.
695         * support/valdiags/tests/enum.c,
696         * support/valdiags/tests/tentdecl.c,
697         * support/valdiags/tests/struct.c: expect possible error messages
698         referring to original symbol definitions.
699         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
700         * src/SDCCsymt.h,
701         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
702
703 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
704
705         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
706
707 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
708
709         * src/pic16/ralloc.c (newReg): fixed bug #908929
710
711 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
712
713         * src/ds390/gen.c: added missing #include "main.h"
714
715 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
716
717         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
718         checking if symbol is already in set,
719         * src/pic16/device.h: prototype for checkAddSym,
720         * src/pic16/gen.c: (_G): added entry interruptvector,
721         * (assignResultValue): removed some commented out lines,
722         * (genFunction): check for ISR via sym->type, absolute section for
723         interrupt code is created via a new pBlock, the goto instruction is
724         placed now correctly at the interrupt vector position, changed all
725         references from ivec to _G.interruptvector,
726         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
727         is the interrupt is a high priority one, same for return from ISR,
728         * src/pic16/glue.c: changed all calls of addSetHead for publics and
729         externs to calls of checkAddSym,
730         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
731         pic16_pcode_verbose flag is set,
732         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
733         * src/pic16/pcoderegs.c: message about how many registers are saved
734         will only be emitted if pic16_pcode_verbose flag is set,
735
736 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
737
738         * src/ds390/ralloc.h,
739         * src/ds390/ralloc.c (ds390_regWithIdx),
740         * src/ds390/gen.c (emitcode),
741         * src/ds390/main.h,
742         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
743         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
744         ds390operandCompare, getRegsRead, getRegsWritten,
745         initializeAsmLineNode): customized instruction size calculation for
746         ds390, started basis for some register optimizations
747         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
748         corresponding assembly output
749         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
750         missing push/pop of r0/r1. Optimized push/pops
751
752 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
753
754         * src/mcs51/main.c (instructionSize): fixed ACALL size
755         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
756
757 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
758
759         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
760         the sorting of rlist with NULL elements
761         * (print_idataType, print_idata): NEW to create idata sections
762         * src/pic16/device.h: idataSymSet new variable
763         * src/pic16/gen.c (genFunction): fixed some bugs in string
764         comparing, improved the absolute section creation for ISRs,
765         added FSR0L/FSR0H in registers that are saved in an ISR,
766         * (genInline): fixed the processing of inline snippets,
767         now they undergo no process by the peephole optimizer
768         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
769         are placed in idataSymSet,
770         * (pic16emitStaticSeg): extern symbols are added in externs,
771         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
772         switching when aboslute variables are placed in access bank memory
773         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
774         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
775         commented out with #if,
776         * (pic16_packRegisters): reintroduce the check for CAST because some
777         symbols are not correctly handled,
778         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
779         pCodeInstruction instead of pCode,
780         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
781         pCodeAsmDir definition,
782         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
783         directive, then the argument directive is emitted without the leading
784         tab, hack for inline labels which must be in the first column,
785         * (compareLabel,pic16_findNextInstruction),
786         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
787         * (insertBankSwitch): modified for the new pCodeAsmDir,
788
789 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
790         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
791
792         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
793         instance,
794         * (pushSide): commented out with #if,
795         * (assignResultValue): fixed some typos in saving
796         registers,
797         * (genPcall): FIXED and sync'ed with genCall,
798         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
799         * (genNearPointerGet): fixed to handle some more cases,
800         implementation scheme via table reads,
801         * (genConstPointerGet): modified to access code memory correct,
802         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
803         and improved to handle some cases
804         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
805         instead of "RETLW" for init data
806         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
807         not IN_DIRSPACE, work around to reduce bank switching when aboslute
808         variables are placed in access bank memory (<0x80 and >=0xf80),
809         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
810         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
811         TBLWT_POSTDEC,TBLWT_PREINC
812         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
813         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
814         directives
815         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
816         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
817         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
818         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
819
820 2004-02-29  Borut Razem <borut.razem AT siol.net>
821
822         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
823         support/Util/findme.h, support/Util/system.h: enhance binary relative
824         search for lib and include by using findProgramPath()
825
826 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
827
828         * src/SDCCpeeph.h,
829         * src/SDCCpeeph.c (pcDistance),
830         * src/port.h,
831         * src/mcs51/ralloc.h,
832         * src/mcs51/ralloc.c (mcs51_regWithIdx),
833         * src/mcs51/main.h,
834         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
835         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
836         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
837         size calculation port specific, started basis for some register
838         optimizations
839         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
840         missing push/pop of r0/r1. Optimized push/pops
841         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
842         * device/lib/_modsint.c (_modsint),
843         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
844         and stack version so regression tests pass
845
846 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
847
848         * src/Makefile.in (dep): include SLIBOBJS in dependency check
849         * src/SDCCast.c (decorateType): catch another small optimization
850         with '?' operator
851         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
852         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
853         modified to finally use computeType() all over SDCC,
854         see Feature Request #877103
855         * src/SDCCval.h: cosmetic
856         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
857         valCompare(); regression tested in muldiv.c
858         * support/regression/tests/muldiv.c (testMod): mod sign follows
859         dividend only
860
861 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
862
863         * src/SDCCast.c (decorateType): fixed bug #902362
864         * doc/INSTALL.txt: fixed install instructions for win32
865
866 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
867
868         * device/include/Makefile.in (install): fixed by replacing spaces
869         by tabs
870         * doc/README.txt,
871         * doc/INSTALL.txt: updated for release
872         * doc/sdccman.lyx: added warning for --xstack being buggy
873
874 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
875
876         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
877         to eliminate build warnings.
878         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
879
880 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
881            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
882
883         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
884         removed -penable-stack, added comment for stack pragma, added
885         warning for not initializing the stack/frame registers, removed
886         comment at interrupts section
887
888         Stack is made permanent, there is no ability to disable stack usage.
889         * src/pic16/device.h,
890         * src/pic16/device.c: removed all references to USE_STACK macro,
891         * src/pic16/device.c (pic16_dump_section): when no elements in
892         rlist, free rlist before return,
893         * (pic16_dump_int_registers): NEW, internal registers are a new set
894         of general purpose registers reused by each function,
895         * (checkAddReg): returns 1 if registers is added to set,
896         * (pic16_groupRegistersInSection): when a registers is of type
897         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
898         * src/pic16/device.h: memRange and Assigned Memory are deleted,
899         SRCASECMP macro is moved here from device.c
900         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
901         PO_PCLATU, PO_PRODL, PO_PRODH,
902         * (pic16_pCodeOpType, genMinus, 
903         changed compares to "a" register, with AOP_ACC,
904         * (pic16_genPlus): fixed some bugs and indented properly,
905         * (pic16_addSign): changed size to size+offset in the MOVWF
906         instruction,
907         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
908         multiply 8-bit operand by literal, result is 8-bit,
909         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
910         multiply 2 8-bit operand, result is 8-bit,
911         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
912         genUMult8X*_16,
913         * src/pic16/gen.c: changed accUse to contain WREG only,
914         * (pic16_emitcomment): renamed to pic16_emitpcomment,
915         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
916         true, do not use immediate addressing any more unless sym is a
917         pointer in codespace,
918         * (aopForRemat): do not use immediate addressing when symbol not in
919         codespace and when symbol's address is requested,
920         * (aopOp): for-loop in if(sym->accUse) is modified for the new
921         accUse size (= 1),
922         * (aopGet): added case for AOP_ACC and don't return "accumulator
923         bug" but WREG instead,
924         * (popGetTempReg): pushes contents of temporary register in stack,
925         * (popReleaseTempReg): pops contents of temporary register from
926         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
927         * (pic16_popGet): separated case AOP_ACC to return register WREG
928         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
929         or PO_IMMEDIATE and initializes their instance/offset appropriately,
930         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
931         the use of immediate pointers to certain cases only.
932
933         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
934         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
935         * (assignResultValue, genCall, genRet): modified to use the new
936         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
937         genPcall is still broken,
938         * (genFunction): added code to create 'A' type pBlocks when
939         interrupt functions are generated, code not extensively tested yet,
940         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
941         * (genEndFunction): modified so ISRs pop stored registers from stack,
942         * (genMultOneByte): cleanup,
943         * (AccRsh): added flag andmask, to and result with appropriate mask,
944         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
945         * (genDataPointerGet): fixed and reenabled its use,
946         * (genNearDataPointerGet): bugs fixed,
947         * (genDataPointerSet): bugs fixed,
948         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
949         pic16_DumpSymbol, pic16_DumpOp,
950         * src/pic16/genutils.h: function prototypes for the above functions,
951         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
952         pointers,
953         * (pic16emitRegularMap): many many many improvements, but needs a
954         major cleanup,
955         * src/pic16/main.c: enable_stack in pic16_options is removed,
956         * (_pic16_parseOptions): removed command line options -penable-stack,
957         * (_process_pragma): emit stack symbol only when stack pragma is
958         processed,
959         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
960         redirected to FSR0L/FSR0H pair,
961         * (pic16_get_op, pic16_get_op2): modifications and improvements,
962         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
963         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
964         for immediates,
965         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
966         * (dumpPicOptype): NEW,
967         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
968         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
969         with movff instruction,
970         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
971         added pic16_int_regs, some packRegsFor* functions are commented out,
972         because produce errors,
973         * src/pic16/NOTES: minor modifications
974
975 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
976
977         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
978         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
979         --pack-iram.
980         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
981         * as/mcs51/lkaomf51.c: fixed bug #895763
982
983 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
984
985         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
986
987 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
988
989         * doc/sdccman.lyx: added details about the HC08 storage classes and
990         interrupts, fixed the register usage info for z80 & gbz80
991
992 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
993
994         * doc/sdccman.lyx: added more pic16 port documentation
995         * device/include/pic16/: added header pic18fregs.h
996
997 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
998
999         * doc/sdccman.lyx: added Vangelis' contribution
1000
1001 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1002
1003         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
1004         extend to the next CALL or PCALL, not just to the next CALL.
1005
1006 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
1007
1008         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
1009
1010 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1011
1012         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
1013         bug #895752 and a better fix for bug #716790
1014
1015 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1016
1017         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
1018
1019 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1020
1021         * doc/sdccman.lyx: minor changes, minor changed
1022
1023 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
1024
1025         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
1026         which can't handle SDCC_NEWONEBYTEOPS,
1027         (geniCodeMultiply): removed conversion from mult to shift for pic14
1028         and pic16
1029
1030 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1031
1032         * src/hc08/gen.h,
1033         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
1034         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
1035         thus fixing bug #895406
1036
1037 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
1038
1039         * device/lib/_modsint.c,
1040         * device/lib/_modslong.c: sign follows divisor only
1041         * src/hc08/gen.c (genMultOneByte): if result size is 1,
1042         signs or signedness can be ignored
1043         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
1044         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
1045         added optimization for IFX,
1046         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
1047         arguments;
1048         reenabled optimization for IFX, which was removed on 2004-01-11
1049         * src/SDCCast.h: added return type IFX
1050         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
1051         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
1052         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
1053         SDCC_OLDONEBYTEOPS selects the old behaviour
1054         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
1055         changed again and commented promotion rule
1056         * src/SDCCval.c (valDiv): promotion no longer necessary
1057         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
1058         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
1059         rewritten
1060         * support/regression/tests/onebyte.c: added
1061
1062 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
1063
1064         * gen.c (genInline): reverted to old code for assemnling inline
1065         code because of bug reported James Chadd
1066
1067 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
1068
1069         * ralloc.h: missing declarations from previous patch,
1070         seems that patch for ralloc.h was never applied, fixed
1071         
1072 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
1073            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
1074
1075         * pcode.c,
1076         * pcode.h,
1077         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
1078         indirect addressing. Marked FSR0 as deprecated
1079         * gen.c (pointerCode): commented out, not needed now
1080         (pic16_popGet2p): new MOVFF helper function
1081         (genGenPointerGet),
1082         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
1083         (shiftRLong): removed duplicate debugging info
1084
1085 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1086
1087         * src/ds390/gen.c (genNearPointerGet),
1088         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
1089         optimization with bits, but not bitfields.
1090         * src/ds390/ralloc.c (packRegisters),
1091         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
1092
1093 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
1094
1095         * src/SDCCcse.c (algebraicOpts): copy operands before modification
1096
1097 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1098
1099         * src/SDCCsymt.h,
1100         * src/SDCCicode.c (operandFromSymbol),
1101         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
1102         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
1103         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
1104         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
1105         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
1106         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
1107         bug #892038
1108         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
1109         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
1110         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
1111         * src/SDCCsymt.c (newSymbol),
1112         * src/SDCC.y (struct_or_union_specifier, enum_specifier, 
1113         enumerator_list),
1114         * src/SDCCval.h,
1115         * src/SDCCval.c (newiList): fixed bug #885705
1116
1117 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1118
1119         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
1120         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
1121
1122 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1123
1124         * device/include/c8051f120.h,
1125         * device/include/c8051f300.h,
1126         * device/include/c8051f310.h: added/updated header files for Silicon
1127         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
1128         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
1129         in new section Submitting patches
1130
1131 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1132
1133         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
1134         genFarPointerGet, genCodePointerGet, genGenPointerGet,
1135         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
1136         genGenPointerSet),
1137         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
1138         genFarPointerGet, genCodePointerGet, genGenPointerGet,
1139         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
1140         genGenPointerSet),
1141         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
1142         genFarPointerGet, genCodePointerGet, genGenPointerGet,
1143         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
1144         genGenPointerSet),
1145         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
1146         genFarPointerGet, genCodePointerGet, genGenPointerGet,
1147         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
1148         genGenPointerSet): fixed bug #892400
1149         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
1150         to eliminate build warnings.
1151         * src/SDCCast.c (processParms),
1152         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
1153         fixed bug 751859
1154         * support/valdiag/valdiag.py: added GCC to the list of defines active
1155         when compiling with gcc
1156
1157 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1158
1159         * support/Util/SDCCerr.h,
1160         * support/Util/SDCCerr.c,
1161         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
1162         with an incomplete type (fixed bug #883734)
1163         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
1164
1165 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1166
1167         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
1168
1169 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1170
1171         * src/SDCCast.c (decorateType),
1172         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
1173         function pointer implementation
1174         * support/regression/tests/funptrs.c: added tests to verify both forms
1175         of function pointers work correctly. Added tests to verify parameters
1176         are passed in the correct order.
1177
1178 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
1179
1180         * device.c (regCompare): registers are sorted by ascending
1181         address and increasing size,
1182         * main.c (_pic16_finaliseOptions): removed the declaration
1183         of compiler macro MCU. Now a macro of the format pic18fxxxx
1184         will be defined from the command line
1185
1186 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
1187             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
1188
1189         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
1190         PCOP_RLCF was overwritten!
1191         * gen.c (genSkip): commented out calls to pic16_emitcode,
1192         * (genCmpEQ): fixed "long" compares, only high word did get compared,
1193         * (genlshTwo),
1194         * (genRRC): added debugging info,
1195         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
1196         overwritten while shifting,
1197         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
1198         overwritten while shifting,
1199         * (AccLsh),
1200         * (AccRsh),
1201         * (shiftLLeftOrResult),
1202         * (shiftRLeftOrResult),
1203         * (shiftRLong),
1204         * (shiftLLong): Implemented with pic16_emitpcode
1205         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
1206         * (genLeftShift): Fixed bug, operand for shift by variable always
1207         was "and"ed with 0x0f,
1208         * (genLeftShiftLiteral),
1209         * (genrshTwo),
1210         * (genRightShiftLiteral): added debugging info,
1211         * (genrshFour): added comment,
1212         * (genRightShift): determined signedness from operand "left"
1213         instead of "result"
1214
1215 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1216
1217         * src/SDCCicode.c (geniCodeParms),
1218         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
1219         function pointers, fixed function pointer bugs #861242 and #861896
1220
1221 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1222
1223         * device/include/c8051f000.h,
1224         * device/include/c8051f120.h,
1225         * device/include/c8051f300.h: added header files for Silicon
1226         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
1227
1228 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
1229
1230         * src/SDCCast.c (processParams): added new type flow and restructured
1231         (gatherAutoInit): added new type flow
1232         (addCast): cosmetic changes
1233         (getLeftResultType): added new type flow for array indices, patch
1234         provided by Stas, see FR #877103
1235         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
1236         array index patch by Stas
1237         * src/SDCCast.h: added prototype getResultTypeFromType()
1238         * src/SDCCval.h,
1239         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
1240         * src/pic/glue.c (pic14emitStaticSeg),
1241         * src/pic16/glue.c (pic16emitStaticSeg),
1242         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
1243         for initialization of symbols
1244         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
1245         * support/Util/SDCCerr.h:
1246         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
1247         * .version: bumped version number to 2.3.8
1248         * device/include/Makefile.in (install),
1249         * doc/Makefile (install): changed to 'rm `find ...`' construct to
1250         avoid warnings
1251
1252 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
1253
1254         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
1255         Slade Rich fixed an optimization bug
1256         * src/pic/pcodepeep.c,
1257         * src/pic/pcoderegs.c
1258         * doc/Makefile (install): added test for directory
1259
1260 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1261
1262         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
1263         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
1264         * src/pic/ralloc.c (getRegPtr, getRegGpr),
1265         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
1266         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
1267         * as/mcs51/asexpr.c (term),
1268         * as/hc08/asexpr.c (term): fixed bug #887146
1269
1270 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1271
1272         * src/z80/gen.c (genMult): handle single byte result product
1273         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
1274         DUMMY_READ_VOLATILE (fixed bug #886367)
1275
1276 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
1277
1278         * support/regression/tests/libmullong.c: fixed logic, on little endian
1279         hosts we ended without a mullong_wrapper()
1280
1281 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1282
1283         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
1284         virus/worm forged address usage.
1285
1286 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
1287
1288         Fixed promotion, it should be done on AST level:
1289         * src/SDCCast.c (addCast): added promotion to int
1290         (decorateType): updated call to upCast()
1291         * src/SDCCicode.c (geniCodeLeftShift): removed call to
1292         usualUnaryConversions()
1293
1294 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
1295
1296         * support/regression/tests/literalop.c (mulWrapper): Added a
1297         wrapper to remove integer overflow warnings.
1298
1299         * support/regression/tests/float_trans.c: Made work on host.
1300
1301         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
1302         location of sz80.
1303
1304         * support/regression/generate-cases.py (main): Changed from inline
1305         to a main method.
1306
1307         * doc/Makefile (install): Changed to depth first to get rid of
1308         missing directory install warning.
1309
1310         * as/Makefile (install-doc): Made work on Mac.
1311
1312 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
1313
1314         * src/SDCCast.c: added an additional type flow in decorateType() of
1315         opposite direction, see feature request #860006; it's enabled at runtime
1316         by setting the environment variable SDCC_NEWTYPEFLOW
1317         * src/SDCCast.h: changed prototype of decorateType()
1318         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
1319         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
1320         'char' to 'int' can be omitted, if both operands are 'unsigned char';
1321         see feature request #877103
1322         * src/SDCCval.c: updated call of decorateType()
1323         (valBitwise): fixed bug #882876
1324         (valMinus): added promotion
1325         (valLogicAndOr): result is unsigned
1326         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
1327         * src/SDCCsymt.c (computeType),
1328         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
1329         must not cause an unsigned operation
1330         * src/pic/glue (pic14emitRegularMap),
1331         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
1332
1333 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
1334
1335         * src/pic/pcode.c (PCodeID): commented out left over debug code
1336
1337 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
1338
1339         * support/valdiag/tests/overflow.c: added shift tests
1340         * src/pic/device.c,
1341         * src/pic/gen.c,
1342         * src/pic/gen.h,
1343         * src/pic/glue.c,
1344         * src/pic/main.c,
1345         * src/pic/pcode.c,
1346         * src/pic/pcode.h,
1347         * src/pic/pcodepeep.c,
1348         * src/pic/pcoderegs.c,
1349         * src/pic/ralloc.c,
1350         * src/pic/ralloc.h: applied patch from Slade Rich;
1351         added support for multiple code pages and multiple RAM banks on the
1352         PIC 14 port. The ASM files now no longer simply assume all the
1353         code / RAM are in the same page / bank. This means the linker can
1354         safely allocate code/RAM of separate ASM files to different pages/banks.
1355         * doc/sdccman.lyx: added Slade's tips
1356         * src/mcs51/peeph.def: fixed bug #880768
1357
1358 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1359
1360         * src/hc08/ralloc.c (rematStr): fixed bug #879282
1361         * src/SDCCast.c (decorateType): fixed bug #880197
1362
1363 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
1364
1365         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
1366         getopt.h.
1367
1368         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
1369         strtof is not part of C89 and isn't included with Mac OS X.
1370
1371 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1372
1373         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
1374         shiftL2Left2Result): fixed bug #879326
1375         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
1376         (genMultOneByte): fixed bug in signed vs unsigned multiplication
1377         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
1378         address fetch for clr instruction
1379         * device/lib/hc08/_mulint.c: created optimized assembly version
1380         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
1381
1382 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
1383
1384         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
1385         proposed in FR #877103
1386
1387 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
1388
1389         * src/SDCCval.c (cheapestVal): added missing checks
1390         * src/SDCCicode.c (usualBinaryConversions): fixed condition
1391         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
1392
1393 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
1394
1395         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
1396         equal operands
1397
1398 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
1399
1400         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
1401         loaded with the linker search paths (-L arguments) and the libraries
1402         to be linked with the current source (-l arguments). Changes
1403         currently will affect only the pic16 port.
1404         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
1405         include path the port specific paths and port specific libraries,
1406         * gplink command now contains the $3 argument,
1407         * src/pic16/device.h,
1408         * src/pic16/device.c,: structure PIC_device is made public and
1409         renamed to PIC16_device, the same for variable Pics which is renamed
1410         to Pics16. Updated all references to them.
1411         * src/pic16/glue.c (pic16glue): corrected bug with code
1412         initialization which bypassed the variable initializations block.
1413
1414         * device/lib/pic16/Makefile.rules: removed --penable-stack from
1415         COMPILE_FLAGS and added the --nostdinc option
1416
1417 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1418
1419         * device/include/mc68hc908jb8.h: Register defs for another member
1420         of the hc08 family. Contributed by Bjorn Bringert - thanks!
1421
1422 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
1423
1424         Documenting changes from previous commits.
1425         * configure.in (version 1.56),
1426         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
1427         when generating output files to configure the pic16 library,
1428         but now I've commented it out, since gputils aren't installed in the
1429         SF compile farm, so library won't compile
1430
1431         * device/lib/Makefile.in (version 1.56): initially I've added in
1432         target 'all' the prerequestive 'model-pic16' so it compiled the
1433         pic16 library, but now I've commented it out for the same reasons
1434         above,
1435         * added targets 'model-pic16' and 'objects-pic16' to compile the
1436         library
1437         * added target 'port-specific-objects-pic16' to handle the
1438         generated libraries and copy them into the build/ directory
1439         * added target 'clean-intermediate-pic16' to clean intermediate
1440         files into pic16 directory
1441         * in target 'installdirs' added line to create directory pic16 in
1442         the installation path
1443
1444         * device/include/Makefile.in (version 1.11): in target 'install'
1445         added lines to copy all header files to installation path,
1446         * in target 'installdirs' added line create directory for pic16
1447         headers in the installation path
1448
1449 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
1450
1451         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
1452          a function call
1453
1454 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
1455
1456         * configure,
1457         * device/lib/configure.in,
1458         * device/lib/configure: fixed for autoconf 2.57
1459
1460 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1461
1462         * src/z80/main.c (_parseOptions): fixed the portmode= command line
1463         option so that it actually works. Made it specific to the z80, since
1464         the gbz80 doesn't have these kinds of I/O ports.
1465
1466 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1467
1468         * device/include/z180.h,
1469         * device/lib/_memcpy.c,
1470         * device/lib/_memmove.c,
1471         * device/lib/_mulint.c,
1472         * device/lib/ser_ir.c,
1473         * device/lib/ser_ir_cts_rts.c,
1474         * device/lib/_strcmp.c,
1475         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
1476         * src/z80/main.c (_process_pragma): add support for pragmas bank and
1477         portmode; added deprecation warning for bank= and protmode= forms.
1478         Also, guard against buffer overflow.
1479         * src/z80/gen.c (aopGet): generate better code for sfr banked read
1480
1481 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1482
1483         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
1484         changed interrupt vector table generation to only emit declared vectors.
1485         * device/include/Makefile.in: added missing backslash
1486         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
1487
1488 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
1489
1490         Mainly changes to support compilation of the device libraries
1491         * src/pic16/device.c: stack is allocated via symbol and not
1492         via literal number. The symbol is placed in the corresponding
1493         position of the data ram
1494         * (pic16_dump_section): relocatable and absolute uninitialized
1495         data are now emitted in sorted order to reduce section naming,
1496         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
1497         weren't marked as being in the access bank,
1498
1499 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
1500
1501         Added portion of GNU PIC Library under the directory
1502         device/include/pic16 and device/lib/pic16. These files
1503         contain the declarations of SFRs for the PIC18Fxx2 devices.
1504         The directory is initialized via configure from toplevel.
1505         
1506 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
1507
1508         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
1509         the spilllocations to be compared correctly
1510
1511 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
1512
1513         * src/SDCCast.c (decorateType): fixed bug introduced today
1514
1515 2004-01-12  Borut Razem <borut.razem AT siol.net>
1516
1517         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
1518         doc/sdccman.lyx: upper case pragmas are deprecated
1519
1520 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
1521
1522         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
1523         in simpler and even better code
1524
1525 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
1526
1527         * src/SDCCicode.c (operandOperation): fixed bug #874819
1528         * src/SDCCast.c (decorateType): fixed
1529         char foo (unsigned long ul) { return ul > 0; }
1530
1531 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1532
1533         * doc/sdccman.lyx: Moved and added some sections, small changes
1534         all over. Telling LaTeX to be less strict with word spacing
1535         to better keep the right margin. Changed some notes about
1536         maintainance of the ports in section 3.2.1 - is it OK like this?
1537
1538 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
1539
1540         SDCC source changes:
1541         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
1542         convilong): modified to inform the pic16 port that builtin functions
1543         are external
1544
1545         PIC16 PORT specific changes:
1546         * src/pic16/device.c pic16_dump_equates() added,
1547         processor registers declared internally by the port are emitted in
1548         the translation as equates,
1549         * src/pic16/gen.c: inline code is passed unprocessed to the
1550         translation,
1551         * (pic16_popGetLit2): fnuction modified to take second operand as
1552         pCodeOp pointer and not as literal,
1553         * (popRegFromIdx): prefixed with pic16_,
1554         * (pic16_popCombine2): modified to receive already allocated pCode
1555         operands,
1556         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
1557         * (genFunction): initializes local stack frame and pushes on stack
1558         all the registers used by this function,
1559         * (genEndFunction): restores all registers from stack and restores
1560         stack frame,
1561         * src/pic16/glue.c (pic16emitRegularMap): various changes and
1562         improvements,
1563         * (pic16glue): changed the program startup sequence,
1564         * added new dbName code 'A' for functions placed in absolute section
1565         * src/pic16/main.c: added function attribute _naked,
1566         * added pragma 'code' to place a fnuction at an absolute address,
1567         * added command line arguments --debug-ralloc and --pcode-verbose,
1568         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
1569         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
1570         * (pic16_newpCodeOpLit2): modified to take the second operand as
1571         pCodeOp pointer,
1572         * (pic16_printpBlock): modified to emit each function in a separate
1573         section,
1574         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
1575         UPPER for immediate operands,
1576         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
1577         instruction,
1578         * src/pic16/peeph.def: all peepholes with movff are commented out,
1579         because there is a problem in the pcode peep optimizer,
1580         * src/pic16/ralloc.c: the register allocator can now reuse local
1581         function symbols for another function. This saves register usage.
1582         * src/pic16/ralloc.h: added flag isLocal in structure regs,
1583
1584         Added file src/pic16/NOTES with information about program writing on
1585         the current port version.
1586
1587 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1588
1589         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
1590         and peephole 252 (array access)
1591
1592 2004-01-09  Borut Razem <borut.razem AT siol.net>
1593
1594         * src/SDCCmain.c : fixed #872250: -l command line defined library
1595           files are scanned before standard library files
1596
1597 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1598
1599         * src/SDCCast.c (decorateType): fixed bug #874046
1600
1601 2004-01-09  Borut Razem <borut.razem AT siol.net>
1602
1603         * support/scripts/sdcc.nsi: remove previous installation
1604
1605 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1606
1607         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
1608         bytes for last interrupt vector (mcs51)
1609         * sdcc.spec: fixed typo
1610
1611 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1612
1613         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
1614         gen51Code): more efficient parameter receive for --model-large
1615         ("bug" #845294)
1616
1617 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1618
1619         * src/ds390/main.c,
1620         * src/z80/main.c: added missed needLinkerScript flags (more than
1621         one port structure defined in these file)
1622         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
1623         bug #795325
1624
1625 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
1626
1627         * src/SDCCmain.c: removed various references to DEFAULT_PORT
1628         * src/port.h: added flag needLinkerScript in port->linker
1629         structure to inform whether to create a .lnk file or not,
1630         * src/avr/main.c,
1631         * src/ds390/main.c,
1632         * src/hc08/main.c,
1633         * src/mcs51/main.c,
1634         * src/pic/main.c,
1635         * src/pic16/main.c,
1636         * src/xa51/main.c,
1637         * src/z80/main.c: changed appropriately to configure
1638         needLinkerScript flag
1639         * src/pic/gen.c,
1640         * src/pic16/gen.c (genAddrOf): fixed bug #863624
1641         * src/pic/glue.c: added variable udata_section_name to
1642         override default uninitialized data segment definition for
1643         devices only with SHAREBANK memory (reported from Erik Epetrich)
1644         * (pic14emitOverlay): modified to emit a commented overlay segment
1645         directive when no overlay data exist
1646         * (picglue): modified to emit uninitialized data segment
1647         according to udata_section_name
1648         * src/pic/main.c (_pic14_parseOptions): added command line
1649         options --udata-section-name=[name] to override default
1650         udata definition name
1651         * modified _linkCmd and _asmCmd to include compiler passed
1652         arguments via -W option
1653         * src/pic16/main.c: added $l in _asmCmd, changed extension for
1654         object file from '.rel' to '.o' in port->linker structure,
1655         changed size of fptr from 2 to 3 in port structure
1656
1657 2004-01-07  Borut Razem <borut.razem AT siol.net>
1658
1659         * support/scripts/sdcc.nsi: update PATH
1660         * support/scripts/sdcc.ico: craeted
1661
1662 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
1663
1664         * device/include/Makefile.in: fix install
1665         * doc/Makefile: fix install
1666
1667 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1668
1669         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
1670         in bug #860505
1671         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
1672         how the function variable allocation summary is displayed; also
1673         include information about variables allocated to the overlay
1674         segment
1675
1676 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1677
1678         * as/mcs51/lkmain.c: Help about -Y option
1679         * as/mcs51/lkarea.c: Fixed gcc warnings
1680
1681 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
1682
1683         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
1684         fixed warning
1685         * support/valdiag/tests/overflow.c: added
1686         * src/SDCCast.c (decorateType),
1687         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
1688         LEFT_OP (left shift)
1689
1690 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1691
1692         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
1693         (default behaviour).
1694
1695 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1696
1697         A python script to validate compiler diagnostic messages. It can be
1698         used to verify that sdcc complains about bad c source code and
1699         gives a good location of the error.
1700         * support/valdiag/Makefile,
1701         * support/valdiag/valdiag.py,
1702         * support/valdiag/tests/*
1703
1704 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1705
1706         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
1707         * src/SDCCsymt.c (newEnumType),
1708         * src/SDCCsymt.h
1709         * support/Util/SDCCerr.c,
1710         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
1711         enum related bugs.
1712         * support/regression/tests/enum.c: added test for enum values that
1713         require at least 2 bytes of storage.
1714
1715 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
1716
1717         * src/common.h: added ifndef/define/endif macros
1718         around the header file.
1719         Bug reported from Jesus Calvino-Fraga
1720
1721 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
1722
1723         * sdcc.spec: updated
1724         * device/include/Makefile.in: don't install CVS directories
1725         * device/lib/Makefile.in: added removal of CVS directories after install
1726         * doc/Makefile: fixed install, added local_icons
1727         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
1728         * src/mcs51/gen.c (genRightShift): fixed bug #870788
1729         * src/ds390/gen.c (genRightShift): fixed bug #870788
1730         * src/SDCCast.c (decorateType): fixed bug #870781
1731
1732 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
1733
1734         PIC16 port related changes:
1735         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
1736         added variable stackPos,
1737
1738         * gen.c: genCall, assignResultValue: added support for
1739         pushing/retrieving function parameters to/from stack,
1740         genFunction,genEndFunction: setup stack frame for the
1741         generated function,
1742         genAddrOf: will be changed according to bug 863624
1743
1744         * added files genutils.c and genutils.h which contain gen*
1745         debugged and optimised functions extracted from gen.c
1746         
1747         * glue.c: added variable 'externs' which holds extern symbols,
1748         pic16emitRegularMap: is modified to properly handle relocatable
1749          symbols under the new scheme,
1750         pic16createInterruptVect: is modified
1751         pic16printPublics: is modified to emit 'global' assembler directives,
1752         added pic16_printExterns to print extern symbols,
1753         pic16glue: initializes stack/frame pointer in the beginning of
1754         the assembly output. Temporary hack, will be corrected later,
1755         because gplink yet does not support stack and SDCC does not
1756         yet support a type of crt0.o object to create the final binary.
1757         
1758         * Removed many lines that contain 8051 legacy code.
1759         * The code is finally placed under a 'code' directive.
1760         * Added port specific options.
1761         
1762         * _process_pragma: simplified since now we do not need *special*
1763         include file to define SFR registers. But a separate header
1764         will be needed. This will be developed later.
1765         * _pic16_parseOptions: added, parses port specific options:
1766         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
1767         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
1768         --preplace-udata-with=
1769         
1770         * _pic16_setDefaultOptions: modified to initialize section names,
1771         but hack is temporarly out of order since it needs improvement.
1772         * _pic16_genAssemblerPreamble: configuration words are emitted by
1773         their address instead of their name. This part is incomplete and
1774         supports only the 18Fxx2 devices. Other devices will emit an error
1775         during assembly since they do not contain the same set of config
1776         registers
1777         * _pic16_genIVT: is modified,
1778         
1779         * pcode.c: added definitions for some hardware registers that are needed
1780         for stack support
1781         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
1782         All PCI entries are updated. Now LFSR is supported.
1783         * Removed pic16_pciTRIS is mentioned by mdubuc in source
1784         * added pic16_newpCodeOpLit2 to support instructions with
1785         two literal arguments
1786         * pic16_pCode2str: corrected code that emits assembler instructions
1787         with two literal operands and those that have an access bit modifier
1788         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
1789         this fixes a bug which caused some labels to be lost, when an
1790         assembler directive was added, i.e. banksel,
1791         * pic16_FixRegisterBanking: improved logic that causes the insertion
1792         of bank switching,
1793         * InlineFunction: functions that are called once, are not any more
1794         inlined. This can be a port option in the future,
1795         
1796         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
1797         
1798         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
1799         hold the corresponding uninitialized symbols,
1800         * pic16_allocProcessorRegister: registers have explicit marked the
1801         accessBank field,
1802         * pic16_allocInternalRegister: registers are explicit marked as
1803         not used,
1804         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
1805         processing list, so bit registers were lost,
1806         * 
1807
1808         * ralloc.h: added field 'accessBank' and original symbol operand
1809         in register definition,
1810         * removed the field isMapped from register definition,
1811
1812         ** Several functions have been removed from various sources:
1813         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
1814         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
1815         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
1816         pic16_assignRelocatableRegisters
1817         
1818         ** others have been introduced:
1819         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
1820         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
1821         
1822 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
1823
1824         * support/scripts/inc2h.pl: changed definition of BIT_AT
1825         to emit 'sbit at' instead of 'bit at'. This was a request.
1826
1827         PIC16 port related preliminary changes:
1828         * gen.c: prefixed function popRegFromString with
1829         pic16_ and all references to it corrected
1830         * pcode.c: all pic16_pc_* hardware registers prefixed
1831         with underscore (_),
1832         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
1833         * ralloc.c: newReg(): when register is REG_SFR then
1834         set address to rIdx,
1835         pic16_allocProcessorRegister(): marks register wasUsed=0
1836         pic16_writeUsedRegs(): added a call to assign processor
1837         registers via pic16_assignFixedRegisters
1838
1839 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1840
1841         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
1842         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
1843         variables in unused register banks.  Also the SSEG is placed
1844         wherever there is enough space for it, and IDATA can be anywhere
1845         in internal RAM.  For now compile using -Wl-Y[stack_size].
1846         The mem file is different for this option as well, since it
1847         makes no sense of talking about DSEG lenght.
1848
1849 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
1850
1851         * src/SDCClrange.c: fixed bug 869095 that caused segfault
1852         in certain cases, e.g. when ROM assignment, patch provided
1853         from Albert den Haan.
1854
1855 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
1856
1857         Many signedness and type propagation fixes:
1858         * src/SDCCicode.c: made geniCodeCast() static
1859         replaced SPEC_ by IS_ (cosmetic)
1860         (operandOperation): fixed div and mod operation
1861         (usualBinaryConversions): added support for promotion of char
1862         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
1863         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
1864         (geniCodeAdd): an array index will stay unsigned, even if promoted
1865         from char to int
1866         (geniCodeArray): ditto
1867         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
1868         * src/SDCCsymt.c (computeType): added more support for char;
1869         promotion of char is selectable by promoteCharToInt, fixed signedness
1870         for all cases
1871         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
1872         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
1873         * src/SDCCval (val*): replaced signedness calculation by
1874         computeType()
1875         rearranged if-branches (cosmetic)
1876         (valShift): added warning W_SHIFT_CHANGED
1877         (valCompare): fixed problem with different types
1878         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
1879         * support/regression/tests/literalop.c: added many cases
1880         * support/regression/tests/ast_constant_folding.c: changed finally to
1881         'unsigned int'
1882         * .version: new year, new version: 2.3.7
1883         * src/SDCCmain.c (main): applied patch #866468
1884         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
1885         provided by Scott Bronson
1886         * doc/sdccman.lyx: updated documentation for sdcdb
1887         updated and added chapter tips
1888
1889 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1890
1891         * src/SDCCsymt.h: missing from yesterday's commits
1892
1893 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1894
1895         * src/SDCC.y (struct_or_union_specifier),
1896         * support/Util/SDCCerr.c,
1897         * support/Util/SDCCerr.h: verify that struct & union tags are used
1898         as declared.
1899
1900 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1901
1902         * src/SDCCglobl.h: missing from yesterday's commits
1903
1904 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1905
1906         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
1907         sft_attributes, struct_declaration, parameter_declaration,
1908         type_name, start_block, declaration_list),
1909         * src/SDCC.lex (check_type): support redefinition of typedef names
1910
1911 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1912
1913         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
1914         aligned xdata arrays. Erik helped me with the if clause.
1915
1916 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1917
1918         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
1919         warning
1920
1921 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1922
1923         * src/SDCCast.h,
1924         * src/SDCCast.c (newAst_),
1925         * src/SDCCicode.h,
1926         * src/SDCCicode.c (ast2iCode, newiCode),
1927         * src/SDCCglobl.h,
1928         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
1929         expr, statement, expression_statement, selection_statement,
1930         iteration_statement, expr_opt, jump_statement): foundation for tracking
1931         sequence points
1932         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
1933         point code too)
1934
1935 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1936
1937         * support/Util/SDCCerr.c,
1938         * src/SDCCast.h,
1939         * src/SDCCast.c (createCase, createDefault, decorateType),
1940         * src/SDCClabel.c (labelUnreach),
1941         * src/SDCC.y (labeled_statement, jump_statement): More improvements
1942         to error messages.
1943         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
1944         (with thanks to Stas Sergeev)
1945         * device/include/time.h,
1946         * device/lib/time.c (CheckTime): suppress unreachable code warning
1947
1948 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1949
1950         * src/SDCCast.c (createIvalCharPtr),
1951         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
1952         bug #753752)
1953         * support/regression/tests/nullstring.c: tests for these two bugs
1954
1955 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1956
1957         * support/Util/SDCCerr.h,
1958         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
1959         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
1960         about storage class and 'at' used inside struct or union
1961         * src/SDCCBBlock.c (iCodeFromeBBlock),
1962         * src/SDCCcse.c (ifxOptimize),
1963         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
1964         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
1965         printIval, emitStaticSeg, emitOverlay),
1966         * src/SDCClabel.c (deleteIfx),
1967         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
1968         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
1969         gatherAutoInit, processParms),
1970         * support/Util/SDCCerr.h,
1971         * support/Util/SDCCerr.c (werrorfl): Support for better error location
1972         reporting for post-parse errors.
1973
1974 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1975
1976         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
1977         implicit casts via union; they don't work on big endian systems
1978         (possible fix for bug #861138)
1979
1980 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1981
1982         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
1983         * src/mcs51/main.c: fixed the fix for bug #737001
1984
1985 2003-12-15  Borut Razem <borut.razem AT siol.net>
1986
1987         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
1988
1989 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1990
1991         * support/makebin/makebin.c: put output in binary mode
1992
1993 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1994
1995         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
1996         xdata and data memory on startup. Set the environment variable
1997         SDCC_NOGENRAMCLEAR to disable this.
1998         * src/mcs51/peephole.def,
1999         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
2000         (allows non-interrupt and interrupt code to safely compete for a resource
2001         without the non-interrupt code having to disable interrupts)
2002
2003 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2004
2005         * src/SDCCicode.c (geniCodeAdd),
2006         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
2007         with valFromType if type might be a pointer and host is big endian).
2008         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
2009         types, not just integer types.
2010         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
2011         multiply defined with mismatching "at" address.
2012
2013 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2014
2015         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
2016         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
2017         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
2018         with embedded nulls (fixed bug #753752)
2019
2020 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2021
2022         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
2023         Apparently this did not see much testing (endless loop)
2024
2025 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2026
2027         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
2028
2029 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2030
2031         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
2032         gracefully handle NULL memmap pointers
2033
2034 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2035
2036         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
2037         instead of deleting the iCode when an operand is volatile
2038         * src/z80/gen.c (genDummyRead),
2039         * src/mcs51/gen.c (genDummyRead),
2040         * src/ds390/gen.c (genDummyRead),
2041         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
2042         not just IC_RIGHT
2043         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
2044         * src/SDCC.y: fixed bug #850420
2045
2046 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2047
2048         Applied z80 i/o port patch from Peter Townson and fixed some operators
2049         to better handle operands in A register.
2050         * device/include/z180.h
2051         * src/SDCC.y
2052         * src/SDCCglue.c
2053         * src/z80/gen.c
2054         * src/z80/gen.h
2055         * src/z80/main.c
2056         * src/z80/peeph-z80.def
2057         * src/z80/peeph.def
2058         * src/z80/z80.h
2059
2060 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2061
2062         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
2063
2064 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2065
2066         * device/lib/hc08/_mullong.c: Removed extra #endif
2067
2068 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2069
2070         * sim/ucsim/hc08.src/inst.cc,
2071         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
2072         carries from x to h
2073         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
2074         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
2075         * device/include/stdarg.h: fixed varargs for hc08
2076         * device/lib/Makefile.in,
2077         * device/lib/hc08/Makefile,
2078         * device/lib/hc08/_mulint.c,
2079         * device/lib/hc08/_mullong.c: fixed some endian problems
2080
2081 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2082
2083         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
2084         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
2085         * device/lib/_gptrget.c,
2086         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
2087
2088 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2089
2090         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
2091         * src/SDCCast.c (astErrors): fixed bug #846007
2092         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
2093
2094 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2095
2096         * src/SDCCast.c (decorateType): disabled a transformation I added in
2097         revision 1.188 (access to fields of a structure at an absolute address);
2098         it breaks with bitfields, extern declarations, and gcse analysis.
2099         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
2100         could be assigned through a pointer, so don't complain.
2101         * src/SDCCast.c (astErrors),
2102         * src/SDCCast.h,
2103         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
2104
2105 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
2106         
2107         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
2108         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
2109         output of __config directives, since gpasm now supports them
2110         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
2111         pre-processor macro, i.e. -DMCU=p18f452
2112         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
2113         and modified to handle 'cast' icode similarly to '=' icode
2114         * src/pic16/device.h (typedef struct PIC_device): added field
2115         'extMIface' to indicate that chip has external memory interface
2116         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
2117         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
2118         18F8720
2119
2120 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2121
2122         * src/SDCC.y (pointer): fixed bug #846006
2123         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
2124         * src/SDCCast.c (decorateType): fixed bug #846009
2125         * src/ds390/peeph.def,        
2126         * src/ds390/gen.c (genAnd, genOr),
2127         * src/mcs51/peeph.def,        
2128         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
2129
2130 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2131
2132         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
2133         * src/SDCCdflow.c
2134         * src/SDCCcse.c
2135         * src/SDCCcse.h
2136         * src/SDCCBBlock.h
2137         * src/SDCCBBlock.c
2138
2139 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
2140
2141         fixed bug #845089
2142         * src/SDCCbitv.h,
2143         * src/SDCCbitv.c: added function to free a bitvector
2144         * src/SDCClrange.h,
2145         * src/SDCClrange.c: added function to recompute the liveranges
2146         * src/avr/ralloc.c,
2147         * src/ds390/ralloc.c,
2148         * src/hc08/ralloc.c,
2149         * src/mcs51/ralloc.c,
2150         * src/pic/ralloc.c,
2151         * src/pic16/ralloc.c,
2152         * src/xa51/ralloc.c,
2153         * src/z80/ralloc.c: recompute the liveranges after register packing
2154
2155 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
2156
2157         * src/SDCCloop.c (newInduction): fixed bug #845630
2158
2159 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2160
2161         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
2162         inadvertantly left behind from my 2003-11-12 change
2163
2164 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2165
2166         Updated headers I neglected to commit yesterday.
2167         * src/SDCClrange.h,
2168         * src/SDCCicode.h
2169
2170 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2171
2172         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
2173         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
2174         * src/SDCCopt.c (eBBlockFromiCode),
2175         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
2176         the creation of the key hash table from the sequencing so it can be used
2177         earlier (for some GCSE bug fixes still pending)
2178
2179 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2180
2181         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
2182         * support/regression/tests/addsub.c: testing genPlus shortcut
2183
2184 2003-11-15  Borut Razem <borut.razem AT siol.net>
2185
2186         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
2187
2188 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2189
2190         * src/SDCCcse.c (cseBBlock): fixed bug #527779
2191         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
2192         ordering is immaterial.
2193         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
2194
2195 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2196         
2197         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
2198         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
2199         (SIGSEV) of bug #840381
2200         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
2201         unlink new file before rename if new and old filenames are the same)
2202
2203 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2204
2205         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
2206         uninitialized variables) for the mcs51. Set environment variable 
2207         SDCC_GENRAMCLEAR to test. 
2208         xdata initialization slightly shorter
2209
2210 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2211
2212         * src/SDCCsymt.h,
2213         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
2214         #838241 & 780691 (basicly the same bug)
2215         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
2216         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
2217
2218 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
2219
2220         * src/SDCCmain.c (linkEdit): "fix" #834252
2221
2222 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2223
2224         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
2225         * src/SDCCast.h,
2226         * src/SDCC.y: fixed bug #819403
2227
2228 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2229
2230         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
2231         the reentrant attribute.
2232         * src/hc08/gen.c (genPackBits): added missing stack readjustment
2233         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
2234         simulation
2235         * src/SDCCast.c (decorateType): fixed bug with storage class not being
2236         updated during pointer dereference; f.e. ~(((char *)1)*) was being
2237         erroneously reduced to a literal.
2238         * src/hc08/ralloc.c (packRegisters, rematStr),
2239         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
2240         some cases
2241
2242 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2243
2244         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
2245         * doc/sdccman.lyx: changed from 'article' to 'book'
2246         * doc/Makefile: readded test_suite_spec and cdbfileformat
2247
2248 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
2249
2250         * device/include/stdlib.h: include malloc.h to comply with ANSI
2251         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
2252
2253 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2254
2255         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
2256         * doc/clean.mk: also remove *.out files
2257         * doc/sdccman.lyx: some additions, larger top/bottom margins
2258
2259 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2260
2261         * src/SDCC.y: fixed bug #837365
2262         * support/regression/tests/bitopcse.c
2263         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
2264         a symbol (might be valop instead)
2265         * device/lib/Makefile.in: added errno.c to HC08SOURCES
2266         * device/lib/clean.mk: added hc08 to the cleaning list
2267
2268 2003-11-04  Borut Razem <borut.razem AT siol.net>
2269
2270         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
2271           made 2003-11-04
2272         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
2273           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
2274           malloc is declared in standard stdlib.h
2275
2276 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2277
2278         * device/lib/hc08/Makefile: need to clean .rel not .o files
2279         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
2280
2281 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2282
2283         * src/port.h,
2284         * src/hc08/main.c,
2285         * src/mcs51/main.c,
2286         * src/ds390/main.c,
2287         * src/z80/main.c,
2288         * src/avr/main.c,
2289         * src/pic/main.c,
2290         * src/pic16/main.c,
2291         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
2292         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
2293         tests (which uses the port's oclsExpense function)
2294         * src/SDCC.y,
2295         * src/SDCCast.c,
2296         * src/SDCCicode.c,
2297         * src/hc08/gen.c,
2298         * src/ds390/gen.c,
2299         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
2300
2301 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2302
2303         * src/SDCCcse.c (ifxOptimize),
2304         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
2305         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
2306         deleting the IFX iCode.
2307         * src/hc08/ralloc.c: reduced unneeded slocs
2308         * src/hc08/gen.c: fixed bug in asmopToBoolean
2309
2310 2003-11-04  Borut Razem <borut.razem AT siol.net>
2311
2312         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
2313           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
2314           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
2315           transferred to configure
2316
2317 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
2318
2319         Use headers defined in the C[++] standards:
2320         * sim/ucsim/gui.src/serio.src/fileio.cc
2321         * sim/ucsim/gui.src/serio.src/frontend.cc
2322         * sim/ucsim/gui.src/serio.src/main.cc
2323         * sim/ucsim/gui.src/serio.src/posix_signal.cc
2324         * support/Util/NewAlloc.c
2325         * as/hc08/lklibr.c
2326         * as/mcs51/lklibr.c
2327         * as/z80/aslist.c
2328         * as/z80/assym.c
2329
2330 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2331
2332         * Added MSVC projects for hc08 assembler and linker:
2333         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
2334         /as/hc08/link_hc08.dsp
2335
2336 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
2337
2338         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
2339
2340 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
2341
2342         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
2343
2344 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2345
2346         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
2347
2348 2003-10-31  Borut Razem <borut.razem AT siol.net>
2349
2350         * support/cpp2/cpplib.h,
2351           support/cpp2/cpplib.c,
2352           support/cpp2/cpplex.c,
2353           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
2354           to switch _asm block preprocessing on / off. Default is
2355           #pragma preproc_asm +
2356
2357 2003-10-31  Borut Razem <borut.razem AT siol.net>
2358
2359         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
2360           when outputting comment blocks (when executed with -C option) and
2361           _asm (SDCPP specific) blocks
2362
2363 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2364         
2365         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
2366
2367 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
2368
2369         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
2370
2371 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
2372
2373         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
2374         * src/SDCCast.c (decorateType): fixed bug #832664
2375
2376 2003-10-31  Borut Razem <borut.razem AT siol.net>
2377
2378         * support\cpp2\cpplex.c: fixed for SDCPP:
2379           comments(when executed with -C option) and _asm blocks
2380           were included even if they where in skipped #if block.
2381           Applied solution from GCC cpp 3.3.2
2382
2383 2003-10-31  Borut Razem <borut.razem AT siol.net>
2384
2385         * src/SDCC.lex: sdcc now understands both formats:
2386           '# <line_number> <file_name>' and
2387           '#line <line_number> <file_name>'
2388         * support/cpp2/cppmain.c: sdcpp now generates the standard
2389           '# <line_number> <file_name>' instead of former
2390           '#line <line_number> <file_name>'
2391
2392 2003-10-30  Borut Razem <borut.razem AT siol.net>
2393
2394         * support/cpp2/cpphash.h,
2395         * support/cpp2/cpplib.h
2396         * support/cpp2/cpplex.c,
2397         * support/cpp2/cppmain.c,
2398         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
2399
2400 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2401
2402         Fixed a number of problems revealed by bug #827883.
2403         * src/SDCCloop.c (loopInvariants): Spill location of the
2404         result operand should be recomputed if extracted from
2405         a loop. Also, don't extract assignments of an iTemp
2406         from a literal.
2407         * src/SDCCast.c (isConformingBody): loop reversal should
2408         not occur if the control variable is involved with a
2409         relational operator.
2410
2411 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
2412
2413         * .version: bumped to 2.3.6 to reflect the big improvements
2414         made by Erik and Klaus. Thanks!
2415
2416 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
2417
2418         Replaced the livrange code.
2419         * src/SDCClrange.c: added new LR code
2420         * src/SDCCloop.c,
2421         * src/SDCCBBlock.h: removed remainig parts from old LR code
2422         * src/ds390/ralloc.c,
2423         * src/ds390/gen.c: minor fixes to make it work with new code
2424
2425 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2426
2427         * as/hc08/asm.h,
2428         * as/hc08/lkrloc.c,
2429         * src/hc08/gen.c,
2430         * src/hc08/ralloc.c: Fix various warnings related to the hc08
2431         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
2432         (tweaked fix for bug #818696)
2433
2434 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2435
2436         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
2437
2438 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2439
2440         * src/SDCCmain.c,
2441         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
2442         * src/mcs51/gen.c (gencjneshort),
2443         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
2444         more efficient (per Scott Bronson's suggestion)
2445
2446 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2447
2448         Extended the semantics of the critical keyword to include
2449         individual statements. See RFE #827755 and #799831
2450         * src/SDCC.y
2451         * src/SDCCicode.c
2452         * src/SDCCopt.c
2453         * src/SDCCast.c
2454         * support/Util/SDCCerr.c
2455         * support/Util/SDCCerr.h
2456         * src/mcs51/gen.c
2457         * src/ds390/gen.c
2458         * src/hc08/gen.c
2459
2460 2003-10-19  Borut Razem <borut.razem AT siol.net>
2461
2462         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
2463
2464 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2465
2466         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
2467         Fixed bug #818696
2468         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
2469         and predecrement operand is displayed
2470
2471 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
2472
2473         * src/SDCCval.c (valMinus): fixed bug #826041
2474
2475 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2476
2477         Some hc08 related updates that I missed earlier
2478         * sim/ucsim/stypes.h
2479         * support/regression/ports/hc08/spec.mk
2480
2481 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2482
2483         New target "hc08" for the Motorola 68hc08 family of micros
2484
2485         * configure
2486         * configure.in
2487         * Makefile
2488         * src/hc08/*
2489         * src/SDCCmain.c
2490         * src/port.h
2491         * sim/ucsim/hc08.src/*
2492         * sim/ucsim/configure.in
2493         * src/ucsim/configure
2494         * sim/ucsim/packages_in.mk
2495         * as/hc08/*
2496         * as/Makefile
2497         * device/include/mc68hc908qy.h
2498         * device/lib/hc08/*
2499         * device/lib/Makefile.in
2500         * support/regression/ports/hc08/*
2501         * support/regression/Makefile
2502
2503 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2504
2505         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
2506         regression test
2507         * src/ds390/gen.c (genCast): fixed bug #821957
2508
2509 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
2510
2511         * device/lib/logf.c: "fixed" overlay bug
2512         * support/regression/ports/host/spec.mk: added m library
2513         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
2514         * support/regression/tests/float_trans: added (for Eric)
2515
2516 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
2517
2518         * src/mcs51/gen.c (genCpl): fixed bug
2519         http://sf.net/mailarchive/message.php?msg_id=6263915
2520
2521 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
2522
2523         * src/SDCCast.c (decorateType): added extended constant folding
2524         * src/SDCCsymt.c (computeType): cleanup
2525         * src/SDCCval.c (valShift): minor optimization
2526         * support/regression/tests/ast_constant_folding.c: added
2527
2528 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2529
2530         * src/SDCCmain.c: removed some unintended changes
2531
2532 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2533
2534         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
2535         * src/z80/gen.c: fixed part of bug #817589
2536         * src/SDCCsymt.c (checkFunction): fixed bug #817895
2537
2538 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
2539
2540         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
2541         * src/SDCCcflow.c
2542         * src/SDCCcse.c
2543         * src/SDCCdflow.c
2544         * src/SDCClabel.c
2545         * src/SDCClrange.c
2546         * src/SDCCmem.c
2547         * src/SDCCopt.c
2548         * src/SDCCpeeph.c
2549         * src/SDCCset.c
2550         * src/avr/ralloc.c
2551         * src/ds390/ralloc.c
2552         * src/izt/ralloc.c
2553         * src/mcs51/ralloc.c
2554         * src/pic/ralloc.c
2555         * src/pic16/ralloc.c
2556         * src/xa51/ralloc.c
2557         * src/z80/ralloc.c
2558         * src/z80/gen.c: removed unused label "release:"
2559
2560 2003-10-06  Borut Razem <borut.razem AT siol.net>
2561
2562         * src/SDCC.lex: removed definition of unused variables
2563           save_optimize and save_options
2564
2565 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
2566
2567         * clean.mk: removed '=' in "-maxdepth=1"
2568         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
2569         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
2570
2571 2003-10-06  Borut Razem <borut.razem AT siol.net>
2572
2573         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
2574           my_unput() replaced by unput()
2575
2576 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
2577
2578         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
2579         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
2580         type-punned pointer will break strict-aliasing rules"
2581         Old LR behaviour is again default; Klaus' LR can be choosen by
2582         defining the environment variable LRKLAUS
2583         * src/SDCCBBlock.h
2584         * src/SDCCloop.c
2585         * src/SDCClrange.c
2586         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
2587         * clean.mk: fixed removal of files in bin/CVS/
2588         * device/lib/clean.mk: fixed removal of directories small and large
2589         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
2590         * src/SDCCicode.c,
2591         * src/SDCCval.c: removed superflous test for pedantic
2592
2593 2003-10-05  Borut Razem <borut.razem AT siol.net>
2594
2595         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
2596           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
2597           message "unmatched #pragma SAVE and #pragma RESTORE"
2598
2599 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2600
2601         * doc/sdccman.lyx: various additions and updates (interrupts, inline
2602           assembly, critical functions, atomic, nojtbound)
2603
2604 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
2605
2606         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
2607         * src/SDCCBBlock.h
2608         * src/SDCCloop.c
2609         * src/SDCCloop.h
2610         * src/SDCClrange.c
2611
2612 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2613
2614         * src/z80/gen.h,
2615         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
2616         * src/mcs51/gen.h
2617         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
2618         * src/ds390/gen.h
2619         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
2620         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
2621         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
2622
2623 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2624
2625         * src/z80/gen.c (genRet): fixed bug #524753
2626         * src/z80/gen.c (genCast): fixed internal error on cast from
2627         pointer to long
2628         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
2629         fix for bug #477835 to the z80
2630         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
2631         for tracking iCodes in the peephole optimizer for z80
2632
2633 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2634
2635         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
2636         the other part of bug #814548
2637         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
2638
2639 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
2640
2641         * src/SDCCcse.c: fixed part of bug #814548
2642
2643 2003-09-28  Borut Razem <borut.razem AT siol.net>
2644
2645         * src/asm.c: rewrite of printILine() to use temporary file instead
2646           a pipe
2647         * src/xa51/main.c: commented out declaration of int rewinds
2648
2649 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2650
2651         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
2652
2653 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2654
2655         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
2656         * src/asm.c (printILine): Fixed bug #811015
2657
2658 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2659
2660         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
2661         freeing.
2662
2663 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2664
2665         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
2666         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
2667         to correctly handle general case of AOP_PAIRPTR
2668         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
2669
2670 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2671
2672         * src/mcs51/ralloc.c (fillGaps),
2673         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
2674         register positioning bug)
2675
2676 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
2677
2678         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
2679
2680 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2681
2682         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
2683         genCodePointerGet, genGenPointerGet, genFarPointerSet,
2684         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
2685         (ralloc doesn't intentionally do this now, but perhaps later)
2686         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
2687         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
2688         register positioning bugs (Fixed bug #762602 and #795325)
2689         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
2690         (Fixed bug #808779)
2691         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
2692         lines that --i-code-in-asm generates
2693
2694 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2695
2696         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
2697         trying to fclose a FILE* that was already closed.
2698
2699 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2700
2701         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
2702         of const struct should be treated as if const themselves)
2703
2704 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
2705
2706         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
2707
2708 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2709
2710         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
2711         Unix (/n) and DOS (/r/n) line terminations.
2712
2713 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2714
2715         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
2716         bug #613775
2717
2718 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2719
2720         * src/mcs51/gen.c (genFunction, genEndFunction),
2721         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
2722         and restore of EA so that stack offsets to parameters are
2723         correct when using both critical and reentrant/stack-auto.
2724         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
2725         size (can be triggered in error if sloc is shared between
2726         different sized objects)
2727         * device/include/float.h: fixed macros to explicitly use
2728         unsigned long where needed
2729
2730 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
2731
2732         Feature req. 799831: added code to allow nesting of critical functions
2733         * src/mcs51/gen.c (genFunction, genEndFunction)
2734         * src/ds390/gen.c (genFunction, genEndFunction)
2735
2736 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2737
2738         * src/SDCCsymt.c (sclsFromPtr),
2739         * src/SDCCsymt.h,
2740         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
2741         support for standard C idiom of memory mapped variables; for
2742         example, *((xdata int*)0x1234) = 1 is now internally equivalent
2743         to xdata int at 0x1234 tempvar = 1.
2744         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
2745         provided by Akiya ISHIDA
2746
2747 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
2748
2749         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
2750         * src/SDCCval.c (constVal): added reduction from int to char
2751         * src/SDCCval.c (valMult, valDiv): fixed sign handling
2752         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
2753         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
2754         to ignore the sign
2755         * support/regression/tests/shifts.c: fixed
2756
2757 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2758
2759         * src/z80/gen.c (genXor): Fixed bug #805445
2760
2761 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2762
2763         Fixed bug #621531 (const & volatile confusion in the type chain).
2764         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
2765         refer to the const or volatile state of the pointer itself.
2766
2767         * src/SDCCast.c
2768         * src/SDCCglue.c
2769         * src/SDCCicode.c
2770         * src/SDCCsymt.c
2771         * src/SDCCval.c
2772         * src/SDCC.y
2773         * src/SDCCsymt.h
2774         * src/pic/gen.c
2775         * src/pic/ralloc.c
2776         * src/pic16/gen.c
2777         * src/pic16/ralloc.c
2778         * support/regression/tests/const.c
2779
2780 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2781
2782         When checking for duplicated modules, use absolute paths
2783         instead of relative paths.  Files changed:
2784
2785         * as/mcs51/lklib.c
2786         * link/z80/lklib.c
2787
2788 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2789
2790         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
2791
2792 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2793
2794         * device/include/string.h: added size_t typedef, changed
2795         prototypes to use size_t, eliminated separate reentrant and
2796         non-reentrant declarations, added _memmove declaration
2797         * device/lib/_memcpy.c: changed to use size_t instead of int,
2798         changed /4 to >>2 to avoid division library call
2799         * device/lib/_memcmp.c,
2800         * device/lib/_memset.c,
2801         * device/lib/_strncat.c,
2802         * device/lib/_strncpy.c,
2803         * device/lib/_strncmp.c: changed to use size_t instead of int
2804         * device/lib/_memmove.c: new file (fixed bug #772294)
2805         * device/lib/Makefile.in: added _memmove.c
2806         * device/lib/z80/asm_strings.s: fixed bug #772290
2807         * support/regression/tests/bitfields.c: attempt to fix host assertion
2808         failure on amd64-unknown-linux2.2
2809
2810 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2811
2812         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
2813         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
2814         * as/z80/asmain.c (main): fixed bug #801766
2815
2816 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
2817
2818         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
2819         compilers
2820
2821 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2822
2823         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
2824         reported in bug #800609
2825
2826 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
2827
2828         * Top header beautifications in src/pic16 directory:
2829           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
2830           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
2831           pcoderegs.h, ralloc.c, ralloc.h
2832         * main.c: added top header and GPL license notice
2833         * pcode.c: fixed the if-conditional warning
2834  
2835 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
2836
2837         * device/lib/_mullong.c: replaced int by short for gcc
2838
2839 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2840
2841         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
2842         and JUMPTABLE iCodes properly now (worked by accident before)
2843         * src/mcs51/gen.c (leftRightUseAcc),
2844         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
2845         iCode properly now. Use getSize instead of nRegs since a & b
2846         aren't part of the nRegs tally.
2847
2848 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
2849
2850         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
2851         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
2852           before instructions that use the _STATUS register
2853
2854 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
2855
2856         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
2857         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
2858         fetching of the pointer
2859         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
2860         copied from genNearPointerSet()
2861         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
2862         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
2863         If they pop r0/r1 they must be called in the opposite order than aopOp().
2864         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
2865         (resp. --stack-auto), prepared for --xstack
2866
2867 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2868
2869         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
2870
2871 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
2872
2873         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
2874         these ports have their own __sdcc_external_start()
2875
2876 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
2877
2878         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
2879         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
2880         type for bits was changed. It resulted in bit variables becoming
2881         global, which is not permitted in PIC 14 assembly output.
2882
2883 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2884
2885         * doc/sdccman.lyx: various additions and updates. Rearranged sections
2886
2887 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2888
2889         Z80 and MCS51 linkers complaint if a public symbol is defined
2890         in more than one library module:
2891
2892         * as/mcs51/lklib.c
2893         * link/z80/lklib.c
2894         * as/mcs51/Makefile.in
2895
2896 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2897
2898         A few small changes that speed up the peephole optimizer.
2899
2900         * src/SDCCpeeph.c
2901
2902 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2903
2904         Try to make the peephole optimizer smarter by maintaining
2905         an association between the assembly source code and the
2906         iCodes that originated them. Put this information to use
2907         with a new peephole rule condition "notVolatile" so that
2908         the rules can be aggressive yet still safe.
2909
2910         * src/SDCCpeeph.c
2911         * src/SDCCpeeph.h
2912         * src/mcs51/gen.c
2913         * src/mcs51/peeph.def
2914
2915 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2916
2917         Fixed bug #741761
2918
2919         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
2920         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
2921         if the left or right operand symbols have the accuse flag set.
2922
2923 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2924
2925         Changed the type of the result of the ! (NOT) operator to char;
2926         previously it returned the same type as the source. This allows
2927         us to eliminate all the genFloatNot functions (all of its target
2928         implementations were very buggy) since !float can use the same
2929         code as !long now.
2930
2931         * src/SDCCicode.c (ast2iCode): ! returns char
2932         * src/mcs51/gen.c (genNot, genNotFloat),
2933         * src/ds390/gen.c (genNot, genNotFloat),
2934         * src/z80/gen.c (genNot, genNotFloat),
2935         * src/pic/gen.c (genNot, genNotFloat),
2936         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
2937
2938 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
2939
2940         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
2941         1. Interrupt would not compile properly. Ensure PCLATH register is saved
2942            during interrupts. Ensure WSAVE is located at a shared bank address.
2943         2. Fixed page selection in some places
2944         3. Fixed BTFSS/C to where necessary use registers directly and not simply
2945            the registers name strings.
2946         4. Fixed "signed / unsigned compare" compiler warnings.
2947         5. The PIC port manages its own allocation of the general purpose
2948            registers, but makes no attempt to reuse them. As a result when
2949            compiling it soon runs out of general purpose registers. Some
2950            additional code was added to the files pcode.c and device.c to walk
2951            through the function call tree and rename the registers so that they
2952            get reused.
2953
2954         * src/pic/device.c
2955         * src/pic/gen.c
2956         * src/pic/glue.c
2957         * src/pic/pcode.c
2958         * src/pic/pcode.h
2959         * src/pic/ralloc.c
2960         * src/pic/ralloc.h
2961         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
2962         genPlus() & genMinus() when the result is the same as left or right
2963
2964 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2965
2966         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
2967
2968 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2969
2970         Made bitfield a distinct type from bit so that bitfields
2971         convert as per ANSI C and bits retain their traditional
2972         boolean style behaviour. Implemented bitfield support in
2973         the z80 port.
2974
2975         * src/SDCCsymt.h,
2976         * src/SDCCsymt.c,
2977         * src/SDCCast.c,
2978         * src/cdbFile.c,
2979         * src/mcs51/gen.c,
2980         * src/ds390/gen.c: bit v bitfield split
2981         * src/z80/gen.c: New support for bitfields
2982         * support/regression/tests/bitfields.c: reenabled z80,
2983         added more tests
2984
2985 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2986
2987         Rules 246.x, 247.x relate to bitfields, the others speed up
2988         access to xdata mapped I/O devices.
2989
2990         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
2991
2992 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2993
2994         Cleaned up genPackBits and genUnpackBits and added two helper
2995         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
2996         for literal assignments in genPackBits (thanks to Frieder for
2997         reminding me).
2998
2999         * src/mcs51/gen.c
3000         * src/ds390/gen.c
3001
3002 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3003
3004         Fixed bug #748310 (pointer to function type mishandled when the
3005         function name is omitted). Also fixed a SIGSEGV when a function
3006         attribute (reentrant, etc) is used on a non-function or on a
3007         function but misplaced before the parameter list.
3008
3009         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
3010         bug #748310
3011         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
3012         * support/Util/SDCCerr.h,
3013         * support/Util/SDCCerr.c: Added func attr misuse error msg
3014
3015 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
3016
3017         Fixed bug #787649 by anonymous
3018         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
3019         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
3020
3021 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3022
3023         Fixed numerous bitfield problems.
3024
3025         * src/SDCC.y: More bitfield related error checking
3026         * src/SDCCsymt.h,
3027         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
3028         * support/Util/SDCCerr.h,
3029         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
3030         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
3031         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
3032         * support/regression/tests/bitfields.c: tests added
3033
3034 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3035
3036         Made the constant following the "interrupt" keyword optional. If
3037         omitted, the function will not automatically be given an entry
3038         in the interrupt vector table (similar to #pragma NOIV, but
3039         less syntacticly kludgy). The interrupt number is also now
3040         range checked. Also fixed a bug in the high order bit example
3041         in the manual.
3042
3043         * src/SDCC.y
3044         * src/SDCCmem.c
3045         * src/SDCCglue.c
3046         * src/SDCCsymt.h
3047         * support/Util/SDCCerr.c
3048         * support/Util/SDCCerr.h
3049         * doc/sdccman.lyx
3050
3051 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
3052
3053         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
3054         * src/SDCCicode.c (operandOperation): rewritten some ops
3055         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
3056         * src/SDCCsymt.c (computeType): literals are handled the same way as any
3057         other type
3058         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
3059         be re-activated by defining REDUCE_LITERALS)
3060         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
3061         unsigned, but are signed by default
3062         * src/SDCCval.c (constVal): rearranged
3063         * src/SDCCval.c (valMod): preliminary fix
3064         * src/SDCCval.c (valCastLiteral): use TYPE_* types
3065         * support/regression/literalop.c: added, work in progress
3066
3067 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3068
3069         Generate warnings for useless declarations like "char data;"
3070         that don't do what new users expect.
3071
3072         * src/SDCC.y
3073         * support/Util/SDCCerr.h
3074         * support/Util/SDCCerr.c
3075
3076 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
3077
3078         * src/SDCCval.c (valMult): fix overflow detection of negative int
3079
3080 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3081
3082         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
3083
3084         Changes to support big endian targets:
3085
3086         * src/ports.h
3087         * src/SDCCglue.c
3088         * src/avr/main.c
3089         * src/ds390/main.c
3090         * src/izt/i186.c
3091         * src/mcs51/main.c
3092         * src/pic/main.c
3093         * src/pic16/main.c
3094         * src/xa51/main.c
3095         * src/z80/main.c
3096
3097 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
3098
3099         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
3100         * device/lib/time.c: fixed warning "integer overflow in expression"
3101
3102 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
3103
3104         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
3105         * src/SDCCval.c (constVal): changed default to signed; hex and octal
3106         constants are unsigned; added recognition of "u" flag for unsigned
3107         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
3108         * src/SDCCval.c (valDiv, valMod): fixed signdness
3109         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
3110         signedness of modulo, left and right shift
3111         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
3112         * support/Util/SDCCerr.h: added warning W_INT_OVL
3113         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
3114         * src/SDCCast.c (ast_print): improved output of constants
3115
3116 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3117
3118         Fixed some warnings when building with MSVC:
3119
3120         * as\mcs51\asdata.c
3121         * as\z80\asdata.c
3122         * as\mcs51\asm.h
3123         * as\z80\asm.h
3124         * link\z80\aslink.h
3125         * link\z80\lkdata.c
3126         * link\z80\lkeval.c
3127         * link\z80\lkgb.c
3128         * link\z80\lkihx.c
3129         * link\z80\lks19.c
3130         * link\z80\lksym.c
3131         * support\cpp2\cpplib.c
3132         * src\ds390\gen.c
3133         * src\mcs51\gen.c
3134     
3135 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
3136
3137         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
3138
3139 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3140
3141         * support\librarian\clean.mk: Do not remove Makefile.
3142         * support\librarian\Makefile: added.
3143
3144 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3145
3146         Added librarian to MSVC build:
3147         * all.dsp
3148         * sdcc.dsw
3149         * support\librarian\librarian.dsp
3150
3151         'configure' not needed for librarian, removed:
3152         * support\librarian\configure
3153         * support\librarian\configure.in
3154         * support\librarian\config_in.h
3155         * support\librarian\Makefile.in
3156
3157         Hopefully these ones built the librarian and the rest of sdcc properly:
3158         * Makefile
3159         * Makefile.common.in
3160
3161         Messed up 'configure', so revert to previous version:
3162         * configure
3163         * configure.in
3164
3165 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
3166
3167         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
3168         there, while the mantissa of a double is "only" 53 bits wide.
3169
3170 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3171
3172         Adding sdcclib to the build.  MSVC project coming soon.
3173         Files added/changed:
3174
3175         * support\librarian\clean.mk
3176         * support\librarian\configure
3177         * support\librarian\configure.in
3178         * support\librarian\config_in.h
3179         * support\librarian\Makefile.bcc
3180         * support\librarian\Makefile.in
3181         * support\librarian\sdcclib.c
3182         * Makefile.bcc
3183         * Makefile
3184         * Makefile.common.in
3185         * configure
3186         * configure.in
3187
3188 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3189
3190         Linker now complaints if linked modules have conflicting options, for
3191         example, one compiled using --model-large and another one compiled with
3192         --model-small.  The following files were modified:
3193
3194         * as\mcs51\asdata.c
3195         * as\mcs51\aslink.h
3196         * as\mcs51\asm.h
3197         * as\mcs51\asmain.c
3198         * as\mcs51\asout.c
3199         * as\mcs51\i51pst.c
3200         * as\mcs51\lkdata.c
3201         * as\mcs51\lklibr.c
3202         * as\mcs51\lkmain.c
3203         * as\z80\asdata.c
3204         * as\z80\asm.h
3205         * as\z80\asmain.c
3206         * as\z80\asout.c
3207         * as\z80\z80pst.c
3208         * link\z80\aslink.h
3209         * link\z80\lkdata.c
3210         * link\z80\lklibr.c
3211         * link\z80\lkmain.c
3212         * src\SDCCglue.c
3213
3214 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3215
3216         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
3217         as/mcs51/lklibr.c: Generate a warning when a library is not found.
3218
3219 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
3220
3221         * src/z80/mappings.i: fix _mul[us][int,long] entries
3222
3223 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3224
3225         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
3226
3227 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
3228
3229         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
3230         * support/regression/tests/bitopcse.c: added
3231         fixed warning:
3232         * src/avr/gen.c:
3233         * src/pic/gen.c:
3234         * src/pic16/gen.c:
3235         * src/z80/gen.c:
3236         * src/xa51/gen.c:
3237
3238 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3239
3240         added support for new library format to z80, gbz80 linkers:
3241         *link/z80/aslink.h
3242         *link/z80/lklex.c
3243         *link/z80/lklib.c
3244         *link/z80/lklist.c
3245
3246 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
3247
3248         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
3249         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
3250
3251 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
3252
3253         added DUMMY_READ_VOLATILE:
3254         * src/SDCC.y:
3255         * src/avr/gen.c:
3256         * src/xa51/gen.c:
3257         * src/z80/gen.c:
3258         * src/pic/gen.c:
3259         * src/pic16/gen.c:
3260         * src/mcs51/gen.c:
3261         * src/ds390/gen.c:
3262         * src/SDCCcse.c (algebraicOpts): many improvements
3263         * src/SDCCcse.h: removed algebraicOpts()
3264         * src/SDCCicode.c (picDummyRead): added
3265
3266 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3267
3268         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
3269         "Insufficient space in data memory".
3270
3271 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3272
3273         * src/mcs51/gen.c: fixed bug #771358
3274         * src/z80/gen.c: fixed bug #759087
3275
3276 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
3277
3278         * src/pic16/glue.c: minor cleanup by Vangelis
3279
3280 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3281
3282         * device/include/regc515c.h: fixed #758477
3283         * device/lib/_gptrget.c: saving some cycles in generic pointer get
3284         * device/lib/_gptrput.c: saved a few bytes
3285         * my tab spacing is 8, yours too?)
3286         * device/lib/_ser.c: process RX bytes earlier than TX bytes
3287         * device/lib/serial.c: process RX bytes earlier than TX bytes
3288         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
3289
3290 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3291
3292         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
3293
3294 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3295
3296     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
3297
3298 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
3299
3300         * device/lib/Makefile.in: bad fix, reverted to 1.43
3301
3302 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
3303
3304         * device/lib/Makefile.in: added missing z80 object files
3305
3306 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
3307
3308         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
3309         pic16 progress by Vangelis:
3310         * src/SDCCglobl.h:
3311         * src/SDCCmain.c:
3312         * src/pic/Makefile:
3313         * src/pic:
3314         * pic/Makefile:
3315         * pic16/device.c:
3316         * pic16/device.h:
3317         * pic16/gen.c:
3318         * pic16/gen.h:
3319         * pic16/genarith.c:
3320         * pic16/glue.c:
3321         * pic16/main.c:
3322         * pic16/pcode.c:
3323         * pic16/pcode.h:
3324         * pic16/pcodepeep.c:
3325         * pic16/peeph.def:
3326
3327 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3328
3329     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
3330
3331 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3332
3333     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
3334     added gbz80 build to MSVC project.
3335     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
3336     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
3337     from 8051 stuff and setup so it links using a .lnk file.
3338
3339 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3340
3341     * support/librarian/sdcclib.c: sdcc librarian.
3342     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
3343     with sdcclib.
3344
3345 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3346
3347     * as/mcs51/lkmain.c: properly handle extensions in function afile.
3348
3349 2003-07-02  Borut Razem <borut.razem AT siol.net>
3350
3351         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
3352         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
3353         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
3354         src/xa51/main.c, src/z80/main.c:
3355         virtualization of glue() function: each port has it's own glue function,
3356         which is accessed by do_glue function pointer in PORT.general structure
3357
3358 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
3359
3360         * DS800C400 fun, improved ROM interface and tinibios.
3361
3362 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
3363
3364         * More support for DS80C400. Now includes beginning of interface to ROM.
3365
3366 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
3367
3368         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
3369
3370 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3371
3372         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
3373
3374 2003-06-19  Borut Razem <borut.razem AT siol.net>
3375
3376         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
3377
3378 2003-06-19  Borut Razem <borut.razem AT siol.net>
3379
3380         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
3381         fixed Z80 port - crt0.o: cannot open.
3382
3383 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
3384
3385         * support/Util/MySystem.c (merge_command): revert bad fix
3386
3387 2003-06-18  Borut Razem <borut.razem AT siol.net>
3388
3389         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
3390
3391 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3392
3393         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
3394         option --use-stdout sends errors to stdout instead of stderr.
3395
3396 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
3397
3398         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
3399
3400 2003-06-15  Borut Razem <borut.razem AT siol.net>
3401
3402         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
3403         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
3404         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
3405         fixed width array of pointers replaced with sets;
3406         multiple include and lib paths ared transferred to preprocessor and linker
3407         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
3408         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
3409         fixed width array of pointers
3410         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
3411         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
3412         fixupPath(), getPathDifference()
3413         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
3414         fixed width array of pointers
3415
3416 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
3417
3418         * src/pic16/ralloc.c: fix warnings
3419         * src/pic16/pcode.c: fix warning
3420
3421 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
3422
3423          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
3424         know all the details, but essentially this set of changes enable
3425         the pic16 port to generate movff instructions and generate assembler
3426         directives,
3427         * src/SDCCmain.c:
3428         * src/pic16/gen.c:
3429         * src/pic16/glue.c:
3430         * src/pic16/pcode.c:
3431         * src/pic16/device.c:
3432         * src/pic16/main.c:
3433         * src/pic16/pcode.h:
3434         * src/pic16/pcoderegs.c:
3435         * src/pic16/ralloc.c:
3436         * src/pic16/ralloc.h:
3437
3438 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3439
3440         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
3441         added option --vc, so sdcc errors and warnings are compatible with
3442         Microsoft Visual Studio.
3443
3444 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3445
3446         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
3447           device/lib/libfloat.lib: added atof function.
3448
3449 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
3450
3451         * doc/sdccman.lyx: updated to Lyx 1.3
3452         * doc/cdbfileformat.lyx: updated to Lyx 1.3
3453         * doc/test_suite_spec.lyx: updated to Lyx 1.3
3454         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
3455
3456 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
3457
3458         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
3459
3460 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3461
3462         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
3463           additions to the "related tools/documentation" section
3464
3465 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
3466
3467         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
3468
3469 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
3470
3471         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
3472         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
3473
3474 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
3475
3476         * doc/sdccman.lyx: fix double dash and other minor things
3477         * doc/Makefile: fix double dash
3478
3479 2003-05-28  Karl Bongers(patches from Martin Helmling)
3480         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
3481           condition and ignore commands.
3482
3483 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3484
3485         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
3486           is in parts still quite out of date, I did changes as far as I felt makes sense
3487           for a non-native english speaker.
3488           Please feel free to add to the manual or to correct my changes.
3489         * doc/Makefile: undid touching the date of intermediate tex files.
3490
3491 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3492
3493         * doc/sdccman.lyx: Manual has an index now
3494
3495 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
3496
3497         Finalize muluint/mulsint and mululong/mulslong merging:
3498         * device/lib/_mulint.c
3499         * device/lib/_mullong.c
3500         * device/lib/gbz80/mul.s
3501         * device/lib/gbz80/stubs.s
3502         * device/lib/z80/mul.s
3503         * device/lib/z80/stubs.s
3504         * src/SDCCsymt.c (initCSupport)
3505
3506 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3507
3508         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
3509         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
3510           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
3511           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
3512           instead of /Zm500.
3513
3514 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3515
3516         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
3517           the regression tests I'm not brave enough to enable 245.b, 245.c
3518         * doc/sdccman.lyx: added latex preamble for hyperref package.
3519           Using pdflatex this will give you a hyperlinked pdf file with
3520           bookmarks. (prepend '%' before /usepackage if this breaks something)
3521
3522 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3523
3524          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
3525          
3526 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
3527
3528         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
3529
3530 2003-05-21    <johan AT balder>
3531
3532         * src/SDCCglue.c (printIval): fixed bug #739934
3533
3534 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
3535
3536         Applied patch from bug 737905 (renamed yylineo to mylineno):
3537         * src/altlex.c
3538         * src/SDCCast.c
3539         * src/SDCglobl.h
3540         * src/SDCC.lex
3541         * src/SDCCsymt.c
3542         * src/SDCCval.c 
3543         * src/pic16/pcode.c: Cleaned warnings
3544         * src/pic16/pcodeflow.c: Cleaned warnings
3545         * src/pic16/pcoderegs.c: Cleaned warnings
3546
3547 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
3548
3549         * src/pic16/pcode.c: Cleaned warnings
3550         * src/pic16/pcodepeep.c: Cleaned warnings
3551         * src/pic16/ralloc.c: Cleaned warnings
3552
3553 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
3554
3555         * doc/sdccman.lyx: fixed bug 739745
3556         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
3557
3558 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
3559
3560         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
3561         it can be defined with CFLAGS when running configure
3562         * src/SDCCmain.c: fixed compiling + linking with object files
3563
3564 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
3565
3566         * configure.in: configure for pic16 port,
3567             added --disable-pic16-port
3568         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
3569         * src/SDCCmain.c: linkOptions is changed to set *,
3570             added if/endif conditional macros to remove options help
3571             messages from optionsTable when a port is not configured, added
3572             support for the PIc16 port in the ports table, when executing
3573             the compiler with no port specified on command line, a default
3574             port is selected with the new macro DEFAULT_PORT which is
3575             defined in port.h, in setDefaultOptions() linkOptions is removed
3576             from initialization assignment, since now it is a set,
3577             parseCmdLine uses setParseWithComma for linkOptions, in
3578             linkEdit() linkOptions are accessed with new function indexSet()
3579             which returns the i'th item of a set variable. See SDCCset.c, in
3580             linkEdit() when calling buildCmdLine(), added linkOptions as
3581             last argument. Now users can pass arguments to gplink via the
3582             -Wl option, main() uses pic16glue() to glue up pic16 programs
3583         * src/SDCCpeeph.c: various changes to support pic16
3584         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
3585             return the i'th item of the set
3586         * src/SDCCset.h: added function prototype for indexSet()
3587         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
3588         * src/clean.mk: added pic16 in CLEANALLPORTS variable
3589         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
3590             added macro DEFAULT_PORT
3591         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
3592         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
3593             generated
3594         * src/pic16/glue.c: commented out some error producing lines
3595         * src/pic16/main.c: __config directives are commented out to stop
3596             gpasm complaining and test the linkage with gplink, _linkCmd and
3597             _asmCmd changed to be more gplink and gpasm friendly
3598         * src/pic16/peeph.def: peep rule 3 is commented out, since it
3599             produced an error when parsed, peep rule 12 is added to utilize
3600             movff, but it is commented out since the pCode does not support
3601             yet a command with 2 address arguments
3602
3603 2003-05-18    <johan AT balder>
3604
3605         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
3606         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
3607 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
3608
3609         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
3610   Added feature to script commands from file.
3611
3612 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
3613
3614         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
3615         * src/SDCCutil.c: include ctype.h for win32
3616
3617 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
3618
3619         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
3620
3621 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
3622
3623         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
3624   Fixed so you can set breakpoints prior to run, run does not stop
3625   on entry now.  Add tbreak.  Other enhancements and fixes for use
3626   with ddd.
3627
3628 2003-05-12  Borut Razem <borut.razem AT siol.net>
3629
3630         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
3631
3632 2003-05-11  Borut Razem <borut.razem AT siol.net>
3633
3634         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
3635         the path of bin directory, so that PATH is the only env. variable, which has to be set
3636         in case of standard installation.
3637         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
3638         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
3639         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
3640
3641 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
3642
3643         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
3644         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
3645         temp files are in the port dir; clean the gen/test directory when
3646         generating new test.c
3647         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
3648         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
3649         * support/regression/tests/zeropad.c: added
3650
3651 2003-05-09    <johan AT balder>
3652
3653         * src/SDCCglue.c: fixed bug #597940
3654
3655 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
3656
3657         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
3658   cache sfr, optimize next,step, fix off by one sourceline,
3659   support ddd list function.
3660         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
3661
3662 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
3663
3664         * support/regression/HTMLgen.py: added compare_s2f()
3665         * support/regression/Makefile: redo 1.27
3666         * support/regression/generate-cases.py: redo 1.5
3667
3668 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
3669
3670         * support/regression/tests/float.c: workaround 33 bit hex constant
3671         * support/regression/tests/simplefloat.c: fix division for host
3672
3673 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
3674
3675         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
3676         that tame's the PIC's over-aggressive optimizer.
3677
3678 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3679
3680          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
3681          support for MSVC.
3682          
3683 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
3684
3685         Initial support for DS80C400. "Hello world" runs on TINIm400
3686         (with polled I/O).
3687
3688 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
3689
3690          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
3691          * Some notes on ddd usage added in debugger/README
3692          Martin Helmling adding more features and fixes for ddd GUI debugger.
3693          Code added for nexti, stepi, up, down, and other adjustments.
3694
3695 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
3696
3697         * src/pic/pCodepeep.c non-wildcard asmops are now handled
3698         * src/pic/peeph.def Added two rules to optimize carry manipulation
3699         * src/pic/* removed debug printfs
3700
3701 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
3702
3703         * debugger/mcs51/cmd.c: added header newalloc.h
3704
3705 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
3706
3707         * as/Makefile: new EXEEXT
3708         * as/z80/Makefile: remove trailing slash of BUILDIR
3709         * as/z80/clean.mk: new EXEEXT
3710         * Makefile.common.in: add to CFLAGS (and others), don't replace it
3711         * support/cpp2/Makefile.in: new EXEEXT
3712         * src/pic/glue.c (pic14emitRegularMap): fixed warning
3713
3714 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
3715
3716         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
3717         EXEEXT was introduced to fix all related problems with targets
3718         "clean", "install" and "uninstall"; a couple of further flaws
3719         especially with "clean" have been fixed too
3720         * as/mcs51/Makefile.in
3721         * as/mcs51/clean.mk
3722         * as/z80/Makefile
3723         * Makefile
3724         * clean.mk
3725         * debugger/mcs51/Makefile.in
3726         * debugger/mcs51/clean.mk
3727         * link/z80/Makefile
3728         * link/z80/Makefile.in
3729         * link/z80/clean.mk
3730         * link/Makefile
3731         * packihx/Makefile.in
3732         * packihx/clean.mk
3733         * sim/ucsim/Makefile
3734         * sim/ucsim/clean.mk
3735         * sim/ucsim/avr.src/Makefile.in
3736         * sim/ucsim/avr.src/clean.mk
3737         * sim/ucsim/s51.src/Makefile.in
3738         * sim/ucsim/s51.src/clean.mk
3739         * sim/ucsim/xa.src/Makefile.in
3740         * sim/ucsim/xa.src/clean.mk
3741         * sim/ucsim/z80.src/Makefile.in
3742         * sim/ucsim/z80.src/clean.mk
3743         * sim/ucsim/main_in.mk
3744         * sim/ucsim/packages_in.mk
3745         * sim/ucsim/gui.src/Makefile.in
3746         * sim/ucsim/gui.src/serio.src/Makefile.in
3747         * sim/ucsim/gui.src/serio.src/clean.mk
3748         * src/Makefile.in
3749         * src/clean.mk
3750         * support/cpp2/Makefile.in
3751         * support/cpp2/clean.mk
3752         * support/makebin/Makefile
3753         * support/makebin/clean.mk
3754         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
3755         * doc/sdccman.lyx: --program-suffix no longer needed
3756
3757 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
3758
3759          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
3760          Martin Helmling added support for ddd GUI debugger.
3761          Code added to display assembly, set variables, and other commands
3762          to interface to ddd.
3763
3764 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
3765
3766         * as/Makefile: fix target clean
3767         * as/clean.mk: fix target clean
3768         * as/z80/clean.mk: fix target clean
3769
3770 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
3771
3772         * Makefile.common.in: added  AT EXEEXT AT 
3773         * configure.in: removed all mingw32 stuff
3774         * configure: rebuilt from configure.in
3775         * doc/sdccman.lyx: updated section "installation"
3776         * support/scripts/sdcc_mingw32: adapted to configure
3777         * support/scripts/sdcc_cygwin_mingw32: added
3778
3779 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
3780
3781         * src/pic Added object file support for the PIC port
3782         * src/pic Applied patch from Craig Franklin (this started the object file support)
3783         * src/regression Updated the PIC regression tests for object files
3784
3785 2003-04-20  Borut Razem <borut.razem AT siol.net>
3786
3787         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
3788           lklex.c: In function `getfid':
3789           lklex.c:203: warning: array subscript has type `char'
3790         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
3791           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
3792         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
3793           stack handling macros
3794
3795 2003-04-19  Borut Razem <borut.razem AT siol.net>
3796
3797         * "handling space characters in file path" task:
3798         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
3799         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
3800         * support/Util/MySystem.h: make it self-sufficient
3801         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
3802           src/z80/main.c, sdcc/as/mcs51/lklex.c:
3803           handling space characters in file path
3804         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
3805           (it will be used by assemblers, which have their own includes, e.g. gpasm)
3806         * support/Util/MySystem.c: handling space characters in executable's path
3807
3808 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
3809
3810         * as/z80/Makefile: fix permanent rebuild of z80
3811         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
3812         * support/regression/tests/bitfields.c: added Johan's bitfields.c
3813
3814 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
3815
3816         * src/SDCCopt.c: add special case optimization to replace modulo by
3817           a power of two with a bitwise AND.
3818
3819 2003-04-18    <johan AT balder>
3820
3821         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
3822
3823 2003-04-17    <johan AT balder>
3824
3825         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
3826         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
3827
3828 2003-04-13  Borut Razem <borut.razem AT siol.net>
3829
3830         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
3831         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
3832           fixed mingw problem in adl_NORMALIZE_PATH
3833
3834 2003-04-12  Borut Razem <borut.razem AT siol.net>
3835
3836         * fixed "#pragma SAVE/RESTORE can not be nested":
3837         * src/SDCC.lex: reworked pragma handling functions
3838         * sdcc/src/SDCCglobl.h: reworked stack handling macros
3839         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
3840
3841 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
3842
3843         * src/SDCCutil.c (pathEquivalent): defined but not used
3844         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
3845         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
3846         * configure: rebuilt from configure.in
3847         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
3848         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
3849         * device/include/Makefile.in: replace sdcc_datadir
3850         * device/lib/Makefile.in: replace sdcc_datadir
3851         * Makefile.common.in: add LDFLAGS from configure
3852         * packihx/Makefile.in: use LDFLAGS
3853         * src/Makefile.in: use LDFLAGS
3854         * support/cpp2/Makefile.in: add LDFLAGS from configure
3855         * support/makebin/Makefile: use LDFLAGS
3856         * .version: bumped version number to 2.3.5
3857
3858 2003-04-12  Borut Razem <borut.razem AT siol.net>
3859
3860         * completed "different paths" task:
3861         * src/SDCCmacro.c: fixed bug in handling quotes
3862         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
3863         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
3864
3865 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
3866
3867         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
3868
3869 2003-04-11 kevin Vigor <kevin AT vigor.nu>
3870
3871         * ds390/gen.c ds390/peeph.def: fix bug 706781
3872
3873 2003-04-11  Borut Razem <borut.razem AT siol.net>
3874
3875         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
3876
3877 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
3878
3879         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
3880         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
3881          set - this bit used to not be set...).
3882         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated 
3883           bad code in PIC Port
3884         * src/regression/and2.c added to test bug 609268
3885         * src/regression/Makefile added and2.c to regression test
3886
3887
3888 2003-04-08    <johan AT CP255758-A>
3889
3890         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
3891         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
3892         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
3893
3894 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
3895
3896         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
3897         fix bug #487815
3898         * support/cpp2/Makefile.in: fix bug #487815
3899         * configure: rebuilt from configure.in
3900         * Makefile.common.in: docdir changed, new path suffixes
3901         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
3902         * sdcc_vc_in.h: reflect changes from sdccconf.h
3903         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
3904         * src/SDCCutil.h: remove BINDIR hack
3905         * doc/sdccman.lyx: update new path hierarchy
3906
3907 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
3908
3909         * src/SDCCpeeph.c: added okToRemoveSLOC test
3910
3911 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
3912
3913         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
3914
3915 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
3916
3917         * src/SDCCpeeph.c: added labelIsReturnOnly test
3918         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
3919
3920 2003-04-05    <johan AT balder>
3921
3922         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
3923         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
3924         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
3925         * src/SDCCast.c: fixed a warning
3926         * src/SDCCast.h: fixed a warning
3927         * src/SDCCicode.c (operandFromAst): fixed a warning
3928
3929 2003-04-04    <johan AT balder>
3930
3931         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
3932         * src/SDCCast.c (decorateType): fixed bug #715076
3933         * src/SDCC.y: fixed bug #702907
3934
3935 2003-04-03    <johan AT balder>
3936
3937         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
3938         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
3939         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
3940         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
3941         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
3942
3943 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
3944
3945         * _decdptr.c: fix return values
3946         * _gptrget.c: fix return values
3947         * _gptrgetc.c: fix return values
3948         * _gptrput.c: fix return values
3949         * _mulint.c: fix return values
3950         * as/z80/Makefile: fix 'make -j' problem
3951
3952 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
3953
3954         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
3955         * configure.in: big cleanup, updated to autoconf 2.5x
3956         * configure: rebuilt from configure.in
3957         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
3958         * sdcc_vc_in.h: reflect changes from sdccconf.h
3959         * doc/Makefile: fixed a flaw in "make install"
3960
3961 2003-04-02    <johan AT balder>
3962
3963         * src/ds390/gen.c (genCmp): no comments
3964         * src/mcs51/gen.c (genCmp): no comments
3965         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
3966         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
3967
3968 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
3969
3970         * support/regression/generate-cases.py: place generated file in given sub directory
3971         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
3972         * support/regression/Makefile: improvements for 'make -j';
3973         side effect: it's simpler and faster now
3974
3975 2003-03-31  Borut Razem <borut.razem AT siol.net>
3976
3977         * src/z80/main.c: link-{port} and as-{port} defined without path
3978         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
3979
3980 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
3981
3982         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
3983
3984 2003-03-30  Borut Razem <borut.razem AT siol.net>
3985
3986         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
3987           changed type of list parameter to set
3988         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
3989         * src/port.h: changed type of do_assemble() parameter to set
3990         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
3991           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
3992           definition of "cppoutfilename" macro with NULL value in preProcess()
3993         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
3994         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
3995         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
3996           replaced with set *binPathSet
3997         * shash_add() deallocates the item, if allready exsists, before adding the new one
3998         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
3999
4000 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
4001
4002         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
4003           a nested for loop bug in the PIC port
4004         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
4005           for loops
4006
4007 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
4008
4009         * support/Util/dbuf.h: remove C++ stuff to make it portable
4010
4011 2003-03-28  Borut Razem <borut.razem AT siol.net>
4012
4013         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
4014           literal strings in stringLiteral()
4015         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
4016         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
4017           to the project
4018
4019 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
4020
4021         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
4022
4023 2003-03-26    <johan AT balder>
4024
4025         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
4026         * src/ds390/gen.c (saveRegisters): catched symbol abuse
4027         * src/SDCCast.c (decorateType): fixed " -v < 3"
4028
4029 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
4030
4031         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
4032         Added Lenny Story's debug infrastructure changes:
4033         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
4034         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
4035         * src/cdbFile.c: added
4036         * src/SDCCdebug.c: added
4037         * src/SDCCdebug.h: added
4038         * src/SDCCast.c (createFunction)
4039         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
4040         * src/SDCCmain.c (parseCmdLine, main)
4041         * src/SDCCmem.c (redoStackOffsets)
4042         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
4043         * src/SDCCsymt.h
4044         * src/common.h
4045         * src/avr/gen.c (genAVRCode)
4046         * src/ds390/gen.c (gen390Code)
4047         * src/mcs51/gen.c (gen51Code) 
4048         * src/pic/gen.c (genpic14Code)
4049         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
4050         * src/xa51/gen.c (genXA51Code)
4051         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
4052
4053 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4054
4055         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
4056         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
4057
4058 2003-03-22    <johan AT balder>
4059
4060         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
4061
4062 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
4063
4064         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
4065         * doc/cdbfileformat.lyx: added, written by Lenny Story
4066         * doc/Makefile: added cdbfileformat.lyx
4067         * doc/clean.mk: added cdbfileformat.lyx
4068
4069 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
4070
4071         * src/mcs51/peeph.def: fix bug #705773
4072
4073 2003-03-20    <johan AT balder>
4074
4075         An sfr/sbit can have an "at #" AND an initializer
4076         * src/SDCCsymt.c (checkSClass): 
4077         * src/SDCCmem.c (allocGlobal): 
4078         * src/SDCCmem.c (allocLocal):
4079         * src/SDCCast.c (createBlock): 
4080
4081 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
4082
4083         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
4084
4085 2003-03-16    <johan AT balder>
4086
4087         Undid the hackup of const and volatile, the problem is much bigger
4088         * src/SDCC.y:1.65
4089         * src/SDCCast.c:1.171
4090         * src/SDCCglue.c:1.138
4091         * src/SDCCicode.c:1.146
4092         * src/SDCCsymt.c:1.150
4093         * src/SDCCval.c:1.65
4094
4095 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
4096
4097         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
4098         * src/ds390/gen.c (genAddrOf): fixed bug #704087
4099
4100 2003-03-13    <johan AT balder>
4101
4102         Hackup const and volatile modifiers in type chains a bit:
4103         * src/SDCC.y:1.63
4104         * src/SDCCast.c:1.169
4105         * src/SDCCglue.c:1.136
4106         * src/SDCCicode.c:1.143
4107         * src/SDCCsymt.c1.146
4108         * src/SDCCsymt.h1.59
4109         * src/SDCCval.c:1.63
4110
4111 2003-03-12    <johan AT balder>
4112
4113         * src/SDCCBBlock.h: more LRH debugging junk
4114         * src/SDCCcflow.h: more LRH debugging junk
4115         * src/SDCCloop.c: more LRH debugging junk
4116         * src/SDCC.y (struct_declaration): fixed bug #697590
4117         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
4118         * src/ds390/gen.c (aopForRemat): fixed bug #700031
4119         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
4120
4121 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
4122         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
4123         test function names must now match exactly).
4124         * src/SDCCcse.c: added special case in findCheaperOp to allow
4125         extending a short integer. Makes less awful code for bug 700121 test case.
4126
4127 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4128
4129         * as/mcs51/lkmain.c: Added ASlink-Warning to messages 
4130         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
4131
4132 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
4133
4134         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
4135         actually called (operandsNotEqual() was called for all 
4136         operandsNotEqualX tests).
4137
4138 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
4139
4140         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
4141         with shorter literals. Fixes bug 700121.
4142
4143 2003-03-11    <johan AT balder>
4144
4145         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
4146
4147 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
4148
4149         * src/SDCCloop.c (mergeRegions): an evil beast is dead
4150         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
4151
4152 2003-03-10  Borut Razem <borut.razem AT siol.net>
4153
4154         * src/SDCCmain.c: pipe preprocessor's output
4155         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
4156         * sdcc_vc_in.h: define pclose as _pclose for WIN32
4157         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
4158         which closes all pipes in pipeSet set
4159         * src/SDCCset.c: free deleted item in function deleteSetItem()
4160         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
4161         moved from z80 to src subproject
4162         * .version: increased version number to 2.3.4
4163
4164 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
4165
4166         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
4167         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
4168         * support/regression/ports/xa51/spec.mk: fix typo
4169
4170 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
4171
4172         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
4173
4174 2003-03-09  Borut Razem <borut.razem AT siol.net>
4175
4176         * src/SDCCmain.c: pipe preprocessor's output
4177         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
4178         * sdcc_vc_in.h: define pclose as _pclose for WIN32
4179         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
4180         which closes all pipes in pipeSet set
4181         * src/SDCCset.c: free deleted item in function deleteSetItem()
4182         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
4183         moved from z80 to src subproject
4184
4185 2003-03-09  Borut Razem <borut.razem AT siol.net>
4186
4187         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
4188         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
4189         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
4190         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
4191         * src/SDCCglobl.h: unification of WIN32 native definitions
4192
4193 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4194
4195         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
4196
4197 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
4198
4199         * src/configure.in:   check for endianess (even while cross-compiling)
4200         * src/configure:      check for endianess (even while cross-compiling)
4201         * src/configure_in.h: check for endianess (even while cross-compiling)
4202         * src/avr/gen.c:        remove old endianess stuff
4203         * src/mcs51/gen.c:      remove old endianess stuff
4204         * src/ds390/gen.c:      remove old endianess stuff
4205         * src/pic/gen.c:        remove old endianess stuff
4206         * src/pic/genarith.c:   remove old endianess stuff
4207         * src/pic/glue.c:       fix endianess check
4208         * src/pic16/gen.c:      remove old endianess stuff
4209         * src/pic16/genarith.c: remove old endianess stuff
4210         * src/pic16/glue.c:     fix endianess check
4211         * src/xa51/gen.c:       remove old endianess stuff
4212         * src/z80/gen.c:        fix endianess check
4213         * src/SDCCglue.c:       fix endianess check
4214         * src/ds390/peeph.def: fix bug 700036
4215
4216 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
4217
4218         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
4219         * src/configure: find appropriate data-types on host for SDCC's int and long
4220         * src/configure.in: find appropriate data-types on host for SDCC's int and long
4221         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
4222         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
4223
4224 2003-03-07    <johan AT balder>
4225
4226         Just a big NOOP:
4227                 some minor cleanups before the big shot
4228                 OP_DEFS and OP_USES now use Kevin's protection
4229                 new option --nolabelopt
4230
4231         * src/SDCCBBlock.c:
4232         * src/SDCCast.c,:
4233         * src/SDCCcflow.c:
4234         * src/SDCCcse.c:
4235         * src/SDCCicode.c:
4236         * src/SDCCicode.h:
4237         * src/SDCClabel.c:
4238         * src/SDCCloop.c:
4239         * src/SDCCmain.c:
4240         * src/ds390/ralloc.c:
4241         * src/mcs51/ralloc.c:
4242         * src/pic/ralloc.c:
4243         * src/xa51/ralloc.c:
4244         * src/z80/ralloc.c:
4245
4246 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
4247
4248         * src/pic/pcode.c (get_op): fix 64 bit warnings
4249         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
4250         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
4251         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
4252         * support/regression/tests/malloc.c: fix 64 bit warnings
4253
4254 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
4255
4256         * src/mcs51/gen.c (genMinus): fixed bug 696436
4257
4258 2003-03-02  Borut Razem <borut.razem AT siol.net>
4259
4260         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
4261
4262 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
4263
4264         * configure.in: test for mkstemp
4265         * sdccconf_in.h: add HAVE_MKSTEMP
4266
4267 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
4268
4269         * device/include/ctype.h: removed warning while using --stack-auto
4270         * device/include/malloc.h: removed warning while using --stack-auto
4271         * device/include/string.h: removed warning while using --stack-auto
4272
4273 2003-02-23  Borut Razem <borut.razem AT siol.net>
4274
4275         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
4276         because NDEBUG is defined (see man assert)
4277         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
4278
4279 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4280
4281         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
4282         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
4283
4284 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4285
4286         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
4287         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
4288
4289 2003-02-18    <johan AT balder>
4290
4291         * as/mcs51/asmain.c (asmbl): module can start with a digit
4292         * as/z80/asmain.c (asmbl): module can start with a digit
4293
4294 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
4295
4296         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
4297         * src/asm.c: fix pipe() for Mingw32
4298
4299 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
4300
4301         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
4302         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
4303         make -V work again; --c1mode reads now from stdin
4304         * doc/sdccman.lyx: added --c1mode
4305         * support/Util/SDCCerr.c: new messages for c1 mode
4306         * support/Util/SDCCerr.h: new messages for c1 mode
4307         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
4308
4309 2003-02-15    <johan AT balder>
4310
4311         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
4312
4313 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
4314
4315         * doc/sdccman.lyx: Environment variables, -o and other minor things
4316
4317 2003-02-14    <johan AT balder>
4318
4319         * src/xa51/main.c: before anyone really tries to use it :)
4320
4321         * Install doc's in share/sdcc/doc
4322         * removed some obsolete files
4323         * Do a proper make distclean and uninstall
4324         M Makefile.common.in
4325         R sdccbuild.sh
4326         M as/Makefile
4327         M device/include/Makefile.in
4328         M device/lib/Makefile.in
4329         M doc/sdccman.lyx
4330         M link/Makefile
4331         M sim/ucsim/doc/Makefile.in
4332         M src/clean.mk
4333         R src/avr/peeph.rul
4334         R src/xa51/peeph.rul
4335         M support/cpp2/Makefile.in
4336         M support/makebin/Makefile
4337
4338
4339 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
4340
4341         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
4342
4343 2003-02-10  Borut Razem <borut.razem AT siol.net>
4344
4345         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
4346         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
4347         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
4348         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
4349         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
4350         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
4351         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
4352         src/z80/Makefile.bcc: Borland Makefile cleanup
4353         * as/z80/Makefile.bcc: Added Borland Makefile
4354         * support/cpp2/borland.h: Removed
4355
4356 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
4357
4358         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
4359         * src/SDCC.lex: new pragma NOIV
4360         * src/SDCCglobl.h: new pragma NOIV
4361         * src/SDCCmem.c: new pragma NOIV
4362
4363 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
4364
4365         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
4366
4367 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
4368
4369         * src/SDCCmain.c: signal handling is switched off by --debug
4370         * doc/Makefile: small fix for install; use clean.mk again
4371         * doc/clean.mk: clean *.pdf and *.html too
4372
4373 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
4374
4375         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
4376         * device/lib/printfl.c: fix a ds390 bug by making it portable
4377         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
4378         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
4379         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
4380         * debugger/mcs51/cmd.c: converted multi-line string literals
4381         * sim/ucsim/globals.cc: converted multi-line string literals
4382         * src/SDCCmain.c: introduced signal handler to remove temp files
4383         * doc/Makefile: small tweaks, implement clean
4384         * doc: removed generated files
4385
4386 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4387
4388         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
4389         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
4390         Address Record is not correctly generated for DS390."
4391
4392 2003-02-02  Borut Razem <borut.razem AT siol.net>
4393
4394         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
4395         * as/mcs51/asm.h: fixed compilation with Borland C
4396         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
4397         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
4398         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
4399         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
4400         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
4401         src/z80/Makefile.bcc: delete $(LIB) only if exist
4402         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
4403
4404 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
4405
4406         * device/include/malloc.h: introduced NULL
4407         * device/include/string.h: introduced NULL
4408         * device/include/stdlib.h: introduced NULL
4409         * device/lib/_memcpy.c: removed NULL
4410         * device/lib/_strcat.c: removed NULL
4411         * device/lib/_strchr.c: removed NULL
4412         * device/lib/_strcmp.c: removed NULL
4413         * device/lib/_strcpy.c: removed NULL
4414         * device/lib/_strcspn.c: removed NULL
4415         * device/lib/_strlen.c: removed NULL
4416         * device/lib/_strncat.c: removed NULL
4417         * device/lib/_strncmp.c: removed NULL
4418         * device/lib/_strncpy.c: removed NULL
4419         * device/lib/_strpbrk.c: removed NULL
4420         * device/lib/_strrchr.c: removed NULL
4421         * device/lib/_strspn.c: removed NULL
4422         * device/lib/_strstr.c: removed NULL
4423         * device/lib/_strtok.c: removed NULL
4424         * device/lib/malloc.c: removed NULL, include own header
4425
4426 2003-02-02    <johan AT balder>
4427
4428         * 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
4429         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
4430         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
4431         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
4432         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
4433         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
4434
4435 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4436
4437         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
4438         area 'DATA'"
4439
4440 2003-02-01    <johan AT balder>
4441
4442         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
4443
4444 2003-01-31    <johan AT CP255758-A>
4445
4446         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
4447
4448 2003-01-30    <johan AT balder>
4449
4450         * src/SDCCBBlock.c: automatic bug detection
4451         * src/SDCCicode.c: automatic bug detection
4452
4453 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4454
4455         * src/SDCCglobl.h:   now --xram-size 0 works
4456         * src/SDCCmain.c:    now --xram-size 0 works
4457
4458 2003-01-29    <johan AT balder>
4459
4460         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
4461
4462 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4463
4464         * as/mcs51/aslink.h: Added options --xram-size and --code-size 
4465         * as/mcs51/lkdata.c: Added options --xram-size and --code-size 
4466         * as/mcs51/lkmain.c: Added options --xram-size and --code-size 
4467         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size 
4468         * src/SDCCglobl.h:   Added options --xram-size and --code-size 
4469         * src/SDCCmain.c:    Added options --xram-size and --code-size 
4470
4471 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
4472
4473         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
4474         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
4475
4476 2003-01-27    <johan AT balder>
4477
4478         * src/SDCC.y: fixed bug #613764
4479
4480 2003-01-26    <johan AT balder>
4481
4482         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
4483         * src/SDCCsymt.h: fixed bug #673374
4484         * src/SDCCglue.c: fixed bug #661910
4485         * src/SDCCast.c: fixed bug #458099 and 673374
4486
4487 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
4488
4489         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
4490         * as/mcs51/strcmpi.h: added
4491         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
4492         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
4493         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
4494         * as/mcs51/assym.c: strcmpi -> as_strcmpi
4495         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
4496         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
4497         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
4498         * as/mcs51/Makefile.aslink: new module strcmpi
4499         * as/mcs51/Makefile.asx8051: new module strcmpi
4500         * as/mcs51/Makefil.bcc: new module strcmpi
4501         * as/mcs51/Makefile.in: new module strcmpi
4502         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
4503
4504 2003-01-26    <johan AT balder>
4505
4506         * src/SDCCglue.c: reverted back to 1.124
4507         * src/SDCCast.c: reverted back to 1.156
4508         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
4509
4510 2003-01-25    <johan AT balder>
4511
4512         * src/SDCCglue.c: A better fix for bug #661910
4513         * src/SDCCast.c: A better fix for bug #661910
4514         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
4515
4516 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
4517
4518         * src/Makefile.in: remove spawn.o
4519         * src/SDCCmain.c: remove spawn.h
4520         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
4521         * src/spawn.c: removed
4522         * src/spawn.h: removed
4523         * support/regression/ports/ds390/spec.mk: link with -r
4524
4525 2003-01-24    <johan AT CP255758-A>
4526
4527         * src/ds390/gen.c (aopOp): fixed bug #667458
4528         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
4529         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
4530         (createIvalCharPtr): an ival doesn't always have a storage class anymore
4531
4532 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
4533
4534         * src/mcs51/peeph.def: better assembler identation by Frieder
4535         * src/mcs51/gen.c: better assembler identation by Frieder
4536
4537 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
4538
4539         * as/z80/string.h: removed for gcc 3.2
4540         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
4541         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
4542
4543 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
4544
4545         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
4546         * src/SDCCpeeph.c (replaceRule): fix bug #663503
4547         * support/regression/Makefile: separate temp files for ports
4548         * support/regression/generate-cases.py: separate temp files for ports
4549         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
4550         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
4551
4552 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
4553
4554         * moved tinitalk to device/examples/ds390
4555
4556 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
4557
4558         * as/mcs51/lkmem.c: rflag is for DS390
4559         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
4560         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
4561                          (linkEdit): move mem- and map-files the same way as ihx-files
4562         * src/z80/main.c (_setDefaultOptions): removed --generic
4563         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
4564         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
4565         * src/pic/glue.c (picglue): --c1mode works again
4566         * src/pic16/glue.c (pic16glue): --c1mode works again
4567         * src/asm.c (printCLine): fix #660034
4568
4569 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
4570
4571         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
4572         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
4573         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
4574         * as/mcs51/lkmem (summary): better fix for sp problem
4575         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
4576         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
4577         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
4578                                               remove --stack-after-data
4579
4580 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
4581
4582         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
4583         * src/SDCCutil.c (join): ugly bug: missing '\0'
4584         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
4585
4586 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
4587
4588         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
4589         * src/port.h: typo
4590         * src/pic/main.c (_asmCmd): gpasm supports -o
4591         * src/z80/main.c: more general macros
4592         * device/lib/Makefile.in: remove intermediate files
4593
4594 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
4595
4596         * .version: Bumped version number to 2.3.3
4597         * src/SDCCBBlock.c: new option -o
4598         * src/SDCCglobl.h: new option -o
4599         * src/SDCCglue.c: new option -o
4600         * src/SDCCmain.c: new option -o
4601         * src/asm.c: new option -o
4602         * src/ds390/main.c: new option -o
4603         * src/pic/glue.c: new option -o
4604         * src/pic/pcode.c: new option -o
4605         * src/pic/ralloc.c: new option -o
4606         * src/pic16/glue.c: new option -o
4607         * src/pic16/pcode.c: new option -o
4608         * src/pic16/ralloc.c: new option -o
4609         * src/z80/main.c: new option -o
4610         * device/lib/Makefile.in: use -o
4611         * support/regression/ports/ds390/spec.mk: use -o
4612         * support/regression/ports/gbz80/spec.mk: use -o
4613         * support/regression/ports/mcs51/spec.mk: use -o
4614         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
4615         * support/regression/ports/z80/spec.mk: use -o
4616         * support/regression/ports/ucz80/spec.mk: use -o
4617         * support/regression/ports/xa51/spec.mk: use -o
4618         * support/regression/fwk/lib/timeout.c: fix usage string
4619
4620 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
4621         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
4622         
4623 2003-01-07    <johan AT balder>
4624
4625         * src/SDCCast.c (decorateType): fixed bug #600035
4626
4627 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
4628         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
4629         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
4630         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
4631         * src/pic/pcode.c: outcommented unused variable to remove warnings
4632         * src/pic/ralloc.c: outcommented unused variable to remove warnings
4633
4634 2003-01-06    <karl AT turbobit.com>
4635         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
4636    regression tests.
4637
4638 2003-01-06    <johan AT balder>
4639
4640         * src/SDCCicode.c: fixed array add
4641
4642 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
4643         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
4644         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
4645
4646 2003-01-04    <johan AT balder>
4647
4648         * src/SDCCval.c (getNelements): fixed the initialized array of structures
4649
4650 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4651         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
4652
4653 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
4654         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
4655         * support/regression/tests/bug-524697.c: fit mem usage into 8032
4656
4657 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
4658         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
4659
4660 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
4661         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
4662
4663 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
4664         * src/mcs51/main.c: removed {bindir}{sep} from aslink
4665
4666 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4667
4668     * in \sdcc\as\mcs51\ changed these files in order to create an
4669     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
4670     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the 
4671     following files to include the previous two files: aslink.dsp,
4672     Makefile.aslink, Makefile.bcc, and Makefile.in.
4673
4674     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
4675     .adb instead of .cdb
4676     
4677 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4678
4679         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
4680         value from option --iram-size.
4681
4682 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4683
4684         * \sdcc\as\mcs51\lklist.c: added boundary check before using
4685         dram[] array.
4686
4687 2002-09-18    <wiml AT hhhh.org>
4688
4689         * SDCClrange.h: exposed setFromRange() and setToRange()
4690         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
4691           packRegsForAccUse() (bug 542397)
4692         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
4693           multiple times and emitting the fetch operations more than once
4694           added aopGetUsesAcc() function to allow binary operators to
4695           fetch their operands in the correct order; made genMinus() emit
4696           compact code for X = LITERAL - Y 
4697
4698 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4699         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
4700         sprintf() in line 1267.
4701
4702 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4703         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
4704         like ports.
4705
4706 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4707         Changes to aslink (All the changes are marked with 'JCF'):
4708
4709         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
4710         summary().
4711
4712         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
4713         area BSEG.  Also moves, if possible, the DATA area down into the internal
4714         ram so more space is available.
4715
4716         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
4717         sflag.
4718
4719         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
4720         not bytes.  Function summary() which creates a memory usage summary
4721         file with extension .mem.  Reports of overlaping stack and small stack
4722         size.  If the space for the stack is less than 16 bytes aslink trows a
4723         warning.
4724         
4725         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
4726         the 8051.  Option 'y' for memory summary output file.
4727
4728         Changes to sdcc (All the changes are marked with 'JCF'):
4729
4730         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
4731
4732         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
4733         overlaying area for it (uses RegBankUsed[4]).
4734
4735         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
4736         bank zero as used by default.  By default aslink locates the stack
4737         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
4738         the creation of the .mem file.  Delegates the allocation of data area
4739         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
4740         the begining of the stack area to aslink.
4741
4742         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
4743         glue() in SDCCglue.c creates an area for it.
4744         
4745 2002-09-03  Borut Razem <borut.razem AT siol.net>
4746         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
4747         sdcc/src/pic/glue.c:
4748         introduced atexit() handler for teporay files removal in case of
4749         errors, assertions, ...
4750
4751 2002-08-29  Borut Razem <borut.razem AT siol.net>
4752         * sdcc/support/cpp2/auto-host_vc_in.h:
4753         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
4754         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
4755         Maybe there is a similar problem with BORLANDC? It should be checked!
4756
4757         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
4758         corrected improper use of assert: the assignment to clr variable was done inside the assert.
4759         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
4760         was not executed, and the compiler (cl) launched a warning:
4761         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
4762
4763 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
4764         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
4765
4766 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
4767         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
4768
4769         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
4770           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
4771           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
4772           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
4773           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
4774           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
4775           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
4776         - added Release configuration in VS projects
4777         - review of compiler an linker options
4778         - VC .exe files are generated in bin_vc directory, not to interfere
4779           with binaries generated from other projects (cygwin, mingw, bcc ...)
4780
4781         * sdcc/src/yacc.dsp: added
4782
4783         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
4784         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
4785         and insert the version number definitions from .version 
4786
4787         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
4788
4789         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
4790         added - genarate auto-host.h using auto-host_vc_in.h as template
4791
4792         * sdcc/sdcc_vc.h,
4793         removed from CVS, generated automatically
4794
4795 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
4796         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
4797
4798 2002-08-11  Borut Razem <borut.razem AT siol.net>
4799         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
4800
4801 2002-08-10  Borut Razem <borut.razem AT siol.net>
4802         * src/SDCCmain.c (main):
4803         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
4804         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
4805         The consequence was that some temporary files were not removed.
4806
4807         * src/SDCCglue.c:
4808         unification of code in functions tempfilename() and tempfile():
4809         function tempnam() is defined in Visual Studio 6.0 and .NET
4810
4811         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
4812
4813         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
4814           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
4815         - removed compiler command line option /WX: Treats all warnings as errors
4816         - update a list of source files, included into the project
4817
4818         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
4819           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
4820         changed project type to Generic Project so that can be correcly converted to VS.NET project
4821
4822         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
4823
4824         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
4825
4826         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
4827
4828         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
4829         added return 0 statements after assert() to make compiler happy
4830
4831         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
4832         added newline in the def file to keep MSC compiler satisfied
4833
4834         * sdcc/src/z80/gen.c:
4835         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
4836           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
4837         - solved MSC error in function aopDump()
4838
4839         * sdcc_vc.h: define PREFIX as "\\sdcc"
4840
4841 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
4842         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
4843
4844 2002-06-22  Scott Dattalo <scott AT dattalo.com>
4845         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced. 
4846         - Rewrote the register banking algorithm. 
4847         - Added pCode live-range analysis to registers (for now, only non-used and 
4848         singly-used registers optimized away)
4849
4850         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
4851
4852         * 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.
4853         
4854 2002-05-10  Scott Dattalo <scott AT dattalo.com>
4855         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
4856         
4857 2002-04-22  Michael Hope  <michaelh AT vroom>
4858
4859         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
4860
4861         * configure.in (DD_COPT): Added include support required for gbdk.
4862
4863         * .version: Bumped version number just to increase it.
4864
4865         * src/SDCCmain.c: Added -nostdinc to the default options.
4866
4867 2002-04-15  Michael Hope  <michaelh AT vroom>
4868
4869         * device/lib/z80/printf.c (sprintf): Added.
4870
4871         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
4872
4873         * src/z80/peeph.def: Added transpose redundent load rule.
4874
4875         * src/z80/main.c: Added force callee saves for jaune.
4876
4877         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
4878
4879         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
4880
4881 2002-03-28  Johan Knol  <johan AT balder>
4882
4883         * src/SDCCval.c: fixed bug #532436
4884
4885 2002-03-14  Scott Dattalo <scott AT dattalo.com>
4886         * /src/port.h:
4887         Added "char *Processor" field to the port structure.
4888
4889         * /src/SDCCmain.c:
4890         Added -p option. Allows port dependent processor to be specified.
4891
4892         * all ports:
4893         Initialized the new field char *Processor field to NULL in all ports
4894
4895         * /src/pic/*:
4896         Compiler generated registers for interrupt context saving
4897         were not getting allocated.
4898                 
4899 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
4900
4901         * /src/SDCCast.c:
4902         Fixed left shift. Will promote the left side of a left shift
4903         if a) left shifting more than size of operand or b) when assigned
4904         to something size > size of left side
4905
4906 2002-03-14  Scott Dattalo <scott AT dattalo.com>
4907         * src/pic/*
4908         tons of changes. Register allocation has been 
4909         rewritten. Added customization for the various PICs. Flow
4910         analysis is restructured. ...
4911
4912         * src/pic/device.h:
4913         Added
4914
4915         * src/pic/device.c:
4916         Added. device.c is a PIC port hack to accomodate variations
4917         in PIC devices.
4918
4919 2002-03-13  Michael Hope  <michaelh AT vroom>
4920
4921         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
4922
4923 2002-03-04  johanknol  <johanknol AT manik>
4924
4925         * /src/SDCCval.c: fixed
4926
4927         const unsigned char arr[][2] = { { 0, 1 } };
4928         t18.c:1: error: Initializer element is not constant
4929
4930 2002-03-04  bela  <bela AT manik>
4931
4932         * /device/include/mcs51reg.h:
4933         ds89c420 register definition update
4934
4935 2002-03-03    <johan AT FRIJA>
4936
4937         * support/Util/SDCCerr.c: did something, but don't no why anymore
4938
4939         * support/regression/tests/bug-524691.c: made it a little less shy 
4940
4941         * src/SDCCast.c (decorateType): fixed bug #524697
4942
4943         * src/SDCCast.c: made some lineno improvements
4944
4945         * src/SDCCval.c (getNelements): changed warning to error
4946
4947         * src/SDCCglue.c (printIvalArray): changed warning to error
4948
4949         * src/SDCCicode.c: fixed a warning for mingw
4950
4951         * src/SDCCast.c (decorateType): fixed the << promotion for ops
4952
4953         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
4954
4955 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
4956
4957         * src/ds390/peeph.def:
4958         Added some more peephole rules
4959
4960         * src/ds390/gen.c: Various fixes & enhancements
4961
4962         * src/SDCClrange.c, src/SDCClrange.h:
4963         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
4964
4965         * src/ds390/ralloc.c:
4966         various fixes & enhancements (ds390) specific
4967
4968         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
4969         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
4970         from rallocs.
4971
4972         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
4973
4974 2002-03-02    <johan AT FRIJA>
4975
4976         * src/SDCCast.c (decorateType): fixed bug #524708
4977
4978         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
4979
4980         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
4981
4982 2002-03-01  Michael Hope  <michaelh AT vroom>
4983
4984         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
4985
4986         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
4987
4988 2002-03-01    <johan AT FRIJA>
4989
4990         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
4991
4992         * src/SDCCast.c (decorateType): fixed bug #524209
4993
4994         * src/SDCCval.c (valNot): fixed bug #524195
4995
4996 2002-02-26    <johan AT balder>
4997
4998         * src/xa51/gen.c: fixed a warning
4999
5000         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
5001
5002         * src/SDCCast.c (decorateType): fixed bug #522534
5003
5004 2002-02-23    <johan AT balder>
5005
5006         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
5007
5008 2002-02-22    <johan AT balder>
5009
5010         * src/SDCCast.c: fixed bug #514865
5011
5012         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
5013
5014 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
5015
5016         * sdcc/src/SDCCloop.c:
5017         Previous fix was not good. basic blocks that have "break" or "return" are
5018         not really partof a loop , but live ranges used in these blocks should
5019         be live thru the entire loop, so set partOfLoop but don't add them to
5020         loop region
5021
5022 2002-02-21    <johan AT FRIJA>
5023
5024         * src/SDCCcse.c: fixed bug #514308
5025
5026 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
5027
5028         * src/SDCCloop.c:
5029         Fixed BUG #519583. If a conditional block ended in a return/break
5030         statement inside a loop, it was not being considered part of the loop.
5031
5032         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
5033
5034 2002-02-10  Karl Bongers <karl AT turbobit.com>
5035
5036         * debugger/*:
5037         Fixed up SDCDB debugger somewhat.  Updated debugger/README
5038         with lots of comments and notes.
5039
5040         * device/examples/test2.c:
5041         Fix bug, "red" variable not being initialized(compiler complained).
5042
5043         * device/examples/Makefile, examples/test3.c:
5044         Add Makefile in device/examples folder, compiles test3.c
5045         for use as a multiple module SDCDB test case.
5046
5047         * sim/ucsim/cmd.src/cmdset.cc:
5048         Took out debug printfs in ucsim "next" command.
5049
5050         * sim/ucsim/xa.src:
5051         Karl and Johan start ucsim XA support.  Most dissassembly working,
5052         about 75% emulation done(plenty of work remaining).
5053
5054         * sim/ucsim/z80.src:
5055         Add Z80 support to ucsim, add test-ucz80 regression test,
5056         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
5057         Notice z80 compiler fails on examples/test3.c/crc code.
5058
5059 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
5060
5061         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
5062         Added support for --parms-in-bank1
5063
5064         * src/ds390/peeph.def:
5065         added a few more peephole optimzations
5066
5067         * src/ds390/main.c:
5068         1) added __builtin_inp & __builtin_outp used to read in data of given length
5069            from a memory mapped port
5070         2) added __builtin_memcmp
5071         3) added __builtin_swapw swap bytes of a short
5072
5073         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
5074         1) handle multiple send & receives from register bank1
5075         2) ralloc can now allocate DPTR1 to some liveRanges
5076
5077         * src/SDCCsymt.c, src/SDCCsymt.h:
5078         changes to handle multiple sends & receives
5079
5080         * src/SDCCptropt.h:
5081         added some pointer arithmetic optimization
5082
5083         * src/SDCCptropt.c:
5084         added some pointer arithmetic optimizations but not stable yet so not
5085         called from anywhere (will get this working shortly)
5086
5087         * src/SDCCopt.c: fixed for multiple sends & receives
5088
5089         * src/SDCCmain.c:
5090         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
5091         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
5092            set preprocessor defines (depending on options)
5093
5094         * src/SDCCicode.c, src/SDCCicode.h:
5095         changes made to handle multiple sends & receives
5096
5097         * src/SDCCglobl.h:
5098         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
5099
5100         * src/SDCCcse.c, src/SDCCcse.h:
5101         added function findbackward def (to be used in upcoming optimization)
5102
5103         * src/SDCCcflow.c, src/SDCCcflow.h:
5104         added function returnAtEnd - to determine if a basic block terminates with
5105         a RETURN iCode
5106
5107         * src/SDCCast.c, src/SDCCast.h:
5108         added option parms-in-bank1
5109
5110         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c 
5111         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c 
5112         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
5113         adjusted for --parms-in-bank1 option
5114
5115         * device/include/string.h:
5116         donot redefine "reentrant" keyword
5117
5118         * device/include/ds80c390.h: Added some more SFRs
5119
5120 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
5121
5122         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4 
5123
5124 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
5125
5126         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
5127
5128 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
5129
5130         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
5131
5132 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
5133
5134         * Added --xram-movc option
5135
5136 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
5137
5138         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
5139
5140 2002-01-11  Johan Knol
5141
5142         * Added math lib of Jesus Calvino-Fraga
5143
5144 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
5145
5146         * src/SDCCmain.c (processFile): fix processing of ../../src.c
5147         * support/regression/Makefile: new target test-mcs51-stack-auto
5148         * support/regression/ports/mcs51-stack-auto/spec.mk: added
5149
5150 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
5151
5152         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
5153
5154 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
5155
5156         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
5157
5158 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
5159
5160         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
5161
5162         * src/SDCCglue.h: add definition for printIvalChar()
5163
5164 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
5165
5166         * src/SDCCast.c: fix #498138 by Johan
5167
5168         * src/SDCCglue.c: fix #498138 by Johan
5169
5170 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
5171
5172         * support/regression/Makefile: fix clean
5173
5174         * support/regression/ports/ds390/support.c: fix transmission of last character
5175
5176 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
5177
5178         * /sdcc/src/ds390/gen.c:
5179         a) improved computing address of stack variable
5180         b) took out some #if 0 code
5181         c) improved parmBytes adjustment
5182         d) improved genPlusIncr & genMinusIncr
5183         e) genCmp could generate bad code (when left assigned to DPTR)
5184         f) Fixed bug in hasInc
5185
5186         * /sdcc/src/ds390/ralloc.c:
5187         a) packRegsForSupport could mess up live information (Fixed)
5188         b) packRegsDPTRuse could be incorrect for left & right shift
5189
5190         * /sdcc/src/mcs51/ralloc.c:
5191         packRegsForSupport could mess up the live information (Fixed)
5192
5193         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
5194
5195         * /sdcc/src/SDCCast.c:
5196         can reverse a loop even if function call is present as long
5197         as the loop control variable is local & is not passed as parameter
5198
5199 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
5200
5201         * /sdcc/ChangeLog: *** empty log message ***
5202
5203         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
5204         More builtin function additions for TININative
5205
5206         * /sdcc/src/ds390/ralloc.c:
5207         Had broken the regression testsuite
5208
5209         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
5210
5211         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
5212         Added funcattr hasStackParms will be set for reentrant functions when there
5213         are paramteres on the stack, this helps in minimizing frame pointer generation
5214         typeFromStr can handle function pointers now
5215
5216         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
5217         *** empty log message ***
5218
5219 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
5220
5221         * /src/ds390/gen.c, /src/ds390/main.c:
5222         More builtin function additions for TININative
5223
5224         * /src/ds390/ralloc.c:
5225         Had broken the regression testsuite
5226
5227         * /src/SDCCast.c: Fixed a bug in dumptree
5228
5229         * /src/SDCCsymt.c, /src/SDCCsymt.h:
5230         Added funcattr hasStackParms will be set for reentrant functions when there
5231         are paramteres on the stack, this helps in minimizing frame pointer generation
5232         typeFromStr can handle function pointers now
5233
5234         * /doc/builtins.txt, /doc/TININative.txt:
5235         *** empty log message ***
5236
5237
5238 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
5239
5240         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
5241         ALPHA version for -mTININative
5242
5243         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
5244         updated to reflect changes in the port structure
5245
5246         * /src/port.h:
5247         added function do_assemble (similar to do_link) if non-null this function
5248         will be called to do assembly (-mTININative) requires a multi command
5249         assembly
5250         added function genAssemblerEnd will be called to generate assembler Epilogue
5251
5252         * /src/SDCCsymt.c:
5253         added _JavaNative to debug info printing
5254
5255         * /src/SDCCmain.c: added option --tini-libid
5256         added port->do_assemble function (-mTININative) has a multi command assemble
5257
5258         * /src/SDCCglue.c: Disabled "constExpr" check
5259         added port->genAssemblerEnd function
5260
5261         * /src/SDCCglobl.h: Added option --tini-libid value
5262
5263         * /src/SDCCast.h:
5264         tookout optimizeCompare from the header (has no external references)
5265
5266         * /src/SDCCast.c: made one more function "static"
5267
5268 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
5269
5270         * src/z80/mappings.i: Added z80asm support.
5271
5272         * src/z80/main.c: Added z80asm support on --asm=z80asm
5273
5274         * src/z80/gen.c: Fixed asm portability issues.
5275
5276         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
5277
5278         * src/SDCCglue.c (printExterns): Added global/extern split.
5279
5280 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
5281
5282         * support/regression/Makefile: added test for mcs51 model large
5283
5284         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
5285
5286         * support/regression/ports/gbz80/spec.mk: added -mgbz80
5287
5288 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
5289
5290         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
5291
5292 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
5293
5294         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
5295
5296         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
5297
5298 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
5299
5300         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
5301
5302         * support/regression/tests/simplefloat.c: Port to mcs51.
5303
5304 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
5305         * support/regression/tests/bug-485362.c: Added.
5306
5307         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
5308
5309         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
5310
5311         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
5312
5313         * src/z80/gen.c (aopDump): Added a dump function.
5314
5315 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
5316         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
5317
5318         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
5319
5320         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
5321
5322         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
5323
5324         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
5325
5326         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
5327
5328         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
5329
5330         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
5331
5332         * support/regression/ports/ds390/support.c: Use tinibios.
5333
5334         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
5335
5336 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
5337
5338         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
5339         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
5340
5341         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
5342
5343         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
5344
5345 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
5346
5347         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
5348
5349         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
5350         (packRegsForIYUse): Created and optimised.
5351
5352 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
5353
5354         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
5355 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
5356
5357         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
5358
5359         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
5360
5361         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
5362
5363 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
5364
5365         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
5366
5367         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
5368
5369 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
5370
5371         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
5372
5373         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
5374
5375         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
5376
5377 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
5378
5379         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
5380         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
5381         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
5382
5383         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
5384
5385         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
5386         (genNotFloat): Added.
5387         (genUminusFloat): Added.
5388
5389         * device/lib/z80/Makefile: Added floating pt stubs.
5390
5391         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
5392
5393         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
5394
5395         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
5396
5397 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
5398
5399         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
5400
5401         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
5402
5403         * sdcc/support/regression/Makefile: Add port ds390.
5404
5405         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
5406
5407         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
5408
5409         * sdcc/support/regression/ports/ds390/spec.mk: Added.
5410
5411         * sdcc/support/regression/ports/ds390/support.c: Added.
5412
5413         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
5414
5415         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
5416
5417         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
5418
5419 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
5420
5421         * device/include/malloc.h: Added z80 and gbz80 support.
5422
5423         * device/lib/gbz80/heap.s: Added.
5424
5425         * device/lib/z80/heap.s: Added.
5426
5427         * device/lib/malloc.c: Added z80 and gbz80 support.
5428
5429         * support/regression/tests/malloc.c (testMalloc): Added.
5430
5431         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
5432
5433         * support/regression/tests/bug-478094.c: Added.
5434
5435         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
5436
5437 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
5438
5439         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
5440
5441         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
5442
5443         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
5444
5445         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
5446
5447         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
5448
5449 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
5450
5451         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
5452
5453 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
5454
5455         * support/regression/tests/bug-477927.c: Added.
5456
5457         * src/z80/peeph.def: Added minor rules.
5458
5459         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
5460
5461         * src/z80/peeph.def: Added jump optimisation modification.
5462
5463 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
5464
5465         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
5466
5467 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
5468
5469         * support/regression/tests/funptrs.c: Added.
5470
5471 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
5472
5473         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
5474
5475 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
5476
5477         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
5478
5479         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
5480
5481         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
5482         (movLeft2ResultLong): Created.
5483
5484         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
5485         (joinPushes): Added.  Joins two char pushes into a word push.
5486
5487 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
5488
5489         * support/cpp2/Makefile.in (install): Added creation of dest dir.
5490
5491         * support/makebin/Makefile (install): Added creation of dest dir.
5492
5493 2001-10-24 Karl Bongers <karl AT turbobit.com>
5494
5495         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
5496
5497 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
5498
5499         * src/z80/ralloc.c: Turned off faulty pack for one use.
5500
5501         * src/z80/peeph-gbz80.def: Removed redundent restart options.
5502
5503         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
5504
5505 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
5506
5507         * support/regression/Makefile: Improved clean
5508
5509         * support/regression/ports/gbz80/spec.mk: Added clean
5510
5511         * support/regression/ports/host/spec.mk: Added clean
5512
5513         * support/regression/ports/z80/spec.mk: Added clean
5514
5515         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
5516
5517         * support/regression/ports/mcs51/timeout.c: little improvements
5518
5519 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
5520
5521         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
5522
5523         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
5524
5525         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
5526
5527 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
5528
5529         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
5530
5531         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
5532
5533 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
5534         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
5535
5536         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
5537
5538         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
5539
5540         * src/mcs51/main.c (_linkCmd): Added bin path to command.
5541
5542         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
5543
5544         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
5545
5546         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
5547
5548         * support/regression/tests/longor.c: Added.
5549
5550 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
5551
5552         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
5553
5554         * as/mcs51/aslink.h: define PATH_MAX
5555
5556         * as/mcs51/asm.h: define PATH_MAX
5557
5558         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
5559
5560         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
5561
5562         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
5563
5564         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
5565
5566         * src/SDCCglobl.h: define PATH_MAX
5567
5568         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
5569
5570         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
5571
5572 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
5573
5574         * src/z80/gen.c (gencjneshort): Fixed
5575
5576         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
5577
5578 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
5579
5580         * support/regression/tests/bug-469671.c: Added.
5581
5582         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
5583
5584 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
5585
5586         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
5587
5588         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
5589
5590 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
5591
5592         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
5593
5594         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
5595
5596         * src/device/lib/_mullong.c : removed hint: nooverlay bug
5597
5598         * src/device/lib/_divuint.c : removed hint: nooverlay bug
5599
5600         * src/device/lib/_divulong.c: removed hint: nooverlay bug
5601
5602         * src/device/lib/_moduint.c : removed hint: nooverlay bug
5603
5604         * src/device/lib/_modulong.c: removed hint: nooverlay bug
5605
5606 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
5607
5608         * 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.
5609
5610         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
5611
5612         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
5613
5614 2001-10-07    <johan AT FRIJA>
5615
5616         * device/lib/gets.c (gets): fixed the return value.
5617
5618 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
5619         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
5620
5621         * 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.
5622
5623         * 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.
5624
5625         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
5626
5627         * src/pic/gen.c: Removed Safe_strdup.
5628
5629         * configure.in: Added option to enable libgc support.
5630
5631         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
5632         (bitVectUnion): Optimised.
5633         (bitVectIntersect): Optimised.
5634         (bitVectBitsInCommon): Optimised.
5635         (bitVectCplAnd): Optimised.
5636
5637         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
5638
5639 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
5640
5641         * src/SDCCmain.c: distinguish between assembler debug and plain options
5642
5643         * src/avr/main.c:   remove standard assembler options
5644
5645         * src/ds390/main.c: remove standard assembler options
5646
5647         * src/mcs51/main.c: remove standard assembler options
5648
5649         * src/port.h: removed "PENDING" comment
5650
5651 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
5652
5653         * src/device/lib/_mulint.c  : new, with assember functions
5654
5655         * src/device/lib/_mullong.c : new, with assember functions
5656
5657         * src/device/lib/_divuint.c : with assember functions
5658
5659         * src/device/lib/_divsint.c : with assember functions
5660
5661         * src/device/lib/_divulong.c: with assember functions
5662
5663         * src/device/lib/_divslong.c: with assember functions
5664
5665         * src/device/lib/_moduint.c : with assember functions
5666
5667         * src/device/lib/_modsint.c : with assember functions
5668
5669         * src/device/lib/_modulong.c: with assember functions
5670
5671         * src/device/lib/_modslong.c: with assember functions
5672
5673         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
5674
5675         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
5676
5677         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
5678                                       replaced _mululong.c and _mulslong.c by _mullong.c
5679
5680 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
5681
5682         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
5683
5684 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
5685
5686         * src/SDCCglue.c: test, if win32api is available for MINGW
5687
5688 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
5689
5690         * src/SDCCsymt.c: no more _modifier in printTypeChain()
5691         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
5692         * support/regression/ports/gbz80/spec.mk: removed GENERIC
5693         * support/regression/ports/host/spec.mk: removed GENERIC
5694         * support/regression/ports/mcs51/spec.mk: removed GENERIC
5695         * support/regression/ports/z80/spec.mk: removed GENERIC
5696
5697 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
5698
5699         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
5700
5701         * support/regression/tests/bug-467035.c: Created.
5702
5703 2001-10-01    <johan AT FRIJA>
5704
5705         * src/SDCC.y: fixed bug #466586 part 1
5706
5707 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
5708
5709         * SDCCicode.c: z80 has no generic pointers
5710         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
5711         
5712 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
5713
5714         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
5715
5716 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
5717
5718         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
5719
5720         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
5721
5722 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
5723
5724         * configure.in: Fixed up so that ucsim is only configured once.
5725
5726         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
5727
5728         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
5729         (getPathDifference): As above.
5730
5731         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
5732
5733         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
5734
5735 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
5736         * .version: Updated to 2.3.1
5737
5738         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
5739         Added copyright header.
5740
5741         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
5742         (assemble): Added support for macro based assembler commands.
5743         (linkEdit): Added support for macro based linker commands.
5744         (preProcess): Changed the pre-processor to use macros.
5745         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
5746         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
5747
5748         * device/lib/z80/crt0.s: Added module name for debugging.
5749
5750 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
5751
5752         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
5753
5754         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
5755
5756         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
5757
5758         * src/Makefile.in: Added SDCCmacro and SDCCutil
5759
5760 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
5761
5762         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
5763
5764 2001-09-16    <johan AT FRIJA>
5765
5766         * 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.
5767
5768 2001-09-15    <johan AT FRIJA>
5769
5770         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
5771         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
5772
5773 2001-09-11    <johan AT FRIJA>
5774
5775         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
5776
5777 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
5778
5779         * support/regression/tests/bug-460444.c: Added test case.
5780
5781         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
5782         (genCast): Added justification for all of the asserts.
5783
5784 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
5785
5786         * support/regression/support.c: _xdata replaced by xdata
5787
5788         * support/regression/spec.mk: removed _generic
5789
5790 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
5791
5792         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
5793
5794         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
5795         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
5796
5797         * src/z80/peeph.def: Added a rule to optimise shift then compare.
5798
5799         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
5800
5801         * support/regression/tests/bug-460010.c: Added test case.
5802
5803         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
5804
5805 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
5806
5807         * support/regression/Makefile: inter-port-clean adjusted for mcs51
5808
5809         * support/regression/testfwk.c: removed workaround for bug #436344
5810
5811         * support/regression/tests/bp.c: use less memory with mcs51
5812
5813         * support/regression/tests/bug-441448.c: use less memory
5814
5815         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
5816
5817         * support/regression/collate-results.py: typo
5818
5819 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
5820
5821         * support/regression/tests/fetchoverlap.c: Added new test case.
5822
5823         * support/regression/tests/bp.c: Added new test case.
5824
5825         * support/regression/tests/bug-448984.c: Added new test case.
5826
5827         * support/regression/tests/pow2shifts.c: Added new test case.
5828
5829         * src/z80/gen.c: Turned off the noise it normally generates for the release.
5830         (genlshTwo): Fixed right shift for count > 8.
5831
5832         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
5833
5834 2001-09-08    <johan AT FRIJA>
5835
5836         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
5837
5838 2001-09-07    <johan AT FRIJA>
5839
5840         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
5841
5842         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
5843
5844 2001-09-06    <johan AT FRIJA>
5845
5846         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
5847         * bernhard noted me at this: "() equals to (void)" (1.38)
5848
5849 2001-09-05    <johan AT FRIJA>
5850
5851         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
5852
5853 2001-09-04    <johan AT FRIJA>
5854
5855         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
5856
5857
5858 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
5859
5860         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
5861
5862 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
5863
5864         * link/z80/aslink.h: Fixed path for PATH_MAX
5865
5866 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
5867
5868         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
5869
5870         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
5871
5872         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
5873
5874         * 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.
5875
5876 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
5877
5878         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
5879         (genCmp): Fixed up genCmp for the GB with longs.
5880
5881         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
5882
5883         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
5884
5885         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
5886
5887         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
5888
5889 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
5890
5891         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
5892
5893 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
5894
5895         * 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.
5896
5897         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
5898
5899 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
5900
5901         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
5902
5903         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
5904
5905 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
5906
5907   * sim/ucsim/configure:    little improvement of Cygwin-detection      
5908   * sim/ucsim/configure.in: little improvement of Cygwin-detection      
5909   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
5910   * support/regression/tests/bug-221100.c: small changes for mcs51
5911   * support/regression/tests/bug-221168.c: small changes for mcs51
5912   * support/regression/tests/bug-227710.c: small changes for mcs51
5913   * support/regression/tests/staticinit.c: small changes for mcs51
5914   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
5915   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
5916   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601