* as/link/mcs51/lkarea.c (lnkarea2): handle absolute areas, restructured
[fw/sdcc] / ChangeLog
1 2006-12-21 Maarten Brock <sourceforge.brock AT dse.nl>
2
3         * as/link/mcs51/lkarea.c (lnkarea2): handle absolute areas, restructured
4            BSEG handling,
5           (lnksect2): use --data-loc and --idata-loc as lower bound for ramstart,
6            corrected overlayed areax addresses, warn about memory overlaps
7         * as/mcs51/asmain.c (asmbl): create a new area for every .org directive
8         * src/avr/main.c,
9         * src/ds390/main.c,
10         * src/hc08/main.c,
11         * src/mcs51/main.c,
12         * src/pic16/main.c,
13         * src/pic/main.c,
14         * src/xa51/main.c,
15         * src/z80/main.c,
16         * src/port.h: added xabs_name and iabs_name
17         * src/SDCCglue.c (emitRegularMap): allocate for absolutes with initializer
18           (glue, emitMaps): create and emit maps d_abs and i_abs
19         * src/SDCCglue.h: cosmetic changes
20         * src/SDCCmain.c (setDefaultOptions): idata can start below 0x80
21         * src/SDCCmem.h,
22         * src/SDCCmem.c (initMem): added x_abs, i_abs and d_abs
23           (allocDefault): put absolute, initialized globals in them
24         * support/regression/tests/absolute.c: added absolute bdata test
25         * device/lib/printf_large.c (output_float): moved fpBuffer to stack/xdata
26
27 2006-12-20 Borut Razem <borut.razem AT siol.net>
28
29         * support/cpp2/cpphash.h, support/cpp2/cpplex.c: fixed bug #982435
30         * support/regression/tests/bug-1351710.c: renamed from bug-1351710.c,
31           added regression test for bug #982435
32
33 2006-12-18 Borut Razem <borut.razem AT siol.net>
34
35         * src/SDCCutil.c: fixed a bug in (get_pragma_token)
36         * src/pic16/main.c, src/SDCC.lex, src/z80/main.c:
37           small cosmetic changes
38         * src/SDCC.lex: (stringLiteral) fixed bug #1351710
39         * support/regression/tests/bug-1351710.c: added regression test
40
41 2006-12-18 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
42
43         * doc/sdccman.lyx: added the long missed iCode table
44           "<where is figure II?>", added links to wiki
45
46 2006-12-17 Borut Razem <borut.razem AT siol.net>
47
48         * doc/sdccman.lyx, src/pic16/main.c, src/pic/main.c, src/port.h,
49           src/SDCC.lex, src/SDCCutil.[ch], src/z80/main.c,
50           support/Util/SDCCerr.[ch]: removed deprecated pragmas,
51           unified table driven pragma handling, pragma argument type checking
52         * support/Util/dbuf.c: (dbuf_set_size) allow to set size equal to the
53           current one - version 1.1.3
54         * src/SDCCmain.c: (setParseWithComma) substituted brain damaged strtok
55
56 2006-12-13 Raphael Neider <rneider AT web.de>
57
58         * src/pic/device.h: removed AssignedMemory structure and macros
59         * src/pic/device.c: removed global finalMapping (linker assigns
60             memory locations),
61           (register_map): add SFRs to remembered memRanges
62           (addMemRange,isSFR,dump_map,dump_sfr,mapRegister,assignRegister,
63           assignFixedRegisters,assignRelocatableRegisters): removed,
64           (setMaxRAM,validAddress): adapted accordingly,
65           (pic14_hasSharebank,pic14_getSharedStack): only report and use
66             reasonably sized sharebanks,
67         * src/pic/ralloc.c (writeUsedRegs): stripped down (remove?),
68           (allDefsOutOfRange): removed unused code,
69         * src/pic/main.c (_process_pragma): removed memmap/maxram pragma
70             handling
71         * src/pic/pcode.c (register_reassign): removed recursion warning,
72             fired far too often,
73         * src/pic/glue.c (emitSymbolToFile,pic14_constructAbsMap): modified
74             to use existing pic14_stringInSet() to avoid duplicate symbols,
75             tidied up the code a bit,
76           (pic14printLocals): added in symmetry to printExterns, replaces
77             writeUsedRegs more or less,
78           (picglue): call new pic14_printLocals(),
79         * device/include/pic/pic*.h: removed #pragma memmap directives,
80             information gathered from include/pic/pic14devices.txt
81         * support/scripts/inc2h.pl: do not emit #pragma memmap lines
82
83 2006-12-10 Maarten Brock <sourceforge.brock AT dse.nl>
84
85         * device/include/mcs51/C8051F520.h: fixed buggy CPT0MX
86
87 2006-12-11 Jesus Calvino-Fraga <jesusc at ece.ubc.ca>
88
89         * device/include/mcs51/cc2430.h: fixed missing ';'
90
91 2006-12-10 Raphael Neider <rneider AT web.de>
92
93         * device/lib/pic16/libc/stdio/vfprintf.c,
94         * device/lib/pic16/libc/stdio/printf_small.c,
95         * device/lib/pic16/libc/stdio/printf_timy.c: pop int from stack for
96           char arguments, as char varargs are cast to int by the caller,
97           hopefully fixes #1604915 (other device libraries are still affected)
98
99 2006-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
100         * src/mcs51/ralloc.c (packRegsForAssign),
101         * src/hc08/ralloc.c (packRegsForAssign): fixed bug #1605880
102
103 2006-12-10 Maarten Brock <sourceforge.brock AT dse.nl>
104
105         * device/include/malloc.h: removed init_dynamic_memory
106         * device/lib/malloc.c: made init_dynamic_memory static and automatically
107           call it once from malloc. Also use _sdcc_heap[] from _heap.c
108         * device/lib/_heap.c: new, added, contains _sdcc_heap[]
109         * device/lib/libsdcc.lib,
110         * device/lib/Makefile.in,
111         * support/regression/ports/mcs51-xstack-auto/spec.mk: added _heap.c
112         * doc/sdccman.lyx: documented use of new _heap.c
113         * support/regression/tests/malloc.c: removed init_dynamic_memory
114         * src/cdbFile.c(spacesToUnderscores): new function,
115           (cdbWriteEndFunction, cdbWriteCLine): use spacesToUnderscores, fixes bug
116           1068030
117         * device/include/tinibios.h: removed defines for putchar and getchar
118         * device/lib/ds390/Makefile.in: added putchar.c
119         * device/lib/ds390/putchar.c: new, added, fixes bug 1465671
120
121 2006-12-09 Borut Razem <borut.razem AT siol.net>
122
123         * support/cpp2/sdcc.h: prevent multiple inclusion
124         * support/cpp2/options.h: deleted
125
126 2006-12-08 Borut Razem <borut.razem AT siol.net>
127
128         * support/cpp2/sdcc.h: removed x*alloc() macros
129         * support/cpp2/libiberty.h: uncommented out x*alloc() declarations
130         * support/cpp2/Makefile.bcc, support/cpp2/Makefile.in,
131           support/cpp2/sdcpp.sdc: x*alloc files added to the project
132         * support/cpp2/system.h: moved #include "sdcc.h"
133         * support/cpp2/libiberty/xexit.c, support/cpp2/libiberty/xmalloc.c,
134           support/cpp2/libiberty/xstrdup.c, support/cpp2/libiberty/xstrerror.c:
135           added
136         * support/cpp2/sdcppinit.c: added -isysroot, -fsigned-char,
137           -funsigned-char options
138         * support/cpp2/sdcppmain.c: fixed bug 1611411
139
140 2006-12-07 Borut Razem <borut.razem AT siol.net>
141
142         * support/cpp2/cpplib.c: reverted sdcpp special handling of _Pragma()
143           directive
144
145 2006-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
146
147         * src/SDCCsymt.c (addDecl): fixed bug 1609244
148         * src/SDCCmain.c (linkEdit): fixed bug 1609279
149         * doc/sdccman.lyx,
150         * .version: bumped to 2.6.2 because a) it's been a while
151           b) the linker sources have moved c) the preprocessor is upgraded
152
153 2006-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
154
155         * support/regression/tests/snprintf.c: some checks
156         * lib/src/printf_large.c: %bc: read char instead of int from stack
157
158 2006-12-03 Maarten Brock <sourceforge.brock AT dse.nl>
159
160         * device/include/mcs51/cc2430.h: inserted _XPAGE
161
162 2006-12-02 Jesus Calvino-Fraga <jesusc at ece.ubc.ca>
163
164         * device/include/mcs51/cc2430.h: added
165
166 2006-12-02 Maarten Brock <sourceforge.brock AT dse.nl>
167
168         * device/include/asm/default/features.h,
169         * device/include/asm/ds390/features.h,
170         * device/include/mcs51/at89s53.h,
171         * device/include/ser.h,
172         * device/include/ser_ir.h,
173         * device/include/serial.h: changed keywords to double underscore variants,
174           fixes bug 1590261 some more, thanks Steven Borley
175
176 2006-12-01 Raphael Neider <rneider AT web.de>
177
178         * src/pic/pcode.c (register_reassign): do not crash on recursive code
179           but emit warning (recursion is not supported for pic14)
180
181 2006-11-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
182
183         * src/mcs51/peeph.def: added 101.a,b (moves to int/long xdata)
184         * doc/sdccman.lyx: various small changes, acknowledged Sourceforge
185
186 2006-11-30 Raphael Neider <rneider AT web.de>
187
188         * src/pic/device.c (dump_sfr): always emit symbols
189         * src/pic/glue.c (pic14printPublics): fixed typo
190
191 2006-11-30 Raphael Neider <rneider AT web.de>
192
193         * src/pic/device.c (create_pic,ram_map): add memRange entries to PIC
194           (pic14_getSharebankSize, pic14_getSharebankAddress): replaced with
195           (pic14_hasSharebank,pic14_isShared,pic14_allRAMShared,
196            pic14_getSharedStack): NEW, evaluate the memRange entries to locate
197            a sharebank, use a non-shared bank for the stack if none available
198         * src/pic/device.h (struct memRange): added linked list next field,
199           added prototypes for above functions
200         * src/pic/ralloc.c (initStack): handle shared and banked stacks,
201           (typeRegWithIdx): accept fixed and unfixed stack registers
202         * src/pic/pcode.c (pCodeInitRegisters): use new functions to create
203           the stack, handle shared and banked stack (except for WSAVE),
204           (insertBankSel): removed useless optimization (will never fire),
205           (FixRegisterBanking): added optimization for devices with only one
206           possibly aliased bank of memory, like 16f84
207         * src/pic/glue.c (pic14_constructAbsMap): back to udata_ovr, as some
208           devices have no SHAREBANK in the linker script
209         * device/include/pic/pic14devices.txt: documented memmap
210         * device/lib/pic/libdev/Makefile.in: removed --stack-loc again
211
212 2006-11-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
213
214         * src/hc08/gen.c (transferRegReg, loadRegFromAop, forceStackedAop,
215           storeRegToAop, freeAsmop, genPlusIncr, genPlus, genPointerGetSetOfs,
216           genAnd, genOr, genXor, genLeftShiftLiteral, genRightShiftLiteral,
217           genhc08Code): switched most of the D (debug) macros to DD (detailed
218           debug) macros to better control clutter in the generated .asm file.
219         * src/hc08/gen.c: (forceStackedAop, genUminus, genLeftShift,
220           genRightShift): fixed bug with non-constant bit shift stored to
221           a volatile result (SF Open Discussion forum thread #1616749).
222           Single byte case is not yet optimized.
223
224 2006-11-28 Maarten Brock <sourceforge.brock AT dse.nl>
225
226         * device/include/asm/mcs51/features.h,
227         * device/include/malloc.h,
228         * device/include/stdio.h: changed keywords to double underscore variants,
229           fixes bug 1590261
230
231 2006-11-27 Borut Razem <borut.razem AT siol.net>
232
233         * support/cpp2/cppexp.c, support/cpp2/hashtable.h,
234           support/cpp2/Makefile.in, support/cpp2/cppfiles.c,
235           support/cpp2/output.h, support/cpp2/cppinit.c,
236           support/cpp2/cpplib.c, support/cpp2/cpplib.h,
237           support/cpp2/Makefile.bcc, support/cpp2/cpphash.c,
238           support/cpp2/cppdefault.c, support/cpp2/system.h,
239           support/cpp2/cpphash.h, support/cpp2/cpplex.c,
240           support/cpp2/cppdefault.h, support/cpp2/mbchar.c,
241           support/cpp2/prefix.c, support/cpp2/except.h,
242           support/cpp2/hwint.h, support/cpp2/cppmacro.c,
243           support/cpp2/line-map.h, support/cpp2/sdcpp.dsp,
244           support/cpp2/sdcc.h, support/cpp2/mkdeps.c,
245           support/cpp2/version.c, support/cpp2/cppmain.c,
246           support/cpp2/version.h, support/cpp2/hashtable.c,
247           support/cpp2/cpperror.c:
248           synchronized with GCC CPP release version 3.3.6,
249           the latest where cppmain.c still exists.
250         * support/cpp2/cpptrad.c, support/cpp2/sdcppmain.c,
251           support/cpp2/sdcppinit.c: added
252
253 2006-11-27 Borut Razem <borut.razem AT siol.net>
254
255         * support/cpp2/cpplex.c:
256           fixed _asm ... _endasm handling bug, introduce with GCC CPP
257           synchronization
258         * support/cpp2/cpplib.c: removed definitions of unused variables
259
260 2006-11-26 Borut Razem <borut.razem AT siol.net>
261
262         * support/cpp2/libiberty.h: commented out x*alloc() declarations
263           since they are redefined by macros in support/cpp2/sdcc.h
264         * support/cpp2/sdcc.h: x*alloc macro redefinition
265
266 2006-11-25 Borut Razem <borut.razem AT siol.net>
267
268         * support/cpp2/cppexp.c, support/cpp2/hashtable.h,
269           support/cpp2/configure, support/cpp2/Makefile.in,
270           support/cpp2/cppfiles.c, support/cpp2/output.h,
271           support/cpp2/cppinit.c, support/cpp2/cpplib.c,
272           support/cpp2/config.h, support/cpp2/cpplib.h,
273           support/cpp2/Makefile.bcc, support/cpp2/cpphash.c,
274           support/cpp2/cppdefault.c, support/cpp2/config.in,
275           support/cpp2/system.h, support/cpp2/cpplex.c,
276           support/cpp2/cpphash.h, support/cpp2/mbchar.c,
277           support/cpp2/cppdefault.h, support/cpp2/prefix.c
278           support/cpp2/hwint.h, support/cpp2/mbchar.h,
279           support/cpp2/prefix.h, support/cpp2/cppmacro.c,
280           support/cpp2/configure.in, support/cpp2/intl.h,
281           support/cpp2/sdcpp.dsp, support/cpp2/acconfig.h,
282           support/cpp2/sdcc.h, support/cpp2/mkdeps.c,
283           support/cpp2/version.c, support/cpp2/cppmain.c,
284           support/cpp2/ansidecl.h, support/cpp2/libiberty.h,
285           support/cpp2/hashtable.c, support/cpp2/aclocal.m4,
286           support/cpp2/cpperror.c,
287           support/cpp2/libiberty/safe-ctype.c,
288           support/cpp2/libiberty/safe-ctype.h,
289           support/cpp2/libiberty/splay-tree.c,
290           support/cpp2/libiberty/obstack.c,
291           support/cpp2/libiberty/lbasename.c,
292           support/cpp2/libiberty/splay-tree.h,
293           support/cpp2/libiberty/obstack.h:
294           synchronized with GCC CPP release version 3.2.3,
295           the latest before integration of cpp into gcc
296         * support/cpp2/except.h, support/cpp2/line-map.c,
297           support/cpp2/line-map.h,
298           support/cpp2/libiberty/hex.c,
299           support/cpp2/libiberty/concat.c,
300           support/cpp2/libiberty/filenames.h: added
301         * support/cpp2/intl.c: deleted
302
303 2006-11-24 Borut Razem <borut.razem AT siol.net>
304
305         * src/SDCC.y: enabled compilation of empty source file
306         * support/Util/SDCCerr.[ch]: added sdcc warning 190 -
307           "ISO C forbids an empty source file"
308         * device/lib/_startup.c, device/lib/printf_tiny.c: disable warning 190
309           if all the code is ifdefed out.
310
311 2006-11-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
312
313         * src/hc08/gen.c (genPcall): fix for bug #1601032
314
315 2006-11-23 Maarten Brock <sourceforge.brock AT dse.nl>
316
317         * device/include/mcs51/c8051f000.h, device/include/mcs51/C8051F000.h,
318         * device/include/mcs51/c8051f018.h, device/include/mcs51/C8051F018.h,
319         * device/include/mcs51/c8051f020.h, device/include/mcs51/C8051F020.h,
320         * device/include/mcs51/c8051f040.h, device/include/mcs51/C8051F040.h,
321         * device/include/mcs51/c8051f060.h, device/include/mcs51/C8051F060.h,
322         * device/include/mcs51/c8051f120.h, device/include/mcs51/C8051F120.h,
323         * device/include/mcs51/c8051f200.h, device/include/mcs51/C8051F200.h,
324         * device/include/mcs51/c8051f300.h, device/include/mcs51/C8051F300.h,
325         * device/include/mcs51/c8051f310.h, device/include/mcs51/C8051F310.h,
326         * device/include/mcs51/c8051f320.h, device/include/mcs51/C8051F320.h,
327         * device/include/mcs51/c8051f326.h, device/include/mcs51/C8051F326.h,
328         * device/include/mcs51/c8051f330.h, device/include/mcs51/C8051F330.h,
329         * device/include/mcs51/c8051f340.h, device/include/mcs51/C8051F340.h,
330         * device/include/mcs51/c8051f350.h, device/include/mcs51/C8051F350.h,
331         * device/include/mcs51/c8051f410.h, device/include/mcs51/C8051F410.h:
332           Renamed to all upper case as per the standard set by SiLabs
333
334 2006-11-23 Maarten Brock <sourceforge.brock AT dse.nl>
335
336         * device/include/mcs51/C8051F520.h: new, added
337         * device/include/mcs51/compiler.h: added link about predefined macros
338
339 2006-11-23 Raphael Neider <rneider AT web.de>
340
341         * src/regression/Makefile: add -L path to fresh library
342         * src/regression/simulate: emphasize FAILED output
343         * src/regression/create_stc: output _failures from gpsim
344         * src/regression/compare4.c,
345         * src/regression/rotate6.c: fixed char literals,
346           all compile, all run =8-D
347
348         * src/pic/pcode.h: added isPCASMDIR macro
349         * src/pic/gen.c (genAnd): fixed bit offset
350         * src/pic/ralloc.c (allocNewDirReg,allocDirReg,allocRegByName,
351           packBits): unified register numbering schemes,
352           (newReg): do not insert stack registers into hash table,
353           (initStack): unpinned pseudo stack, simplified,
354           (typeRegWithIdx): fixed retrieval of stack registers,
355         * src/pic/pcode.c (addpCodeComment,sameBank): added,
356           (pCodeReplace): removed invalid assertion,
357           (insertPCodeInstruction): fixed newly added labels,
358           (insertBankSwitch,BankSelect,IsBankChange,DoBankSelect,
359           FixRegisterBankingInFlow,compareBankFlow,FixBankFlow,
360           DumpFlow): removed unsed (broken?) code,
361           (insertBankSel): prevent STATUS from being BANKSELed,
362           (FixRegisterBanking): rewritten from scratch, implemented generic
363             optimizations (suppress BANKSELs to same register and to registers
364             present in all banks),
365           (AnalyzeBanking): update flow after BANKSELection
366
367         * src/pic/glue.c (pic14_constructAbsMap): emit pseudo stack in
368             sharebank, let linker place it, mark STKxx symbols as emitted
369
370 2006-11-21 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
371
372         * src/regression/arrays.c,
373         * src/regression/bank1.c,
374         * src/regression/bool2.c,
375         * src/regression/compare7.c,
376         * src/regression/compare8.c,
377         * src/regression/compare9.c,
378         * src/regression/compare10.c,
379         * src/regression/configword.c,
380         * src/regression/for.c,
381         * src/regression/mult1.c,
382         * src/regression/pointer1.c,
383         * src/regression/rotate6.c,
384         * src/regression/string1.c,
385         * src/regression/struct1.c,
386         * src/regression/Makefile: make PIC14 regression tests run again
387           (3 fail, 6 won't compile)
388
389 2006-11-21 Raphael Neider <rneider AT web.de>
390
391         * device/include/pic16/pic18f4550.h,
392         * device/include/pic16/pic18f4455.h,
393         * device/lib/pic16/libdev/pic18f4550.c,
394         * device/lib/pic16/libdev/pic18f4455.c: fixed #1578591 and #1595144
395         * configure.in: removed superfluous closing bracket
396
397 2006-11-21 Jesus Calvino-Fraga <jesusc at ece.ubc.ca>
398
399         * device/lib/expf.c: Fixed bug 1599523: result of expf(x) is
400           always positive.
401
402 2006-11-21 Raphael Neider <rneider AT web.de>
403
404         * src/pic/device.{c,h}: added pic14_getPIC()
405         * src/pic/gen.c (continueIfTrue,jumpIfTrue): added PIC code,
406           (genAnd): added PIC code for one case, fixes #1597044
407         * src/pic/pcode.c (BankSelect): Ohoh, added generic optimization for
408           SFRs that are present in all banks (e.g., STATUS)
409
410 2006-11-20 Raphael Neider <rneider AT web.de>
411
412         * src/pic/pcode.c: changed inverted ops for DECFSZ/DECFSZW and
413           INCFSZ/INCFSZW and declared them as changing Z bit,
414           (insertPCodeInstruction): correctly invert the above instructions,
415           fixes #1599333,
416           (DoBankSelect): don't panic on po_immediates
417
418 2006-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
419
420         * as/link/aslink.h,
421         * as/link/mcs51/lkihx.c (newArea),
422         * as/link/mcs51/lkrloc.c: renamed newArea() to ihxNewArea()
423         * as/link/mcs51/lkihx.c (ihx): output reset vector as start address
424
425 2006-11-11 Raphael Neider <rneider AT web.de>
426
427         * src/pic/pcode.c (newpCodeOpBit): search SymbolTab for referenced
428           bitfield symbols, fixes #1579535 (once more...).
429
430 2006-11-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
431
432         * support/regression/generate-cases.py,
433         * support/regression/fwk/include/testfwk.h,
434         * support/regression/fwk/lib/testfwk.c: used code pointers,
435           (about 50kByte less code generated for mcs51)
436
437 2006-11-06 Borut Razem <borut.razem AT siol.net>
438
439         * debugger/mcs51/acinclude.m4, debugger/mcs51/aclocal.m4,
440           debugger/mcs51/configure: fixed failed check because the function
441           rl_function_of_keyseq isn't in Readline 5.2. Thanks to Ilya Goldberg
442           who submitted the patch for gpsim.
443         * debugger/mcs51/configure.in: removed the result message
444         * debugger/mcs51/Makefile.in: fixed the config.status warning
445           "... seems to ignore the --datarootdir setting"
446
447 2006-11-03 Maarten Brock <sourceforge.brock AT dse.nl>
448
449         * device/include/mcs51/c8051f020.h,
450         * device/include/mcs51/c8051f040.h,
451         * device/include/mcs51/c8051f060.h,
452         * device/include/mcs51/c8051f120.h: added PS0, fixed bug 1589279
453         * src/z80/gen.c (gencjneshort),
454         * src/z80/peeph.def: applied patch 1571373, thanks Philipp Krause
455
456 2006-10-31 Borut Razem <borut.razem AT siol.net>
457
458         * debugger/mcs51/acinclude.m4, debugger/mcs51/aclocal.m4,
459           debugger/mcs51/configure: get readline version
460
461 2006-10-30 Borut Razem <borut.razem AT siol.net>
462
463         * debugger/mcs51/sdcdb.c: replaced hardcoded "/" with DIR_SEPARATOR_STRING
464         * debugger/mcs51/acinclude.m4, debugger/mcs51/aclocal.m4,
465           debugger/mcs51/configure: locate readline even when cross compiling
466         * support/scripts/sdcc.nsi: include readline5.dll into the setup package
467
468 2006-10-29 Jesus Calvino-Fraga <jesusc at ece.ubc.ca>
469
470         * device/include/mcs51/serial_IO.h: putchar() and getchar() using
471           serial port.
472
473 2006-10-29 Maarten Brock <sourceforge.brock AT dse.nl>
474
475         * device/include/malloc.h,
476         * device/lib/calloc.c,
477         * device/lib/free.c,
478         * device/lib/malloc.c,
479         * device/lib/realloc.c: moved definition of struct into sources
480         * support/regression/tests/malloc.c: use void* for init_dynamic_memory()
481
482 2006-10-29 Maarten Brock <sourceforge.brock AT dse.nl>
483
484         * as/asx8051.dsp: corrected output directories
485         * as/link/hc08: new directory for hc08 linker
486         * as/hc08/aslink.h,             as/link/aslink.h,
487         * as/hc08/aslink.mak,           as/link/hc08/aslink.mak,
488         * as/hc08/clean.mk,             as/link/hc08/clean.mk,
489         * as/hc08/link_hc08.dsp,        as/link/hc08/link_hc08.dsp,
490         * as/hc08/lkaomf51.c,           as/link/hc08/lkaomf51.c,
491         * as/hc08/lkarea.c,             as/link/hc08/lkarea.c,
492         * as/hc08/lkdata.c,             as/link/hc08/lkdata.c,
493         * as/hc08/lkelf.c,              as/link/hc08/lkelf.c,
494         * as/hc08/lkihx.c,              as/link/hc08/lkihx.c,
495         * as/hc08/lklibr.c,             as/link/hc08/lklibr.c,
496         * as/hc08/lkmain.c,             as/link/hc08/lkmain.c,
497         * as/hc08/lkmem.c,              as/link/hc08/lkmem.c,
498         * as/hc08/lkrloc.c,             as/link/hc08/lkrloc.c,
499         * as/hc08/lks19.c,              as/link/hc08/lks19.c,
500         * as/hc08/Makefile.aslink,      as/link/hc08/Makefile.aslink,
501         * as/hc08/Makefile.bcc,         as/link/hc08/Makefile.bcc,
502         * as/hc08/Makefile.in,          as/link/hc08/Makefile.in,
503         * as/link/hc08/conf.mk,
504         * configure,
505         * configure.in,
506         * Makefile.in,
507         * sdcc.dsw: moved hc08 linker to as/link/hc08
508         * as/hc08/lkeval.c,     as/link/mcs51/lkeval.c,     as/link/lkeval.c,
509         * as/hc08/lkhead.c,     as/link/mcs51/lkhead.c,     as/link/lkhead.c,
510         * as/hc08/lklex.c,      as/link/mcs51/lklex.c,      as/link/lklex.c,
511         * as/hc08/lklist.c,     as/link/mcs51/lklist.c,     as/link/lklist.c,
512         * as/hc08/lknoice.c,    as/link/mcs51/lknoice.c,    as/link/lknoice.c,
513         * as/hc08/lksym.c,      as/link/mcs51/lksym.c,      as/link/lksym.c,
514         * as/link/mcs51/aslink.dsp,
515         * as/link/mcs51/Makefile.in: factored out the common files
516         * as/hc08/lkstore.c: deleted, use the one already in as/link/
517         * as/clean.mk: extra cleaning common files
518         * as/link/mcs51/strcmpi.c,      as/strcmpi.c: moved
519         * as/link/mcs51/strcmpi.h: deleted, moved protoype to aslink.h
520         * as/mcs51/asm.h: include sdccconf.h or sdcc_vc.h
521
522 2006-10-29 Raphael Neider <rneider AT web.de>
523
524         * src/pic/ralloc.c (newReg): create aliases for registers with
525           multiple names to fix #1579535 and #1584001,
526           (regWithIdx,dirregWithName): resolve aliases on lookup
527         * src/pic/pcode.c (DoBankSelect): die with error message on failing
528           bankselect
529         * device/lib/pic/libdev/Makefile.in: move pseudo stack down to 0x4f
530           to prevent build errors on small devices
531
532 2006-10-28 Raphael Neider <rneider AT web.de>
533
534         * src/pic/gen.c (genFunction,genCall): drop "same code page"
535           assumption within interrupt handlers, fixes #1584940
536         * src/pic/glue.c (pic14_constructAbsMap): mark absolute symbols as
537           "emitted" to avoid emitting them again in udata
538
539 2006-10-27 Jesus Calvino-Fraga <jesusc at ece.ubc.ca>
540
541         * device/lib/_putchar.c, device/lib/_getchar.c, device/lib/inituart.c:
542         Removed.
543
544 2006-10-26 Jesus Calvino-Fraga <jesusc at ece.ubc.ca>
545
546         * device/lib/_putchar.c, device/lib/_getchar.c, device/lib/inituart.c:
547         Initialize uart only if SM0 and SM1 are zero.  Also, use flag to turn
548         on/off CR to CRLF conversion.
549
550 2006-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
551
552         * doc/sdccman.lyx: updated IRQ section
553
554 2006-10-24 Jesus Calvino-Fraga <jesusc at ece.ubc.ca>
555
556         * device/lib/serial_io.c: removed
557         * device/lib/_putchar.c, device/lib/_getchar.c, device/lib/inituart.c
558         replacements for serial_io.c
559
560 2006-10-24 Maarten Brock <sourceforge.brock AT dse.nl>
561
562         * src/z80/main.c (_process_pragma, _parseOptions): fixed bug 1583318
563
564 2006-10-24 Jesus Calvino-Fraga <jesusc at ece.ubc.ca>
565
566         * device/lib/serial_io.c: Default putchar() and getchar() for
567           mcs51 uses serial port.
568
569 2006-10-23 Maarten Brock <sourceforge.brock AT dse.nl>
570
571         * src/mcs51/gen.c (movc): improved check for 0 and 1, see RFE 1582704
572
573 2006-10-23 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
574
575         * support/regression/ports/mcs51/support.c: smaller
576         _sdcc_external_startup()
577         * device/lib/mcs51/crtxclear.asm: don't check high byte of l_PSEG
578
579 2006-10-20 Maarten Brock <sourceforge.brock AT dse.nl>
580
581         * device/lib/gbz80/crt0.s,
582         * device/lib/gbz80/crt0_rle.s,
583         * device/lib/gbz80/div.s,
584         * device/lib/gbz80/fstubs.s,
585         * device/lib/gbz80/heap.s,
586         * device/lib/gbz80/mul.s,
587         * device/lib/gbz80/putchar.s,
588         * device/lib/gbz80/stubs.s,
589         * device/lib/z80/crt0.s,
590         * device/lib/z80/crt0_rle.s,
591         * device/lib/z80/div.s,
592         * device/lib/z80/fstubs.s,
593         * device/lib/z80/heap.s,
594         * device/lib/z80/mul.s,
595         * device/lib/z80/putchar.s,
596         * device/lib/z80/stubs.s: reverted, I was mistaken
597
598 2006-10-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
599
600         * src/mcs51/peeph.def: peephole 238.x added check for notvolatile
601         * support/regression/ports/mcs51/support.c: removed race
602         condition on TI in _putchar allowing to use serial port mode 0
603
604 2006-10-20 Borut Razem <borut.razem AT siol.net>
605
606         * debugger/mcs51/sdcdb.c: replaced isblank() with isspace()
607
608 2006-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
609
610         * device/lib/gbz80/crt0.s,
611         * device/lib/gbz80/crt0_rle.s,
612         * device/lib/gbz80/div.s,
613         * device/lib/gbz80/fstubs.s,
614         * device/lib/gbz80/heap.s,
615         * device/lib/gbz80/mul.s,
616         * device/lib/gbz80/putchar.s,
617         * device/lib/gbz80/stubs.s,
618         * device/lib/z80/crt0.s,
619         * device/lib/z80/crt0_rle.s,
620         * device/lib/z80/div.s,
621         * device/lib/z80/fstubs.s,
622         * device/lib/z80/heap.s,
623         * device/lib/z80/mul.s,
624         * device/lib/z80/putchar.s,
625         * device/lib/z80/stubs.s: removed all leading underscores from area names
626
627 2006-10-17 Maarten Brock <sourceforge.brock AT dse.nl>
628
629         * support/regression/ports/mcs51/support.c: use highest baudrate so the
630           regression tests are not waiting in the simulator for simulated
631           transmission of debug output
632
633 2006-10-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
634
635         * device/lib/printf_large.c: slightly smaller
636         * doc/sdccman.lyx: do not use spaces within html links
637
638 2006-10-16 Borut Razem <borut.razem AT siol.net>
639
640         * configure.in, configure, sdccconf_in.h, src/SDCCglobal,
641           debugger/mcs51/Makefile.in, debugger/mcs51/sdcdb.[ch],
642           debugger/mcs51/aclocal.m4, debugger/mcs51/acinclide.m4,
643           debugger/mcs51/config.h.in, debugger/mcs51/configure.in,
644           debugger/mcs51/configure:
645           [ 1185668 ] add gnu readline support to sdcdb - enabled
646
647 2006-10-16 Raphael Neider <rneider AT web.de>
648
649         * src/pic/pcode.c (BankSelect): another fix on (partial) BANKSELs,
650           fixes #1577882, removes close to all banking optimizations
651
652 2006-10-15 Maarten Brock <sourceforge.brock AT dse.nl>
653
654         * src/SDCCsymt.c (checkSClass): no error for uninitialised absolute
655           variables in code memory
656         * support/regression/tests/absolute.c: added test for this
657
658 2006-10-15 Raphael Neider <rneider AT web.de>
659
660         * src/pic/pcode.c (InsertBankSel): suppress BANKSELs for one bank
661           devices,
662           (BankSelect): emit BANKSEL before touching linker-placed regs,
663           fixes #1570934
664
665 2006-10-10 Raphael Neider <rneider AT web.de>
666
667         * src/SDCCmain.c (optionsTable): accept --stack-size for PICs,
668         * src/pic/device.c (pic14_getSharebankSize,pic14_getSharebankAddress),
669         * src/pic/main.c (_pic14_parseOptions),
670         * src/pic/main.h: mostly reverted to previous state, now use results
671             from SDCCmain.c's argument parsing
672
673 2006-10-10 Borut Razem <borut.razem AT siol.net>
674
675         * debugger/mcs51/break.[ch], debugger/mcs51/cmd.c,
676           debugger/mcs51/sdcdb.[ch], debugger/mcs51/simi.c:
677           [ 1185668 ] add gnu readline support to sdcdb -
678           prepared for READLINE, not enabled yet,
679           thanks to <tal.bav AT gmail.com>
680
681 2006-10-10 Raphael Neider <rneider AT web.de>
682
683         * src/pic16/pcode.c (pic16_pCode2str): use isACCESS_BANK macro
684         * src/pic16/devices.inc,
685         * device/include/pic16 (pic18f[24]620.h),
686         * device/include/pic18fregs.h,
687         * device/lib/pic16/pics.all,
688         * device/lib/pic16/libdev/pic18f[24]{620,525}.c): added support for
689             18f2620, 18f4620, 18f2525, and 18f4525 devices, thanks to
690             Gary Plumbridge and Anton Strobl
691
692 2006-10-10 Raphael Neider <rneider AT web.de>
693
694         * src/pic/main.c (_pic14_parseOptions): added --stack-loc=NUM and
695           --stack-siz=NUM options to configure the argument passing stack
696         * src/pic/main.h: added stackLocation and stackSize to pic14_options_t
697         * src/pic/device.c (mapRegister): catch out-of-memory SIGSEGVs,
698           (pic14_getSharebankSize): obey --stack-siz=NUM,
699           (pic14_getSharebankAddress): obey --stack-loc=NUM
700
701 2006-10-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
702
703         * doc/sdccman.lyx: added to the manual
704         * doc/figures/ddd_example.png: added (neither pdflatex nor
705         most browsers seem to like the .eps file)
706
707 2006-10-06 Bernhard Held <bernhard AT bernhardheld.de>
708
709         * src/SDCCglue.c (tempfileandname): changed un*x tmp search paths
710         to /tmp and /var/tmp acc. LSB
711         * src/SDCCast.c (addCast): Fixed bug 1571231: promote in case of
712         RESULT_TYPE_IFX
713         * support/regression/tests/onebyte.c: added test
714
715 2006-10-05 Jesus Calvino-Fraga <jesusc at ece.ubc.ca>
716
717         * src/mcs51/gen.c: emitcode for "add a,0x%02x" requires only 8 bits.
718
719 2006-10-05 Borut Razem <borut.razem AT siol.net>
720
721         * partially fixed [ 1570701 ] peephole - not replacing code from multiline macros,
722           thanks to dfulab:
723           - sdcc.dsw: changed property eol-style to CRLF
724           - support/scripts/resource.rc: replaced references to "afxres.h" with "winres.h"
725
726 2006-10-04 Raphael Neider <rneider AT web.de>
727
728         * device/include/pic/{pic16f84.h,pic16f84a.h},
729         * device/lib/pic/libdev/{pic16f84.c,pic16f84a.c}: added PORT[AB]_bits
730           from patch #1522504, thanks to Robas Teodor
731
732 2006-10-02 Maarten Brock <sourceforge.brock AT dse.nl>
733
734         * as/link/z80/lkarea.c: essentially reverted lnksect() to #4380 which
735           fixes bug 1566015
736
737 2006-10-01 Maarten Brock <sourceforge.brock AT dse.nl>
738
739         * src/pic16/glue.c (pic16emitMaps),
740         * src/pic/glue.c (pic14emitMaps): hopefully fixed bug 1568779
741         * device/lib/gets.c: fixed bug 1568829,thanks Philipp Krause
742         * device/lib/pic16/libc/string/memcpypgm2ram.c,
743         * device/lib/pic16/libc/string/memcpyram2ram.c: fixed bug 1568836, thanks
744           Philipp Krause
745         * as/mcs51/asmain.c (asmbl, newdot): fixed problems with absolute areas
746         * as/link/mcs51/lkmem.c (summary2): reverted, do do count abs segments
747
748 2006-09-30 Jesus Calvino-Fraga <jesusc at ece.ubc.ca>
749
750         * support/librarian/sdcclib.c: Added option -l.
751         * as/link/mcs51/lkmem.c: don't use absolute segments to compute memory
752           usage totals.
753         * device/lib/make51lib.bat: added.  Allows building mcs51 libraries easily
754           using Windows command prompt.
755
756 2006-09-30 Maarten Brock <sourceforge.brock AT dse.nl>
757
758         * device/lib/libsdcc.lib: added module rand
759         * src/ds390/ralloc.c (rematStr),
760         * src/hc08/ralloc.c (rematStr),
761         * src/mcs51/ralloc.c (rematStr),
762         * src/z80/ralloc.c (rematStr): made output more consistent
763         * src/mcs51/gen.c: cosmetic changes
764
765 2006-09-30 Maarten Brock <sourceforge.brock AT dse.nl>
766
767         * src/port.h: added mem.cabs_name to PORT
768         * src/ds390/main.c,
769         * src/hc08/main.c,
770         * src/mcs51/main.c,
771         * src/pic16/main.c,
772         * src/pic/main.c,
773         * src/xa51/main.c,
774         * src/z80/main.c: added cabs_name initializers
775         * src/SDCCglue.c (emitStaticSeg): allocate and initialize absolute
776           constants
777           (emitMaps): emit absolutes in code memory into cabs_name
778         * src/SDCCmem.c,
779         * src/SDCCmem.h: added memory map c_abs and defined CABS_NAME
780         * src/ds390/gen.c (genCodePointerGet): fixed bug if left is a literal
781         * support/regression/fwk/include/testfwk.h: added define for at
782         * support/regression/tests/absolute.c: added, new
783
784 2006-09-29 Maarten Brock <sourceforge.brock AT dse.nl>
785
786         * src/mcs51/gen.c (genPlusIncr, genMinusDec, genAddrOf): small
787           optimizations, see also patch 887161 by Stas Sergeev
788         * src/mcs51/peeph.def(104, 207, 209, 212): disabled as they do not seem
789           to be necessary anymore,
790           (102, 103, 104, 127): renamed all occurances of bp to _bp
791
792 2006-09-27 Maarten Brock <sourceforge.brock AT dse.nl>
793
794         * device/include/mcs51/at89c51snd1c.h: fixed MSK_SREQ definition
795           thanks Weston T. Schmidt for patch 1555221
796         * src/mcs51/peeph.def: renamed rule 257 to 257.a, added 257.b
797         * src/SDCCicode.c(geniCodeMultiply): small optimization
798
799 2006-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
800
801         * device/include/stdlib.h: added rand prototypes
802         * device/lib/rand.c: new, added
803         * device/lib/Makefile.in: added rand.c
804         * src/z80/peeph.def,
805         * src/z80/peeph-gbz80.def,
806         * src/z80/peeph-z80.def: updated conditonals, fixed bug 1565908
807
808 2006-09-20 Raphael Neider <rneider AT web.de>
809
810         * device/lib/pic16/libio/i2c/i2cnack.c (i2c_nack): fixed ACKDT bit
811
812 2006-09-19 Maarten Brock <sourceforge.brock AT dse.nl>
813
814         * as/link/aslink.h: cosmetic changes
815         * as/link/mcs51/Makefile.in,
816         * as/link/z80/Makefile.in: fixed build on CF where VPATH is used
817
818 2006-09-17 Maarten Brock <sourceforge.brock AT dse.nl>
819
820         * as/link/aslink.h,
821         * as/link/mcs51/aslink.h,
822         * as/link/z80/aslink.h: merged and moved to as/link/
823         * as/link/lkstore.c,
824         * as/link/mcs51/lkstore.c: moved to as/link/
825         * as/link/clean.mk: remove *.o
826         * as/link/mcs51/alloc.h: deleted
827         * as/link/mcs51/lkarea.c: added lnksect prototype
828         * as/link/mcs51/lkdata.c,
829         * as/link/mcs51/lklex.c,
830         * as/link/mcs51/lkmain.c: renamed as_getline to lk_getline
831         * as/link/mcs51/lkmem.c,
832         * as/link/mcs51/lknoice.c: removed include strcmpi.h
833         * as/link/mcs51/lksym.c: include stdlib.h instead of malloc.h or alloc.h
834         * as/link/mcs51/aslink.dsp,
835         * as/link/mcs51/Makefile.aslink,
836         * as/link/mcs51/Makefile.bcc,
837         * as/link/mcs51/Makefile.in: updated for moved files
838         * as/link/z80/lkarea.c,
839         * as/link/z80/lkhead.c,
840         * as/link/z80/lklex.c,
841         * as/link/z80/lklibr.c,
842         * as/link/z80/lklist.c,
843         * as/link/z80/lkmain.c,
844         * as/link/z80/lkrloc.c,
845         * as/link/z80/lksym.c: synced with mcs51
846         * as/link/z80/lkdata.c,
847         * as/link/z80/lkeval.c,
848         * as/link/z80/lkihx.c,
849         * as/link/z80/lks19.c: cosmetic changes
850         * as/link/z80/Makefile.in,
851         * as/link/z80/linkgbz80.dsp,
852         * as/link/z80/linkz80.dsp: updated for moved files
853
854 2006-09-16 Borut Razem <borut.razem AT siol.net>
855
856         * debugger/mcs51/sdcdb.c: partially fixed
857           [ 1203664 ] sdcdb fails to open files w. two "." periods
858         * debugger/mcs51/simi.c, debugger/mcs51/symtab.c,
859           debugger/mcs51/symtab.h: fixed indenting
860         * configure.in, configure: up to date with latest Maarten's changes
861
862 2006-09-15 Maarten Brock <sourceforge.brock AT dse.nl>
863
864         as/link/mcs51
865         as/aslink.dsp,                  as/link/mcs51/aslink.dsp,
866         as/link/mcs51/aslink.h,         as/mcs51/aslink.h,
867         as/link/mcs51/aslink.mak,       as/mcs51/aslink.mak,
868         as/link/mcs51/lkaomf51.c,       as/mcs51/lkaomf51.c,
869         as/link/mcs51/lkarea.c,         as/mcs51/lkarea.c,
870         as/link/mcs51/lkdata.c,         as/mcs51/lkdata.c,
871         as/link/mcs51/lkeval.c,         as/mcs51/lkeval.c,
872         as/link/mcs51/lkhead.c,         as/mcs51/lkhead.c,
873         as/link/mcs51/lkihx.c,          as/mcs51/lkihx.c,
874         as/link/mcs51/lklex.c,          as/mcs51/lklex.c,
875         as/link/mcs51/lklibr.c,         as/mcs51/lklibr.c,
876         as/link/mcs51/lklist.c,         as/mcs51/lklist.c,
877         as/link/mcs51/lkmain.c,         as/mcs51/lkmain.c,
878         as/link/mcs51/lkmem.c,          as/mcs51/lkmem.c,
879         as/link/mcs51/lknoice.c,        as/mcs51/lknoice.c,
880         as/link/mcs51/lkrloc.c,         as/mcs51/lkrloc.c,
881         as/link/mcs51/lks19.c,          as/mcs51/lks19.c,
882         as/link/mcs51/lkstore.c,        as/mcs51/lkstore.c,
883         as/link/mcs51/lksym.c,          as/mcs51/lksym.c,
884         as/link/mcs51/Makefile.aslink,  as/mcs51/Makefile.aslink,
885         as/link/mcs51/alloc.h,
886         as/link/mcs51/clean.mk,
887         as/link/mcs51/conf.mk,
888         as/link/mcs51/Makefile.bcc,
889         as/link/mcs51/Makefile.in,
890         as/link/mcs51/readme.390,
891         as/link/mcs51/strcmpi.c,
892         as/link/mcs51/strcmpi.h,
893         as/mcs51/clean.mk,
894         as/mcs51/Makefile.bcc,
895         as/mcs51/Makefile.in,
896         configure,
897         Makefile.in,
898         sdcc.dsw: moved mcs51 linker to as/link/mcs51
899
900 2006-09-14 Maarten Brock <sourceforge.brock AT dse.nl>
901
902         * as/link,
903         * as/link/Makefile.in,
904         * as/link/z80/linkgbz80.dsp,
905         * as/link/z80/linkz80.dsp,
906         * configure,
907         * link,
908         * link/clean.mk,
909         * link/Makefile.in,
910         * link/README,
911         * link/z80,
912         * link/z80/aslink.h,
913         * link/z80/clean.mk,
914         * link/z80/conf.mk,
915         * link/z80/linkgbz80.dsp,
916         * link/z80/linkz80.dsp,
917         * link/z80/lkarea.c,
918         * link/z80/lkdata.c,
919         * link/z80/lkeval.c,
920         * link/z80/lkgb.c,
921         * link/z80/lkgg.c,
922         * link/z80/lkhead.c,
923         * link/z80/lkihx.c,
924         * link/z80/lklex.c,
925         * link/z80/lklibr.c,
926         * link/z80/lklist.c,
927         * link/z80/lkmain.c,
928         * link/z80/lkrloc.c,
929         * link/z80/lks19.c,
930         * link/z80/lksym.c,
931         * link/z80/Makefile.in,
932         * Makefile.in,
933         * sdcc.dsw: moved link/ to as/link/
934
935 2006-09-11 Maarten Brock <sourceforge.brock AT dse.nl>
936
937         * as/mcs51/i51mch.c (machine): fixed warning
938
939 2006-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
940
941         * as/mcs51/i51mch.c (machine): S_DJNZ fixed bug 1554318
942
943 2006-09-09 Borut Razem <borut.razem AT siol.net>
944
945         * debugger/mcs51/sdcdb.c, debugger/mcs51/simi.c:
946           sdcdb WIN32 native port
947         * src/clean.mk: fixed
948
949 2006-09-08 Borut Razem <borut.razem AT siol.net>
950
951         * doc/sdccman.lyx: SDCDB and ucSim are available on Win32 platforms.
952
953 2006-09-08 Raphael Neider <rneider AT web.de>
954
955         * src/pic16/main.c (_pic16_linkEdit,pic16_linkCmd),
956         * src/pic/main.c(_pic14_do_link, linkCmd): pass "-w" and "-r"
957             to gplink to disable processor mismatch warning and to allow
958             the use of devices with only aliased (shared) memory banks,
959           (_pic16_genAssemblerPreamble): include pXXX.inc on --mplab-comp
960
961 2006-09-07 Jesus Calvino-Fraga <jesusc at ece.ubc.ca>
962
963         * doc/sdccman.lyx: Some re-formating plus example on using
964           #pragma preproc_asm +/-
965
966 2006-09-07 Borut Razem <borut.razem AT siol.net>
967
968         * support/scripts/sdcc.nsi: added SDCDB executables in a separate
969           section
970
971 2006-09-06 Borut Razem <borut.razem AT siol.net>
972
973         * support/scripts/sdcc.nsi: fixed Error: unterminated string parsing
974           line at sdcc.nsi:153
975         * sdcc/debugger/mcs51/simi.c: argsToCmdLine() fixes
976
977 2006-09-05 Borut Razem <borut.razem AT siol.net>
978
979         * configure.in, configure: support for winsock2
980         * debugger/mcs51/break.h, debugger/mcs51/cmd.c,
981           debugger/mcs51/cmd.h, debugger/mcs51/sdcdb.c,
982           debugger/mcs51/sdcdb.h, debugger/mcs51/simi.c,
983           debugger/mcs51/simi.h, debugger/mcs51/symtab.c,
984           debugger/mcs51/symtab.h: sdcdb WIN32 native port
985
986 2006-09-05 Maarten Brock <sourceforge.brock AT dse.nl>
987
988         * src/SDCCopt.c (cnvToFcall): fixed bug 1551947 by updating OP_USES
989           and OP_DEFS
990         * support/regression/tests/bug1551947.c: new, added
991         * src/SDCCsymt.h: strings are char* not byte*
992
993 2006-09-05 Raphael Neider <rneider AT web.de>
994
995         * device/lib/pic16/libdev/pic18f4550.c,
996           device/include/pic16/pic18f4550.h: added PORTD/TRISD
997             declarations/definitions from patch #1520949
998
999 2006-09-05 Raphael Neider <rneider AT web.de>
1000
1001         * src/pic16/gen.c (genPackBits): fix assignment to 8-bit,
1002           byte-aligned bitfields, fixes #1539278
1003
1004 2006-09-05 Raphael Neider <rneider AT web.de>
1005
1006         * src/pic/gen.c (genReceive): skip unreferenced arguments,
1007           fixes #1544120
1008
1009 2006-09-04 Borut Razem <borut.razem AT siol.net>
1010
1011         * support/scripts/sdcc.nsi: move ucSim executables to a separate section
1012         * support/scripts/sdcc_cygwin_mingw32: don't disable ucsim,
1013           -mno-cygwin is a part of the compiler name
1014         * support/scripts/sdcc_mingw32: don't disable ucsim
1015
1016 2006-09-03 Borut Razem <borut.razem AT siol.net>
1017
1018         * sdcc.spec: corrected for 2.6.0. Thanks to Christer Weinigel.
1019         * device/lib/Makefile.in device/lib/clean.mk: small but essential corrections
1020
1021 2006-09-03 Raphael Neider <rneider AT web.de>
1022
1023         * src/pic/ralloc.c,
1024         * src/pic/pcode.c (InitReuseRegs): allocate registers with pseudo
1025           indices >= 0x1000 to disambiguate them from fixed regs __at(addr),
1026           fixes #1550049
1027
1028 2006-09-01 Borut Razem <borut.razem AT siol.net>
1029
1030         * sim/ucsim/cmd.src/cmdutil.cc: #include <sys/time.h> and <unistd.h>
1031           to make ppc-osx happy
1032
1033 2006-08-31 Borut Razem <borut.razem AT siol.net>
1034
1035         * sim/ucsim/cmd.src/newcmdposix.cc: #include <assert.h>
1036         * sim/ucsim/cmd.src/newcmd.cc: #include <ctype.h>
1037         * sim/ucsim/cmd.src/newcmd.cc: #include <ctype.h>
1038         * support/regression/ports/ds390/spec.mk,
1039           support/regression/ports/mcs51/spec.mk,
1040           support/regression/ports/xa51/spec.mk: introduced DEV_NULL variable.
1041           To run regression tests in mingw environment:
1042           make DEV_NULL=NUL CC=gcc
1043
1044 2006-08-30 Borut Razem <borut.razem AT siol.net>
1045
1046         * sim/ucsim/cmd.src/newcmdposix.cc, sim/ucsim/cmd.src/newcmdposixcl.h,
1047           sim/ucsim/cmd.src/newcmdwin32.cc, sim/ucsim/cmd.src/newcmdwin32cl.h,
1048           sim/ucsim/app.cc, sim/ucsim/appcl.h, sim/ucsim/configure,
1049           sim/ucsim/configure.in, sim/ucsim/ddconfig_in.h, sim/ucsim/error.cc,
1050           sim/ucsim/errorcl.h, sim/ucsim/option.cc, sim/ucsim/optioncl.h,
1051           sim/ucsim/utils.cc, sim/ucsim/utils.h, sim/ucsim/cmd.src/Makefile.in,
1052           sim/ucsim/avr.src/avr.cc, sim/ucsim/avr.src/avrcl.h,
1053           sim/ucsim/cmd.src/bp.cc, sim/ucsim/cmd.src/bpcl.h,
1054           sim/ucsim/cmd.src/cmdconf.cc, sim/ucsim/cmd.src/cmdgui.cc,
1055           sim/ucsim/cmd.src/cmdmem.cc, sim/ucsim/cmd.src/cmdset.cc,
1056           sim/ucsim/cmd.src/cmdsetcl.h, sim/ucsim/cmd.src/cmdstat.cc,
1057           sim/ucsim/cmd.src/cmduc.cc, sim/ucsim/cmd.src/cmduccl.h,
1058           sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/cmdutil.h,
1059           sim/ucsim/cmd.src/command.cc, sim/ucsim/cmd.src/commandcl.h,
1060           sim/ucsim/cmd.src/get.cc, sim/ucsim/cmd.src/getcl.h,
1061           sim/ucsim/cmd.src/info.cc, sim/ucsim/cmd.src/newcmd.cc,
1062           sim/ucsim/cmd.src/newcmdcl.h, sim/ucsim/cmd.src/set.cc,
1063           sim/ucsim/cmd.src/show.cc, sim/ucsim/cmd.src/timer.cc,
1064           sim/ucsim/hc08.src/hc08.cc, sim/ucsim/hc08.src/hc08cl.h,
1065           sim/ucsim/s51.src/Makefile.in, sim/ucsim/s51.src/interrupt.cc,
1066           sim/ucsim/s51.src/interruptcl.h, sim/ucsim/s51.src/pca.cc,
1067           sim/ucsim/s51.src/pcacl.h, sim/ucsim/s51.src/port.cc,
1068           sim/ucsim/s51.src/portcl.h, sim/ucsim/s51.src/serial.cc,
1069           sim/ucsim/s51.src/serialcl.h, sim/ucsim/s51.src/timer0.cc,
1070           sim/ucsim/s51.src/timer0cl.h, sim/ucsim/s51.src/timer1.cc,
1071           sim/ucsim/s51.src/timer1cl.h, sim/ucsim/s51.src/timer2.cc,
1072           sim/ucsim/s51.src/timer2cl.h, sim/ucsim/s51.src/uc390.cc,
1073           sim/ucsim/s51.src/uc390cl.h, sim/ucsim/s51.src/uc390hw.cc,
1074           sim/ucsim/s51.src/uc390hwcl.h, sim/ucsim/s51.src/uc51.cc,
1075           sim/ucsim/s51.src/uc51cl.h, sim/ucsim/s51.src/wdt.cc,
1076           sim/ucsim/s51.src/wdtcl.h, sim/ucsim/sim.src/hw.cc,
1077           sim/ucsim/sim.src/hwcl.h, sim/ucsim/sim.src/mem.cc,
1078           sim/ucsim/sim.src/memcl.h, sim/ucsim/sim.src/obsolete.cc,
1079           sim/ucsim/sim.src/obsolete.h, sim/ucsim/sim.src/sim.cc,
1080           sim/ucsim/sim.src/simcl.h, sim/ucsim/sim.src/stack.cc,
1081           sim/ucsim/sim.src/stackcl.h, sim/ucsim/sim.src/test_mem_speed.cc,
1082           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1083           sim/ucsim/xa.src/xa.cc, sim/ucsim/xa.src/xacl.h,
1084           sim/ucsim/z80.src/z80.cc, sim/ucsim/z80.src/z80cl.h:
1085           ucsim WIN32 native port
1086
1087 2006-08-30 Jesus Calvino-Fraga <jesusc at ece.ubc.ca>
1088
1089         * doc/sdccman.lyx: added note on dynamic memory heap initialization
1090
1091 2006-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
1092
1093         * src/mcs51/gen.c (genAnd, genOr, genXor): fixed bug 1546986
1094         * src/ds390/gen.c (aopGetUsesAcc): handle AOP_DPTR2 and AOP_DPTRn too
1095
1096 2006-08-26 Maarten Brock <sourceforge.brock AT dse.nl>
1097
1098         * src/ds390/gen.c (genAnd, genOr, genXor): fixed bug 1546986
1099         * support/regression/tests/bug1546986.c: new, added
1100         * as/mcs51/.cvsignore,
1101         * debugger/mcs51/.cvsignore,
1102         * src/.cvsignore: deleted
1103
1104 2006-08-25 Jesus Calvino-Fraga <jesusc at ece.ubc.ca>
1105
1106         * device/include/mcs51/P89c51RD2.h: fixed bug 1546936 (error in sbit
1107           definitions)
1108
1109 2006-08-20 Borut Razem <borut.razem AT siol.net>
1110
1111         * sim/ucsim/cmd.src/newcmd.cc, sim/ucsim/cmd.src/newcmdcl.h:
1112           removed cl_listen_console::match(), cl_console::match(),
1113           restructured cl_commander::proc_input()
1114
1115 2006-08-16 Borut Razem <borut.razem AT siol.net>
1116
1117         * sim/ucsim/cmd.src/newcmd.cc, sim/ucsim/cmd.src/newcmdcl.h,
1118           sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/cmdutil.h,
1119           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/uc.cc: code cleaning
1120
1121 2006-08-14 Borut Razem <borut.razem AT siol.net>
1122
1123         * support/regression/Makefile.in,
1124           support/regression/ports/pic14/gpsim.cmd,
1125           support/regression/ports/pic14/spec.mk,
1126           support/regression/ports/pic14/support.c:
1127           added pic14 regression test
1128
1129 2006-08-14 Maarten Brock <sourceforge.brock AT dse.nl>
1130
1131         * as/doc/asxhtm.html: documented changed ABS behaviour
1132         * as/doc/README: fixed some typos
1133
1134 2006-08-13 Maarten Brock <sourceforge.brock AT dse.nl>
1135
1136         * support/regression/tests/float_trans.c: disabled test if __STDC_IEC_559__
1137           not defined on host
1138
1139 2006-08-12 Borut Razem <borut.razem AT siol.net>
1140
1141         * support/regression/fwk/include/testfwk.h,
1142           support/regression/fwk/lib/testfwk.c,
1143           support/regression/generate-cases.py,
1144           support/regression/Makefile.in:
1145           regression test framework does not depend on function pointers and
1146           variable arguments
1147
1148 2006-08-09 Maarten Brock <sourceforge.brock AT dse.nl>
1149
1150         * device/include/stddef.h: c temporary hack to fix bug 1518273
1151
1152 2006-08-09 Jesus Calvino-Fraga <jesusc at ece.ubc.ca>
1153
1154         * device/include/mcs51/cc2510fx.h: added
1155         * src/z80/z80.dsp, src/gbz80/gbz80.dsp: added support/Util/strcmpi.ch
1156           to projects.
1157
1158 2006-08-09 Maarten Brock <sourceforge.brock AT dse.nl>
1159
1160         * as/z80/assym.c (mlookup): ignore case when looking up mnemonics
1161         * as/z80/Makefile.in: added strcmpi.c
1162         * as/z80/z80adr.c: added upper case registers and lower case conditionals
1163         * support/Util/strcmpi.ch: added with intention to remove from mcs51/hc08
1164
1165 2006-08-08 Maarten Brock <sourceforge.brock AT dse.nl>
1166
1167         * device/lib/gbz80/asm_strings.s,
1168         * device/lib/gbz80/crt0_rle.s,
1169         * device/lib/gbz80/div.s,
1170         * device/lib/gbz80/mul.s,
1171         * device/lib/gbz80/shift.s,
1172         * device/lib/z80/asm_strings.s,
1173         * device/lib/z80/crt0_rle.s,
1174         * device/lib/z80/div.s,
1175         * device/lib/z80/mul.s,
1176         * device/lib/z80/shift.s: changed to all lower case menmonics except the
1177           flags which are all upper case
1178
1179 2006-08-07 Maarten Brock <sourceforge.brock AT dse.nl>
1180
1181         * as/z80/asm.h: made CASE_SENSITIVE 1
1182         * link/z80/aslink.h: made CASE_SENSITIVE 1
1183         * src/z80/gen.c (throughout): made all conditionals upper case
1184         * support/regression/tests/bug1503067.c: new
1185
1186 2006-08-07 Maarten Brock <sourceforge.brock AT dse.nl>
1187
1188         * src/z80/gen.c (aopPut): fixed bug !*ixy should be !*iyx,
1189           (shiftIntoPair): added case 2 for PAIR_IY,
1190           (setupToPreserveCarry): replaced parameters with iCode and check if
1191            PAIR_DE is in use to fix bug 1399290,
1192           (genPlus, genMinus): updated call to setupToPreserveCarry
1193         * support/regression/tests/bug1399290.c: new
1194
1195 2006-08-06 Maarten Brock <sourceforge.brock AT dse.nl>
1196
1197         * device/lib/Makefile.in (Z80SOURCES): enabled float support
1198         * sim/ucsim/z80.src/inst.cc (inst_rst): generate breakpoint on RST8,ACC==0
1199         * src/ds390/gen.c (shiftRLong),
1200         * src/hc08/gen.c (shiftLLong, shiftRLong): fixed bug 1533966
1201         * src/mcs51/gen.c (sameReg): changed to sameByte,
1202           (xch_a_aopGet): new,
1203           (shiftL2Left2Result, shiftR2Left2Result, shiftRLeftOrResult, shiftLLong,
1204            shiftRLong): fixed bug 1533966
1205         * src/z80/gen.c (shiftR2Left2Result, shiftL2Left2Result, genlshTwo,
1206           genLeftShiftLiteral, genrshTwo, genRightShiftLiteral): fixed bug 1533966
1207         * support/regression/Makefile.in: disabled z80, enabled ucz80
1208         * support/regression/tests/float_trans.c: enabled test for z80 and host
1209         * support/regression/tests/shifts2.c: new, for testing bug 1533966
1210
1211 2006-08-01 Borut Razem <borut.razem AT siol.net>
1212
1213         * src/mcs51/gen.c, src/dc390/gen.c: fixed warning:
1214           comparison is always false due to limited range of data type
1215           on PPC64 machine (openpower-linux1) where "char = unsigned char"
1216
1217 2006-08-01 Maarten Brock <sourceforge.brock AT dse.nl>
1218
1219         * sim/ucsim/hc08.src/hc08mac.h: removed faulty and unused add_u16_disp
1220         * sim/ucsim/hc08.src/hc08.cc: removed faulty and unused int8
1221         * sim/ucsim/z80.src/z80mac.h (add_u16_disp): use explicit signed char cast
1222         * sim/ucsim/z80.src/z80.cc: removed faulty and unused int8
1223
1224 2006-07-31 Borut Razem <borut.razem AT siol.net>
1225
1226         * sim/ucsim/configure, sim/ucsim/cmd.src/newcmdcl.h,
1227           sim/ucsim/cmd.src/newcmd.cc, sim/ucsim/cmd.src/cmdutil.cc,
1228           sim/ucsim/z80.src/Makefile.in, sim/ucsim/configure.in,
1229           sim/ucsim/hc08.src/Makefile.in, sim/ucsim/hc08.src/hc08.cc,
1230           sim/ucsim/ddconfig_in.h, sim/ucsim/s51.src/Makefile.in,
1231           sim/ucsim/s51.src/uc51cl.h, sim/ucsim/s51.src/serialcl.h,
1232           sim/ucsim/s51.src/uc51.cc, sim/ucsim/s51.src/serial.cc,
1233           sim/ucsim/app.cc, sim/ucsim/avr.src/Makefile.in:
1234           enable ucsim mingw compilation. Serial port is disabled,
1235           since it uses termios.h API, which is not available on native
1236           WIN32
1237
1238 2006-07-31 Borut Razem <borut.razem AT siol.net>
1239
1240         * Small Device C Compiler 2.6.0 released
1241         * support/scripts/sdcc.nsi: added FULL_DOC option
1242         * .version, doc/sdccman.lyx: changed sdcc version to 2.6.1
1243
1244 2006-07-28 Borut Razem <borut.razem AT siol.net>
1245
1246         * support/scripts/sdcc.nsi: remove $INSTDIR/include/asm/pic16/*.h
1247         * doc/INSTALL.txt: updated
1248
1249 2006-07-27 Borut Razem <borut.razem AT siol.net>
1250
1251         * device/lib/pic/Makefile.in, device/lib/pic/Makefile.subdir,
1252           device/lib/pic/libdev/Makefile.in: fixed bug
1253           [ 1438354 ] pic libsdcc: distclean doesn't work
1254         * device/lib/pic16/Makefile.in, device/lib/pic16/Makefile.subdir,
1255           device/lib/pic16/libio/Makefile.in: fixed bug
1256           [ 1438344 ] pic16 lib: clean doesn't work properly
1257         * doc/knownbugs.html removed [ 1438354 ] and [ 1438344 ] from the list
1258
1259 2006-07-26 Maarten Brock <sourceforge.brock AT dse.nl>
1260
1261         * device/lib/pic/libsdcc/fsdiv.c,
1262         * device/lib/pic/libsdcc/fsmul.c,
1263         * device/lib/pic16/libsdcc/float/fsdiv.c,
1264         * device/lib/pic16/libsdcc/float/fsmul.c,
1265         * device/lib/_fsdiv.c,
1266         * device/lib/_fsmul.c: bugfix, handle too large and too small numbers
1267         * support/regression/tests/bug1520966.c: added
1268         * doc/knownbugs.html: removed [ 1520966 ] from the list
1269
1270 2006-07-25 Borut Razem <borut.razem AT siol.net>
1271
1272         * configure.in, configure, sdccconf_in.h: fixed bug
1273           [ 1519095 ] regression test onebyte.c fails on ppc64 host
1274         * doc/knownbugs.html: removed [ 1519095 ] from the list
1275
1276 2006-07-25 Maarten Brock <sourceforge.brock AT dse.nl>
1277
1278         * doc/knownbugs.html: added, contains list of known bugs at release
1279         * device/include/mcs51/compiler.h: fixed SFR32 for SDCC
1280
1281 2006-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
1282
1283         * device/include/mcs51/compiler.h: added SFRX for xdata based special
1284           function registers and corrected defaults with additional warning
1285         * device/lib/malloc.c: cosmetic changes
1286         * device/lib/realloc.c: bugfix for bug #1496907, Thanks Efim Monyak
1287         * src/ds390/ralloc.c (getRegBitNoSpil): reenabled,
1288           (fillGaps): and used it
1289
1290 2006-07-20 Raphael Neider <rneider AT web.de>
1291
1292         * src/pic/device.c (addMemRange,assignRegister): suppress verbose
1293           output unless SDCCPICDEBUG is set
1294         * device/lib/pic16/Makefile.rules (%.lib target): suppress verbose
1295           output if SILENT is set
1296
1297 2006-07-11 Borut Razem <borut.razem AT siol.net>
1298
1299         * doc/README.txt: updated
1300
1301 2006-07-10 Borut Razem <borut.razem AT siol.net>
1302
1303         * support/scripts/sdcc.nsi: added device/include/asm/pic/features.h and
1304           device/lib/src/pic/libm/*.c and device/lib/src/pic16/libsdcc/stack/*.S
1305           in WIN32 installation
1306         * .version, sdcc.spec, doc/sdccman.lyx: changed sdcc version to 2.6.0 -
1307           release candidate 1
1308
1309 2006-07-08 Maarten Brock <sourceforge.brock AT dse.nl>
1310
1311         * device/include/mcs51/XC866.h: added sbit definitions for Px_x, P1_x, P2_x
1312         * src/pic16/glue.c (initPointer): fixed bug 1496419 for pic16
1313
1314 2006-07-06 Maarten Brock <sourceforge.brock AT dse.nl>
1315
1316         * src/hc08/gen.c (genAddrOf): fixed bug when offset on stack is >127
1317
1318 2006-07-06 Borut Razem <borut.razem AT siol.net>
1319
1320         * support/regression/tests/bitfields.c:
1321           fixed bug [ 1518322 ] regression test bitfields fails on ppc hosts
1322         * support/regression/tests/constantRange.c:
1323           fixed bug [ 1518317 ] regression test constantRange fails on alpha host
1324
1325 2006-07-04 Borut Razem <borut.razem AT siol.net>
1326
1327         * src/configure.in, src/configure, src/Makefile.in, as/z80/Makefile.in,
1328           src/port.mk,
1329           src/avr/Makefile.in, src/ds390/Makefile.in, src/ds400/Makefile.in,
1330           src/hc08/Makefile.in, src/mcs51/Makefile.in, src/pic16/Makefile.in,
1331           src/pic/Makefile.in, src/xa51/Makefile.in, src/z80/Makefile.in:
1332           reverted changes from 2006-07-03
1333         * Makefile.common.in: added @CPPFLAGS@ to CPPFLAGS
1334         * support/regression/Makefile.in, support/regression/ports/host/spec.mk:
1335           added CPPFLAGS, used by the host port
1336
1337 2006-07-03 Bernhard Held <bernhard AT bernhardheld.de>
1338
1339         * support/regression/valdiag/tests/switch.c,
1340         * support/regression/valdiag/tests/constantRange.c: adapted to gcc 4
1341         * support/regression/tests/libmullong.c: fixed for host
1342         * support/regression/ports/host/spec.mk: disable all warnings for host,
1343         SDCC runs with --less-pedantic too
1344
1345 2006-07-03 Borut Razem <borut.razem AT siol.net>
1346
1347         * src/configure.in, src/configure, src/Makefile.in, as/z80/Makefile.in:
1348           defined CPPFLAGS
1349         * src/port.mk: defined CPPFLAGS, renamed to src/port.mk.in
1350         * src/avr/Makefile.in, src/ds390/Makefile.in, src/ds400/Makefile.in,
1351           src/hc08/Makefile.in, src/mcs51/Makefile.in, src/pic16/Makefile.in,
1352           src/pic/Makefile.in, src/xa51/Makefile.in, src/z80/Makefile.in:
1353           include ../port.mk
1354         * sim/ucsim/main_in.mk, sim/ucsim/avr.src/Makefile.in,
1355           sim/ucsim/gui.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1356           sim/ucsim/s52.src/Makefile.in, sim/ucsim/sim.src/Makefile.in,
1357           sim/ucsim/xa.src/Makefile.in: ignore header files for dependencies
1358
1359 2006-07-02 Raphael Neider <rneider AT web.de>
1360
1361         * src/pic16/devices.inc,
1362         * device/include/pic16/pic18fregs.h,
1363         * device/include/pic16/pic18f4550.h,
1364         * device/lib/pic16/pics.all,
1365         * device/lib/pic16/libdev/pic18f4550.c: added support for 18f4550
1366
1367 2006-07-01 Bernhard Held <bernhard AT bernhardheld.de>
1368
1369         * as/hc08/lkaomf51.c (OutputName),
1370         * as/mcs51/lkaomf51.c (OutputName),
1371         * as/z80/asmain.c (asmbl),
1372         * src/ds390/main.c (asmLineNodeFromLineNode),
1373         * src/hc08/ralloc.c (hc08_assignRegisters),
1374         * src/mcs51/main.c (asmLineNodeFromLineNode),
1375         * src/xa51/ralloc.c (checkRegMask),
1376         * src/xa51/gen.c (emitcode),
1377         * src/z80/gen.c (_emit2),
1378         * src/SDCCast.c (searchLitOp),
1379         * src/SDCCglobl.h,
1380         * support/packihx/packihx.c,
1381         * support/Util/MySystem.c (split_command): fix gcc 4 warnings
1382         * src/ds390/gen.c (aopPutUsesAcc),
1383         * src/ds390/ralloc.c (getRegBitNoSpil): unused, therefore disabled
1384         * support/regression/tests/libmullong.c (mullong_wrapper),
1385         * src/SDCCsymt.c (powof2),
1386         * src/SDCCast.c,
1387         * src/SDCCicode.c: renamed TYPE_WORD by TYPE_TARGET_INT and so on
1388         * src/SDCCsymt.h: added TYPE_TARGET_*
1389         * src/SDCCutil.c (doubleFromFixed16x16, fixed16x16FromDouble),
1390         * src/SDCCutil.h (doubleFromFixed16x16, fixed16x16FromDouble): moved to
1391         SDCCast because 1) header problems 2) this is the right place
1392         * src/SDCCast.c (doubleFromFixed16x16, fixed16x16FromDouble): added
1393         * src/SDCCval.h (doubleFromFixed16x16, fixed16x16FromDouble): added
1394         prototype
1395
1396 2006-06-29 Bernhard Held <bernhard AT bernhardheld.de>
1397
1398         * src/SDCCicode.h: removed buggy semicolon in unused macro
1399         * src/SDCClrange.c (findPrevUseSym, rlivePoint): fixed bug #1486853,
1400         search for previous definiton of auto symbols too,
1401         (findPrevUse): fixed logic of emitWarnings
1402
1403 2006-06-26 Raphael Neider <rneider AT web.de>
1404
1405         * src/pic16/gen.c (genFunction, genEndFunction): also preserve
1406           PCLATH and PCLATU on interrupts, potentially fixes #1505141
1407
1408 2006-06-25 Raphael Neider <rneider AT web.de>
1409
1410         * device/lib/pic/libm: NEW, added math library functions
1411         * device/lib/pic/libsdcc: NEW; added float support functions
1412         * device/lib/pic/{Makefile.in,configure.in,configure}: added libm/
1413         * device/include/pic/{limits.h,errno.h,sdcc-lib.h,float.h,math.h}:
1414           NEW, added math related headers
1415         * device/include/asm/pic/features.h: NEW
1416         * src/pic/gen.c (emitpcode_real): emit warning on NULL pCodeOp,
1417           (popGet): allow larger offsets for AOP_PCODE,
1418           (genDataPointerSet): handle literals explicitly, more debug output,
1419           (genAssign): fixed for float using aopLiteral ;-)
1420         * src/pic/glue.c (pic14createInterruptVect): inserted pagesel before
1421           GOTO initialisation routine
1422         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): set wasUsed
1423           flag on registers, fixes #1469043 (local variables do not work)
1424         * src/pic/main.c (_pic14_do_link),
1425         * src/pic16/main.c (_pic16_linkEdit): use fullDstFileName if
1426           available
1427
1428 2006-06-25 Borut Razem <borut.razem AT siol.net>
1429
1430         * device/lib/pic16/libc/stdio/sprintf.c: return the number of
1431           characters printed (not including the trailing '\0' used to end
1432           output to strings). Problem detected in regression test bug-927659.c.
1433           NOTE: printf() family functions should return int instead
1434           unsigned int!
1435         * device/lib/pic16/libc/stdio/vfprintf.c: "%%" prints "%", unknown
1436           specifier are printed as themselves
1437         * sdcc/support/regression/tests/bug1057979.c: pic16 printf doesn't
1438           support flags, width and precision specifiers
1439
1440 2006-06-24 Borut Razem <borut.razem AT siol.net>
1441
1442         * sdcc/support/regression/tests/bitvars.c: added gbz80, pic16 and pic16
1443           to the list of sdcc tagrets not supporting bit type
1444         * sdcc/support/regression/tests/bug-905992.c.c: excluded regression
1445           testfor pic16 due to bug:
1446           [ 1511794 ] pic16: regression test bug-895992.c fails
1447
1448 2006-06-24 Maarten Brock <sourceforge.brock AT dse.nl>
1449
1450         * src/mcs51/gen.c (genCmp): optimization for RFE 1162453
1451         * src/SDCCglue.c (initPointer), fixed bug 1496419
1452         * support/regression/tests/bug1496419.c: new, added
1453
1454 2006-06-22 Borut Razem <borut.razem AT siol.net>
1455
1456         * support/regression/ports/pic16/support.c: use gpsim usart module from
1457           libgpsim_modules library
1458
1459 2006-06-21 Jesus Calvino-Fraga <jesusc at ece.ubc.ca>
1460
1461         * device/include/mcs51/at89c51ed2.h: Fixed bug 1510144 changed
1462         IP0H to IPH0.
1463
1464 2006-06-19 Raphael Neider <rneider AT web.de>
1465
1466         * src/pic/glue.h,src/pic16/glue.h: added prototypes
1467         * src/pic/glue.c,src/pic16/glue.c (pic1x_stringInSet,
1468           pic1x_emitSymbolIfNew): NEW, check for a string in a set,
1469           (pic14printExterns,pic14printPublics,pic16printPublics,
1470           pic16_printExterns): use new functions to emit symbols
1471           (picglue,pic16glue): emit publics before emitting externs
1472         * src/pic/gen.c,src/pic16/gen.c (genFunction): remember the names of
1473           locally defined functions to avoid bug #1443651
1474         * support/regression/tests/bug-716242.c: removed pic16 workaround
1475         * support/regression/ports/pic16/spec.mk: ignore errors during build
1476
1477 2006-06-19 Raphael Neider <rneider AT web.de>
1478
1479         * src/pic/glue.h: added pic14aopLiteral prototype
1480         * src/pic/glue.c (pic14aopLiteral): return unsigned int
1481         * src/pic/gen.c: removed stdint.h dependency
1482           (aopGet): use Safe_strdup()
1483           (bitpatternFromVal): removed, replaced use with pic14aopLiteral
1484           (genDataPointerSet): use pic14aopLiteral()
1485         * src/pic16/glue.h, src/pic16/glue.c, src/pic16/gen.c: similar changes
1486           for pic16; thanks to Bernhard and Maarten
1487
1488 2006-06-18 Borut Razem <borut.razem AT siol.net>
1489
1490         * support/regression/tests/structflexarray.c: flexible array members
1491           not supported by gcc < 3
1492         * sim/ucsim/configure, sim/ucsim/configure.in: do not compile serio
1493           GUI tool by default
1494         * src/pic/gen.c: don't include [p]strdin.h on solaris
1495         * support/Util/pstdint.h: addad svn attributes
1496         * support/regression/tests/constantRange.c,
1497           support/regression/tests/rotate.c: include inttypes.h instead
1498           stdint.h on solaris, addad svn attributes
1499
1500 2006-06-18 Raphael Neider <rneider AT web.de>
1501
1502         * src/SDCCsymt.c (initCSupport): change return type of divschar to
1503           int for PIC16
1504         * src/pic16/genarith.c (genAddLit): sign-extend via standard routine
1505           (pic16_genMinusBits): simplified sign-extension
1506           (pic16_genUMult8XLit_8,pic16_genUMult8X8_8): renamed to
1507             pic16_genMult8XLit_n resp. pic16_genMult8X8_n, fixed and
1508             adjusted to correctly handle mixed-signed operands, disabled
1509             now unused multiplciation routines
1510         * src/pic16/gen.c (pic16_pushpCodeOp): fixed to handle literals
1511           (assignResultValue): added argument denoting the size of the result
1512             as returned by the function (fixes upcasts in assigning from
1513             function calls: char foo(); int i = foo();)
1514           (genCall,genPcall,genGenPointerGet,genReceive): pass size of
1515             function result to assignResultValue
1516           (genMult): disabled inlined multiplication code
1517           (genDiv): augmented to also handle the modulus operator, fixed to
1518             handle mixed-signed operands correctly
1519           (genMod): simply call genDiv, disabled unused code
1520           (genAssign): fixed missing (sign-)extension on result
1521         * src/pic16/main.c (_hasNativeMulFor): accept literals [-128..256) as
1522             valid char operands, allow signed operands for native code, added
1523             division and modulo operator handling
1524         * device/lib/pic16/libsdcc/char/divschar.c: divschar returns an int
1525
1526         As a consequence, onebyte.c (if split into two files) and muldiv.c
1527         pass regression tests.
1528
1529 2006-06-17 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1530
1531         * doc/Makefile.in: two runs of makeindex seem needed to get
1532         correct page references in the index of sdccman.pdf
1533         * doc/sdccman.lyx: mentioned cmon51, added links, small changes
1534
1535 2006-06-17 Borut Razem <borut.razem AT siol.net>
1536
1537         * sdcc/device/lib/Makefile.in: corrected PORTINCDIR path
1538
1539 2006-06-17 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1540
1541         * doc/sdccman.lyx: updated, added (porting source code, debugging),
1542         mentioned ec2drv and paulmon
1543
1544 2006-06-16 Maarten Brock <sourceforge.brock AT dse.nl>
1545
1546         * as/mcs51/lkarea.c (lnkarea2): clear new xdatamap, bugfix for two
1547           consecutive abs areas
1548           (find_empty_space, allocate_space): added map to handle codemap or
1549            xdatamap,
1550           (lnksect2): renamed rloc to locIndex, fixed bug 960060 by handling
1551            absolute idata and xdata
1552         * as/mcs51/lkmem.c (summary2): updated legend
1553
1554 2006-06-16 Raphael Neider <rneider AT web.de>
1555
1556         * src/pic16/gen.c (shiftR2Left2Result): fixed bug #1507127
1557
1558 2006-06-13 Maarten Brock <sourceforge.brock AT dse.nl>
1559
1560         * debugger/mcs51/cmd.c (cmdListFunctions): fixed bugs 1181163 and
1561           1208515
1562         * src/SDCClrange.c (findPrevUse): fixed bug 1294475
1563
1564 2006-06-13 Vangelis Rokas <vrokas AT users.sourceforge.net>
1565
1566         * src/port.h (struct PORT): added field gp_tags, to hold the tag
1567         value of generic pointers,
1568         * src/avr/main.c,
1569           src/ds390/main.c,
1570           src/hc08/main.c,
1571           src/izt/i186.c,
1572           src/izt/tlcs900h.c,
1573           src/mcs51/main.c,
1574           src/pic/main.c,
1575           src/pic16/main.c,
1576           src/xa51/main.c,
1577           src/z80/main.c: PORT structure, added elements for gp_tags field,
1578         * src/SDCCsymt.h: replaced hardwired values of GPTYPE_* macros with
1579         fields in the PORT structure of each port,
1580         * src/SDCCast.c (decorateType): allow processing of generic pointers
1581         for PIC16 port (FPTRSIZE equals GPTRSIZE), also set GPTYPE_NEAR for
1582         S_FIXED symbols
1583
1584 2006-06-12 Maarten Brock <sourceforge.brock AT dse.nl>
1585
1586         * link/z80/lkgb.c,
1587         * link/z80/lkgg.c,
1588         * src/pic16/gen.c,
1589         * src/pic16/main.c,
1590         * src/pic16/pcode.c,
1591         * src/pic/main.c,
1592         * src/pic/pcoderegs.c,
1593         * src/SDCCicode.c,
1594         * src/SDCCmain.c,
1595         * src/SDCCsymt.c: replaced all exit(-1) by exit(EXIT_FAILURE) to fix
1596           bug 1504689 on minGW
1597
1598 2006-06-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1599
1600         * device/lib/printf_tiny.c: fixed bug #1465675 (%x format specifier)
1601
1602 2006-06-12 Bernhard Held <bernhard AT bernhardheld.de>
1603
1604         * src/SDCCast.c (backPatchLabels): fixed bug #1504636
1605
1606 2006-06-11 Maarten Brock <sourceforge.brock AT dse.nl>
1607
1608         * device/lib/printf_large.c (OUTPUT_CHAR, _output_char): added and used
1609           for optimization
1610
1611 2006-06-11 Vangelis Rokas <vrokas AT users.sourceforge.net>
1612
1613         * src/pic16/gen.c (genCast): fixed bug with assignment of a pointer
1614         to a char variable. Fixed bug #1504211
1615         * device/include/pic16/adc.h,
1616         device/include/lib/pic16/libio/adc/adcopen.c: applied patch #1364387
1617         and fixed bug #1364390
1618
1619 2006-06-10 Borut Razem <borut.razem AT siol.net>
1620
1621         * CVSROOT: removed the CVS left-over
1622
1623 2006-06-10 Maarten Brock <sourceforge.brock AT dse.nl>
1624
1625         * as/hc08/asmain.c (asexit),
1626         * as/hc08/lkmain.c (lkexit),
1627         * as/mcs51/asmain.c (asexit),
1628         * as/mcs51/lkmain.c (lkexit),
1629         * src/SDCCglue.c (DEFSETFUNC),
1630         * src/SDCCmain.c (linkEdit, assemble),
1631         * support/librarian/sdcclib.c (AddRel),
1632           replaced unlink() by standard C remove()
1633         * src/SDCC.y: replaced removePostIncDecOps() by createRMW()
1634         * src/SDCCast.c (replaceAstWithTemporary, createRMW,
1635           gatherImplicitVariables): new, added to fix bug 608752,
1636           (createFunction): added gatherImplicitVariables()
1637         * src/SDCCast.h: added createRMW prototype
1638         * src/SDCCsymt.h (struct symbol): added infertype
1639         * support/regression/tests/bug608752.c: new, added
1640
1641 2006-06-10 Raphael Neider <rneider AT web.de>
1642
1643         * src/pic16/gen.c (pic16_aopOp): use WREG as destination even for
1644           multibyte dummy reads (fixes #1503234)
1645
1646 2006-06-10 Maarten Brock <sourceforge.brock AT dse.nl>
1647
1648         * device/include/mcs51/compiler.h: new, added header file to enable
1649           creating common sfr definition header files for different compilers
1650
1651 2006-06-05 Raphael Neider <rneider AT web.de>
1652
1653         * src/pic16/{pcode.h,genarith.c}:
1654           introduced pCodeOp combining any two pCodeOps (previously only
1655           two register operands could be combined), removed pcop2 from
1656           pCodepReg, replaced pCodeOpReg2 with pCodeOp2, fixes #1492366
1657         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): added case for PO_TWO_OPS
1658         * src/pic16/gen.c (pic16_popGet2,pic16_popGet2p,pic16_popCombine2):
1659           rewritten to use new PO_TWO_OPS
1660         * src/pic16/main.c (_hasNativeMulFor): cover more cases natively,
1661         * src/pic16/pcode.c (pic16_newpCodeOpImmd): initialize rIdx field,
1662           (pic16_newpCodeOp): catch invalid attempts on PO_TWO_OPS,
1663           (pic16_newpCodeOp2): NEW, create combined pCodeOp,
1664           (pic16_get_op): embraced return arg to allow #define return(x),
1665             added new case for combined opcodes
1666           (pic16_get_op2): reduced to use pic16_get_op() on second pCodeOp,
1667           (pic16_pCode2str,pic16_getRegFrompCodeOp,
1668            pic16_getRegFromInstruction2): fixed/added handling of new pCodeOp
1669
1670 2006-06-04 Bernhard Held <bernhard AT bernhardheld.de>
1671
1672         * src/SDCCval.c (checkConstantRange): added
1673         * src/SDCCval.h: added checkConstantRange
1674         * support/Util/SDCCerr.c,
1675         * support/Util/SDCCerr.h: replaced unused W_IF_NEVER_TRUE and
1676         W_IF_ALWAYS_TRUE by W_COMP_RANGE and W_LIT_OVERFLOW
1677         * src/SDCC.y: moved early 'condition transformations' to SDCCast.c
1678         * src/SDCCast.c (decorateType): added checkConstantRange,
1679         added 'condition transformations' from SDCC.y so that now W_COMP_RANGE
1680         can be emitted with the correct always true/false warning,
1681         added optimization for double '!';
1682         result of decorateType() must be assigned back to the tree, because
1683         decorateType() can change the tree
1684         * src/SDCCicode.c (geniCodeLogic),
1685         (geniCodeAssign): replaced new checkConstantRange, added warnings,
1686         (checkConstantRange): removed, it was only a fragment which never
1687         emitted a warning
1688         * src/SDCCsymt.c (computeType): fixed promotion for
1689         "-1 < (unsigned bit) b"
1690         * src/pic/ralloc.c (packRegsForAssign),
1691         * src/pic16/ralloc.c (packRegsForAssign),
1692         * src/hc08/ralloc.c (packRegsForAssign),
1693         * src/z80/ralloc.c (packRegsForAssign): ported fix for bug #930931
1694         from mcs51
1695         * src/mcs51/ralloc.c (packRegsForAssign): removed outcommented source
1696         * support/regression/tests/constantRange.c: added
1697         * support/valdiag/tests/constantRange.c: added
1698         * support/valdiag/valdiag.py: added -DPORT_HOST=1
1699
1700 2006-06-02 Borut Razem <borut.razem AT siol.net>
1701
1702         * support/regression/ports/pic16/support.c: increase stack size
1703           to 255 bytes
1704         * support/regression/Makefile.in: sort tests by name so that the
1705           resutlts can be compared on different machines / platforms
1706
1707 2006-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
1708
1709         * device/lib/printf_large.c (output_digit): optimized further, Tnx Frieder
1710         * src/ds390/gen.c (emitLabel): new, added,
1711           (genDjnz): fixed stack overflow bug,
1712           (throughout): cosmetic changes to sync with mcs51/gen.c,
1713           replaced emitcode("", "%05d$:", lbl->key + 100) with emitLabel(lbl)
1714         * src/mcs51/gen.c (genEndFunction): small optimization,
1715           (throughout): cosmetic changes to sync with ds390/gen.c
1716
1717 2006-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
1718
1719         * device/lib/printf_large.c (output_digit, calculate_digit): optimized,
1720           (_print_format): fixed printing pointers
1721         * src/mcs51/gen.c (emitLabel, movb): new, added,
1722           (genAssign): small optimization,
1723           (genDjnz): fixed stack overflow bug,
1724           (throughout): replaced sprintf with SNPRINTF,
1725           replaced mcs51_regWithIdx with REG_WITH_INDEX,
1726           replaced emitcode("mov", "b,...") with MOVB(...),
1727           replaced emitcode("", "%05d$:", lbl->key + 100) with emitLabel(lbl),
1728           replaced D(emitcode("; genXXX", "")) with D(emitcode(";", "genXXX"))
1729         * src/mcs51/peeph.def: added rules 140 and 264
1730         * src/SDCCmem.c (allocLocal): store register declared locals in DSEG/OSEG
1731           so they may get optimized into registers
1732
1733 2006-05-30 Maarten Brock <sourceforge.brock AT dse.nl>
1734
1735         * src/SDCCmain.c (optionsTable, parseCmdLine): handle --use-stdout
1736           immediately when encountered,
1737           (printUsage): always use stderr even on windows
1738
1739 2006-05-30 Bernhard Held <bernhard AT bernhardheld.de>
1740
1741         * src/SDCCast.c (isLoopCountable): fixed bug #1478316
1742         (processParms): fixed bug #1247551
1743         * src/SDCCmain.c (printVersionInfo, printOptions, printUsage,
1744         parseCmdLine, main): print '--version' to stdout,
1745         print 'help' to stdout if --help is given,
1746         print 'help' to stderr and exit with EXIT_FAILURE if no or bad
1747         arguments are given; fixed --help
1748
1749 2006-05-27 Bernhard Held <bernhard AT bernhardheld.de>
1750
1751         * src/SDCCcse.c (findPointerSet): fixed bug #1493710
1752         * support/regression/tests/bug-1493710.c: added
1753
1754 2006-05-27 Borut Razem <borut.razem AT siol.net>
1755
1756         * support/regression/fwk/lib/testfwk.c: define array in _printn() as
1757           static instead auto
1758         * support/regression/ports/pic16/support.c: increase stack size
1759           from default 64 bytes to 128 bytes
1760         * support/regression/tests/staticinit.c,
1761           support/regression/tests/float.c: regression tests fully enabled
1762           for pic16 port by putting the initialized data arrays into the code
1763           section
1764         * support/regression/ports/pic16/spec.mk: don't link default libraries.
1765           This was changed by mistake in the previous version.
1766
1767 2006-05-28 Vangelis Rokas <vrokas AT users.sourceforge.net>
1768
1769         * src/pic16/gen.c (genFunction, genEndFunction): some
1770         beautifications, fixed bug with falsely restoring FSR2 in large
1771         stack model, thanks to Beau E. Cox for reporting the bug
1772
1773 2006-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
1774
1775         * debugger/mcs51/break.c,
1776         * debugger/mcs51/cmd.c (throughout): removed unused variables and labels,
1777           use %p to print pointers, made address variables unsigned
1778         * debugger/mcs51/cmd.c (infoSymbols): added missing parameter to printf
1779         * debugger/mcs51/symtab.c (parseSymbol): must return something
1780         * src/mcs51/gen.c (aopForSym): small optimization,
1781            moved declarations mcs51_ptrRegReq and mcs51_nRegs to ralloc.h,
1782           (freeAsmop): added missing break,
1783           (aopPut): removed parameter bvolatile, determine it inside the function,
1784           (saveRegisters, unsaveRegisters): small optimization,
1785           (genIpush): removed pointless check,
1786           (throughout): replaced Safe_calloc, strcpy with Safe_strdup,
1787           replaced sprintf with SNPRINTF,
1788           replaced strcpy with strncpyz,
1789           updated aopPut calls,
1790           replaced D(emitcode("; genXXX", "")) with D(emitcode(";", "genXXX"))
1791         * src/mcs51/ralloc.h:  added declarations mcs51_ptrRegReq and mcs51_nRegs
1792
1793 2006-05-24 Borut Razem <borut.razem AT siol.net>
1794
1795         * support/regression/tests/bug-221100.c: fixed xdata problem caused by
1796           modification of test for the pic16 port, put the array to the code
1797           memory for pic16port; thanks to Maarten Brock and Frieder Ferlemann
1798
1799 2006-05-23 Jesus Calvino-Fraga <jesusc at ece.ubc.ca>
1800
1801         * src/pic/gen.c: MSC 6 does not have <stdint.h>.  Use pstdint.h instead.
1802         * support/Util/pstdint.h: added
1803
1804 2006-05-22 Borut Razem <borut.razem AT siol.net>
1805
1806         * src/regression/Makefile: removed bool2.c test, added -q linker option
1807         * src/regression/add2.c, src/regression/add3.c, src/regression/bool1.c,
1808           src/regression/bool3.c, src/regression/nestfor.c, src/regression/ptrfunc.c,
1809           src/regression/compare.c, src/regression/or1.c, src/regression/compare2.c,
1810           src/regression/while.c, src/regression/compare3.c, src/regression/compare4.c,
1811           src/regression/compare5.c, src/regression/sub2.c, src/regression/rotate1.c,
1812           src/regression/rotate2.c, src/regression/rotate3.c, src/regression/rotate4.c,
1813           src/regression/switch1.c, src/regression/rotate5.c, src/regression/for.c,
1814           src/regression/add.c, src/regression/sub.c, src/regression/call1.c:
1815           define SUPPORT_BIT_TYPES 0, removed unused bit variables
1816
1817 2006-05-22 Raphael Neider <rneider AT web.de>
1818
1819         * src/pic16/gen.c (pic16_storeForReturn): fragile fix for
1820           bug #1492360 (problematic due to generic pointers, see code)
1821
1822 2006-05-22 Borut Razem <borut.razem AT siol.net>
1823
1824         * support/regression/ports/pic16/specs.mk: removed stack size linker
1825           directive
1826         * support/regression/tests/array.c,
1827           support/regression/tests/bitopcse.c,
1828           support/regression/tests/bug-908454.c,
1829           support/regression/tests/malloc.c: modified for pic16 regression test
1830         * support/regression/tests/bitfields.c:
1831           pic16 - excluded bitfileds of size > 8
1832         * support/regression/tests/bp.c: pic16 - reduced data size
1833         * support/regression/tests/bug-221100.c: pic16 - reduced data size
1834         * support/regression/tests/bug-460010.c:
1835           pic16 - used the absolute address the fits in memory
1836         * support/regression/tests/bug-716242.c:
1837           bug [ 1443651 ] pic 16: redefining symbol that cannot be redefined.
1838         * support/regression/tests/float.c:
1839           pic16 - excluded - data size too big
1840         * support/regression/tests/onebyte.c:
1841           pic16 - bug [ 1444425 ] onebyte.c regression tes fails on pic16
1842         * support/regression/tests/shifts.c:
1843           pic16 - function names probably have to differ in first X characters
1844           (gpasm limitation?)
1845         * support/regression/tests/staticinit.c:
1846           pic16 - excluded some tests due error: no target memory available for
1847           section ".idata"
1848
1849 2006-05-22 Borut Razem <borut.razem AT siol.net>
1850
1851         * support/Util/dbuf.c: fixed bug #1489008 fix dbuf_c_str(),
1852           second try. Thanks Stas Sergeev once more.
1853
1854 2006-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
1855
1856         * src/hc08/gen.c (transferAopAop): aop forced to stack was not restored,
1857           (genLeftShift, genRightShift): fixed bug 1491627
1858         * src/hc08/peeph.def (rules 7, 8.x): added
1859         * support/regression/tests/shifts.c (ShiftLeftByParam,
1860           ShiftRightByParam, testShiftByParam): added to test variable shifting
1861
1862 2006-05-20 Raphael Neider <rneider AT web.de>
1863
1864         * src/pic/gen.c (bitpatternFromVal): fixed for 64-bit machines
1865         * src/pic16/ralloc.c (newReg): use correct name in hashtable,
1866           (allocReg): add only new registers to dynAllocRegs,
1867           (pic16_assignRegisters): do not reset dynrIdx, fixes bugs
1868             #1489055, #1445850, and probably #1483693
1869
1870 2006-05-19 Vangelis Rokas <vrokas AT users.sourceforge.net>
1871
1872         * src/pic16/glue.c (pic16_emitConfigRegs, pic16_emitIDRegs): fixed
1873         bug in for-loop that didn't emit the last of CONFIG and ID registers
1874
1875 2006-05-18 Maarten Brock <sourceforge.brock AT dse.nl>
1876
1877         * src/mcs51/gen.c (genCodePointerGet): inc dptr instead of loading acc
1878           with offset
1879         * src/mcs51/peeph.def (186.x): updated and reenabled to fix bugs
1880           1489016, 1434401 and 1490124
1881         * src/ds390/peeph.def (186.x, 227.x): updated and reenabled to fix bugs
1882           1489016, 1434401 and 1490124
1883
1884 2006-05-17 Borut Razem <borut.razem AT siol.net>
1885
1886         * support/Util/dbuf.c: fixed bug #1489008 fix dbuf_c_str(),
1887           thanks Stas Sergeev
1888
1889 2006-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
1890
1891         * device/include/mcs51/P89c51RD2.h,
1892         * device/include/mcs51/P89LPC901.h,
1893         * device/include/mcs51/P89LPC922.h,
1894         * device/include/mcs51/P89LPC932.h: added, thanks Omar Espinosa
1895
1896 2006-05-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
1897
1898         * device/lib/pic16/libsdcc/stack/{stack.S, Makefile.in}: add workaround
1899         to fix missing stack pragma in compiled binary object file,
1900
1901 2006-05-14 Bernhard Held <bernhard AT bernhardheld.de>
1902
1903         * support/packihx/configure.in,
1904         * support/packihx/configure: removed warning, autoconf >= 2.5x can
1905         determine sizeof basic types even while cross compiling
1906
1907 2006-05-13 Bernhard Held <bernhard AT bernhardheld.de>
1908
1909         * src/avr/gen.c (aopop),
1910         * src/ds390/gen.c (aopOp),
1911         * src/hc08/gen.c (aopOp),
1912         * src/mcs51/gen.c (aopop),
1913         * src/pic16/gen.c (pic16_aopOp),
1914         * src/pic/gen.c (aopOp),
1915         * src/z80/gen.c (aopop): fix for bug #1479882; use new, exclusive asmop
1916         if size of operand is smaller than spill location
1917
1918 2006-05-12 Borut Razem <borut.razem AT siol.net>
1919
1920         * *.dsw, *.dsp: changed property svn:eol-style to CRLF since they
1921           have to have CR/LF line endings even if they are checked out on *nix
1922           or on WIN32 in cygwin binmode
1923
1924 2006-05-12 Maarten Brock <sourceforge.brock AT dse.nl>
1925
1926         * doc/sdccman.lyx: documented numeric ranges, WEBDOC #1442369
1927         * device/include/ds80c390.h: added sfr16 definitions
1928         * src/ds390/gen.c,
1929         * src/ds390/gen.h,
1930         * src/ds390/main.c,
1931         * src/ds390/ralloc.c,
1932         * src/ds390/ralloc.h: changes all over the place to sync with mcs51
1933           fixing several bugs and adding sfr16/sfr32, reentrant bit params,
1934           bit returning functions
1935         * support/regression/tests/sfr16.c: enabled test on ds390
1936
1937 2006-05-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1938
1939         * src/hc08/gen.c (asmopToBool, genIfx): fix for bug #1429722
1940         * src/hc08/gen.c (storeRegToAop): fix for bug #1439894
1941
1942 2006-05-11 Maarten Brock <sourceforge.brock AT dse.nl>
1943
1944         * sim/ucsim/sim.src/memcl.h: added get_decoder() to cl_address_space
1945         * sim/ucsim/sim.src/mem.cc: implemented cl_address_space::get_decoder,
1946           (cl_address_space constructor): removed expensive initialization,
1947           (cl_address_space::get_cell): extended for late initialization,
1948           (cl_address_space::*): use late initialization,
1949           (cl_address_decoder::activate): removed expensive initialization,
1950           This reduced regression test running time by 25%
1951
1952 2006-05-11 Bernhard Held <bernhard AT bernhardheld.de>
1953
1954         * packihx/,
1955         * configure.in,
1956         * configure,
1957         * sdcc.dsw,
1958         * Makefile.bcc,
1959         * Makefile.in,
1960         * support/packihx/Makefile.in,
1961         * support/packihx/clean.mk,
1962         * support/packihx/Makefile.bcc,
1963         * support/packihx/PackIhx.dsp: moved packihx to support/packihx
1964
1965 2006-05-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1966
1967         * src/SDCCval.c (valNot): fix for regression test failure
1968           of not.c on big endian hosts
1969
1970 2006-05-10 Maarten Brock <sourceforge.brock AT dse.nl>
1971
1972         * device/inlcude/mcs51/msc1210.h: new, added, thanks Philippe Latu
1973
1974 2006-05-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1975
1976         * device/lib/mcs51/Makefile.in: changed string comparison operator
1977           to = for POSIX compliance; == is bash extension
1978
1979 2006-05-10 Maarten Brock <sourceforge.brock AT dse.nl>
1980
1981         * device/lib/hc08/_mulint.c: applied patch 1485428, thanks
1982           kosmonaut_pirx
1983
1984 2006-05-09 Vangelis Rokas <vrokas AT users.sourceforge.net>
1985
1986         * src/pic16/gen.c (pic16_freeAsmop): release any temp registers
1987         allocated by aopForSym thus fixing bug #1478657 about failed testfwk.c
1988         * src/pic16/main.c (_pic16_keywords): added 'sfr16' keyword,
1989         * src/pic16/ralloc.c (pic16_allocWithIdx): also a fix for bug exposed by
1990         bug report #1478657,
1991
1992 2006-05-05 Borut Razem <borut.razem AT siol.net>
1993
1994         * doc/Makefile.in: remove of WARNINGS and labels.pl immediately after
1995           making the html
1996
1997 2006-05-02 Borut Razem <borut.razem AT siol.net>
1998
1999         * doc/Makefile.in: removed *.ind dependency since there is no rule to
2000           create *.ind, which made make to fail if invoked with -j 2
2001
2002 2006-05-01 Maarten Brock <sourceforge.brock AT dse.nl>
2003
2004         * src/SDCCglue.c (emitRegularMap): partial fix for bug 1477149, thanks
2005           Hubert Sack for patch 1479782
2006
2007 2006-05-01 Vangelis Rokas <vrokas AT users.sourceforge.net>
2008
2009         * src/pic16/glue.c (pic16_printIvalStruct): fixed bug #1445929
2010
2011 2006-05-01 Raphael Neider <rneider AT web.de>
2012
2013         * src/pic/device.c (sanitise_processor_name): only remove p(ic) prefix,
2014           (create_pic): store only prefix-free device name,
2015           (init_pic): check for device names with "16" prefix,
2016           (list_valid_pics),
2017         * src/pic/device.h (struct PIC_device),
2018         * src/pic/main.c (_pic14_genAssemblerPreamble): adapted to single
2019             stored device name,
2020         * device/include/pic/pic12f{635,675,629,683}.h,
2021         * device/lib/pic/libdev/pic12f{635,675,629,683}.c: NEW device libraries
2022         * device/lib/pic/libdev/Makefile.in: allow pic12* devices,
2023         * device/include/pic/pic16f505.h,
2024         * device/lib/pic/libdev/pic16f505.c: removed
2025         * device/include/pic/pic14devices.txt: added support for pic12f
2026             devices, removed unsupported non 16-bit devices
2027             [above changes provided by patch from Zik Saleeba]
2028         * src/pic/*, src/pic16/*, device/include/pic16/*,
2029           device/lib/pic/**, device/lib/pic16/**: obfuscated email address
2030
2031 2006-05-01 Borut Razem <borut.razem AT siol.net>
2032
2033         * configure.in, configure, doc/Makefile.in:
2034           sync with nightly build makefile - latex, dvipdf and dvips
2035           not needed any more
2036
2037 2006-04-30 Bernhard Held <bernhard AT bernhardheld.de>
2038
2039         * support/scripts/sdcc.nsi: removed all Readmes and Makefiles
2040         in the library source
2041
2042 2006-04-30 Maarten Brock <sourceforge.brock AT dse.nl>
2043
2044         * support/regression/ports/hc08/spec.mk: fixed bug 1478892
2045
2046 2006-04-28 Raphael Neider <rneider AT web.de>
2047
2048         * src/pic16/pcode.c (pic16_newpCodeOpLit12),
2049         * src/pic16/gen.c (pic16_popGetLit12): NEW, create 12 bit literal,
2050           (pic16_loadFSR0): handle 12 bit literals correctly, fixes #1440527
2051         * src/pic16/pcode.h: added prototype for pic16_newpCodeOpLit12()
2052
2053 2006-04-28 Bernhard Held <bernhard AT bernhardheld.de>
2054
2055         * device/lib/pic/libdev/Makefile.in,
2056         * device/lib/hc08/Makefile.in,
2057         * device/lib/gbz80/Makefile.in,
2058         * device/lib/z80/Makefile.in,
2059         * device/lib/ds390/Makefile.in,
2060         * device/lib/ds400/Makefile.in: added srcdir to include search path,
2061         thanks to Borut for the bug report
2062         * configure.in,
2063         * configure: always create doc/Makefile independent from --enable-doc
2064         * Makefile.in: always install from directory doc independent from
2065         --enable-doc
2066         * device/lib/pic/Makefile.in: added libdev again, it was erroneously
2067         removed
2068         * device/lib/pic/libdev/Makefile.in: fixed VPATH build
2069         * doc/Makefile.in: install *.txt if present
2070         * device/include/Makefile.in (install): added installation of pic/*.inc
2071         and pic/*.txt files again, they were erroneously removed
2072
2073 2006-04-28 Raphael Neider <rneider AT web.de>
2074
2075         * src/pic/{gen.c,main.h,pcode.c},
2076         * src/pic16/{gen.c,pcode.c}: quietened compiler warnings
2077             concerning signedness with casts
2078
2079 2006-04-28 Raphael Neider <rneider AT web.de>
2080
2081         * src/pic/gen.c (genFunction): set global pic14_hasInterrupt on
2082             definition of an interrupt handler,
2083         * src/pic/glue.c (pic14_emitInterruptHandler): moved output of
2084             interrupt handler stuff from picglue() to separate routine,
2085           (picglue): enabled definition of intr handlers in files w/o main()
2086
2087 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
2088
2089         * support/librarian/sdcclib.c: moved include <limits.h> up to enable
2090           compilation with MSVC 2005 Express Edition (VC8)
2091
2092 2006-04-26 Bernhard Held <bernhard AT bernhardheld.de>
2093
2094         * device/lib/Makefile: fixed build of gbz80 lib
2095
2096 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
2097
2098         * support/regression/tests/bug-460010.c,
2099         * support/regression/tests/bug-524691.c,
2100         * support/regression/tests/bug-716242.c: removed conditional defines
2101           that are already in testfwk.h
2102
2103 2006-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
2104
2105         * src/ds390/gen.c (AccAXRrl1, AccAXLrl1): changed to real rotate by 1,
2106           (AccAXRsh1): added, shift right by 1,
2107           (AccAXLsh, AccAXRsh, AccAXRshS): updated for AccAXRrl1, AccAXRsh1 and
2108            AccAXLrl1
2109         * support/regression/tests/rotate.c: use <stdint.h> and enabled ds390
2110
2111 2006-04-25 Bernhard Held <bernhard AT bernhardheld.de>
2112
2113         * src/SDCCast.c (decorateType): partial fix for RFE 1475769,
2114         remove cast to same type
2115         * src/SDCCast.c (decorateType): fix for RFE 1475742,
2116         optimize 'ifx (op == 0)' resp. 'ifx (op != 0)'
2117         * as/z80/Makefile,
2118         * link/z80/Makefile: removed, they have moved to
2119         Makefile.in files
2120         * configure,
2121         * configure.in: replaced duplicate message about ucsim by missing sdcpp
2122         * install-sh: fix bug #1204398 by setting umask 0022
2123         * device/lib/Makefile: separate build of z80 and gbz80 lib
2124
2125 2006-04-24 Bernhard Held <bernhard AT bernhardheld.de>
2126
2127         Enabled VPATH feature: changed nearly all Makefiles (149 files).
2128         See sdccman.lyx '2.4.10 VPATH feature' about how to use it.
2129
2130         One basic decision: e.g. src/clean.mk includes further files. In order
2131         to make this work there are two solutions:
2132         - rename another dozen clean.mk to clean_in.mk, add srcdir to them and
2133           run configure on them. This way they can use
2134           'include $(srcdir)/port-clean.mk'
2135         - always include clean.mk by the Makefile at the same level. To avoid
2136           that `make clean` tries to include and build Makefile.dep the
2137           MAKECMDGOALS are examined (see e.g. src/Makefile.in). This has been
2138           implemented, because now even `make uninstall` doesn't create
2139           Makefile.in. clean.mk could be eliminated by pasting it in
2140           Makefile.in.
2141
2142         * debugger/mcs51/Makefile.in: build own objects from library sources
2143         (SLIB, SDCC) in current directory
2144
2145         * configure, configure.in: renamed --disable-device-lib-build in
2146         --disable-device-lib; added --enable-doc, the required tools are
2147         searched by configure; added result message; the toolchain for the
2148         belonging ports are now only built, if the port is enabled.
2149
2150         * support/regression/*: all output is written in directory gen, because
2151         the fwk and ports directories don't livet in the build tree using vpath
2152
2153         * doc/sdccman.lyx: renamed --disable-device-lib-build to
2154         --disable-device-lib, added --enable-doc, added section VPATH
2155
2156         * sim/ucsim/configure.in,
2157         * sim/ucsim/configure.in: hc08 couldn't be disabled, now hc08 and
2158         z80 are enabled by default
2159
2160 2006-04-24 Raphael Neider <rneider AT web.de>
2161
2162         * src/pic/device.c (pic14_assignConfigWordValue): remember assignments
2163             to config word, "pic14_"-prefixed some extern functions
2164           (pic14_emitConfigWord): emit __config directive(s) if assignment to
2165             config word has been found
2166         * src/pic/device.h: added prototypes
2167         * src/pic/pcode.c: added "pic14_"-prefix where needed
2168         * src/pic/ralloc.c (IS_CONFIG_ADDRESS,pic14_assignRegisters): cosmetic
2169             fixup
2170         * src/pic/glue.c (pic14_constructAbsMap): handle assignments to config
2171             words,
2172           (pic14emitRegularMap): ignore config words,
2173           (pic14createInterruptVect): moved generating __config directives away
2174           (picglue): have __config directives emitted
2175
2176 2006-04-24 Borut Razem <borut.razem AT siol.net>
2177
2178         * doc/Makefile: sync with nightly build makefile
2179
2180 2006-04-24 Raphael Neider <rneider AT web.de>
2181
2182         * src/pic/pcoderegs.c (OptimizeRegUsage): do not optimize
2183             registers that have not been assigned proper liveranges,
2184             fixes #1469504 and #1474602,
2185           (pCodeRegOptimizeRegUsage): fixed typo in comment
2186
2187 2006-04-24 Borut Razem <borut.razem AT siol.net>
2188
2189         * device/examples/main8051.c: deleted - it was removed from CVS
2190           24.mar.2000 and after that modified 18.feb.2001, so it reappered
2191           after the transition to Subversion
2192         * src/SDCCalloc.h: deleted - it was removed  from CVS
2193           3.feb.2001 and after that modified 18.feb.2001, so it reappered
2194           after the transition to Subversion
2195         * sim/ucsim/cpu.gif, sim/ucsim/interrupt.gif, sim/ucsim/new.gif,
2196           sim/ucsim/serial1.gif, sim/ucsim/serial2.gif,
2197           sim/ucsim/term_cpuopt.gif, sim/ucsim/timers.gif, sim/ucsim/wins.gif,
2198           sim/ucsim/post.jpg, sim/ucsim/UCsim.jpg: corrected
2199
2200 2006-04-22 Maarten Brock <sourceforge.brock AT dse.nl>
2201
2202         * as/asx8051.dsp: added mcs51/strcmpi.h
2203         * as/hc08/as_hc08.dsp: added asm.h, m6808.h, strcmpi.h
2204         * as/hc08/aslink.h: updated lnksect prototype
2205         * as/hc08/asm.h,
2206         * as/mcs51/asm.h: added a_addr to struct area and s_org to struct sym
2207         * as/hc08/asmain.c,
2208         * as/mcs51/asmain.c (asmbl): init dot.s_org for S_ORG,
2209           (newdot): handle A_ABS
2210         * as/hc08/asout.c,
2211         * as/mcs51/asout.c (outarea): output address
2212         * as/hc08/lkaomf51.c,
2213         * as/mcs51/lkaomf51.c: disabled unused array UsageType
2214         * as/hc08/m08pst.c,
2215         * as/mcs51/i51pst.c,
2216         * as/z80/z80pst.c: "ABS" is not A_OVR
2217         * as/hc08/lkarea.c (newarea): read a_addr,
2218           (lnkarea): added codemap array, sort absolute areas to the front,
2219            combine all GSINITx/GSFINAL,
2220           (find_empty_space, allocate_space): new functions,
2221           (lnksect): return next address, handle absolute sections
2222         * as/mcs51/lkarea.c (newarea): read a_addr,
2223           lnksect2 prototype changed,
2224           (lnkarea2): define codemap unsigned, combine all GSINITx/GSFINAL,
2225           (find_empty_space, allocate_space): new, factored out of lnksect2,
2226           (lnksect2): return next address, handle absolute sections
2227         * as/hc08/lkhead.c,
2228         * as/mcs51/lkhead.c (newhead): head is absolute but not overlay
2229         * as/hc08/lklibr.c (addfile, fndsym),
2230         * as/mcs51/lklibr.c (addfile, buildlibraryindex, fndsym): prevent
2231           index out of range and detect both '\' and '/'
2232         * device/include/mcs51/c8051f200.h: added _XPAGE, removed bad comment
2233         * device/include/stdbool.h: removed SDCC_ds390 from check to pass
2234           regression tests (ds390 cannot return bool yet)
2235         * doc/sdccman.lyx: changed version number, document changed --no-peep,
2236           document critical interrupts on z80, document changed SDCC define
2237         * src/asm.c (_asxxxx_mapping): fixed .org directive,
2238           (_a390_mapping): added .org directive
2239         * src/hc08/gen.c (transferAopAop): made bytemask log to fix warning,
2240           (genMultOneByte): fixed warnings
2241         * src/hc08/hc08.dsp: lowered warning level to 2 to suppress pedantic
2242           ones
2243         * src/pic16/device.c: removed newReg prototype, removed BYTE_IN_LONG
2244         * src/pic16/gen.c (pic16_popGetLabel): made parameter key signed,
2245           (pic16_genLeftShiftLiteral, genRightShiftLiteral): fixed warnings
2246         * src/pic16/gen.h: changed prototype for pic16_popGetLabel
2247         * src/pic16/main.c: removed newReg prototype
2248         * src/pic16/pcode.c,
2249         * src/pic16/pcode.h (pic16_emitDB): changed parameter c to int to fix
2250           warnings
2251         * src/pic16/pic16.dsp: lowered warning level to 2 to suppress pedantic
2252           ones
2253         * src/pic16/ralloc.c
2254         * src/pic16/ralloc.h (newReg): changed type to int and size to unsigned
2255           to fix warnings
2256         * src/pic/pcode.c (allocInternalRegister): changed parameter optype
2257           from short to PIC_OPTYPE
2258         * src/pic/pic.dsp: lowered warning level to 2 to suppress pedantic ones
2259         * src/pic/ralloc.c (newReg, allocInternalRegister): changed parameter
2260           optype from short to PIC_OPTYPE
2261         * src/port.h: made int_size unsigned to fix warnings
2262         * src/SDCC.y: fixed warning on MSVC
2263         * src/SDCCicode.c (getArraySizePtr): return unsigned int
2264         * src/SDCCopt.c (convertToFcall): fixed warnings
2265         * src/SDCCsymt.h: removed double prototype for genSymName
2266         * src/xa51/ralloc.c (allocReg): made size unsigned int, type int and
2267           offset int to fix warnings
2268
2269 2006-04-22 Borut Razem <borut.razem AT siol.net>
2270
2271         * doc/sdccman.lyx, */Makefile, */Makefile.in:
2272           references to CVS replaced with Subversion
2273
2274 2006-04-21 Borut Razem <borut.razem AT siol.net>
2275
2276         * doc/sdccman.lyx, */Makefile, */Makefile.in:
2277           references to CVS replaced with Subversion
2278
2279 2006-04-19 Borut Razem <borut.razem AT siol.net>
2280
2281         * src/version.awk: adapted for svn
2282         * /asxxxx/asxhtml/*.gif: set property svn:mime-type to image/gif
2283           sim/ucsim/doc/*.gif: set property svn:mime-type to image/gif
2284           sim/ucsim/doc/*.jpg: set property svn:mime-type to image/jpeg
2285           /binutils-avr/etc/*.vi, *.jin: removed all properties
2286           support/scripts/sdcc.ico: set property svn:mime-type to image/x-icon
2287
2288 2006-04-19 Borut Razem <borut.razem AT siol.net>
2289
2290         * CVS to Subversion migration completed
2291
2292 2006-04-18 Borut Razem <borut.razem AT siol.net>
2293
2294         * support/scripts/sdcc.nsi: removed unexisting ${DEV_ROOT}\lib\pic\*.o,
2295           ${DEV_ROOT}\lib\src\pic\libdev\*.S, ${DEV_ROOT}\lib\src\pic\libdev\*.inc
2296
2297 2006-04-17 Borut Razem <borut.razem AT siol.net>
2298
2299         * device/include/Makefile.in: added pic/*.inc to the installation
2300
2301 2006-04-15 Bernhard Held <bernhard AT bernhardheld.de>
2302
2303         * support/regression/collate-results.py: fixed output in case of
2304         a valdiag error
2305         * support/regression/generate-cases.py: fixed splitting of pathnames
2306         with dots
2307         * as/hc08/lklibr.c (addfile),
2308         * as/mcs51/lklibr.c (addfile): fixed off-by-one bug
2309
2310 2006-04-11 Raphael Neider <rneider AT web.de>
2311
2312         * src/pic16/gen.c (getFreePtr, pic16_popRegFromString),
2313         * src/pic16/ralloc.c (pic16_allocregWithName): removed debug output
2314         * src/pic16/pcode.c (assignValnums): fixed #1460578
2315
2316 2006-04-11 Raphael Neider <rneider AT web.de>
2317
2318         * device/lib/pic/libdev/*.c,
2319         * device/include/pic/*.h: replaced sfr and data with __sfr and __data,
2320           fixes #1468739, enables compilation in --std-c99 mode
2321         * support/scripts/inc2h.pl: emit __sfr/__data instead of sfr/data
2322
2323 2006-04-11 Raphael Neider <rneider AT web.de>
2324
2325         * src/pic/device.c (find_device): removed debug output
2326           (list_valid_pics): enabled verbose listing of supported devices
2327         * device/include/stdbool.h: define bool as char for pic14/16 as well
2328
2329 2006-04-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2330
2331         * src/SDCC.y: allow using brackets here: "__interrupt (1) __using (1)"
2332
2333 2006-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2334
2335         * .version: bumped version to 2.5.6
2336         * src/pic/ralloc.c (newReg): MSVC doesn't support __builtin_return_address
2337
2338 2006-04-06 Raphael Neider <rneider AT web.de>
2339
2340         * .version: bumped version to 2.5.6 (pic14 ABI changed)
2341         * src/SDCCmain.c: add -DSDCC_PROCESSOR=<id> for pic14 port
2342         * src/pic/glue.c (emitSymbolToFile,pic14_constructAbsMap,
2343           pic14emitRegularMap,pic14emitMaps): moved output for absolute symbols to
2344             pic14_constructAbsMap
2345           (pic14printPublics): declare absolute global symbols as global
2346           (pic14createInterruptVect),
2347         * src/pic/ralloc.c (IS_CONFIG_ADDRESS): support second config word,
2348           (newReg): assume new registers unused, use correct name in
2349             hashtable (reg->name instead of name), more debugLog output
2350         * src/pic/device.h (PIC_device): added fields for verbose output
2351         * src/pic/device.c: moved device definition to pic14devices.txt,
2352             added routines for runtime parsing of pic14devices.txt,
2353             added support for second config word
2354         * src/pic/main.c (_process_pragma): removed #pragma maxram,
2355           (_pic14_keywords): no longer accept "bit" and "sbit" keywords
2356           (_pic14_initPaths): add search paths with "pic" suffix (not "pic14")
2357           (_pic14_parseOptions): moved pCodeInitRegisters here
2358           (_pic14_do_link): add "pic$(ARCH).lib" to linker arguments
2359         * src/pic/pcode.c (AnalyzeBanking): bail out on unset processor,
2360           (pCodeInitRegisters): rewrapped comments, perpared new approach to
2361             handling the pseudo stack
2362         * device/lib/Makefile.in: ignore failures in objects-pic16,
2363         * device/lib/pic/{configure,configure.in,Makefile}: added libdev/
2364         * device/lib/pic/NEWS: document new dependency on picXXX.lib
2365         * device/lib/pic/Makefile.subdir,
2366         * device/lib/pic16/Makefile.subdir: improved clean rules
2367         * device/lib/pic/libdev/: NEW, pic14 device libraries
2368         * device/lib/pic/libsdcc/_gptr{get,put}{1,2,3,4}.S: use _X not X
2369         * device/lib/pic/libsdcc/macros.inc: use _X not X, declare default SFRs
2370         * device/include/Makefile.in: create subdir and install pic14 headers
2371         * device/include/pic/p16f_common.inc: removed unused declarations
2372         * device/include/pic/pic16*.h: added header files for 100+ 14 bit
2373             PICs from inc2h.pl v1.6,
2374             replaced BIT_AT macros with struct declarations
2375         * device/include/pic/pic14devices.txt: definition of supported devices,
2376             all above improvements contributed by Zik Saleeba, thanks
2377         * support/scripts/inc2h.pl: removed BIT_AT, replaced with structs
2378         * support/scripts/sdcc.nsi: also install pic14 device libraries and
2379             headers
2380
2381 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
2382
2383         * device/include/mcs51/c8051f410.h: added interrupt numbers,
2384         * device/include/mcs51/c8051f200.h: old SiLabs mcu completes the list,
2385           thanks to Charles Olds
2386
2387 2006-04-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2388
2389         * debugger/mcs51/cmd.c (infoRegisters): show return address on stack
2390
2391 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
2392
2393         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug 1464657
2394         * src/mcs51/gen.c (genJumpTab): fixed bug in medium model
2395         * support/regression/bug1464657.c: added, new test
2396
2397 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
2398
2399         * src/SDCCmain.c (preProcess): implemented RFE 1449908, define SDCC as the
2400           version number
2401
2402 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
2403
2404         * src/SDCCpeeph.c (initPeepHole): implemented RFE 1460196, when both
2405           --no-peep and --peep-file <file> are used don't use default rules but
2406           do use the <file>
2407
2408 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
2409
2410         * src/mcs51/gen.c (genCall): fixed bug 1457608
2411
2412 2006-03-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2413
2414         * doc/sdccman.lyx: reverted to version 1.129 of december as my latest
2415         changes seem to cause (trigger?) problems with the build system.
2416
2417 2006-03-29 Maarten Brock <sourceforge.brock AT dse.nl>
2418
2419         * src/SDCCpeeph.c (operandsLiteral): new, added,
2420           (callFuncByName): inserted operandsLiteral
2421         * src/mcs51/peeph.def: reenabled 132.e, added extra check to 132.x
2422
2423 2006-03-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2424
2425         * doc/sdccman.lyx: added paragraph "Use of SDCC in Education"
2426         * src/mcs51/peeph.def: disabled rule 132.e fixing bug #1453093
2427
2428 2006-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
2429
2430         * src/z80/gen.c (genFunction, genEndFunction): fixed bug 1160666,
2431           implemented patch 1120823 Thanks to Willy De la Court (normal
2432           interrupts need an interrupt number now if they are made critical),
2433           and enabled nesting of critical functions though not for gbz80
2434           (genCritical, genEndCritical): added functions
2435           (genZ80Code): added cases for CRITICAL and ENDCRITICAL
2436         * src/z80/mappings.i: added "ei" to all mappings
2437
2438 2006-03-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2439
2440         * sim/ucsim/cmd.src/newcmdcl.h: applied patch fixing GCC 4.1 build
2441         submitted by the Debian SDCC maintainer Aurelien Jarno:
2442         "Credits goes to Martin Michlmayr, who rebuilt the whole Debian
2443         archive with gcc 4.1 on mips and wrote the patch"
2444
2445 2006-03-16 Raphael Neider <rneider AT web.de>
2446
2447         * src/pic16/genarith.c (genAddLit): simplified and fixed case where
2448           the left operand is shorter than the result (c* = lit-c* + int),
2449           fixes bug #1450796
2450         * src/pic16/gen.c (genRightShift): check IS_SYMOP before accessing
2451           OP_SYMBOL
2452
2453 2006-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
2454
2455         * src/.version: increased version number to 2.5.5
2456         * src/SDCCmain.c (linkEdit): do not test for PIC16 target since, PIC16
2457         linking is done manually in pic16 port's _linkEdit,
2458         * src/SDCCsymt.c (compStructSize): for target PIC16 and shell variable
2459         PIC16_PACKED_BITFIELDS, compact bitfield structures as much as possible,
2460         * src/pic16/gen.c (aopForSym): when direct register name is WREG then
2461         allocate asmop as AOP_ACC,
2462         (aopForRemat): added parameter 'bool result' in function declaration,
2463         (pic16_aopGet): return AOP_ACC when accessing WREG,
2464         (pic16_popGetTempReg): minor modification,
2465         (pic16_popRegFromIdx): first try with 'pic16_regWithIdx' then with
2466         'pic16_allocWithIdx',
2467         (genPcall): removed ftype, usage of OP_SYM_TYPE asserted error when
2468         calling function in absolute addresses,
2469         (genAssign): take into account AOP_ACC asmop,
2470         * src/pic16/pcode.c (pic16_newpCodeOpReg): minor modifications,
2471         * src/pic16/pcoderegs.c: some debug functions and lines added,
2472         * src/pic16/ralloc.c (decodeRegType): added but commented out,
2473         * (pic16_typeRegWithIdx): search 'pic16_dynInternalRegs' for given
2474         register too,
2475         * (pic16_findFreeReg, pic16_findFreeRegNext): allocate new register via
2476         call to allocReg, not by manually allocating a new one,
2477         (pic16_assignRegisters): now before going through the register
2478         allocating functions mark all registers as free. This eliminates some
2479         side effects resulting from peephole parser done earlier in the backbone
2480
2481 2006-03-13 Maarten Brock <sourceforge.brock AT dse.nl>
2482
2483         * src/SDCCicode.c (geniCodeLogic),
2484         * src/SDCCast.c (decorateType): applied patch by Bernhard for rfe 1422617
2485
2486 2006-03-10 Maarten Brock <sourceforge.brock AT dse.nl>
2487
2488         * src/mcs51/gen.c (sameReg): new, checks if two aop regs are the same,
2489           (genSend): bugfix, do not allocate and free twice,
2490           (shiftRLong): handle partially overlapping aops
2491         * support/regression/tests/bitopcse.c: fixed warning redefined idata
2492
2493 2006-03-08 Borut Razem <borut.razem AT siol.net>
2494
2495         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata
2496           for pic16
2497
2498 2006-03-08 Maarten Brock <sourceforge.brock AT dse.nl>
2499
2500         * support/regression/tests/bug1409955.c: new, added
2501         * src/mcs51/gen.h: changed asmop.freed:1 to asmop.allocated for tracking
2502         * src/mcs51/gen.c (newAsmop): set asmop.allocated to 1,
2503           (aopForSym, aopOp): increment asmop.allocated if reused,
2504           (freeAsmop): decrement asmop.allocated and check for zero instead of
2505           using asmop.freed,
2506           (freeForBranchAsmop): use asmop.allocated instead of asmop.freed,
2507           (genNot, genCpl, genUminus, genMinus, genMult, genDiv, genMod, genCmpGt,
2508            genCmpLt, genAndOp, genOrOp, genAnd, genOr, genXor, genRRC, genRLC,
2509            genGetHbit, genGetAbit, genGetByte, genGetWord, genSwap,
2510            genLeftShiftLiteral, genLeftShift, genRightShiftLiteral,
2511            genSignedRightShift, genRightShift, genDataPointerGet,
2512            genPagedPointerGet, genFarPointerGet, genCodePointerGet,
2513            genGenPointerGet, genDataPointerSet, genAssign, genCast): free asmop's
2514             in reverse order from allocation,
2515           (genPlus, genCmpEq): free asmop's in reverse order from allocation and
2516             added swappedLR to keep track
2517         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata,
2518           pdata & code for GCC, z80, gbz80 & hc08
2519         * support/regression/tests/zeropad.c: moved defines to testfwk.h
2520
2521 2006-03-08 Raphael Neider <rneider AT web.de>
2522
2523         * src/pic16/main.c (_hasNativeMulFor): fixed bug #1444425
2524
2525 2006-03-07 Maarten Brock <sourceforge.brock AT dse.nl>
2526
2527         * device/include/mcs51/c8051f410.h: new SiLabs mcu
2528         * src/ds390/peeph.def: disabled 186.d and 227.a as fix for #1434401
2529         * support/regression/tests/array.c: added parenthesis, made arrays unsigned
2530
2531 2006-03-06 Borut Razem <borut.razem AT siol.net>
2532
2533         * support/regression/ports/pic16/spec.mk: link with libm18f.lib,
2534           made the linker quiet
2535
2536 2006-03-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
2537
2538         * src/pic16/gen.c (genPcall): fixed bug #1443644
2539         * src/pic16/device.h (struct pic16_options_t): added 'int CATregs' flag
2540         which dumps before the function entry point a data byte which represents
2541         the number of the local variables used by the specified function, added
2542         'xinst' for initial support for Extended Instruction Support,
2543         * src/pic16/gen.c (aopForSym, pic16_aopGet): beautifications,
2544         (pic16_testStackOverflow): do not prefix GSTACK_TEST_NAME with
2545         port->fun_prefix anymore (may change later),
2546         (genFunction, genEndFunction): do not store/restore local registers for
2547         _main (this should take care the --main-return command line option in
2548         the future),
2549         (genOr): removed some legacy pic-port instructions,
2550         * src/pic16/genarith.c (genAddLit): re-enabled old code because
2551         performing operations with SFR's causes data to be written more than
2552         once to each SFR. Perhaps SFRs should be handled in special cases...
2553         * src/pic16/glue.c: macros BIG_ENDIAN and BYTE_IN_LONG are moved to
2554         pcode.h
2555         * src/pic16/main.c (_process_pragma): stack bound checking did not take
2556         into account for stack starting position,
2557         (struct OPTIONS pic16_optionsTable): added command line argument
2558         --extended or -y for Extended Instruction Support,
2559         * src/pic16/ralloc.c (pic16_decodeOp): added case for FUNCTION,
2560         (deassignLRs): *** perhaps the most important change, old 'for' code
2561         (commented out for reference), didn't account for some registers which
2562         were left marked 'not free' after a pointer operation. The change
2563         reduces register usage a lot in some cases
2564
2565 2006-03-04 Borut Razem <borut.razem AT siol.net>
2566
2567         * support/regression/ports/hc08/spec.mk: remove *.asm in traget
2568           _clean
2569         * support/regression/tests/bug-524697.c: decreased array size for
2570           mcs51 to fit into the internal RAM
2571         * support/regression/Makefile.in: a little bit more verbose
2572
2573 2006-03-03 Borut Razem <borut.razem AT siol.net>
2574
2575         * support/regression/fwk/lib/testfwk.c,
2576           support/regression/fwk/include/testfwk.h: introduced function
2577           _prints(), nonrecursive _printn(), call _initEmu() from main()
2578         * support/regression/ports/gbz80/support.asm,
2579           support/regression/ports/ucz80/support.asm,
2580           support/regression/ports/z80/support.asm,
2581           support/regression/ports/ds390/support.c,
2582           support/regression/ports/hc08/support.c,
2583           support/regression/ports/host/support.c,
2584           support/regression/ports/mcs51/support.c,
2585           support/regression/ports/xa51/support.c: added empty _initEmu()
2586           function
2587         * support/regression/ports/pic16/gpsim.cmd,
2588           support/regression/ports/pic16/spec.mk,
2589           support/regression/ports/pic16/support.c,
2590           support/regression/Makefile.in: added pic16 regression test
2591
2592 2006-03-01 Raphael Neider <rneider AT web.de>
2593
2594         * src/pic16/gen.c (genPcall,pic16_derefPtr,genGenPointerGet,
2595           genConstPointerGet): use safe way of generating MOVFF to cover
2596             literals as well as registers, fixes bug #1440527
2597         * src/pic16/glue.c (pic16_printIvalBitFields): prevent NULL pointer
2598             dereference
2599           (pic16_printIvalUnion,pic16_isUnion): NEW, handle initialized unions
2600             more correctly, fixes bug #1232186
2601           (pic16_printIval): use pic16_printIvalUnion() for initialized unions
2602         * src/pic16/main.c (_pic16_linkEdit): reorder linker arguments to make
2603             gplink guess the correct processor in more cases, applied patch
2604             from Till Riedel attached to and fixing bug #1436552
2605
2606 2006-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2607
2608         * support/regression/tests/array.c: added, contains check for #1434401
2609         * src/mcs51/peeph.def: disabled 186.d as temporary fix for #1434401
2610
2611 2006-02-16 Maarten Brock <sourceforge.brock AT dse.nl>
2612
2613         * device/include/mcs51/at89s8253.h: new, thanks to Krzysztof Polomka
2614         * device/include/mcs51/at89S8252.h: fixed, thanks to Krzysztof Polomka
2615         * device/include/mcs51/c8051f326.h,
2616         * device/include/mcs51/c8051f340.h: new SiLabs mcu's
2617         * device/include/mcs51/c8051f000.h,
2618         * device/include/mcs51/c8051f018.h,
2619         * device/include/mcs51/c8051f020.h: used () with __at, renamed IDLE,STOP to
2620           PCON_IDLE,PCON_STOP and added sfr16 definitions
2621
2622 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
2623
2624         * src/mcs51/gen.c (genPlus, genMinus, genMult, genGetAbit, genGetByte,
2625           genGetWord): fixed bug 1409955
2626
2627 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
2628
2629         * device/include/hc08/mc68hc908gp32.h,
2630         * device/include/hc08/mc68hc908jb8.h: removed AWUL, added PTA6 & PTA7
2631
2632 2006-02-13 Maarten Brock <sourceforge.brock AT dse.nl>
2633
2634         * src/SDCCast.c (constExprValue): return NULL if not a value
2635         * src/SDCCglue.c (printIvalArray): fixed bug 1225568
2636         * src/hc08/gen.c(genUnpackBits, genUnpackBitsImmed): fixed bug 1019480
2637         * support/regression/tests/bitfields.c: enabled signed bitfield for all
2638
2639 2006-02-13 Borut Razem <borut.razem AT siol.net>
2640
2641         * src/regression/ptrarg.c: added, fails due to bug #1430967
2642         * src/regression/Makefile: ptrarg.c added, ...
2643
2644 2006-02-12 Maarten Brock <sourceforge.brock AT dse.nl>
2645
2646         * src/z80/gen.c (genUnpackBits): fixed bug 1019480
2647         * support/regression/tests/bitfields.c: enabled signed bitfield for z80
2648
2649 2006-02-11 Borut Razem <borut.razem AT siol.net>
2650
2651         * src/SDCCmain.c: Added "sdcc: Calling linker..." if --verbose,
2652           print "Processor: xxx" message to stdout only if --verbose
2653
2654 2006-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
2655
2656         * src/SDCCglue.c (printIvalStruct): fixed bug 1426356 union initializer
2657         * support/regression/tests/bug1426356.c: added
2658         * support/regression/tests/bitfields.c: removed 2 tests
2659
2660 2006-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
2661
2662         * device/include/mcs51/at89c51snd1c.h: updated comments, see patch 1428901
2663         * device/include/mcs51/c8051f330.h,
2664         * device/include/mcs51/c8051f350.h: used () with __at, renamed IDLE,STOP to
2665           PCON_IDLE,PCON_STOP and added sfr16 definitions
2666         * device/lib/_divsint.c,
2667         * device/lib/_divuint.c,
2668         * device/lib/_divulong.c,
2669         * device/lib/_divulong.c: renamed a,b to x,y to avoid confusion, fixed
2670           register bank bug for small stackauto
2671
2672 2006-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
2673
2674         * support/regression/fwk/lib/timeout.c: include <stdlib.h> for exit()
2675
2676 2006-02-08 Maarten Brock <sourceforge.brock AT dse.nl>
2677
2678         * support/regression/ports/mcs51-xstack-auto/spec.mk: forgot -I(...)/mcs51
2679         * all.dsp: corrected several bin paths
2680         * device/include/mcs51/c8051f120.h,
2681         * device/include/mcs51/c8051f300.h,
2682         * device/include/mcs51/c8051f310.h: used () with __at and renamed IDLE,STOP
2683           to PCON_IDLE,PCON_STOP
2684         * device/include/mcs51/c8051f320.h: see above, also added sfr16 definitions
2685         * device/lib/printf_large.c (output_float): fixed bug 1388703
2686         * support/regression/tests/bug1057979.c: added test for bug 1388703
2687
2688 2006-02-08 Raphael Neider <rneider AT web.de>
2689
2690         * src/pic/pcode.c (pciTRIS): fixed typo,
2691           (BuildFlow,LinkFlow_pCode): added (disabled) debug output,
2692           (LinkFlow): fixed handling of flows that end in a call,
2693           (ReuseReg): perform safety check earlier
2694         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed
2695             to work with flows at the beginning of a pBlock,
2696             fixes #1426557 (Symbol not previously defined),
2697           (pic14_ReMapLiveRanges): NEW, destroy and rebuild register
2698             usage information
2699           (RemoveUnusedRegisters): update register usage info
2700         * src/pic/ralloc.c (newReg): prevent duplicate registers from being
2701             created, reuse existing ones instead
2702         * src/pic/gen.c (genPcall): fixed #1424719
2703
2704 2006-02-07 Bernhard Held <bernhard AT bernhardheld.de>
2705
2706         * link/z80/lkmain.c,
2707         * link/z80/lklex.c,
2708         * link/z80/lkdata.c,
2709         * link/z80/aslink.h: fixed build on current cygwin:
2710         replaced getline() by lk_getline()
2711
2712 2006-02-01 Borut Razem <borut.razem AT siol.net>
2713
2714         * src/regression/add.c, src/regression/add2.c, src/regression/add3.c,
2715           src/regression/add4.c, src/regression/and1.c, src/regression/and2.c,
2716           src/regression/arrays.c, src/regression/b.c, src/regression/bank1.c,
2717           src/regression/bool1.c, src/regression/bool2.c,
2718           src/regression/bool3.c, src/regression/call1.c,
2719           src/regression/compare.c, src/regression/compare10.c,
2720           src/regression/compare2.c, src/regression/compare3.c,
2721           src/regression/compare4.c, src/regression/compare5.c,
2722           src/regression/compare6.c, src/regression/compare7.c,
2723           src/regression/compare8.c, src/regression/compare9.c,
2724           src/regression/configword.c, src/regression/for.c,
2725           src/regression/inline.c, src/regression/mult1.c,
2726           src/regression/nestfor.c, src/regression/or1.c,
2727           src/regression/pointer1.c, src/regression/ptrfunc.c,
2728           src/regression/rotate1.c, src/regression/rotate2.c,
2729           src/regression/rotate3.c, src/regression/rotate4.c,
2730           src/regression/rotate5.c, src/regression/rotate6.c,
2731           src/regression/rotate7.c, src/regression/string1.c,
2732           src/regression/struct1.c, src/regression/sub.c,
2733           src/regression/sub2.c, src/regression/switch1.c,
2734           src/regression/while.c, src/regression/xor.c,
2735           src/regression/create_stc, src/regression/simulate,
2736           src/regression/rt.sh, src/regression/Makefile: reenabled Scott's PIC14
2737           regression tests
2738         * src/regression/gpsim_assert.h: added
2739
2740 2006-01-28 Bernhard Held <bernhard AT bernhardheld.de>
2741
2742         * src/ds390/gen.c (unsaveRegisters): fixed literal function pointer
2743         ((void (code *) (void)) 0) ();
2744         * as/hc08/aslex.c,
2745         * as/hc08/aslink.h,
2746         * as/hc08/asm.h,
2747         * as/hc08/asmain.c,
2748         * as/hc08/lkdata.c,
2749         * as/hc08/lklex.c,
2750         * as/hc08/lkmain.c,
2751         * as/mcs51/aslex.c,
2752         * as/mcs51/aslink.h,
2753         * as/mcs51/asm.h,
2754         * as/mcs51/asmain.c,
2755         * as/mcs51/lkdata.c,
2756         * as/mcs51/lklex.c,
2757         * as/mcs51/lkmain.c,
2758         * as/z80/aslex.c,
2759         * as/z80/asm.h,
2760         * as/z80/asmain.c: fixed build on current cygwin:
2761         replaced getline() by as_getline()
2762
2763 2006-01-27 Bernhard Held <bernhard AT bernhardheld.de>
2764
2765         * src/SDCC.y: fixed bug #716242, exchanged pointer and function
2766         declarator in the symbol chain
2767         * src/SDCCsymt.h,
2768         * src/SDCCsymt.c (processFuncPtrArgs): added, removes "(void)"
2769         parameter list for function pointers
2770         * src/SDCCast.c (decorateType): added call of processFuncPtrArgs()
2771         * support/regression/tests/bug-716242.c: added
2772
2773 2006-01-20 Bernhard Held <bernhard AT bernhardheld.de>
2774
2775         * src/SDCCicode.c (geniCodeAdd, geniCodeArray): use char for array
2776         offset if possible
2777         * src/SDCCast.c (getLeftResultType): 255 fits in char, not 256
2778
2779 2006-01-18 Bernhard Held <bernhard AT bernhardheld.de>
2780
2781         * src/SDCCast.c (backPatchLabels): fixed bug #1408066: made it
2782         inifinitely recurseable, added static
2783         * support/regression/tests/bug-1408066.c: added
2784
2785 2006-01-17 Bernhard Held <bernhard AT bernhardheld.de>
2786
2787         * src/SDCCicode.h,
2788         * src/SDCCicode.c (newiTempPreheaderLabel, newiTempLoopHeaderLabel):
2789         renamed, added possibility to create "postLoopLbl"-labels
2790         * src/SDCCBBlock.c (iCodeBreakDown): renamed newiTempPreheaderLabel to
2791         newiTempLoopHeaderLabel
2792         * src/SDCCloop.c (newInduction, newRegion, backEdges, insertIntoLoop,
2793         isNotInBlocks, addToExitsMarkDepth, createLoop, dominatedBy,
2794         addDefInExprs, assignmentsToSym, isOperandInvariant, pointerAssigned,
2795         hasNonPtrUse, loopInvariants, addressTaken, findInduction,
2796         findDefInRegion, mergeRegions, ifMerged, mergeInnerLoops): made static,
2797         (pinduction, pregion, hasIncomingDefs, findLoopEndSeq): disabled,
2798         (basicInduction): fixed bug #136564, made static,
2799         (loopInduction): changed parameter of basicInduction, made static,
2800         (addPostLoopBlock): added
2801         * src/SDCCloop.h: removed backEdges, pregion, pinduction,
2802         loopOptimizations, addressTaken, findDefInRegion, hasIncomingDefs,
2803         findLoopEndSeq
2804         * support/regression/tests/bug-136564.c: added
2805         * support/regression/ports/mcs51-xstack-auto/spec.mk: added
2806         --std-sdcc99 to LIBSDCCFLAGS
2807
2808 2006-01-16 Bernhard Held <bernhard AT bernhardheld.de>
2809
2810         * src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false
2811         while loop
2812         * support/regression/tests/bug-1406131.c: added
2813
2814 2005-12-31 Bernhard Held <bernhard AT bernhardheld.de>
2815
2816         * src/SDCCast.c (decorateType): fix promotion of unary minus
2817         * src/SDCCsymt.c (computeType): beautified
2818         * src/SDCCval.c (cheapestVal): beautified, old non-Ansi version removed,
2819         (valUnaryPM, valComplement): fix sign and promotion,
2820         (valNot): ANSI: result type is int (SDCC: unsigned char)
2821         * support/regression/tests/uminus.c: speedup by removing superflous
2822         test case 'int'
2823         * support/regression/tests/onebyte.c: added promotion and signedness
2824         tests for unary minus
2825         * support/regressions/tests/bug-477927.c: disable warning about
2826         uninitialized variables
2827         * support/regression/tests/not.c: added
2828
2829 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
2830
2831         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
2832         * src/mcs51/gen.c (gen51Code): show final register usage after
2833         fillGaps in asm with --i-code-in-asm
2834         * src/SDCClrange.c (sequenceiCode, setLiveFrom, setLiveTo,
2835         markLiveRanges, markAlive, findNextUseSym, findNextUse, unvisitBlocks,
2836         incUsed, rliveClear, adjustIChain): made static,
2837         (setFromRange): excluded because it's unused,
2838         (findPrevUseSym, markWholeLoop): added,
2839         (findPrevUse): rewritten; fixes bug 895992; now a complete search
2840         through all branches of predecessors enables sdcc to emit the warning
2841         W_LOCAL_NOINIT, marking of outermost loop was incomplete,
2842         (rlivePoint): made static, added parameter emitWarnings which is only
2843         true during the first run out of two,
2844         (findRecursiveSucc, findRecursivePred): removed,
2845         (computeLiveRanges): made static, added parameter emitWarnings,
2846         (dumpIcRlive): added for debugging only
2847         * src/SDCClrange.h: added boolean parameter to computeLiveRanges(),
2848         removed prototype of setFromRange()
2849         * src/SDCCopt.c (eBBlockFromiCode): added new parameter emitWarnings
2850         in call of computeLiveRanges()
2851         * support/regression/tests/bug-895992.c: added
2852         * support/regression/tests/bug-971834.c: added
2853         * support/valdiag/tests/bug-895992.c: added
2854         * support/valdiag/tests/bug-971834.c: added
2855
2856 2005-12-18 Raphael Neider <rneider AT web.de>
2857
2858         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
2859           (genUnpackBits): improved code for direct operands,
2860           (genPackBits): improved code for literal assignment to bitfields
2861             and for direct destination operands (no FSR indirection),
2862             prevented redundant AND, fixes #1362800,
2863           (AccLsh): added parameter to disable masking of the result
2864         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
2865           skip instructions with side-effects (like incfsz),
2866           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
2867         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
2868         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
2869           fixes #1375263
2870
2871 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
2872
2873         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
2874         volatile variables as spill location
2875
2876 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
2877
2878         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
2879         replacing literals
2880         * support/regression/tests/bug-1376320.c: added
2881
2882 2005-12-08 Raphael Neider <rneider AT web.de>
2883
2884         * src/pic/device.c: renamed is_shared to pic14_is_shared
2885         * src/pic/gen.c (genIfx): re-enabled handling of sbits
2886         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
2887           (is_valid_identifier): added for above workaround
2888
2889 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
2890
2891         * device/lib/Makefile.in: fixed to enable port-specific-objects
2892         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
2893           char, thanks Hubert Sack
2894         * doc/sdccman.lyx: documented --xstack-loc,
2895           elaborated a bit more on interrupts and pitfalls,
2896           removed "setjmp/longjmp unsupported",
2897           documented some unsupported C99 features
2898         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
2899         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
2900           if, thanks Hubert Sack
2901         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
2902         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
2903           make make_library
2904         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
2905           regression tests can report resource usage (rfe 700441)
2906         * support/regression/collate-results.py: report resource usage
2907         * support/regression/ports/ds390/spec.mk,
2908         * support/regression/ports/hc08/spec.mk,
2909         * support/regression/ports/mcs51/spec.mk,
2910         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
2911         * support/regression/ports/ds390/uCsim.cmd,
2912         * support/regression/ports/hc08/uCsim.cmd,
2913         * support/regression/ports/mcs51/uCsim.cmd,
2914         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
2915         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
2916           library, use the default one
2917         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
2918           building the library
2919
2920 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
2921
2922         * config.dsp: added dependency on .version and configure_vc.awk
2923         * device/include/setjmp.h: updated for --stack-auto and --xstack
2924         * device/include/mcs51/at89c51snd1c.h: corrected line endings
2925         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
2926         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
2927         * device/lib/libsdcc.lib: added _setjmp
2928         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
2929           (decorateType): fixed bug 1372851,
2930           (optimizeGetHbit): fixed warning
2931         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
2932           array initialisation
2933         * support/regression/tests/bug1057979.c: added test for bug 1358192
2934         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
2935
2936 2005-12-03 Borut Razem <borut.razem AT siol.net>
2937
2938         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
2939           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
2940
2941 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
2942
2943         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
2944         createIval): implement symbol independant "flexible array member",
2945         (createIvalCharPtr): implemented flexible array initialisation with a
2946         string
2947         * src/SDCCsymt.c (copyStruct): removed,
2948         (getSize): fixed misleading comment,
2949         (getAllocSize): removed, the additional allocation size is now in
2950         sym->flexArrayLength,
2951         (checkStructFlexArray): new, syntax checks for flexible array members,
2952         (compStructSize): added syntax checks for "flexible array members"
2953         (copyStruct): removed,
2954         (copyLinkChain): removed inefficient fix for bug 770487
2955         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
2956         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
2957         symbol->flexArrayLength
2958         * src/SDCCerr.c,
2959         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
2960         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
2961         * support/regression/tests/structflexarray.c: added
2962         * support/valdiag/tests/structflexiblearray.c: added
2963
2964 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
2965
2966         * src/SDCCast.c (decorateType): fixed bug 1368489
2967         * support/Util/SDCCerr.c,
2968         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
2969
2970 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2971
2972         * device/include/mcs51/at89c51snd1c.h: added file submitted by
2973           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
2974
2975 2005-11-27 Borut Razem <borut.razem AT siol.net>
2976
2977         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
2978           support/cpp2/mkdeps.h: added command line option
2979           -obj-ext=<extension> to SDCPP to define object file externion, used
2980           for generation of make dependencies (-M)
2981         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
2982
2983 2005-11-26 Borut Razem <borut.razem AT siol.net>
2984
2985         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
2986           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
2987           added pic and pic16 libraries
2988
2989 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2990
2991         * device/include/float.h: Corrected typo in prototype of __fsgt
2992
2993 2005-11-25 Borut Razem <borut.razem AT siol.net>
2994
2995         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
2996           added creation of model-mcs51-stack-auto libraries
2997
2998 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
2999
3000         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
3001         and fields-list too
3002         * src/SDCCast.c (createIvalArray): removed obsolete comment
3003
3004 2005-11-24 Borut Razem <borut.razem AT siol.net>
3005
3006         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
3007           added missing device/lib/mcs51/crt*.asm sources
3008
3009 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
3010
3011         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
3012
3013 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
3014
3015         * device/lib/_fs2schar.c,
3016         * device/lib/_fs2sint.c,
3017         * device/lib/_fs2slong.c: optimized inline asm
3018
3019 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3020
3021         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
3022           Better handling of floats between -1.0 and 0.0.
3023
3024 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3025
3026         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
3027           (the missing "if"s prohibited removal of redundant labels)
3028
3029 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3030
3031         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
3032           Properly convert floats between -1.0 and 0.0 to long, int, and char
3033           types (max integer value of negative floats tends to zero).
3034         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
3035           Removed changes made so to work properly with floats between
3036           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
3037           and _fs2char.c
3038
3039 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
3040
3041         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
3042         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
3043         (genCast) cosmetic change
3044         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
3045         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
3046         from mcs51
3047         * support/regression/tests/bitfields (testSignedBitfields): added
3048
3049 2005-11-18 Borut Razem <borut.razem AT siol.net>
3050
3051         * sdcc/device/lib/Makefile.in: remove all unnecessary files
3052         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
3053           introduced SILENT option to make building of pic16 libraries less
3054
3055 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3056
3057         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
3058           Now they work properly with floats between -1.0 and 0.0
3059         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
3060
3061 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
3062
3063         * src/SDCCicode.c (printOperand): added missing else
3064
3065 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
3066
3067         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
3068         reformatted for better readability
3069         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
3070         signed bitfields
3071
3072 2005-11-17 Borut Razem <borut.razem AT siol.net>
3073
3074         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
3075           introduced SILENT option to make building of pic16 libraries less
3076           verbose - used for nightly snapshot build
3077         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
3078           available on Win32 platforms.
3079         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
3080           medium, large, pic and pic16
3081
3082 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3083
3084         * device/lib/printf_large.c: Temporary patch for bug 1358192:
3085           printf("%f"...) sets fraction to zero.
3086
3087 2005-11-16 Raphael Neider <rneider AT web.de>
3088
3089         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
3090           fixes #1357221
3091         * src/pic/gen.c (genIfx): implemented for CARRY bit
3092         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
3093           to generic pointers, fixes #1357332,
3094           (pic16_movLit2f): NEW,
3095           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
3096
3097 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
3098
3099         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
3100
3101 2005-11-11 Raphael Neider <rneider AT web.de>
3102
3103         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
3104         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
3105           compute pointer's type from operand,
3106           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
3107           improved single bit reads, fixes bug #1353379
3108
3109 2005-11-09 Borut Razem <borut.razem AT siol.net>
3110
3111         * support/scripts/sdcc.nsi: added lib/pic to the package
3112
3113 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
3114
3115         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
3116
3117 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
3118
3119         * support/regression/tests/bug1348008.c: added
3120         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
3121         * support/regression/tests/bug1337835.c: updated comment
3122
3123 2005-11-06 Borut Razem <borut.razem AT siol.net>
3124
3125         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
3126           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
3127           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
3128           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
3129           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
3130           dynamic construction of cl_error_class and derivates - 2.nd try
3131
3132 2005-11-05 Borut Razem <borut.razem AT siol.net>
3133
3134         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
3135           bug, which caused Bus Errors on sparc solaris
3136
3137 2005-11-04 Borut Razem <borut.razem AT siol.net>
3138
3139         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
3140           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
3141           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
3142           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
3143           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
3144           and derivates to resolve the initialization problem on OSX
3145
3146 2005-11-02 Borut Razem <borut.razem AT siol.net>
3147
3148         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
3149           corrected typo - #include <winsock2.h>
3150
3151 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
3152
3153         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
3154           (_asxxxx_mapping): added org directive for future enhancements
3155
3156 2005-11-01 Borut Razem <borut.razem AT siol.net>
3157
3158         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
3159           enabled sockets on WIN32
3160         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
3161
3162 2005-10-31 Borut Razem <borut.razem AT siol.net>
3163
3164         * support/regression/generate-cases.py: escape backslashes in {testcase}:
3165           WIN32 backslash path delimiters should be escaped when used in C strings
3166         * support/regression/tests/bitfields.c: exclude failing assertions for
3167           __CYGWIN32__ and __MINGW32__ hosts
3168
3169 2005-10-30 Borut Razem <borut.razem AT siol.net>
3170
3171         * src/SDCCutil.c: corrected double comparison typo
3172
3173 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
3174
3175         * device/lib/medium/Makefile: added for new memory model medium
3176         * device/include/asm/mcs51/features.h: updated for medium/pdata
3177         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
3178           added Multiply & Accumulate sbit's and MAC0_PAGE define
3179         * device/include/mcs51/c8051f300.h: added sfr16 definitions
3180         * device/include/mcs51/c8051f310.h: added sfr16 definitions
3181         * device/lib/_mullong.c: update for medium model
3182         * device/lib/incl.mk: added medium model
3183         * doc/sdccman.lyx: documented medium model
3184         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
3185         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
3186         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
3187         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
3188           (allocParms): set SCLS and OCLS to pdata for medium model
3189         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
3190           for pdata,
3191           (powof2): return <0 if not power of 2
3192         * src/avr/gen.c (genBitWise): use updated powof2
3193         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
3194           (shiftR2Left2Result): small optimization in setup, save acc when storing,
3195           (shiftLLeftOrResult): use B if necessary
3196         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
3197         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
3198         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
3199         * support/regression/Makefile.in: added test-mcs51-medium
3200         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
3201
3202 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
3203
3204         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
3205         specifier unsigned
3206         * device/lib/time.c (mktime): fixed bug 1334315
3207
3208 2005-10-28 Raphael Neider <rneider AT web.de>
3209
3210         * device/include/pic/p16f_common.inc: added common declarations
3211         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
3212
3213 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
3214
3215         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
3216           (aopPutUsesAcc): added to predict accumulator use,
3217           (assignResultValue): save acc if necessary,
3218           (genMinusDec): store result if indirectly addressed,
3219           (genDivOneByte):  save acc if necessary,
3220           (movLeft2Result): bugfix if left already in acc,
3221           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
3222             attention to accumulator use (esp. pdata),
3223           (genReceive): receive pdata correctly
3224         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
3225         * src/SDCCicode.h: added isOperandInPagedSpace prototype
3226
3227 2005-10-27 Raphael Neider <rneider AT web.de>
3228
3229         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
3230
3231 2005-10-27 Raphael Neider <rneider AT web.de>
3232
3233         * .version: changed version to 2.5.4
3234         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
3235         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
3236           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
3237             arithmetics support routines
3238         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
3239         * device/lib/Makefile.in: also create installdir for pic
3240
3241         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
3242           pic14 port as well
3243         * src/pic/device.c (dump_sfr): rewritten to delegate register
3244           placement to the linker (use `extern sym' rather than sym EQU addr),
3245           (validAddress): fixed to check last specified address
3246         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
3247           (popGetLit): truncate literal value to 8 bit,
3248           (popGet): moved assert to more appropriate place
3249           (popGetExternal): create pCode operand from and mark the according
3250             symbol as being `extern'
3251           (popGetAddr): added sanity check on immediate's offset, provide
3252             GPOINTER tag on demand
3253           (aopPut): fixed for immediates,
3254           (mov2w_op): move operand's address or contents to WREG (depending on
3255             operand type), safer variant of mov2w,
3256           (movwf,call_libraryfunc): NEW, handy abbreviations,
3257           (get_argument_pcop,get_return_val_pcop,pass_argument,
3258           get_returnvalue): interface for accessing function parameters and
3259             return values,
3260           (assignResultValuei,genRet): use new parameter/return value interface
3261           (pic14_getDataSize): back to old version handling generic pointers,
3262           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
3263             provided implementation and/or fixed old one,
3264           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
3265             calls, removed legacy 8051 reference code
3266           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
3267           (loadSignToC): NEW, move the operands sign bit to CARRY,
3268           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
3269             genRightShiftSigned, accepts negative shift counts,
3270           (setup_fsr): load FSR and adjust IRP (indirect memory access),
3271           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
3272             generic pointers, __data pointers and __code pointers,
3273           (genUnpackBits,genPackBits): rewritten to work with generic pointers
3274             and signed bitfields, limit bitfields to 8 bit,
3275           (genDataPointerGet): fixed number of bytes read,
3276           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
3277           (genPointerGet,genPointerSet): fixed handling of __code pointers,
3278             pointers to constant data are no longer assumed to point to __code
3279             space, removed invalid pointer types,
3280           (bitpatternFromVal): retrieve the PICs representation of an integer
3281             or float literal,
3282           (genDataPointerSet): fixed assigning to po_immediate operands,
3283           (genGenPointerSet): implemented as library call,
3284           (genIfx): fixed incorrect condition,
3285           (genAddrOf): limit generic pointers' addresses to 2 bytes,
3286             provide GPOINTER tag according to destination's storage class,
3287           (genCast): added code to handle casting to generic pointers, added
3288             sign-/zero extension of the result
3289           (aop_isLitLike,op_isLitLike): fixed handling of immediates
3290         * src/pic/gen.h: added macros to access IRP bit in STATUS register
3291         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
3292           extend the result
3293         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
3294           address/register resides in the shared banks
3295           (emitSymbolToFile): improved to handle global and `pinned' symbols,
3296             put all variables into separate sections (have the linker arrange
3297             them)
3298           (picglue): put init code and interrupt handlers in separate sections
3299         * src/pic/main.c: added port specific options table, modified to PORT
3300           structure to make GPOINTERs 3 byte, added pic14_options
3301           (_pic14_do_link): private linking routine (update paths to libraries,
3302             add libsdcc.lib by default)
3303         * src/pic/main.h: declare pic14_options
3304         * src/pic/pcode.c: fixed instructions i/o relations,
3305           (RegCond): reverted to correct version,
3306           (newpCodeOpLit): truncate literals to 8 bit,
3307           (genericPrint): added debug output,
3308           (getRegFromInstruction): fixed for various operand types, simplified
3309           (BuildFlow): fixed broken handling of isntructions with labels
3310           (LinkFlow): start at last instruction in flow (skip trailing comments),
3311             pass the flow on to the next instruction after CALL
3312           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
3313           (insertPCodeInstruction): fixed inserting after a skip instruction,
3314           (DoBankSelect): fixed for labeled instructions
3315           (OptimizepBlock): honor --nopeep switch
3316           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
3317         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
3318         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
3319           (pCodeOptime2pCodes): allow disabling this optimization via
3320             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
3321             but is still buggy), started implementation of a dataflow based
3322             pCode optimization (CSE + dead code elimination)
3323           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
3324         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
3325           names are independant of the stack location and therefore portable across
3326           devices
3327
3328 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
3329
3330         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
3331           (selectSpil): fixed bug 1337835 by not spilling bit variables
3332         * support/regression/tests/bug1337835.c: added test for this bug
3333         * src/mcs51/peeph.def: restart after rule 3.c,
3334           addded rules 263.x to optimize loading constants
3335
3336 2005-10-26 Raphael Neider <rneider AT web.de>
3337
3338         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
3339         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
3340           (genAssign): emit warning when casting literals to generic pointer
3341             type, also applies when taking the address of a fixed variable,
3342           (genCast): improved casting to generic pointers
3343         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
3344           extern variables, added verbose error message
3345         * device/include/pic16/{string.h,errno.h}: added #pragma library c
3346
3347 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
3348
3349         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
3350         carry must be complemented too
3351         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
3352         could be emitted by genMinus
3353         * src/SDCCval.c (constVal): fixed bug 1305065
3354
3355 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
3356
3357         * src/SDCCast.c (addCast): added promotion for bit variables
3358         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
3359         promotion casts + optimisation
3360         (optimizeGetWord): fix warning 'i' might be used uninitialized
3361         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
3362         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
3363
3364 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
3365
3366         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
3367         all chars are promoted to int; promotion should be handled in SDCCast.c
3368
3369 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3370
3371         * device/lib/_strcmp.c: Fixed bug 1326457
3372
3373 2005-10-11 Raphael Neider <rneider AT web.de>
3374
3375         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
3376         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
3377
3378 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
3379
3380         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
3381         * support/regression/tests/sfr16.c: added test for the sfr32 bug
3382
3383 2005-10-04 Raphael Neider <rneider AT web.de>
3384
3385         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
3386           device/lib/pic16/pics.all: added pic18f1320
3387         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
3388
3389 2005-09-30 Raphael Neider <rneider AT web.de>
3390
3391         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
3392         * src/pic16/devices.inc: NEW, provides device descriptions
3393         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
3394
3395 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
3396
3397         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
3398           GETHBIT
3399
3400 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
3401
3402         * doc/sdccman.lyx: updated Highest Order Bit documentation,
3403           documented Any Order Bit, Higher Order Byte and Higher Order Word
3404         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
3405         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
3406           (optimizeGetAbit): new, to get any bit, not only the high bit,
3407           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
3408           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
3409           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
3410           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
3411             RIGHT_OP: also try GETBYTE, GETWORD optimization,
3412             GETABIT, GETBYTE, GETWORD: decorate them,
3413           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
3414           (ast_print): added GETABIT, GETBYTE, GETWORD
3415         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
3416         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
3417           (geniCodeBinary): new generic binary icode,
3418           (ast2iCode): added GETABIT, GETBYTE, GETWORD
3419         * src/port.h: updated comment for PORT.hasExtBitOp
3420         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
3421           (genGetByte): new, to get a single byte,
3422           (genGetWord): new, to get a word from a long,
3423           (gen51Code): added GETABIT, GETBYTE, GETWORD
3424         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
3425
3426 2005-09-23 Raphael Neider <rneider AT web.de>
3427
3428         * configure.in, configure: have device/lib/pic configured
3429         * device/lib/Makefile.in: added model-pic14
3430         * device/lib/clean.mk: added pic/ to clean rule
3431         * device/lib/pic: added rudimentary pic14 library providing support
3432           functions for multiplication/division/generic pointer access
3433         * src/SDCCopt.c (convilong): mark support functions as extern
3434           for pic14 port as well
3435         * src/pic/gen.c (genMult): added assertions,
3436           (genpic14Code): emit warning on unhandled iCodes
3437         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
3438         * src/pic/pcode.c (pCodeOpCopy),
3439         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
3440           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
3441           SFR_REGISTER}), made safe for future extensions
3442         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
3443           instructions even if preceeded by SKIP instructions (also remove
3444           them); removed unused code
3445         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
3446           prevents leaving parts of the structure uninitialized after copying
3447
3448 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
3449
3450         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
3451           ago by me
3452         * support/regression/tests/addsub.c: added test for the bug
3453
3454 2005-09-21 Raphael Neider <rneider AT web.de>
3455
3456         * device/include/pic16/pic18f1220.h,
3457           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
3458         * device/lib/pic16/Makefile.rules: added missing opening paren
3459         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
3460           are provided in genutils.c,
3461           (genUminusFloat,genUminus,genCmpEq): added asserts on different
3462           operand/result sizes,
3463           (genCmp): assert on NULL pointers first, then check deref'ed values
3464         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
3465           result size
3466
3467 2005-09-18 Raphael Neider <rneider AT web.de>
3468
3469         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
3470           as these are now unused,
3471           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
3472         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
3473           local, avoids uninitialized pointer dereference on r->name
3474         * src/pic16/ralloc.c (newReg): fixed indentation
3475
3476 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
3477
3478         * src/SDCCval.c (constVal): fixed bug 730366
3479         * support/Util/SDCCerr.c,
3480         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
3481
3482 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
3483
3484         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
3485
3486 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
3487
3488         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
3489
3490 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3491
3492         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
3493           (hex2dec): made hex_digit unsigned char, removed ascii dependance
3494         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
3495           (hex2dec): made hex_digit unsigned char, removed ascii dependance
3496         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
3497         * packihx/packihx.c (hexDigit): made c unsigned char
3498         * as/mcs51/lklibr.c (fndsym),
3499         * link/z80/lkgb.c (gb),
3500         * link/z80/lklibr.c (fndsym),
3501         * link/z80/lkrloc.c (relr),
3502         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
3503         * src/SDCC.lex (checkCurrFile, process_pragma),
3504         * src/SDCCglue.c (spacesToUnderscores),
3505         * src/SDCCmain.c (setParseWithComma, processFile),
3506         * src/asm.c (tvsprintf, printCLine),
3507         * src/avr/gen.c (emitcode, aopPut),
3508         * src/ds390/gen.c (emitcode),
3509         * src/hc08/gen.c (emitcode, emitinline),
3510         * src/mcs51/gen.c (emitcode, genInline),
3511         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
3512           tokenizeLineNode),
3513         * src/pic/ralloc.c (debugLog),
3514         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
3515           tokenizeLineNode),
3516         * src/pic16/ralloc.c (debugLog),
3517         * src/z80/main.c (_process_pragma):
3518            made all ctype.h function calls safe
3519         * src/SDCCopt.c: include math.h for fabs
3520         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
3521           and used them throughout the code to make ctype.h function calls safe
3522         * src/ds390/main.c (asmLineNodeFromLineNode),
3523         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
3524         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
3525            unsigned char*
3526         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
3527           (newpCodeAsmDir): made ctype.h function calls safe
3528         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
3529           pic16_emitcode):  made lbp unsigned char*
3530         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
3531           (pic16_newpCodeAsmDir): made ctype.h function calls safe
3532         * src/xa51/gen.c (emitcode),
3533         * src/z80/gen.c (_emit2): made lbp unsigned char*
3534         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
3535            char*
3536
3537 2005-09-05 Raphael Neider <rneider AT web.de>
3538
3539         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
3540           access bank splitpoint
3541
3542 2005-09-05 Raphael Neider <rneider AT web.de>
3543
3544         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
3545
3546 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
3547
3548         * .version: changed to version 2.5.3
3549         * doc/sdccman.lyx: changed version to 2.5.3,
3550           documented --codeseg and --constseg and pragma codeseg and constseg,
3551           documented bit parameters (reentrant) and bit returning
3552         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
3553            currFunc->recvSize, but is this ok for all ports?
3554           (ast2iCode): result of ~ on unsigned char must be cast to int for
3555            bool to work
3556         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
3557           function pointers in bit space
3558         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
3559           (processFuncArgs): call port.reg_parm() with reentrancy info
3560         * src/port.h,
3561         * src/avr/main.c,
3562         * src/ds390/main.c,
3563         * src/hc08/main.c,
3564         * src/pic/main.c,
3565         * src/pic16/main.c,
3566         * src/xa51/main.c,
3567         * src/z80/main.c: port.reg_parm prototype extended with
3568           "bool reentrant" parameter
3569         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
3570           options.stackAuto for allocating bit register parameters
3571         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
3572           (genSend): set BitBankUsed if it is,
3573           (selectRegBank): factored out of genCall for use in genPcall,
3574           (genCall): removed redundant dtype assignmen, use selectRegBank,
3575           (genPcall): handle returning in Carry properly, save in F0 if needed,
3576           (genReceive): handle bit register parameters
3577         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
3578           (mcs51_assignRegisters): enable bit registers for all reentrant
3579            functions and don't set BitBankUsed unconditionally
3580         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
3581         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
3582         * support/regression/tests/funptrs.c: added tests for BOOL and for return
3583
3584 2005-08-27 Borut Razem <borut.razem AT siol.net>
3585
3586         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
3587         ppc-osx (Darwin) does not support -u option. It seems that it is
3588         supported only on Linux - GNU cp
3589
3590 2005-08-25 Borut Razem <borut.razem AT siol.net>
3591
3592         * sim/ucsim/gui.src/serio.src/Makefile.in,
3593           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
3594           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
3595           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
3596           install and strip, since the strip at /usr/ccs/bin should be used
3597           on solaris
3598
3599 2005-08-24 Borut Razem <borut.razem AT siol.net>
3600
3601         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
3602
3603 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
3604
3605         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
3606         ffffffffu
3607
3608 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
3609
3610         * as/mcs51/aslink.h: completed lkrloc.c prototypes
3611         * as/mcs51/lkmain.c (link_main): fixed warning
3612         * device/include/stdbool.h: ds390 has no advanced bit support yet
3613         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
3614         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
3615         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
3616           and updated their macros
3617         * src/SDCCval.c (constVal): updated comment for renamed b_long
3618
3619 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
3620
3621         * as/mcs51/asdata.c: changed ctype['['] to BINOP
3622         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
3623           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
3624           (oprio): set priority for '['
3625         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
3626            and adb_24_bit
3627         * as/mcs51/asm.h: added defines R_BIT and S_BIT
3628         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
3629         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
3630         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
3631           added overlayable BIT_BANK area
3632         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
3633           (summary2): explain 'T' in legenda
3634         * as/mcs51/lkrloc.c: replaced old K&R style,
3635           (relr): added R_BIT processing,
3636           (errmsg): added "Bit-addressable relocation error",
3637           (adb_bit): added for converting from byte- to bit-addressable space,
3638           (adb_24_bit): added for converting from byte- to bit-addressable space
3639         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
3640            used in reentrant functions now even as return value
3641         * device/lib/_gptrput.c (_gptrput): removed obsolete code
3642         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
3643           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
3644         * src/SDCCglobl.h: added indicator BitBankUsed
3645         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
3646            the bit registers b0-b7
3647         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
3648           (geniCodeCast): fixed bug 1263853,
3649           (geniCodeLogicAndOr): put result in bool or char,
3650           (geniCodeReceive): added parameter func for accessing the return type,
3651           (geniCodeFunctionBody): pass func to geniCodeReceive
3652         * src/SDCCmain.c: added indicator BitBankUsed
3653         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
3654         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
3655           (checkSClass): don't put automatic bool/bit on stack,
3656           (checkFunction): removed check on function cannot return bit
3657         * src/SDCCsymt.h: added newBoolLink prototype
3658         * src/mcs51/gen.c (rb1regs): added bit registers,
3659           (movc): created for assigning to carry,
3660           (pushReg, popReg): created for pushing registers,
3661           (sameRegs): check both AOP_REG and AOP_CRY types,
3662           (aopOp): handle bit registers,
3663           (aopPut): optimization no self-assign,
3664           (saveRegisters): push reg->base (bits) only once for bit registers,
3665            and use pushReg,
3666           (unsaveRegisters): pop reg->base only once and use popReg,
3667           (assignResultValue): added parameter func and return in carry for bits,
3668           (genIpush): optimization no reload in A if not changed,
3669           (genSend): bit parameters in reentrant functions are passed in bit
3670            registers by first assigning to bits in B, then save registers and
3671            copy B to bits,
3672           (genCall): handle returning in Carry properly, save it in F0 if needed,
3673           (genPcall): updated assignResultValue call, this is not safe yet for bit
3674            returning function !!!
3675           (genFunction): don't generate equ's for bit registers and use pushReg,
3676           (genEndFunction): take care of bit returning functions and use popReg,
3677           (genRet): return bit in Carry,
3678           (genIfx): optimize bit registers and other directly addressable bits,
3679           (genReceive): updated assignResultValue call
3680         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
3681           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
3682            registers when using stack-auto
3683         * src/mcs51/ralloc.c (_G): added allBitregs,
3684           (regs8051): added the bit registers,
3685           (createStackSpil): use macro IS_BIT,
3686           (getRegBit): added to allocate a bit register, else spill,
3687           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
3688           (updateRegUsage): factored out to ease stepping while debugging,
3689           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
3690            also allocate bit registers,
3691           (fillGaps): handle bit registers,
3692           (findAllBitregs): added to create bit vector with all bit registers,
3693           (mcs51_allBitregs): returns this bit vector,
3694           (mcs51_assignRegisters): when using stack-auto use bit registers for
3695            passing parameters and creating local variables
3696         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
3697
3698 2005-08-22 Borut Razem <borut.razem AT siol.net>
3699
3700         * device/lib/Makefile.in: replaced find option -or with -o
3701           to make it run on solaris
3702
3703 2005-08-22 Raphael Neider <rneider AT web.de>
3704
3705         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
3706           fixes #1265442 (crash on Solaris)
3707
3708 2005-08-20 Borut Razem <borut.razem AT siol.net>
3709
3710         * configure, configure.in: added tests for libsocket and libnsl libraries,
3711           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
3712           from support/regression/Makefile.in
3713         * support/regression/Makefile.in: added
3714         * device/lib/pic16/Makefile.common.in: force make to use bash shell
3715         * sim/ucsim/libtool: regenerated on sparc-solaris
3716         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
3717           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
3718           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
3719           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
3720           sparc-solaris, which doesn't use GNU ld linker
3721         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
3722         * as/Makefile: find on sparc-solaris does not support -maxdepth option
3723
3724 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
3725
3726         * src/mcs51/peeph.def: updated comments
3727
3728 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3729
3730         * device/lib/_gptrget.c,
3731         * device/lib/_gptrput.c: slightly shorter
3732         * doc/sdccman.lyx: incremented version
3733         * src/mcs51/peeph.def: moved peephole comments to the line of first
3734           change to better keep line correlation, reanimated 186.e
3735         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
3736
3737 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
3738
3739         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
3740           David Saxton with quotes around file name.
3741
3742 2005-08-15 Borut Razem <borut.razem AT siol.net>
3743
3744         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
3745           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
3746           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
3747           make tests run on x86_64 platform
3748
3749 2005-08-13 Raphael Neider <rneider AT web.de>
3750
3751         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
3752           as it might be executed DURING a build (parallel make is wonderful)
3753
3754 2005-08-13 Raphael Neider <rneider AT web.de>
3755
3756         * device/lib/Makefile.in (port-specific-objects-pic16):
3757           revert to cp $(PORT)/bin/*.* $(PORTDIR)
3758         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
3759           dependency
3760         * device/lib/pic16/Makefile.rules: build subdirs before creating
3761           the library, removed builddir rule, create $(builddir) early in
3762           recurse rule, use empty recurse rule for leaf directories
3763         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
3764           mkdir errors (race condition), removed duplicate suffix "hex"
3765           from clean rules
3766         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
3767         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
3768           prevents mkdir -p from aborting on Alpha
3769
3770 2005-08-12 Raphael Neider <rneider AT web.de>
3771
3772         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
3773           db-statements in order to allow for arrays of pointers in code
3774           sections to be placed without interspersed 0-padding, fixes
3775           bug #1256215
3776         * (emitStatistics): fixed division by zero for pic18f1220
3777         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
3778           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
3779         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
3780         * (pic16_pCodeConstString): keep track of already emitted string
3781           literals to prevent "duplicate definitions of symbol _str_NR"
3782         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
3783           debug message
3784         * device/lib/Makefile.in: ignore failing PIC16 library builds
3785         * device/lib/pic16/Makefile: do not build if gputils are missing
3786         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
3787
3788 2005-08-10 Raphael Neider <rneider AT web.de>
3789
3790         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
3791           my last commit)
3792
3793 2005-08-10 Raphael Neider <rneider AT web.de>
3794
3795         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
3796           Rokas' patch to add the new fixed point type "__fixed16x16"
3797         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
3798           functions for __fixed16x16 arithmetics
3799         * device/lib/pic16: reimplemented the build system to support
3800           a separate build directory, better handling of libio (create
3801           the library in a separate subdir for each architecture) and
3802           easier configuration (centralized in Makefile.common)
3803
3804 2005-08-07 Raphael Neider <rneider AT web.de>
3805
3806         * src/pic16/gen.c (genrshTwo): fixed sign extension
3807         * src/pic16/device.c: added pic18f2320, 4220 and 4320
3808         * device/include/pic16/pic18f2220.h: changed some bit definitions,
3809           added T0CONbits
3810         * device/include/pic16/pic18f4220.h: NEW, header for
3811           pic18f4220 and pic18f4320
3812         * device/include/pic16/pic18fregs.h: added new devices,
3813           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
3814         * device/include/pic16/signal.h: resolved name clashes
3815           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
3816           to also allow testing for interrupt enable bits, added
3817           comments on how to use the macros
3818         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
3819         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
3820           register definitions for the devices
3821         * device/lib/pic16/pics.all: added new devices
3822         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
3823           allocated memory
3824         * device/lib/pic16/libc/stdlib/memfree: do not count
3825           the block header as free memory
3826         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
3827           simplified and added missing end-of-blocklist-marker
3828           (reported by Peter Onion, fixes #1252814)
3829         * (_mergeHeapBlock): fixed loop condition
3830         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
3831           len==0, restructured code
3832         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
3833           up a bit, reduced bitfield accesses, prevent endless loops
3834           in case of heap corruption
3835         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
3836           "unreferenced arguments/must return a value" warnings
3837         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
3838           replaced BAUDREG with SPBRG
3839         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
3840           device/lib/pic16/debug/gstack/gstack.c: replaced
3841           _naked, _asm, _endasm with __naked, __asm, __endasm
3842
3843 2005-08-05 Raphael Neider <rneider AT web.de>
3844
3845         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
3846           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
3847
3848 2005-08-05 Borut Razem <borut.razem AT siol.net>
3849
3850         * device/lib/Makefile.in: added missing ';'
3851         * configure: removed ^M characters
3852
3853 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3854
3855         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
3856           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
3857           License
3858
3859 2005-08-04 Borut Razem <borut.razem AT siol.net>
3860
3861         * configure.in: pic16 libraries build 2nd try - enable running
3862           configure in device/lib/pic16
3863         * configure: regenerated from configure.in
3864         * device/lib/Makefile.in: create $(PORT)/bin directory
3865
3866 2005-08-03 Raphael Neider <rneider AT web.de>
3867
3868         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
3869           to get/set values via pointers
3870         * (genUnpackBits,genPackBits): changed detection of
3871           ptr->bitfield vs. sym.bitfield, fixed access via generic
3872           pointers, removed dead (wrong) code for multibyte bitfields
3873         * (genNearPointerGet, genGenPointerGet): removed useless code,
3874           fixed bitfield detection, fixes #1250594
3875         * (genNearPointerSet): removed useless code
3876         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
3877           and introduced macro pic16_emitpcode that conditionally emits
3878           the origin of the following pCode (useful for debugging SDCC)
3879         * src/pic16/pcode.c: changed (and disabled) some debug outputs
3880         * (createDefmap): fixed handling of LFSR for --optimize-df
3881
3882 2005-08-02 Borut Razem <borut.razem AT siol.net>
3883
3884         * device/lib/Makefile.in: pic16 libraries build enabled since
3885           gputils-0.13.2 are now localy installed at sourceforge's compile farm
3886
3887 2005-08-02 Raphael Neider <rneider AT web.de>
3888
3889         * src/pic16/gen.c (genPackBits): removed deprecated warning
3890         * (genGenPointerSet): fixed bitfield detection
3891
3892 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3893
3894         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
3895
3896 2005-07-31 Raphael Neider <rneider AT web.de>
3897
3898         * device/lib/pic16/libdev/pic18f458.c,
3899           device/include/pic16/pic18f458.h: added missing T0CONbits
3900
3901 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
3902
3903         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
3904
3905 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
3906
3907         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
3908
3909 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3910
3911         * device/include/mcs51/at89c51ed2.h: added.
3912
3913 2005-07-23 Raphael Neider <rneider AT web.de>
3914
3915         * src/pic/gen.h: added emitpcode macro for debugging
3916         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
3917           and replace by macro adding debug information on demand
3918         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
3919         * (gencjne): tried to fix; replaced with correct (slower) code
3920         * (gen{Unp,P}ackBits): fixed single bit access
3921         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
3922         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
3923           previous instruction
3924         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
3925           register has to be handled with care (forbidding movement
3926           of assignments/uses, removing assignments completely, ...)
3927         * (pCodeOptime2pCodes): make use of regIsSpecial
3928         * added lots of debugging output (commented out)
3929         * src/pic/rallloc.c (deassignLRs): prevent operand registers
3930           from being reused as result UNLESS it is known to work
3931
3932 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
3933
3934         * support/Util/dbuf.h: include <stddef.h> for size_t
3935         * .version: changed to version 2.5.2
3936
3937 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3938
3939         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
3940
3941 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3942
3943         * src/hc08/gen.c (genMinus): fixed bug #1241835,
3944           (genModOneByte): removed needless psha/pula
3945
3946 2005-07-22 Raphael Neider <rneider AT web.de>
3947
3948         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
3949           have PIC14 handled like PIC16, fixes broken pic14 linker calls
3950         * src/pic/gen.c (resolveIfx): do not "invent" labels
3951         * (genSkipc): changed to positive logic
3952         * (genSkipCond): removed as no longer needed
3953         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
3954           backport from PIC16
3955         * (genLeftShift): check operands are in different registers
3956         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
3957           INCF does not update CARRY...
3958         * src/pic/main.c: fixed _linkCmd
3959         * src/pic/pcode.c (unlinkpCode): added inactive code
3960         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
3961           alive (do not assign result and operand overlapping registers)
3962
3963 2005-07-22 Raphael Neider <rneider AT web.de>
3964
3965         * src/pic/device.c (dump_sfr): replaced register declaration with
3966           call to emitSymbolToFile() to avoid duplicate symbols
3967         * (assignRelocatableRegisters): do not declare external symbols
3968         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
3969           right (take size of type, not etype)
3970         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
3971         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
3972         * (packRegsForAccUse): disabled assignment of WREG as
3973           the result reg to prevent occurence of just fixed #1235003,
3974           fixes #1242954
3975         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
3976           symbols (avoids duplicate symbols in .asm file)
3977         * (pic14emitRegularMap): use emitSymbolToFile()
3978         * src/pic/gen.c (aopOp): fixed spillLocation handling
3979         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
3980         * (genDataPointerSet): removed unneccessary variables/output
3981
3982 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
3983
3984         * as/mcs51/lkarea.c: enlarged codemap for banked memory
3985         * device/lib/mcs51/crtbank.asm: added # to 0x0F
3986
3987 2005-07-21 Raphael Neider <rneider AT web.de>
3988
3989         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
3990           architecture cannot handle them efficiently, fixes bug #1235003
3991         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
3992           check for empty sets before using them (fixes bug #1232190)
3993
3994 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
3995
3996         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
3997           (lnksect2): generate warnings for memory overlap
3998         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
3999           constseg to set the name of these segments so you can instruct the linker
4000           to place them in banks
4001         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
4002         * src/SDCCglobl.h: added MODEL_HUGE to enum,
4003           added code_seg and const_seg to options
4004         * src/SDCCglue.c (emitMaps): use options.const_seg,
4005           (createInterruptVect): put interrupt vectors in segment HOME,
4006           (glue): put HOME before static segment and put the main glue in HOME,
4007           (glue): use options.code_seg
4008         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
4009         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
4010           these segments so you can instruct the linker to place them in banks
4011           (linkEdit): use code_loc for HOME segment which should be the first
4012           segment in code memory now
4013         * src/SDCCmem.c: fixed more stuff like bug 1238386
4014         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
4015           (changePointer): don't change function pointers to code pointers for
4016           banked functions,
4017           (compareType): added exceptional check for banked function pointers
4018         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
4019         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
4020           after static in code memory
4021         * src/mcs51/gen.c: added aopLiteralLong prototype,
4022           (aopForSym): use getSize for functions,
4023           (genCall): generate banked calls over one trampoline __sdcc_banked_call
4024           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
4025           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
4026           the segment,
4027           (genPcall): use call for literal function pointers and generate banked
4028           calls over the one trampoline so there's only one place for the user to
4029           modify according to his/hers hardware,
4030           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
4031           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
4032         * src/mcs51/main.c: added keyword banked,
4033           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
4034         * support/Util/SDCCerr.c,
4035         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
4036           needed for passing the bank and address to the trampoline
4037         * device/lib/mcs51/crtbank.asm: added for bankswitching
4038         * device/lib/mcs51/Makefile: added crtbank
4039
4040 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4041
4042         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
4043           for fields at offset 0 of a struct or union as reported
4044           on 2005-07-07 in the developer mailing list.
4045
4046 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
4047
4048         * src/SDCCmem.c: fixed bug 1238386
4049
4050 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4051
4052         * src/mcs51/peeph.def: added labelrefcounting for peepholes
4053           (patch #1144962), added peephole 300, enabled 259.x
4054         * doc/sdccman.lyx: removed screenshot and provided link instead
4055
4056 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4057
4058         * doc/sdccman.lyx: added section about debugging with ddd
4059         * doc/figures/ddd_example.eps: screenshot of debugging session
4060
4061 2005-07-04 Raphael Neider <rneider AT web.de>
4062
4063         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
4064           like CODE pointers, fixes #1115683
4065         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
4066           call, fixes bugs #1232211, #1228110,
4067           fixed wrong casts to pCodeFlow from pCodeInstructions
4068
4069 2005-07-04 Raphael Neider <rneider AT web.de>
4070
4071         * src/pic/gen.c (popGet): changed assert to allow for
4072           bit operands
4073         * (popGetAddr): changed signature to provide
4074           an additional index, patched all call sites
4075         * (genCmpEq): handle literal-like operands correctly
4076         * (genAddrOf): added sanity checks on __code/__data pointers
4077         * (genAssign): added handling of symbols from __code section
4078         * (gencjne): do not generate code for comparisons whose result
4079           is neither stored nor used, fixes bug #1171114
4080         * (AccLsh, AccRsh): operate on operand instead of WREG
4081         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
4082           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
4083           by known count
4084         * rewrote complete shift-by-literal logic, commented unused
4085           functions out
4086         * (genConstPointerGet): get multiple bytes (if result size > 1),
4087           fixed handling of non-immediate addresses
4088         * (genPointerGet): handle CODE pointers like CONST pointers
4089         * (genpic14Code): insert C-SRC lines as Cource-pCodes
4090         * ({aop,op}_isLitLike): NEW, single place to decide whether an
4091           operand is to be treated as a literal or not
4092         * (mov2w,genPcall,genCmpEq),
4093           src/pic/genarith.c: use aop_isLitLike() to decide between
4094           literal/register contents
4095         * (addSign): added missing offset
4096         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
4097           only emit comment in debug-mode,
4098           use {aop,op}_isLitLike throughout the file
4099         * src/pic/glue.c: fix initializers for pointers (work in progress)
4100         * src/pic/pcode.c (get_op): honor index on _const symbols
4101         * ({reset,dump}pCodeStatistics): NEW, estimate code size
4102         * (dumppBlock): added pCode size estimation
4103         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
4104           check for IS_SYMOP before OP_SYMBOL'ing
4105         * fixed indentation, compacted switch-statements
4106         * (allocReg): find free register and allocate it instead of
4107           allocating new registers all the time
4108         * (deassignLRs): prevent POINTER_GET's from being assigned the same
4109           registers as its operands (necessary only for multibyte GETs)
4110
4111 2005-07-01 Raphael Neider <rneider AT web.de>
4112
4113         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
4114           debugging .asm-output macros FENTRY + FEXIT
4115         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
4116           way... I wonder...
4117         * (emitpComment): NEW, printf to pCode
4118         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
4119           offset handling
4120         * (popGetAddr): NEW, variant of popGet to access an immediates
4121           high(er) bytes instead of the n'th byte of memory they reference,
4122           replaced popGet with popGetAddr where neccessary
4123         * (genDataPointerGet): reactivated and fixed implementation
4124         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
4125           accesses
4126         * (genDataPointerSet): fixed multibyte assignments
4127         * (genpic14Code): fixed --i-code-in-asm handling
4128         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
4129         * (genPlus): fixed index-out-of-bounds error
4130         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
4131         * src/pic/ralloc.c: added debugging output macro FENTRY2
4132         * (spillThis): fixed indentation, enbraced for-body for clarity
4133         * (rematStr): commented out as now unused
4134         * (regTypeNum): commented out special spill case (overwrites
4135           arbitrary values)
4136         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
4137
4138 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
4139
4140         * doc/sdccman.lyx: documented sfr16/sfr32,
4141           added example for using storage class with function pointers
4142         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
4143
4144 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
4145
4146         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
4147         * device/lib/_itoa.c,
4148         * device/lib/_ltoa.c: optimized codesize
4149         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
4150           but don't know how to suppress the double warning.
4151         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
4152         * support/Util/SDCCerr.c,
4153         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
4154
4155 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
4156
4157         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
4158           fixed old K&R prototypes
4159         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
4160         * device/lib/_gptrget.c,
4161         * device/lib/_gptrgetc.c,
4162         * device/lib/_gptrput.c: changed versions for new memory indicator values,
4163           also new versions for small generic pointers and banked generic pointers
4164         * src/port.h: added const_name
4165         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
4166         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
4167         * src/SDCCcse.c (findPrevIc): check all associative operators
4168         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
4169         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
4170         * src/SDCCmem.c: updated comments,
4171           set far-space to 0 for pdata, results in optimized code
4172         * src/SDCCmem.h: added macro CONST_NAME
4173         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
4174           moving the info into the highest bits, see also gptrget/gptrput
4175         * src/src.dsp: added sdcc.ico to project files
4176         * src/avr/gen.c (genCast): fixed bug 0x%d
4177         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
4178         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
4179           relation between ptr_type and DCL_TYPE,
4180           (genCast): fixed bug 0x%d
4181         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
4182           (CODE)" for const_name
4183         * src/hc08/gen.c (genCast): fixed bug 0x%d
4184         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
4185           (hc08_port): added "CONST (CODE)" for const_name
4186         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
4187           (aopForRemat, adjustArithmeticResult): disconnected direct relation
4188           between ptr_type and DCL_TYPE,
4189           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
4190           operand* and took AOP() inside function so sfr-ness can be checked,
4191           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
4192           new prototype,
4193           (genFunction, genEndFunction): optimized stack setup,
4194           (genMinus): optimized for literals with ending zeroes (in bytes),
4195           (genCast): fixed bug 0x%d
4196         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
4197           (mcs51_port): added "CONST (CODE)" for const_name
4198         * src/mcs51/peeph.def: made rule 226 more generic
4199         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
4200         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
4201         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
4202         * src/z80/main.c (z80_port): added NULL for const_name,
4203           (gbz80_port): added NULL for const_name
4204         * support/regression/tests/bug663539.c,
4205         * support/regression/tests/sfr16.c: new tests
4206
4207 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4208
4209         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
4210
4211 2005-06-24 Raphael Neider <rneider AT web.de>
4212
4213         * device/lib/pic16/libdev/pic18f[68][567]20.c:
4214           corrected typos...
4215         * device/include/pic16/signal.h: added USBIF
4216           and SIG_USB
4217
4218 2005-06-24 Raphael Neider <rneider AT web.de>
4219
4220         * device/lib/pic16/libdev/pic18f2455.c,
4221           device/include/pic16/pic18f2455.h: NEW
4222         * device/include/pic16/pic18fregs.h,
4223           device/lib/pic16/pics.all,
4224           src/pic16/device.c: added 18f2455
4225         * device/lib/pic16/libdev/pic18f[68][567]20.c,
4226           device/include/pic16/{pic18f[68][567].h,usart.h}:
4227           replaced MULTIPLE_USARTS define with more relaible
4228           compatibility sfrs (for USART access)
4229
4230 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
4231
4232         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
4233           and the output asm file line is printed on two lines.
4234
4235 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4236
4237         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
4238           BGT, BLE, BHI, and BLS instructions
4239         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
4240           genCmpEq): removed
4241         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
4242           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
4243           fixes bug #1216342
4244         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
4245
4246 2005-06-15 Raphael Neider <rneider AT web.de>
4247
4248         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
4249         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
4250         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
4251           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
4252           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
4253
4254 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4255
4256         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
4257           Marcel Telka in bug #1215704
4258
4259 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
4260
4261         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
4262           located in shared memory bank.
4263
4264 2005-05-31 Raphael Neider <rneider AT web.de>
4265
4266         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
4267           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
4268           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
4269
4270 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
4271
4272         * device/lib/_strncpy.c: fixed the fix
4273
4274 2005-05-26 Raphael Neider <rneider AT web.de>
4275
4276         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
4277           initializers with \0, bug #1208187
4278         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
4279           intializers with \0, bug #1208187
4280
4281 2005-05-26 Raphael Neider <rneider AT web.de>
4282
4283         * src/pic16/glue.c (pic16_printIvalChar): fixed string
4284           initializers with \0, bug #1208187
4285         * src/pic16/main.c (_process_pragma): added sanity checks
4286           for stack position and size, emit warnings when appropriate
4287
4288 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
4289
4290         * device/lib/_strncpy.c: fixed not filling with \0
4291
4292 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4293
4294         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
4295           createFunction),
4296         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
4297           compound_statement),
4298         * src/SDCCsymt.h,
4299         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
4300
4301 2005-05-24 Raphael Neider <rneider AT web.de>
4302
4303         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
4304
4305 2005-05-24 Raphael Neider <rneider AT web.de>
4306
4307         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
4308           TRISE definitions, closes bug #1162453
4309
4310 2005-05-22 Raphael Neider <rneider AT web.de>
4311
4312         * src/pic16/main.c (_process_pragma): check for missing
4313           arguments to pragmas code and udata
4314         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
4315           consistency fixes to match other headers (thanks to Jim Paris)
4316         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
4317
4318 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
4319
4320         * src/SDCCicode.c (isOperandEqual): fixed missing ;
4321
4322 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
4323
4324         * support/regression/tests/bug1198642.c: new test
4325         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
4326         * src/SDCCcse.c (findPrevIc): added comment, please have a look
4327         * support/scripts/resource.h,
4328         * support/scripts/resource.rc,
4329         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
4330         * support/scripts/sdcc.ico: added 32x32 icon
4331
4332 2005-05-18 Raphael Neider <rneider AT web.de>
4333
4334         * device/lib/pic16/libdev/pic18f*.c,
4335         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
4336           keywords to "__sfr" and "__at (X)"
4337         * device/include/pic16/pic18fregs.h: added pic18f4520
4338         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
4339           #1203088 (MPLAB compatibility)
4340
4341 2005-05-17 Raphael Neider <rneider AT web.de>
4342
4343         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
4344         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
4345         * device/lib/pic16/pics.all: added new devices
4346         * src/pic16/device.c: added support for pic18f4520
4347
4348 2005-05-16 Raphael Neider <rneider AT web.de>
4349         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
4350         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
4351         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
4352           convenience function for bit access
4353
4354 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
4355
4356         * device/lib/printf_large.c: fixed bug 1193299
4357         * support/regression/tests/bug1057979.c: added test %3.3s
4358
4359 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4360
4361         * device/include/mcs51/8051.h,
4362         * device/include/mcs51/8052.h: made parseable with lint
4363         * device/include/mcs51/lint.h: added include file for (sp)lint
4364         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
4365         * doc/cdbfileformat.lyx,
4366         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
4367
4368 2005-05-14 Raphael Neider <rneider AT web.de>
4369
4370         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
4371         * device/lib/pic16/libc/stdlib/itoa.c (new)
4372         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
4373         * device/lib/pic16/libio/Makefile: exclude subdir according to
4374           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
4375         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
4376         * src/pic16/gen.c (genFunction): prevent annoying warning
4377         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
4378           nameclashes on BeOS
4379         * support/cpp2/cppmain.c (cpp_output_string): new
4380         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
4381           fixes bug 1116802
4382
4383 2005-05-13 Borut Razem <borut.razem AT siol.net>
4384
4385         * src/SDCCmain.c (linkEdit): fixed bug 1195202
4386
4387 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4388
4389         * .version: changed to version 2.5.1; back to bleeding edge development
4390
4391 2005-05-11 Borut Razem <borut.razem AT siol.net>
4392
4393         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
4394           generate PDF version 1.3 documents
4395
4396 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4397
4398         * .version: changed to version 2.5.0
4399
4400 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4401
4402         * doc/sdccman.lyx: updated weblinks, index and smaller updates
4403
4404 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4405
4406         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
4407         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
4408         well as many smaller updates.
4409         * .version: changed to version 2.5.0-pre1
4410
4411 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4412
4413         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
4414
4415 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
4416
4417         * support/regression/tests/bug1185672.c: added
4418         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
4419           bug 1185672
4420         * src/mcs51/gen.c (genCall): added comments, made it look safer
4421         * src/mcs51/gen.c (genEndFunction): simplified
4422
4423 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
4424
4425         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
4426
4427 2005-04-14 Borut Razem <borut.razem AT siol.net>
4428
4429         * fixed bug 1045046 - SIGSEGV with really simple code?:
4430           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
4431           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
4432
4433 2005-04-14 Borut Razem <borut.razem AT siol.net>
4434
4435         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
4436           src/pic16/device.h: temporarily disabled experimental #inline pragma
4437           for 2.5.0 release
4438
4439 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
4440
4441         * device/include/z80/stdio.h,
4442         * device/include/z80/string.h: removed these highly incomplete files so
4443           SDCC can use the default ones in device/include/
4444
4445 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4446
4447         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
4448         gcc warning.
4449         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
4450         fix sdcpp warnings.
4451
4452 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
4453
4454         * device/include/malloc.h: removed redundant __reentrant prototypes
4455         * device/lib/_mullong.c: added working xstack variant in asm (C version
4456           doesn't pass regression tests)
4457         * device/lib/bpx.c: used __data and made bpx char for mcs51
4458         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
4459           (createFunction): fixed bug with xstackPtr
4460         * src/SDCCcse.c: corrected comments
4461         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
4462           (killDeadCode, eBBlockFromiCode): removed unused code
4463         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
4464           corrected comments
4465         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
4466           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
4467           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
4468           (genModOneByte): fixed warning in MSVC
4469         * src/mcs51/main.c (): added comments
4470         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
4471
4472 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
4473
4474         * src/SDCCmain.c (linkEdit): oops, changed one line too many
4475
4476 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
4477
4478         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
4479
4480 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
4481
4482         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
4483         characters arrays of larger size than the declared one.
4484
4485 2005-04-10 Borut Razem <borut.razem AT siol.net>
4486
4487         * src/pic/gen.c (genInline),
4488           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
4489           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
4490           (findNextInstruction), (findPrevInstruction),
4491           (findInstructionUsingLabel),
4492           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
4493         * src/pic/pcode.c (findLabel): added missing '\n'
4494         * src/src.dsp: added SDCCdwarf2.c to the project
4495
4496 2005-04-09 Borut Razem <borut.razem AT siol.net>
4497
4498         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
4499
4500 2005-04-08 Raphael Neider <rneider AT web.de>
4501
4502         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
4503           into the chain after a given one) and mergeDefmapSymbols (combine
4504           defmap entries for each symbol per pcode)
4505         * (createDefmap): have defmap entries merged in the end
4506         * (defmapReplaceSymRef): split defmap entries covering two accesses to
4507           a symbol before replacing one access type's symbol, merge symbols in
4508           the end (replacement symbol might already have an entry)
4509         * (assignValnums): keep reference to written WREG intact
4510
4511 2005-04-08 Raphael Neider <rneider AT web.de>
4512
4513         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
4514           Alpha)
4515
4516 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
4517
4518         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
4519         bytes
4520
4521 2005-04-07 Raphael Neider <rneider AT web.de>
4522
4523         * device/include/pic16/usart.h: added compatibility defines for
4524           devices with more than one USART
4525         * device/include/pic16/pic18f[68][567]20.h: activated above defines
4526
4527 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
4528
4529         * device/lib/Makefile.in: updated for port specific include
4530
4531 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
4532
4533         * support/regression/ports/mcs51/spec.mk: added mcs51 include
4534
4535 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
4536
4537         * device/include/8051.h,
4538         * device/include/8052.h,
4539         * device/include/at89S8252.h,
4540         * device/include/at89c55.h,
4541         * device/include/at89x051.h,
4542         * device/include/at89x51.h,
4543         * device/include/at89x52.h,
4544         * device/include/mcs51reg.h,
4545         * device/include/reg51.h,
4546         * device/include/reg764.h,
4547         * device/include/regc515c.h,
4548         * device/include/sab80515.h: (re)moved these 12 files
4549         * device/include/mcs51/8051.h,
4550         * device/include/mcs51/8052.h,
4551         * device/include/mcs51/at89S8252.h,
4552         * device/include/mcs51/at89c55.h,
4553         * device/include/mcs51/at89x051.h,
4554         * device/include/mcs51/at89x51.h,
4555         * device/include/mcs51/at89x52.h,
4556         * device/include/mcs51/mcs51reg.h,
4557         * device/include/mcs51/reg51.h,
4558         * device/include/mcs51/reg764.h,
4559         * device/include/mcs51/regc515c.h,
4560         * device/include/mcs51/sab80515.h: and added them here
4561
4562 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
4563
4564         * device/include/stdarg.h: changed SDCC specific keywords to double
4565           underlined form.
4566         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
4567           mcs51 and ds390.
4568         * device/include/hc08/mc68hc908gp32.h,
4569         * device/include/hc08/mc68hc908jb8.h,
4570         * device/include/hc08/mc68hc908jkjl.h,
4571         * device/include/hc08/mc68hc908qy.h: fixed comments
4572         * device/include/mcs51/README: updated
4573         * device/include/mcs51/c8051f120.h: added PINRSF
4574         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
4575         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
4576           amidst code. Also inline is not supported.
4577
4578 2005-04-06 Raphael Neider <rneider AT web.de>
4579
4580         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
4581         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
4582           callers stack/frame pointers
4583
4584 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
4585
4586         * device/include/pic16/usart.h: added, missing in previous commit,
4587         * device/include/pic16/adc.h: fixed typo,
4588         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
4589         commit,
4590         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
4591         <p18fxxx.inc>
4592         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
4593         uninitialized because a bug appears with gplink
4594         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
4595         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
4596         complains for unrecognised option
4597
4598 2005-04-05 Raphael Neider <rneider AT web.de>
4599
4600         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
4601           structs as well (using memcpy)
4602         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
4603           on ISRs (GOTO has no label)
4604         * src/pic16/device.h: added OF_OPTIMIZE_DF
4605         * src/pic16/main.c: added compiler switch --optimize-df to enable the
4606           new data flow analysis/optimization
4607         * src/pic16/pcode.c: added (prototypes for and implementation of)
4608           dataflow analysis functions, fixed pCodeInstructions' inCond and
4609           outCond values, made RCALL a branch instruction
4610         * (pic16_unlinkpCode): keep C line if possible
4611         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
4612           C line moved if possible
4613         * (pic16_getRegFrompCodeOp): NEW, improved version of...
4614         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
4615           to use new pic16_getRegFrompCodeOp (works for more SFRs)
4616         * (pic16_BuildFlow): fixed skip instructions with label (did not start
4617           new flow)
4618         * (pic16_getJumptabpCode): NEW, needed in...
4619         * (LinkFlow): fixed handling of jumptables, calls and conditional
4620           branches
4621         * (pic16_InsertCommentAfter): NEW
4622         * (pic16_pCodeReplace): made verbose and flow preserving
4623         * (AnalyzeFlow): added call to data flow analysis
4624         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
4625         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
4626         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
4627
4628 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4629
4630         * src/SDCCast.c (decorateType): fixed bug #1105626
4631
4632 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
4633
4634         * device/include/asm/pic16/features.h,
4635         * pic18f*.h headers,
4636         * device/include/pic16/adc.h,
4637         * device/include/pic16/delay.h,
4638         * device/include/pic16/i2c.h,
4639         * device/include/pic16/malloc.h,
4640         * device/include/pic16/stdio.h,
4641         * device/include/pic16/stdlib.h,
4642         * device/include/pic16/string.h,
4643         * device/lib/pic16/libc/stdio/printf_tiny.c,
4644         * device/lib/pic16/libc/stdio/printf_small.c,
4645         * device/lib/pic16/libc/stdio/strmgpsim.c,
4646         * device/lib/pic16/libc/stdio/strmmssp.c,
4647         * device/lib/pic16/libc/stdio/strmusart.c,
4648         * device/lib/pic16/libc/stdio/vfprintf.c,
4649         * device/lib/pic16/libc/stdlib/ltoa.c,
4650         * device/lib/pic16/libc/stdlib/putchar.c,
4651         * device/lib/pic16/libc/stdlib/x_ftoa.c,
4652         * device/lib/pic16/libc/stdlib/memchrpgm.c,
4653         * device/lib/pic16/libc/stdlib/memchrram.c,
4654         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
4655         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
4656         * device/lib/pic16/libio/adc/adcbusy.c,
4657         * device/lib/pic16/libio/adc/adcread.c,
4658         * device/lib/pic16/libio/adc/adcsetch.c,
4659         * device/lib/pic16/libio/usart/ubaud.c,
4660         * device/lib/pic16/libio/usart/ubusy.c,
4661         * device/lib/pic16/libio/usart/udrdy.c,
4662         * device/lib/pic16/libio/usart/uopen.c,
4663         * device/lib/pic16/libio/usart/uputc.c,
4664         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
4665         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
4666         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
4667         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
4668         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
4669         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
4670         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
4671         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
4672         specific keywords to double underlined form,
4673         * device/lib/pic16/libc/Makefile.rules,
4674         * device/lib/pic16/libsdcc/Makefile.rules,
4675         * device/lib/pic16/libm/Makefile,
4676         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
4677         to compile with C standard set in Makefile.common
4678         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
4679         rand.c and crc.c in compilation process,
4680         * device/lib/pic16/libsdcc/int/divuint.c,
4681         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
4682         `c' from signed to unsigned,
4683         * device/lib/pic16/startup/crt0.c,
4684         * device/lib/pic16/startup/crt0i.c,
4685         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
4686         keywords to double underlined form, bug fixes in _do_cinit function
4687         which prevented the correct initialization of the .idata segment,
4688         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
4689         core to enter a infinite loop
4690         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
4691
4692 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4693
4694         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
4695
4696 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4697
4698         * device/include/Makefile.in: add support for hc08 subdirectory
4699         * device/include/hc08/: new subdirectory
4700         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
4701         Lucas Loizaga, thanks!
4702         * device/include/hc08/mc68hc908qy.h,
4703         * device/include/hc08/mc68hc908gp32.h,
4704         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
4705         their own directory. Changed internal macro names to use the compiler
4706         reserved namespace. Changed SDCC specific keywords to double
4707         underlined form.
4708         * device/include/math.h,
4709         * device/include/malloc.h,
4710         * device/include/stdarg.h,
4711         * device/include/stdbool.h
4712         * device/include/string.h,
4713         * device/include/tinibios.h,
4714         * device/include/ds400rom.h,
4715         * device/include/8051.h,
4716         * device/include/8052.h,
4717         * device/include/80c51xa.h,
4718         * device/include/at89c55.h,
4719         * device/include/at89S8252.h,
4720         * device/include/at89x51.h,
4721         * device/include/at89x52.h,
4722         * device/include/ds80c390.h,
4723         * device/include/reg764.h,
4724         * device/include/regc515c.h,
4725         * device/include/sab80515.h,
4726         * device/include/mcs51/c8051f000.h,
4727         * device/include/mcs51/c8051f018.h,
4728         * device/include/mcs51/c8051f020.h,
4729         * device/include/mcs51/c8051f040.h,
4730         * device/include/mcs51/c8051f060.h,
4731         * device/include/mcs51/c8051f120.h,
4732         * device/include/mcs51/c8051f300.h,
4733         * device/include/mcs51/c8051f310.h,
4734         * device/include/mcs51/c8051f320.h,
4735         * device/include/mcs51/c8051f330.h,
4736         * device/include/mcs51/c8051f350.h,
4737         * device/include/z180.h: Changed SDCC specific keywords to double
4738         underlined form.
4739
4740 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
4741
4742         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
4743         18F4455,
4744         * (pic16_assignConfigWordValue): disable testing of configuration
4745         register value with config mask,
4746         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
4747         function with port->fun_prefix,
4748         * (genFunction): when generating a naked interrupt function never
4749         create an absolute segment placed in interrupt vector address, place
4750         the actual interrupt function at IVA instead, when an interrupt
4751         function is generated with unspecified interrupt then do not create
4752         the absolute section,
4753         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
4754         code for generating a call to generic pointer get/put function with
4755         a call to function pic16_callGenericPointer(),
4756         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
4757         the call to the generic pointer get/put functions with prefixing the
4758         function name with port->fun_prefix,
4759         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
4760         * src/pic16/main.c (_process_pragma): prefix function with
4761         port->fun_prefix,
4762         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
4763         calling assembler, old 18Fxxxx macro is deprecated,
4764         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
4765         PC_ASMDIR in while condition,
4766         * (findInstruction): add PC_ASMDIR in while condition,
4767         * (buildCallTree): prefix main with port->fun_prefix,
4768         * (pic16_pCode2str): fixed bug that didn't emit the memory access
4769         identifier for variable with banked access in instructions BTFSS,
4770         BTFSC, BCF, BSF, BTG
4771         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
4772         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
4773         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
4774         perform optimization when enviroment variable NO_REG_OPT is set,
4775         * (insideLRBlock): NEW, return 1 if register is inside an
4776         INF_LOCALREGS block,
4777         * (RemoveRegFromLRBlock): remove a register that is completely
4778         eliminated by register optimization, but it is still left in local
4779         register store/restore in/from stack block,
4780         * (Remove2pcodes): after removing register, check to see if it
4781         should be removed from local register store/restore in/from stack
4782         block,
4783         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
4784         DUMMY_READ_VOLATILE,
4785
4786         * device/include/pic16/adc.h: minor prototype modifications and
4787         update,
4788         * device/include/pic16/malloc.h: added GPL notice various
4789         modifications,
4790         * device/include/pic16/stdint.h: NEW, standard header for ints
4791         * device/include/pic16/delay.h: NEW, header for delay functions,
4792         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
4793         delay1mtcy,
4794         * device/include/pic16/signal.h: NEW, header providing helper macros
4795         for implementing signal handlers,
4796         * device/include/pic16/stdio.h: added prototypes for functions,
4797         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
4798         prototypes for stdin and stdout, added macro PUTCHAR to
4799         automatically implement putchar function prototype,
4800         * device/include/pic16/usart.h: modified and updated USART library,
4801         * device/lib/pic16/libio/adc/,
4802         * device/lib/pic16/libio/i2c: some modifications to improve library
4803         performance,
4804         * device/lib/pic16/libc/stdio/: modifications for the new printf*
4805         family of functions,
4806         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
4807         family of functions and other sources,
4808         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
4809         of the PIC18Fxx[28] devices,
4810         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
4811         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
4812         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
4813         _do_cinit function, because the previous failed when local variables
4814         where not placed in the same memory bank,
4815         * device/lib/pic16/libsdcc/char/: various modifications to improve
4816         library performance,
4817         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
4818         information on the new functions of the c library and more...
4819
4820 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4821
4822         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
4823
4824 2005-03-26 Raphael Neider <rneider AT web.de>
4825
4826         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
4827           if condition == CARRY)
4828         * (genCmp): adapted to new genSkipc semantics
4829         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
4830           on rIfx (genCmp was broken)
4831
4832 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4833
4834         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
4835         * src/z80/main.c (_keywords[]),
4836         * src/SDCCglobal.h (struct options),
4837         * src/SDCC.y,
4838         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
4839         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
4840         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
4841         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
4842         always available in leading double underscore form. The C99 support is
4843         mostly missing, but it's a start.
4844         * support/regression/tests/bug-227710.c: fixed nonconforming use of
4845         reserved identifier "__data".
4846
4847 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
4848
4849         * src/mcs51/peeph.def: fixed bug 1170013
4850
4851 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
4852
4853         * device/include/mcs51reg.h: fixed bug 842007
4854
4855 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4856
4857         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
4858         last time.
4859
4860 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4861
4862         * src/port.h (struct PORT),
4863         * src/avr/ralloc.c (avr_assignRegisters),
4864         * src/avr/main.c,
4865         * src/ds390/ralloc.c (ds390_assignRegisters),
4866         * src/ds390/main.c,
4867         * src/hc08/ralloc.c (hc08_assignRegisters),
4868         * src/hc08/main.c,
4869         * src/mcs51/ralloc.c (mcs51_assignRegisters),
4870         * src/mcs51/main.c,
4871         * src/pic/ralloc.c (pic14_assignRegisters),
4872         * src/pic/main.c,
4873         * src/pic16/ralloc.c (pic16_assignRegisters),
4874         * src/pic16/main.c,
4875         * src/xa51/ralloc.c (xa51_assignRegisters),
4876         * src/xa51/main.c,
4877         * src/z80/ralloc.c (z80_assignRegisters),
4878         * src/z80/ralloc.h,
4879         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
4880         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
4881         * src/SDCCcse.h,
4882         * src/SDCCdflow.c (computeDataFlow),
4883         * src/SDCCdflow.h,
4884         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
4885         * src/SDCCloop.h,
4886         * src/SDCCcflow.c (*),
4887         * src/SDCCcflow.h,
4888         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
4889         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
4890         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
4891         immedDom() returning wrong block; probably fixes bug #1160833)
4892
4893 2005-03-20 Borut Razem <borut.razem AT siol.net>
4894
4895         * support/scripts/inc2h.pl: WIN32 port
4896
4897 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
4898
4899         * device/lib/makefile.in: added abs.c and labs.c
4900
4901 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
4902
4903         * device/include/stdint.h: added
4904         * device/lib/abs.c: added
4905         * device/lib/labs.c: added
4906         * device/include/stdlib.h: added abs() and labs() prototypes
4907         * device/lib/libsdcc.lib: added abs and labs
4908         * device/include/float.h,
4909         * device/lib/_fsmul.c,
4910         * device/lib/printf_fast.c,
4911         * device/lib/printf_tiny.c: updated comments
4912
4913 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4914
4915         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
4916         bug #1164313
4917
4918 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4919
4920         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
4921         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
4922
4923 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
4924
4925         * device/lib/printf_large.c: removed inline assembly for portability and
4926           readability. Use printf_fast if speed or size are more important.
4927         * src/pic16/gen.c: removed conditions around use of DEBUGpc
4928         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
4929
4930 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
4931
4932         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
4933         prevent compiler warning
4934
4935 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
4936
4937         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
4938         moved to level 0 and declared as static. Also they are explicit
4939         placed in access bank. This was necessery because some times they
4940         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
4941         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
4942         optimizations. Currently only compare to unsigned char is implemented,
4943         * src/pic16/gen.c: added fReturnIdx array,
4944         * (struct resolvedIfx) is moved to gen.h and made public,
4945         * (struct _G): added sregsAlloc and sregsAllocSet fields,
4946         * (aopForSym): added an optimization to directly store in stack of
4947         the operand of a SEND iCode,
4948         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
4949         but as registers instead (AOP_REG) using the fReturnIdx array,
4950         * (pic16_freeAsmop): remove the freed register from the
4951         _G.sregsAlloc field,
4952         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
4953         a compare of 'WREG',
4954         * (pic16_popGetTempRegCond): changed function prototype, now
4955         function takes also a bitVector argument v which holds the current
4956         set of registers that are allocated for stack access by aopForSym,
4957         registers allocated in aopForSym for accessing stack symbols are not
4958         any more part of the functions usedRegs field,
4959         * (genCall): some times aopOp is called for a stack variable to be
4960         send, aopForSym might perform the push, if this is true make sure
4961         that genCall doesn't push the variable twice by testing _G.resDirect,
4962         * (genFunction): changed testing for unspecified interrupt number
4963         from 256 to INTNO_UNSPEC,
4964         * modified selection scheme of frame pointer generation. Previously
4965         if function did use local registers a frame pointer was generated,
4966         now a frame pointer is generated only if function has arguments
4967         (that need PLUSW2 register access), or has stack arguments, or the
4968         compiler is not instructed to omit the frame pointer,
4969         * (genEndFunction): before restoring local registers that were saved
4970         in the function preamble, also restore the registers that *might*
4971         have been allocated for stack access,
4972         * (genRet): removed some old comments,
4973         * (genCmp, the active (RN's) version): added a call to the
4974         pic16_genCmp_special function to perform the compare with a more
4975         robust and optimized way,
4976         * (genInline): a feature has been added in inline code generation,
4977         which allows a wildcard variable substitution when writing inline
4978         assembly. Code is incomplete and experimental therefore undocumented,
4979         * (genCast): changed order of aopOp for result and right to allow
4980         aopForSym to directly load the result if possible,
4981         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
4982         perform an optimized compare on some selected special occasions,
4983         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
4984         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
4985         generate an IVT any more,
4986         * src/pic16/main.c (pic16_optionsTable): added command line option
4987         --optimize-cmp,
4988         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
4989         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
4990         macros,
4991         * src/pic16/NOTES: Raphael Neider added in list of active developers
4992         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
4993         jumptable_end to prevent bug #,
4994         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
4995         inCond and outCond fields,
4996         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
4997         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
4998         turn off register spilling,
4999         * (packRegsForOneUse): synced with other ports' versions although it
5000         is not used currently,
5001         * (pic16_packRegisters): added an optimization while reading
5002         structure bitfields, some registers may be saved (malloc code is
5003         decreased by 80 bytes)
5004
5005 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
5006
5007         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
5008         left is a bitfield, if yes, then don't optimize assignment. Perhaps
5009         this can be optimized more?
5010
5011 2005-03-10 Raphael Neider <rneider AT web.de>
5012
5013         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
5014           genNearPointerGet): (hopefully) fixed access to bitfields via
5015           pointers (p->bitN = x; and x = p->bitN; failed)
5016
5017 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
5018
5019         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
5020
5021 2005-03-09 Raphael Neider <rneider AT web.de>
5022
5023         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
5024
5025 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
5026
5027         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
5028         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
5029           (regTypeNum): set REG_BIT type if necessary
5030         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
5031         * support/regression/tests/critical.c: check bug 1144613
5032
5033 2005-03-02 Raphael Neider <rneider AT web.de>
5034
5035         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
5036
5037 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5038
5039         * src/avr/ralloc.c (serialRegAssign),
5040         * src/ds390/ralloc.c (serialRegAssign),
5041         * src/hc08/ralloc.c (serialRegAssign),
5042         * src/mcs51/ralloc.c (serialRegAssign),
5043         * src/pic/ralloc.c (serialRegAssign),
5044         * src/pic16/ralloc.c (serialRegAssign),
5045         * src/xa51/ralloc.c (serialRegAssign),
5046         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
5047
5048 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
5049
5050         * src/SDCCast.c (decorateType): fixed bug 1124787
5051
5052 2005-02-20 Hubert Sack <sack AT digiplan.de>
5053         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5054
5055         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
5056         patch #1121755
5057
5058 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5059
5060         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
5061         to keep the correct label reference count when adding/removing references
5062         to labels. A peephole file using this is appended to patch #1144962.
5063
5064 2005-02-14 Raphael Neider <rneider AT web.de>
5065
5066         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
5067         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
5068         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
5069           retrievals of result operand's value on assignment
5070
5071 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
5072
5073         * device/include/pic16/string.h: modified prototype for memccpy()
5074         to memccpy(void *, void *, char, size_t)
5075         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
5076         check whether to omit frame pointer or not,
5077         * (genInline): convert all occurences of "\n" to LF in inline
5078         assembler blocks, this helps formatting the inline text,
5079         * (pic16_loadFSR0): modified prototype,
5080         * (genNearPointerGet, genNearPointerSet): reorganization of code,
5081         removed some 8051 legacy code,
5082         * (genPackBits): enabled handling bitfields exceeding one byte in size,
5083         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
5084         before allocating temporary registers in functions,
5085
5086 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
5087
5088         * support/regression/tests/bitvars.c: corrected the "fix"
5089
5090 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
5091
5092         * support/regression/tests/bitvars.c,
5093         * support/regression/tests/bitwise.c,
5094         * support/regression/tests/rotate.c: "fixed" problems on Alpha
5095
5096 2005-02-10 Raphael Neider <rneider AT web.de>
5097
5098         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
5099           different size for Alpha
5100         * src/pic16/gen.c (genCmpEq) : improved compare with 0
5101
5102 2005-02-09 Raphael Neider <rneider AT web.de>
5103
5104         * src/SDCC.lex(doPragma) : save and restore warning options as well
5105           (also added new stack plus clone- and copyAndFreeSDCCERRG())
5106         * have #pragma less_pedantic set the errorlevel to WARNING
5107           (fixes #1117001)
5108         * (cloneOptimize) : fixed wrong malloc's size
5109         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
5110           facilitate correct handling of #pragma (save|restore)
5111
5112 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
5113
5114         * src/mcs51/gen.c: removed non-standard C nameless struct/union
5115
5116 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
5117
5118         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
5119
5120 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
5121
5122         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
5123
5124 2005-02-02 Raphael Neider <rneider AT web.de>
5125
5126         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
5127         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
5128         * (pic16_storeForReturn): fixed to allow returning function pointers
5129         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
5130         * device/include/pic16/{stddef.h,stdbool.h}: added
5131
5132 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
5133
5134         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
5135
5136 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
5137
5138         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
5139         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
5140          appeared to be required
5141
5142 2005-01-31 Borut Razem <borut.razem AT siol.net>
5143
5144         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
5145           include/mcs51 and include/z80 directories to the package
5146
5147 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5148
5149         * src/hc08/gen.c (genFunction): fixed bug #1112752
5150
5151 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5152
5153         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
5154
5155 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5156
5157         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
5158
5159 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
5160
5161         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
5162
5163 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
5164
5165         * device/include/c8051fxxx.h: removed these 6 files
5166         * device/include/mcs51/c8051fxxx.h: added these 11 new files
5167
5168 2005-01-26 Raphael Neider <rneider AT web.de>
5169
5170         * src/pic16/gen.c (genAssign): fixed assignment from longs
5171           in codespace (were cut to three bytes)
5172         * (genDummyRead): implemented (except for CODESPACE...),
5173           fixed bug #1108575
5174         * src/pic16/glue.c (emitStatistics): beautified
5175         * device/lib/pic16/libm/Makefile: added include path
5176
5177 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5178
5179         * src/z80/gen.c (aopPut): fixed bug #1103902
5180
5181 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5182
5183         * device/lib/expf.c: fixed bug #1095792
5184
5185 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
5186
5187         * device/lib/pic16/libm: added Math library sources
5188
5189 2005-01-24 Raphael Neider <rneider AT web.de>
5190
5191         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
5192           to enable upcast to pCodeOpReg2 (there is no type tag to
5193           differenciate the two and pic16_popGet2p cast into PCOR2)
5194         * src/pic16/main.c (_process_pragma): fixed another malloc bug
5195           (sizeof(sectNames) changed to sizeof(sectName))
5196           Both patches fix segfaults under MinGW.
5197
5198 2005-01-23 Raphael Neider <rneider AT web.de>
5199
5200         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
5201           Safe_[mc]?alloc()'ed variables
5202         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
5203           of (byte sized) temporaries (assign them to WREG for now)
5204         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
5205           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
5206           this might fix SIGSEGVs on MinGW...
5207         * src/SDCCopt.c (killDeadCode): restored original behaviour
5208           (volatile operands might get thrown away though)
5209
5210 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
5211
5212         * src/pic16/gen.c: fixed bug #1106975,
5213         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
5214         pointer update, INTCON is saved, global interrupts are disabled and
5215         restored after updateing TOS.
5216         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
5217         * added function attribute 'shadowregs' to take advantage of shadow
5218         registers,
5219         * added function attribute 'wparam' as an alternative to the wparam
5220         pragma,
5221         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
5222         user declares a non-ISR function as 'shadowregs',
5223         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
5224
5225 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
5226
5227         * .version: bumped version number to 2.4.8
5228         * device/lib/pic16/pics.all: list of PIC18F devices supported by
5229         pic16 port,
5230         * device/lib/pic16/libio/i2c/: I2C module support library,
5231         * device/include/pic16/i2c.h: I2C support library header,
5232         * device/lib/pic16/libc/stdio/: standard IO support sources,
5233         * (printf_small.c): printf_small() source, supports float print,
5234         * (printf_tiny.c): printf_tiny() source, does not support floats,
5235         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
5236         enable global optimizations for entire library source, other
5237         Makefiles in the source tree are also modified to reflect this,
5238         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
5239         function,
5240         * doc/sdccman.lyx: updated to reflect new changes,
5241         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
5242         sym->onStack if-case,
5243         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
5244         sbit, idata, _idata, xdata, _xdata,
5245         * added pragma library, to link an external library, (see doc),
5246         * removed command line options, --pomit-config-words, --pomit-ivt,
5247         --pleave-reset-vector,
5248         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
5249         when calling assembler to reflect memory model used, also define
5250         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
5251         reflect stack model used,
5252         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
5253         on stack return NULL,
5254
5255 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
5256
5257         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
5258           of the operands is volatile. Fixes #1020220
5259
5260 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
5261
5262         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
5263         * (OptimizeRegUsage): make sure that there is really no other flow where
5264           the first pCode is used
5265
5266 2005-01-22 Raphael Neider <rneider AT web.de>
5267
5268         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
5269           to fix #1106967 (pCode->seq are not set up correctly)
5270
5271 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5272
5273         * src/SDCCglue.c (glue): make sure code area is declared before the
5274         static initialization area.
5275
5276 2005-01-21 Raphael Neider <rneider AT web.de>
5277
5278         * device/lib/Makefile.in: fixed test for pic16 install dir
5279         * device/lib/pic16/*/Makefile*: modified compile flags to enable
5280           optimizations
5281         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
5282           added --optimize-goto compiler switch and pragma wparam documentation
5283         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
5284         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
5285           and PRODH closing bug #1071770 (peephole optimizer)
5286
5287 2005-01-19 Raphael Neider <rneider AT web.de>
5288
5289         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
5290           cmdLine buffers (used when calling sdcpp...) are large enough
5291           (MAX_PATH=256 truncates arguments leading to system halts when
5292           used in MinGW...)
5293         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
5294         * (genUminus): rewritten to for efficiency
5295         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
5296           used uninitialized in some cases)
5297         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
5298           copy the third byte from the int -- now assumes 0x80 (data memory)
5299         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
5300           operands (genAddLit expects the iCode's operands to swapped as
5301           well), fixed leftover bytes (crashed for short left operands)
5302         * (pic16_genMinusDec): performance improvements, removed false
5303           PIC14 emitSKPNCs
5304         * (pic16_genMinus): fixed to cope with differently sized operands
5305         * src/pic16/glue.c (pic16_glue): added new banksel optimization
5306           for --obanksel > 1
5307         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
5308         * src/pic16/graph.[ch]: implementation of directed graphs, used by
5309           new banksel optimization
5310         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
5311           analysis for temporary registers (segfaults...)
5312         * src/pic16/peeph.def: added rule
5313
5314 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
5315
5316         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
5317         which converts a float number to its ASCII representation
5318         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
5319         functions to convert the fractional and integer part of a float to ASCII,
5320         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
5321         realloc.c): added _MALLOC_SPEC to explicit place variables in data
5322         ram
5323         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
5324         _STATMEM macros,
5325         * device/include/pic16/adc.h: added GPL info,
5326         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
5327         a pCodeOp as tested operand,
5328         * (genNearPointerGet): optimized bit testing, does not use
5329         intermediate register for bit value, test directly instead with
5330         BTFSS, BTFSC, works only for single bits,
5331         * (genpic16Code): dump the name of the iCode in the asm,
5332         * src/pic16/ralloc.c (decodeOp): removed static declaration and
5333         renamed to pic16_decodeOp,
5334         * (serialRegAssign): do not allocate a temporary register for iCode
5335         sequences that test a single bit for 1/0
5336
5337 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
5338
5339         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
5340         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
5341         access stack and frame pointers. They are initially assigned to
5342         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
5343         accessing SFRs. Updated all occurences of modification of stack or
5344         frame pointer in gen.c and pcode.c,
5345         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
5346         assigning of a literal value to pointers,
5347         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
5348         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
5349         selected
5350
5351 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
5352
5353         * doc/sdccman.lyx: update documentation about stack pragma, added
5354         some info for stack memory models
5355
5356 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5357
5358         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
5359
5360 2005-01-08 Raphael Neider <rneider AT web.de>
5361
5362         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
5363           udata sections to fix bug #1097823
5364
5365 2005-01-05 Raphael Neider <rneider AT web.de>
5366
5367         * src/pic16/gen.c (genGenericShift): added handling of differently
5368           sized left operand and result
5369
5370 2005-01-04 Raphael Neider <rneider AT web.de>
5371
5372         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
5373         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
5374           to hold the condition bit)
5375         * added new version of genCmp (old code available via #define)
5376         * added new version of genShiftLeft/genShiftRight in a generic
5377           way, now supports shifting by negative values
5378         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
5379           shiftCount (expected by genGenericShift)
5380         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
5381         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
5382           dump
5383         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
5384           is an invalid literal too...)
5385
5386 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
5387
5388         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
5389         from Raphael Neider,
5390         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
5391         for 8-bit literals. This fixes some literal operands which are sign
5392         extended to 16-bits ints when instruction needs only 8-bits.
5393
5394 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
5395
5396         * device/lib/logf.c: added mcs51 assembly version
5397         * device/lib/expf.c: added mcs51 assembly version
5398         * device/lib/_logexpf.c: new shared asm code for expf and logf
5399         * device/include/math.h: add defines for assembly math library
5400         * device/lib/Makefile.in: build new _logexpf.c
5401         * device/lib/libfloat.lib: use new _logexpf.c
5402
5403 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
5404
5405         * src/pic/device.c
5406         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
5407           device types which have less than 0x7f registers.
5408
5409 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
5410
5411         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
5412
5413 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
5414
5415         * device/lib/printf_fast.c: only build on supported arch.
5416         * device/lib/printf_tiny.c: only build on supported arch.
5417         * device/lib/printf_fast_f.c: only build if asm float lib
5418         * device/lib/_fsget1arg.c: only build if asm float lib
5419         * device/lib/_fsget2args.c: only build if asm float lib
5420         * device/lib/_fsnormalize.c: only build if asm float lib
5421         * device/lib/_fsreturnval.c: only build if asm float lib
5422         * device/lib/_fsrshift.c: only build if asm float lib
5423         * device/lib/_fsswapargs.c: only build if asm float lib
5424         * device/include/stdio.h: don't provide print_fast,
5425           print_fast_f, print_tiny prototypes if --xstack used
5426
5427 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
5428
5429         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
5430         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
5431           to the SOURCES
5432
5433 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
5434
5435         * device/lib/printf_fast_f.c: same as printf_fast, but
5436           with floating point enabled
5437         * device/lib/printf_fast.c: minor tweaks
5438         * device/include/stdio.h: add printf_fast_f
5439
5440 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
5441
5442         * src/SDCCmain.c: make --float-reent default for mcs51
5443         * device/lib/_fsadd.c: added mcs51 assembly version
5444         * device/lib/_fssub.c: added mcs51 assembly version
5445         * device/lib/_fsmul.c: added mcs51 assembly version
5446         * device/lib/_fsdiv.c: added mcs51 assembly version
5447         * device/lib/_fseq.c: added mcs51 assembly version
5448         * device/lib/_fsneq.c: added mcs51 assembly version
5449         * device/lib/_fsgt.c: added mcs51 assembly version
5450         * device/lib/_fslt.c: added mcs51 assembly version
5451         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
5452         * device/lib/Makefile.in: add _fscmp to build
5453         * device/lib/libfloat.lib: add _fscmp to build
5454
5455 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
5456
5457         * device/lib/_fs2slong.c: added mcs51 assembly version
5458         * device/lib/_fs2sint.c: added mcs51 assembly version
5459         * device/lib/_fs2schar.c: added mcs51 assembly version
5460         * device/lib/_fs2ulong.c: added mcs51 assembly version
5461         * device/lib/_fs2uint.c: added mcs51 assembly version
5462         * device/lib/_fs2uchar.c: added mcs51 assembly version
5463         * device/lib/_slong2fs.c: added mcs51 assembly version
5464         * device/lib/_sint2fs.c: added mcs51 assembly version
5465         * device/lib/_schar2fs.c: added mcs51 assembly version
5466         * device/lib/_ulong2fs.c: added mcs51 assembly version
5467         * device/lib/_uint2fs.c: added mcs51 assembly version
5468         * device/lib/_uchar2fs.c: added mcs51 assembly version
5469         * device/include/float.h: added #define to select asm vs c
5470
5471 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
5472
5473         * device/lib/printf_fast.c: improvements to float output
5474         * device/include/float.h: add defines for assembly float library
5475         * device/lib/_fsget1arg.c: receive 1 float arg
5476         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
5477         * device/lib/_fsnormalize.c: normalize a float
5478         * device/lib/_fsreturnval.c: return float, various helper routines
5479         * device/lib/_fsrshift.c: right shift a float's mantissa
5480         * device/lib/_fsswapargs.c: swap 2 floats
5481         * device/lib/Makefile.in: build these 6 new files for mcs51
5482         * device/lib/libfloat.lib: add these 6 files to the library
5483
5484 2004-12-26 Borut Razem <borut.razem AT siol.net>
5485
5486         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
5487           built by gcc 3.4.2
5488
5489 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
5490
5491         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
5492           and fully reentrant and register bank neutral.
5493         * device/lib/printf_fast.c: added float (not enabled by default),
5494           added compact/slower integer (also not enabled by default),
5495           improved size/speed of fast integer code, other minor changes
5496         * device/include/stdio.h, device/lib/Makefile.in,
5497           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
5498
5499 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
5500
5501         * src/pic16/pcode.c: declaring variables other than at the start of a
5502           block is not supported in C by VC6.
5503
5504 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
5505
5506         * applied a previous patch from Raphael Neider that wasn't included
5507         in the previous commits, which fixes infinite loops within jumptable
5508         improvements,
5509         * made some fixes that previous patches introduced
5510
5511 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
5512
5513         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
5514         that fixes an issue with AOP_PCODE asmop's offset,
5515         * (pic16_popCopyReg): update instance field too,
5516         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
5517         function of pic port,
5518         * (genCmp, genAnd, genAssign),
5519         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
5520
5521 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
5522
5523         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
5524         variables initial values to idata section,
5525         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
5526         variables in some functions. This utilizes parmBytes field of iCode
5527         structure to hold the offset of the variable in stack. (might be
5528         able to use the stack field too?)
5529         * applied patch from Raphael Neider # ### , # ###
5530         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
5531         variable initial values in idata section,
5532         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
5533         for static variables with initial value
5534         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
5535         applied fix in while loop from Raphael Neider.
5536
5537 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
5538
5539         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
5540         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
5541         * src/ds390/ralloc.c (serialRegAssign): spill bits
5542         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
5543         * support/Util/SDCCerr.c,
5544         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
5545         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
5546         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
5547
5548 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
5549
5550         * device/include/sdcc-lib.h: inserted LGPL, added includes
5551           asm/ds390/features.h and asm/mcs51/features.h
5552         * device/include/asm/default/features.h,
5553         * device/include/asm/gbz80/features.h,
5554         * device/include/asm/z80/features.h: added empty _AUTOMEM
5555           and _STATMEM
5556         * device/include/asm/ds390/features.h,
5557         * device/include/asm/mcs51/features.h: added files with defines for
5558           _AUTOMEM and _STATMEM indicating automatic and static storage class
5559         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
5560         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
5561         * src/SDCCicode.c (geniCodeCast),
5562         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
5563         * src/SDCCloop.c (loopInduction): removed unused variable lr
5564         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
5565           to convertToFcall to include char modulo (RFE 1065037), added check
5566           if left operand is unsigned and use abs of literal value
5567         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
5568           as it doesn't work after conversion from peephole.def to peephole.rul
5569         * src/mcs51/gen.c (toBoolean): added check for size,
5570           (genModOneByte): optimized code for signed char modulo a literal
5571           power of 2 (thanks to Hubert Sack),
5572           (genRRC): removed unnecessary "clr c",
5573           (genRLC): replaced "add a,acc" with cheaper "rlc a"
5574         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
5575           jump optimization,
5576           swapped rules 256.c and 256.d,
5577           extended 256.d by using new multiple checks (thanks Erik),
5578           added rules 256.e and 256.f,
5579           updated rule 261.a and 261.b to new generated code
5580         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
5581
5582 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5583
5584         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
5585           induction related bugs, including first part of bug #1074377
5586
5587 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
5588
5589         * applied patch from bug-report #1076292,
5590         * applied patches for genAnd and Goto-optimizations for Raphael
5591         Neider,
5592         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
5593         dump a less iCode information,
5594         * src/pic16/device.h (pic16_options_t): added field debgen,
5595         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
5596         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
5597         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
5598         puclic,
5599         * (various functions): added macros FENTRY and FENTRY2 to functions,
5600         to emit function prologue,
5601         * (various functions): fixed indentation,
5602         * (genNearPointerGet): fixed loading of FSR0,
5603         * (genPackBits): applied patch from Raphael Neider to fix updating
5604         of FSR0 and touching only the modified bits,
5605         * src/pic16/genarith.c (various functions): added macros FENTRY to
5606         emit function prologue in comments,
5607         * src/pic16/pcode.h: added functions debugf2, debugf3,
5608         * src/pic16/ralloc.c: partial fix for packForPush caused
5609         segmentation fault,
5610
5611 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5612
5613         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
5614           <stsp AT users.sourceforge.net> with reversed byte order
5615         * support/regression/tests/rotate.c: added (ds390 skips some tests)
5616
5617 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5618
5619         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
5620           bug #1074377
5621         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
5622         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
5623
5624 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
5625
5626         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
5627
5628 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5629
5630         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
5631           conditions,
5632           (setFromConditionArgs): friendly operand parser for peephole rules,
5633           (operandBaseName, operandsNotRelated): new peephole condition
5634           "operandsNotRelated" -- similar to "operandsNotSame", but takes
5635           architecture specific register naming into account, handles n-way
5636           comparisons, and supports quoted literals
5637         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
5638
5639 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5640
5641         * src/mcs51/peeph.def: fixed bug #1076940
5642
5643 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
5644
5645         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
5646
5647 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5648
5649         Adding support for replacing ljmps with sjmps in jumptables
5650         generated for switch statements. For now you need to set the
5651         environment variable SDCC_SJMP_JUMPTABLE to enable this.
5652         Now 4 algorithms for mcs51 jumptable generation are used:
5653         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
5654         addresses loaded pc-relative for up to 112 cases and stack-pushing
5655         target addresses loaded with offset from dptr for up to 256 cases.
5656
5657         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
5658         * src/mcs51/main.c: adapted constants for switch table generation
5659         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
5660
5661 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
5662
5663         * device/lib/printf_large.c (_print_format): fixed bug 1073386
5664         * support/regression/tests/bug1057979.c: added test for bug 1073386
5665
5666 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
5667
5668         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
5669         compilers
5670
5671 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
5672
5673         * src/pic16/device.h,
5674         * src/pic16/genarith.c,
5675         * src/pic16/glue.c,
5676         * src/pic16/main.c,
5677         * src/pic16/pcode.c: applied patches #1068154 and #1070213
5678
5679 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
5680
5681         Large cummulative patch for pic16 port.
5682         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
5683         to call when a stack overflow occurs,
5684         * (malloc.h): added CVS Id tag,
5685         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
5686         variable,
5687         * added libc directory. The current version of LibC contains string
5688         functions, ctype functions and macros and some functions of the
5689         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
5690         be extensively tested in the future. Standard disclaimer here.
5691         Library is not automatically build yet. But one can build it by
5692         invoking 'make' inside the libc directory.
5693         * added ADC library under libio. Preliminary version yet.
5694
5695         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
5696         * src/pic16/gen.c (aopForRemat): asmop size is filled by
5697         aopForRemat() now and not by pic16_aopOp(),
5698         * (pic16_popGetTempReg): removed warning messgae when allocating
5699         temporary registers, its a buggy feature and will be removed,
5700         * (pic16_popGet): set register instance field in AOP_CRY,
5701         * (pic16_outBitC): fixed for results in size greater than 1,
5702         * (genUminusFloat): fixed for pic16, ported code from mcs51,
5703         * (pic16_storeForReturn): optimized return of 0,
5704         * (genCmp): experimental code for new genCmp which uses PIC18's
5705         special compare&skip instructions. Initial tests fail some times
5706         with variables grater than 1 byte in size, so new code is disabled,
5707         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
5708         a single bit,
5709         * (genCast): began a fix to optimize the casting of a bit to another
5710         bit, now assigning a bitfield to another bitfield will fail, sorry,
5711         * src/pic16/main.c: disabled the use of lr-support feature,
5712         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
5713         * added some function prototypes, added function _debugf prototype,
5714         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
5715         bits with offset (case PO_GPR_BIT),
5716         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
5717         command line,
5718         * (isBankInstruction): modified to return 0 for no banking instruction,
5719         and 1 for banking instruction,
5720         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
5721         caused stop processing pCodes after a inline assembly block,
5722         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
5723         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
5724         registers when it shouldn't,
5725         * src/pic16/ralloc.c (allocReg): add preliminary support for
5726         supporting a limited set of temporary registers,
5727
5728 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5729
5730         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
5731           genDataPointerSet): ensure assignments always copy in MSB to LSB
5732           order,
5733           (loadRegFromAop): recognize CLRH optimization,
5734           (genFunction): optimize RECEIVE iCodes in reentrant functions
5735
5736 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5737
5738         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
5739           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
5740           selected.
5741         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
5742         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
5743           contiguous with data
5744
5745 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5746
5747         * device/lib/_gptrget.c (_gptrget),
5748         * device/lib/_gptrgetc.c (_gptrgetc),
5749         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
5750           instead of sjmp to ret
5751         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
5752           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
5753
5754 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
5755
5756         * .version: bumped version to 2.4.7
5757         * device/lib/_gptrget.c (_gptrget): is now _naked
5758         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
5759         * device/lib/_gptrput.c (_gptrput): is now _naked
5760         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
5761           (createFunction): fixed xstack
5762         * src/SDCCglue.c (emitMaps): set allocation required for bit area
5763         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
5764           or bit either,
5765           (geniCodeCritical): store original interrupt state in an iTemp bit
5766           var unless stack-auto
5767         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
5768         * src/SDCCmain.c (setIncludePath): added include/target to search path
5769         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
5770         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
5771           prototype,
5772           (processFuncArgs): put bit vars in bit area
5773         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
5774           unsaveRBank): fixed xstack,
5775           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
5776           (genFunction, genEndFunction): fixed xstack,
5777           (genAssign): optimization don't walk backwards through mem
5778         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
5779         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
5780         * support/regression/Makefile: also make library (for stack-auto) when
5781           making "all" and added "test-mcs51-xstack-auto"
5782         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
5783         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
5784         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
5785         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
5786         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
5787           make-library by MAKE_LIBRARY
5788         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
5789           regression tests for xstack
5790         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
5791         * support/regression/tests/critical.c: test for critical on mcs51
5792
5793 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5794
5795         * support/regression/ports/ucz80/spec.mk: use include and lib files from
5796           built version of sdcc instead of installed version
5797
5798 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
5799
5800         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
5801         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
5802           vprintf.c now
5803         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
5804         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
5805           WARNING: remove device/lib/build/z80/printf.o by hand when
5806           updating from previous build!
5807         * device/lib/z80/printf.c: updated comment
5808         * support/regression/tests/bug1057979.c: test all ports now
5809         * support/regression/tests/bug1065458.c: file added
5810
5811 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5812
5813         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
5814           *_start and *_end symbols for static functions
5815
5816 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
5817
5818         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
5819           and search crt0.o in all library paths,
5820           (setIncludePath): proper handling of --nostdinc,
5821           (setLibPath): proper handling of --nostdlib
5822         * support/regression/Makefile,
5823         * support/regression/ports/ds390/spec.mk,
5824         * support/regression/ports/gbz80/spec.mk,
5825         * support/regression/ports/hc08/spec.mk,
5826         * support/regression/ports/mcs51/spec.mk,
5827         * support/regression/ports/mcs51-large/spec.mk,
5828         * support/regression/ports/mcs51-stack-auto/spec.mk,
5829         * support/regression/ports/z80/spec.mk: use include and lib files from
5830           built version of sdcc instead of installed version
5831         * doc/sdccman.lyx: fixed typo in --nostdinc
5832
5833 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
5834
5835         * src/pic/pcode.c,
5836         * src/pic/device.c,
5837         * src/pic/ralloc.c,
5838         * src/pic/gen.c : added support to generate code for struct bit fields.
5839
5840 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
5841
5842         * as/xa51/xa_version.h,
5843         * device/include/errno.h,
5844         * device/include/regc515c.h,
5845         * device/lib/_itoa.c,
5846         * device/lib/_ltoa.c,
5847         * device/lib/ser_ir_cts_rts.c,
5848         * sim/ucsim/xa.src/glob.cc,
5849         * sim/ucsim/xa.src/inst_gen.cc,
5850         * sim/ucsim/xa.src/xa_bit.cc,
5851         * sim/ucsim/xa.src/xa_sfr.cc,
5852         * sim/ucsim/z80.src/inst_dd.cc,
5853         * sim/ucsim/z80.src/inst_fdcb.cc,
5854         * support/scripts/keil2sdcc.pl,
5855         * src/pic16/pic16.dsp,
5856         * src/pic16/pic16a.dsp: corrected cvs line endings
5857         * device/lib/printf_large.c: fixed bug 1057979
5858         * src/pic16/gen.c: fixed non-C standard code
5859         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
5860         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
5861         * support/regression/ports/mcs51/support.c: reload T1 asap
5862         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
5863           pdata use and clear idata startup behaviour
5864         * support/regression/tests/bug1057979.c: added
5865
5866 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
5867
5868         * device/examples/ds390/ow390/ad26.h,
5869         * device/examples/ds390/ow390/cnt1d.h,
5870         * device/examples/ds390/ow390/crcutil.c,
5871         * device/examples/ds390/ow390/ownet.h,
5872         * device/examples/ds390/ow390/owsesu.c,
5873         * device/examples/ds390/ow390/swt12.h,
5874         * device/examples/ds390/ow390/swtoper.c,
5875         * device/examples/ds390/ow390/temp10.h,
5876         * device/examples/ds390/ow390/thermodl.c,
5877         * device/examples/ds390/tinitalk/tinitalk.dsp,
5878         * device/examples/ds390/tinitalk/tinitalk.dsw,
5879         * device/examples/mcs51/clock/hw.h,
5880         * device/examples/mcs51/simple2/go.bat,
5881         * device/examples/serialcomm/windows/serial.h,
5882         * device/examples/xa51/dummy.c,
5883         * device/examples/xa51/hello.c,
5884         * device/include/80c51xa.h,
5885         * device/include/at89x051.h: corrected cvs line endings
5886
5887 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
5888
5889         * src/pic16/main.c (options): added command line --gstack, to trace
5890         stack over/under flows,
5891         * added pragma 'wparam' to allow passing first byte of function
5892         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
5893         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
5894         call to __gstack_test function and sets up the symbol as extern,
5895         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
5896         * popaop): added call to pic16_testStackOverflow,
5897         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
5898         wparamList list,
5899         * (genCall, genPcall): now all parameters are passed via stack
5900         except in functions that are pass to wparam pragma in which WREG is
5901         used too,
5902         * (genPcall): REENTRANT flag is checked to see if variable prototype
5903         contains reentrant keyword, don't call a non-reentrant function, via
5904         a reentrant function pointer or vice versa, functions are never
5905         passed via WREG,
5906         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
5907         D.Winkler,
5908         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
5909         SIGSEGV when accessing a NULL register stucture,
5910         * (pic16_printGPointerType): modified to handle UPPER modifier for
5911         function initializers, changed prototype of function to simpler one,
5912         * (pic16_printIvalFuncPtr): check to see if function is already
5913         added in externs list,
5914         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
5915         optimized a move from W to SFR with a move to the same register
5916         later after a CALL,
5917         * device/lib/pic16/debug: NEW directory, contains debug features
5918         which are enabled when linking with libdebug.lib, currently command
5919         line option --gstack enables stack pointer tracing for over/under
5920         flow, corresponding sources are in debug/gstack
5921
5922 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
5923
5924         * doc/sdccman.lyx: updated SDCC version,
5925         * (PIC16 port): update list of command line options,
5926         * src/pic16/device.h (structure pic16_options_t): added field gstack
5927         to enable stack overflow tracing on push/pops,
5928         * src/pic16/device.c (statistics structure): added statistics
5929         structure,
5930         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
5931         pic16_dump_int_registers): increase statistics counters for each
5932         * variable which is encountered
5933         * (pic16_dump_usection): emit each .udata variable to its own udata
5934         section,
5935         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
5936         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
5937         parameters via stack, otherwise use old scheme,
5938         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
5939         assembler output file,
5940         * src/pic16/main.c: added command line options --gstack to enable
5941         push/pop tracing for stack overflow,
5942         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
5943         instructions): added size of each instruction,
5944         * (pic16_countInstruction): estimate size of instructions in
5945         the_pFile list, inline assembly blocks are not counted,
5946         * (pic16_FixRegisterBanking): trace previous register usage, when
5947         banksel optimizations is greater than 0, don't emit a redudant
5948         banksel directive,
5949
5950 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
5951
5952         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
5953         * src/pic16/ralloc.c : applied same fix for pic16.
5954         * src/pic/gen.c : tidied it up a little.
5955
5956 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5957
5958         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
5959         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
5960
5961 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5962
5963         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
5964
5965 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5966
5967         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
5968         non-reentrant function __modsint in the interrupt function (thus
5969         corrupting math operations during serial I/O)
5970         * device/lib/ser_ir.c: as above, changed buffersize
5971         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
5972         256.c,d for zeroing
5973         * doc/Makefile: added option -t for rsync
5974
5975 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5976
5977         * src/SDCCast.h (struct ast),
5978         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
5979
5980 2004-10-20 Borut Razem <borut.razem AT siol.net>
5981
5982         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
5983         package
5984
5985 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
5986
5987         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
5988         makefile targets,
5989         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
5990         support functions to replace long sequences of MOVFF's from access
5991         bank registers to stack and vice versa,
5992         * src/pic16/device.h: added new field opt_flags, where optimization
5993         flags can be set to enable certain features,
5994         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
5995         * pBlock, (genFunction, genEndFunction): surroung loop for
5996         saving/loading used registers in stack with PC_INFO pCodes,
5997         INF_LREGS. Code in between can then be optimized by pCode optimizer
5998         to support function calls,
5999         * (genDataPointerSet): fixed bug which loaded float fields in
6000         structures with corrupt data,
6001         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
6002         in a standard way debug info on stderr. Feature used for developing
6003         and debugging only,
6004         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
6005         obsolete chunks of code,
6006         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
6007         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
6008         * pic16/src/pcode.c (pic16_newpCodeInfo,
6009         * (pic16_newpCodeOpLocalRegs),
6010         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
6011         feature,
6012         * (pic16_pCodeConstString): printing of the initial value of a
6013         symbol as a comment is inhibited since parsing was already done by
6014         copyStr and output is corrupt,
6015         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
6016
6017 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6018
6019         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
6020
6021 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
6022
6023         * as/mcs51/lkarea.c: removed old K&R style,
6024           (lnksect): changed check on boundary error,
6025           (lnksect2): changed check on boundary error,
6026           (lnksect2): extend XSTK to end of page if size = 1
6027         * as/mcs51/lkmain.c: removed old K&R style,
6028           (Areas51): create l_IRAM symbol
6029         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
6030         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
6031           model-mcs51-stack-auto, added model-mcs51-xstack-auto
6032         * device/lib/_mullong.c: added version to be compiled with xstack
6033         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
6034         * device/lib/mcs51/crtxclear.asm: clear pdata as well
6035         * device/lib/mcs51/crtxstack.asm: fixed comment
6036         * src/SDCCglue.c: maxInterrupts defaults to 0,
6037           (emitMaps): added pdata,
6038           (createInterruptVect): (re)moved default,
6039           (glue): added pdata,
6040           (glue): moved __start__xstack to XSTK with default size 1
6041         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
6042           and options.float_rent when options.stackAuto is set,
6043           (linkEdit): only write XDATA_NAME if provided on command line
6044         * src/SDCCmem.h,
6045         * src/SDCCmem.c: added pdata
6046         * src/port.h: added pdata_name to PORT
6047         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
6048           (saveRegisters, unsaveRegisters): removed usage of B,
6049           (genMinus): fixed accumulator clash,
6050           (genJumpTab): added comment, this needs another look
6051         * src/mcs51/gen.c: added check for "B in use" paranoia,
6052           added pushB() and popB()
6053         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
6054           chance
6055         * src/avr/main.c,
6056         * src/ds390/main.c,
6057         * src/hc08/main.c,
6058         * src/mcs51/main.c,
6059         * src/pic/main.c,
6060         * src/pic16/main.c,
6061         * src/xa51/main.c,
6062         * src/z80/main.c: (reset_regparms) made void parameter explicit and
6063           added PSEG (PAG,XDATA) or NULL to port specifier
6064         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
6065         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
6066           (_mcs51_genInitStartup): removed __start__xstack equ,
6067           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
6068         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
6069         * src/z80/gen.c (_rleAppend): fixed warnings
6070         * support/regression/tests/zeropad.c: added pdata test
6071         * .version: bumped to 2.4.6
6072
6073 2004-10-17 Borut Razem <borut.razem AT siol.net>
6074
6075         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
6076         as a part of nightly build
6077
6078 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
6079
6080         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
6081         WREG holds the first byte function parameters,
6082         * (aopForSym): take special case for symbols which are in FARSPACE
6083         but in CODESPACE too,
6084         * (assignResultValue): modified to take into account _G.useWreg,
6085         * (genCall): don't use wreg for parameter passing when function is
6086         declared as reentrant, too, added optimization INCF to stack
6087         pointer when stack parameter count is 1,
6088         * (genFunction, genEndFunction): refurnished and fixed to not using
6089         wreg for passing parameters when function has varargs or is
6090         reentrant, fixed bug with symbol name compare for generating
6091         functions in absolute address,
6092         * (pic16_storeForReturn): refurnished,
6093         * (genCmp): began writing a new version of the function, not ready
6094         yet, therefore it is disabled,
6095         * (genAssign): do not read code memory when assigning a function to
6096         a pointer function,
6097         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
6098         array of characters, not pointer,
6099         * (pic16initialComments): in debug mode emit an .ident directive for
6100         the assembler,
6101         * (_process_pragma): emit a new warning type (internal to pic16)
6102         when setting stack to default length, emit a similar warning when
6103         placing a function at absolute address and address is not word aligned
6104         * (_pic16_parseOptions): added 'return TRUE' statement,
6105         * (_pic16_linkEdit): if compiling a source, then add the source's
6106         file object, first in the list of objects to link,
6107
6108 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
6109
6110         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
6111         * src/pic/main.c : removed VC warning.
6112         * src/pic/gen.c : changed comment.
6113
6114 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
6115
6116         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
6117         reference to a deprecated symbol _GPTRREG was causing failure to
6118         link. Thanks G. M. Gallant for the info.
6119
6120 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
6121
6122         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
6123         comments for Bugs item #954788.
6124
6125 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
6126
6127         * src/pic16/device.c (pic16_dump_gsection,
6128         * pic16_groupRegistersInSection): handle symbols declared to be in
6129         access bank differently,
6130         * src/pic16/gen.c (struct _G): added field resDirect,
6131         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
6132         send values read from stack directly to result and don't allocate
6133         temporary values,
6134         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
6135         same registers,
6136         * (pic16_sameRegsOfs): NEW,
6137         * (freeAsmop): if _G.resDirect is set then do not mark registers as
6138         free because they were not allocated from temporary pool,
6139         * pic16_popRegFromString): workaround to fix a problem with
6140         allocating variables twice or never,
6141         * (genGenPointerGet): using PRODL instead of FSR0H,
6142         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
6143         instead of FSR0H,
6144         * (genAssign): take advantage of the _G.resDirect flag,
6145         * (genCast): around line 11844, use mov2f instead of directly
6146         MOVFF'ing between operands to account for literal values,
6147         * src/pic16/genutils.c: some new debug functions for gpsim have been
6148         added,
6149         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
6150         float with integer part only,
6151         * src/pic16/main.c (_process_pragma): handle pragma udata access to
6152         place variables in access bank
6153         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
6154         updated sources to reflect recent changes in gen.c
6155
6156 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
6157
6158         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
6159         sources that searched for headers in installation path, now the
6160         device/include/pic16 is used,
6161         * src/pic16/glue.c (pic16glue),
6162         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
6163         .line directives if not in debug mode, this suppresses assembler's
6164         warnings for ignored directives
6165
6166 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
6167
6168         * src/port.h: made reset_regparms prototype void parameter explicit.
6169         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
6170         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
6171         * doc/sdccman.lyx: documented warning disabling and how to use
6172           printf_large to make it print floats.
6173         * device/include/stdbool.h: NEW
6174         * device/lib/_atof.c,
6175         * device/lib/_divuint.c,
6176         * device/lib/_divulong.c,
6177         * device/lib/expf.c,
6178         * device/lib/printf_large.c,
6179         * device/lib/sincosf.c,
6180         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
6181         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
6182           a completely reentrant lib.
6183
6184 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
6185
6186         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
6187         * device/include/pic16/stdio.h: fixed bug with colon
6188
6189 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
6190
6191         * device/include/pic16/stdio.h,
6192         * device/include/pic16/stdlib.h,
6193         * device/include/pic16/math.h: NEW
6194         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
6195         declared as _naked to reduce overhead
6196         * device/lib/Makefile.in (target port-specific-objects-pic16):
6197         changed * to *.* so to ignore the CVS directory,
6198         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
6199         stacked variables back in stack,
6200         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
6201         corruption
6202
6203 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
6204
6205         * .version: bumped version number to 2.4.5
6206         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
6207         * support/Util/SDCCerr.c (messages structure): added entry for
6208         W_POSSBUG2
6209
6210         Large cumulative patch for pic16 port and libraries.
6211         * device/include/pic16/sdcc-lib.h,
6212         * device/include/pic16/stdarg.h,
6213         * device/include/asm/pic16/features.h,
6214         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
6215         * device/include/pic16/float.h: changes reentrant keyword with
6216         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
6217         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
6218         updated target build-libraries to include objects from gptr,
6219         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
6220         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
6221         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
6222         all function headings,
6223         * src/SDCCmain.c: added global parameter userIncDirsSet,
6224         * (parseCmdLine): when option -I is encountered add directory to
6225         userIncDirsSet too,
6226         * src/version.awk: added space between control and long,
6227         * src/pic16/NOTES: added some notes for the port,
6228         * src/pic16/gen.c: added prototype for mov2fp function,
6229         * (fReturnpic16[]): properly named return value registers,
6230         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
6231         * (aopForSym): added code to handle symbols with onStack flag set,
6232         symbols onStack are allocated PTRSIZE bytes,
6233         * (aopFreeAsmop): handles special case where asmops are stack objects,
6234         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
6235         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
6236         added argument lock to trace flaws in allocating temporary registers
6237         when developing port,
6238         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
6239         * (pic16_popRegFromString): reenabled allocating a direct register
6240         from string,
6241         * (assignResultValue): various beautifications,
6242         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
6243         referenced function argument,
6244         * (genIpush): reenabled to allow stacked arguments, handles only
6245         ic->parmPush iCodes,
6246         * (genCall, genPcall): major changes to allow for variable argument
6247         functions, fixed a bug with falsely restoring stack pointer after
6248         returning from call,
6249         * (genFunction): pending code for critical function,
6250         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
6251         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
6252         * (genNearPointerGet): fixed bug with indirect reading, was always
6253         reading from INDF0
6254         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
6255         pointers,
6256         * (genAddrOf): rewrote code to take address of a stacked function parameter
6257         * (genCast): fixed casting to generic pointer type,
6258         * src/pic16/gen.h: added AOP_STA,
6259         * (struct asmop): added field stk,
6260         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
6261         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
6262         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
6263         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
6264         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
6265         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
6266         generic pointers,
6267         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
6268         and library paths,
6269         * (pic16_port structure): generic pointer size is set to 3,
6270         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
6271         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
6272         compiler warning,
6273         * src/pic16/ralloc.c (allocReg): prevent allocating register when
6274         operand is an iTemp,
6275
6276 2004-09-24 Martin Helmling <mh AT octo-soft.de>
6277
6278         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
6279         * debugger/mcs51/simi.c: addapt new syntax of s51
6280
6281 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
6282
6283         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
6284         * src/pic16/pcode.c: commented out some calls to free() in order to
6285         fix bug #989576,
6286
6287 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6288
6289         * src/SDCCicode.h,
6290         * src/SDCCicode.c (isiCodeInFunctionCall),
6291         * src/avr/ralloc.c (selectSpil),
6292         * src/pic/ralloc.c (selectSpil),
6293         * src/pic16/ralloc.c (selectSpil),
6294         * src/ds390/ralloc.c (selectSpil),
6295         * src/hc08/ralloc.c (selectSpil),
6296         * src/xa51/ralloc.c (selectSpil),
6297         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
6298         stack in the middle of a function call sequence (fixes bug #1020268)
6299         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
6300         costs associated with the minimum switch case.
6301
6302 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6303
6304         * src/SDCC.lex: fixed bug #1030549
6305
6306 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6307
6308         * src/SDCCcse.h (struct cseDef),
6309         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
6310         over a function call if the CSE is derived from a symbol whose
6311         address has been taken (fixes bug #1029883)
6312         * support/regression/tests/bug-1029883: a new regression test for
6313         this bug
6314
6315 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6316
6317         * src/hc08/gen.c (emitinline): fixed bug #1029778
6318         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
6319         to a cast object is no longer a syntax error ("fixes" bug #1030006,
6320         and starts toward RFE #905167)
6321
6322 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
6323
6324         * src/pic16/gen.c (mov2f): New function to move an operand to
6325         another without considering if it is a literal or a register,
6326         * (pic16_sameRegs): don't check if they are both AOP_REG,
6327         * (AccRsh): removed andmask=0 lines,
6328         * (genLeftShift): duplicated to be improved in future versions,
6329         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
6330         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
6331         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
6332         * (pic16initMnemonics): added initialization for POC_INFSNZW,
6333         * (insertBankSwitch): fixed inserting banksel directives algorithm
6334         for instructions that follow a skip instruction, this fixes a report
6335         for broken subtraction code generation,
6336         * src/pic16/ralloc.c (deassignLRs): do not free register if current
6337         iCode is a left op, just in case result and right share the same
6338         registers
6339
6340 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6341
6342         * src/hc08/main.c,
6343         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
6344         preservation of HX
6345         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
6346         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
6347         on 2004-09-12; it was buggy
6348
6349 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
6350
6351         * src/SDCCsymt.h: removed RESULT_CHECK
6352         * src/SDCCast.c,
6353         * src/SDCCglue.c,
6354         * src/SDCCval.c,
6355         * src/pic/glue.c,
6356         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
6357
6358 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
6359
6360         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
6361         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
6362         configuration values no more rejected by compiler, they are assigned
6363         to configuration registers with a warning message instead,
6364         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
6365         the for-loop so last conf register is emitted too,
6366         * (_pic16_initPaths): link library libsdcc.lib by default,
6367         * (_hasNativeMulFor): modified test for multiplication according to
6368         Raphael Neider's remarks. Integer multiplication is also done with
6369         support functions,
6370         * device/include/pic16/pic18fregs.h: corrected type error in while
6371         testing and including 18f6720 header file
6372
6373 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
6374
6375         * src/pic16/device.h (pic16_options): removed field use_crt,
6376         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
6377         until an optimization to handle single bits is added,
6378         * (pic16_loadFSR0): moved before genUnpackBits,
6379         * (genAnd): some white lines removed,
6380         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
6381         leave_reset flags in pic16_options when using crt modules,
6382
6383 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
6384
6385         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
6386           for bugs 898889 & 979599. Also used some safer print instructions.
6387
6388 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
6389
6390         * src/pic16/device.h (pic16_options_t): added field use_crt,
6391         crt_name, no_crt,
6392         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
6393         catch a probable future bug,
6394         * src/pic16/gen.c: aopIdx function commented out,
6395         * (genAssign): commented out old code which used aopIdx,
6396         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
6397         code, added if conditionals to take into account the --use-crt
6398         command line options,
6399         * src/pic16/main.c (pic16_optionsTable): added new command line
6400         options, --use-crt= and --no-crt,
6401         * (_pic16_linkEdit): now the proper crt object is added in the
6402         linker command line except than when --no-crt is specified,
6403         * src/pic16/pcode.c,
6404         * src/pic16/pcode.h: added some structures and functions for a new
6405         optimization scheme to compansate for instruction overhead between
6406         same iCodes, this scheme is currently under development and is not
6407         working in any way,
6408         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
6409         to && operator,
6410         * device/lib/pic16/startup/crt0i.c,
6411         * device/lib/pic16/startup/crt0iz.c: added global char variable
6412         __uflags to force the generation of an idata section
6413
6414 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
6415
6416         * doc/Makefile,
6417         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
6418         * doc/sdccman.lyx: updated sdcc version to 2.4.4
6419
6420 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6421
6422         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
6423         Frieder) and clarified the default code optimization mode
6424
6425 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6426
6427         * src/SDCC.lex (doPragma, process_pragma),
6428         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
6429         "opt_code_size", and "opt_code_balanced"
6430         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
6431         regrouped options by category, added support for category headers
6432         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
6433         and "--opt-code-size"
6434         * doc/sdccman.lyx: documented these new options and pragmas
6435         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
6436         preference into account
6437
6438 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
6439
6440         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
6441           geniCodePreDec): Fixed bug 904237 by generating a warning
6442         * src/SDCCerr.h,
6443         * src/SDCCerr.c: added warning W_SIZEOF_VOID
6444
6445 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
6446
6447         * src/pic/device.c : When no max ram set validate full memory range.
6448         * src/pic/pcode.c,
6449         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
6450
6451 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
6452
6453         * device/lib/_gptrget.c,
6454         * device/lib/_gptrput.c: updated comment
6455         * device/lib/calloc.c,
6456         * device/lib/free.c,
6457         * device/lib/malloc.c,
6458         * device/lib/realloc.c: added LGPL, made them reentrant-safe
6459         * src/SDCCcse.c (cseBBlock),
6460         * src/SDCCicode.c (printOperand, geniCodeArray),
6461         * src/SDCCicode.h (struct operand): fixed bug 868103
6462         * support/regression/tests/bug-868103.c: added
6463         * src/SDCCast.c (searchLitOp),
6464         * src/SDCCcse.h (struct cseDef),
6465         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
6466         * src/SDCCicode.h (struct operand),
6467         * src/SDCCsymt.h (struct sym_link),
6468         * src/avr/gen.c (hasInc),
6469         * src/ds390/gen.c (hasInc),
6470         * src/hc08/gen.c (genPlusIncr, hasInc),
6471         * src/mcs51/gen.c (hasInc),
6472         * src/pic16/glue.c (pic16_printIvalChar),
6473         * src/pic16/ralloc.c (regWithIdx),
6474         * src/xa51/gen.c (hasInc) : removed warnings
6475         * src/SDCCast.c (createBlock): added comment ???
6476         * src/hc08/ralloc.c: updated comments
6477
6478 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6479
6480         * doc/sdccman.lyx: updated section on switch statements, added
6481         section about semaphore locking
6482         * doc/Makefile: added option -info for latex2html
6483         * device/lib/_gptrget.c,
6484         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
6485
6486 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
6487
6488         * src/pic/device.h,
6489         * src/pic/device.c,
6490         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
6491          maxram is less than 0x100.
6492
6493 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
6494
6495         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
6496
6497 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6498
6499         * src/port.h,
6500         * src/mcs51/main.c,
6501         * src/ds390/main.c,
6502         * src/z80/main.c,
6503         * src/hc08/main.c,
6504         * src/pic/main.c,
6505         * src/pic16/main.c,
6506         * src/avr/main.c,
6507         * src/xa51/main.c
6508         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
6509         a jump table is the best form for a switch statement, including
6510         automatic insertion of missing cases to make the case range
6511         continuous. Developed in collaboration with Frieder Ferlemann.
6512
6513 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6514
6515         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
6516         accumulator result if it needs sign extension
6517
6518 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
6519
6520         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
6521
6522 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
6523
6524         * device/lib/gbz80/printf.c,
6525         * device/lib/z80/printf.c: removed define for NULL
6526
6527 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
6528
6529         * as/xa51/xa_link.c,
6530         * device/examples/ds390/ow390/ad26.c,
6531         * device/examples/ds390/ow390/cnt1d.c,
6532         * device/examples/ds390/ow390/counter.c,
6533         * device/examples/ds390/ow390/ds2480.h,
6534         * device/examples/ds390/ow390/ds2480ut.c,
6535         * device/examples/ds390/ow390/findtype.c,
6536         * device/examples/ds390/ow390/gethumd.c,
6537         * device/examples/ds390/ow390/owllu.c,
6538         * device/examples/ds390/ow390/ownetu.c,
6539         * device/examples/ds390/ow390/swt12.c,
6540         * device/examples/ds390/ow390/swtloop.c,
6541         * device/examples/ds390/ow390/temp.c,
6542         * device/examples/ds390/ow390/temp10.c,
6543         * device/examples/ds390/ow390/thermo21.c,
6544         * device/examples/ds390/ow390/tinilnk.c,
6545         * device/examples/ds390/ow390/tstfind.c,
6546         * device/examples/serialcomm/windows/serial.cpp,
6547         * device/examples/serialcomm/windows/test_serialcomm.cpp,
6548         * device/include/reg51.h: fixed line endings for cvs
6549
6550 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6551
6552         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
6553         packRegsForAccUse, packRegisters): new accumulator register
6554         packing algorithm
6555         * support/regression/ports/hc08/support.c (_putchar): suppress
6556         warning of unused variable
6557         * src/SDCCicode.c: added SWAP entry to codeTable
6558
6559 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
6560
6561         * device/lib/sprintf.c: forgot to add this file before previous commit
6562
6563 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
6564
6565         * src/pic16/gen.c (genPackBits): added operand right in function
6566         parameters, load result directly if p_type is POINTER (that is
6567         called by genNearPointerSet)
6568         * (genUnPackBits): added operand left in function parameters,
6569         * (genNearPointerGet, genNearPointerSet): prevent the loading of
6570         FSR0 if accessing bitfields,
6571
6572 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
6573
6574         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
6575           _print_format; updated printf, sprintf, vsprintf
6576         * device/include/asm/default/features.h: corrected comment/define
6577         * device/lib/Makefile.in: added sprintf.c
6578         * device/lib/libsdcc.lib: added sprintf module
6579         * device/lib/printf_large.c,
6580         * device/lib/vprintf.c,
6581         * device/lib/sprintf.c: totally refactored printf_large and vprintf
6582           into these 3 files
6583         * support/regression/Makefile: changed ALL_PORTS into a usefull default
6584         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
6585         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
6586           hc08 test
6587         * support/regression/tests/zeropad.c: define idata as data for hc08
6588
6589 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6590
6591         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
6592         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
6593         labels are referenced at least once (even if a reference is not found)
6594         * src/hc08/gen.c (emitcode): set isComment flag for comments
6595         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
6596         loads), rules 6a..6b (optimize jumps to return)
6597
6598 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6599
6600         * device/lib/acosf.c (acosf),
6601         * device/lib/asinf.c (asinf),
6602         * device/lib/atanf.c (atanf),
6603         * device/lib/ceilf.c (ceilf),
6604         * device/lib/cosf.c (cosf),
6605         * device/lib/coshf.c (coshf),
6606         * device/lib/cotf.c (cotf),
6607         * device/lib/fabsf.c (fabsf),
6608         * device/lib/floorf.c (floorf),
6609         * device/lib/log10f.c (log10f),
6610         * device/lib/logf.c (logf),
6611         * device/lib/sinf.c (sinf),
6612         * device/lib/sinhf.c (sinhf),
6613         * device/lib/sqrtf.c (sqrtf),
6614         * device/lib/tanf.c (tanf),
6615         * device/lib/tanhf.c (tanhf),
6616         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
6617         replaced all instances of "reentrant" in the library functions
6618         defined in math.h with this macro.
6619         * support/regression/tests/float_trans.c: reenabled test for hc08
6620
6621 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
6622
6623         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
6624         erroneously deleted
6625
6626 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6627
6628         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
6629         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
6630         multi-byte volatile operands are used
6631         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
6632         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
6633         initialization to area GSINIT0 so that it would always precede
6634         any static initializers in GSINIT
6635         * support/regression/tests/zeropad.c: fixed idata define for hc08
6636         * support/regression/tests/bug-927659.c,
6637         * support/regression/tests/float_trans.c: disabled tests for hc08
6638         pending missing library routines
6639         * .version: increased version number to 2.4.4 - hc08 port now passes
6640         regression tests
6641
6642
6643 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
6644
6645         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
6646         * Makefile.common.in,
6647         * as/Makefile,
6648         * as/hc08/Makefile.in,
6649         * as/mcs51/Makefile.in,
6650         * as/z80/Makefile.in,
6651         * debugger/mcs51/Makefile.in,
6652         * device/include/Makefile.in,
6653         * device/lib/Makefile.in,
6654         * doc/Makefile,
6655         * link/Makefile,
6656         * link/z80/Makefile.in,
6657         * packihx/Makefile.in,
6658         * sim/ucsim/main_in.mk,
6659         * sim/ucsim/avr.src/Makefile.in,
6660         * sim/ucsim/doc/Makefile.in,
6661         * sim/ucsim/gui.src/serio.src/Makefile.in,
6662         * sim/ucsim/hc08.src/Makefile.in,
6663         * sim/ucsim/s51.src/Makefile.in,
6664         * sim/ucsim/xa.src/Makefile.in,
6665         * sim/ucsim/z80.src/Makefile.in,
6666         * src/Makefile.in,
6667         * support/cpp2/Makefile.in,
6668         * support/librarian/Makefile,
6669         * support/makebin/Makefile: added DESTDIR to the install path proposed
6670         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
6671         * doc/sdccman.lyx: added DESTDIR documentation
6672
6673 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
6674
6675         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
6676         instruction for interrupt handlers, use fast returns when returning
6677         from high priority interrupts
6678
6679 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6680
6681         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
6682         code generation
6683         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
6684         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
6685         bugs, ported much of Bernhard's code from mcs51
6686         * src/mcs51/gen.c (genSend),
6687         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
6688         than one when calling a reentrant function
6689         * device/lib/_mullong.c: defined an alternate struct layout for big
6690         endian ports (hc08)
6691
6692 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6693
6694         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
6695         test
6696
6697 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6698
6699         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
6700         are sane and complete before asking the port its prefered parameter
6701         passing method (fixes bug #1017633)
6702         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
6703         and _ret3
6704
6705 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6706
6707         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
6708         problem in bitfields >= 8 bits.
6709
6710 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
6711
6712         * src/SDCCsymt.c: undid changes that were not meant to be committed
6713
6714 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
6715
6716         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
6717
6718 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
6719
6720         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
6721           copied and wrong bit got inverted
6722
6723 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6724
6725         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
6726         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
6727         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
6728         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
6729         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
6730         assignments to bitfields at known addresses
6731         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
6732         reads from bitfields at known addresses
6733         * src/hc08/ralloc.c (packRegisters),
6734         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
6735         genhc08Code): optimize pointer get values used as conditionals
6736         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
6737         and branch
6738
6739 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6740
6741         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
6742         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
6743         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
6744         as conditionals
6745
6746 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6747
6748         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
6749
6750 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6751
6752         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
6753         related problems
6754
6755 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
6756
6757         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
6758
6759 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6760
6761         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
6762         mcs51 port
6763
6764 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
6765
6766         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
6767
6768 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6769
6770         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
6771         cases use more compact code.
6772
6773 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
6774
6775         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
6776
6777 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6778
6779         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
6780
6781 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6782
6783         * src/SDCCsymt.h,
6784         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
6785         parameter of changePointer() from symbol* to sym_link*
6786         * src/SDCCast.c (decorateType): call changePointer() for CAST op
6787         * src/SDCCsymt.c (compareType): void* type is castable to other
6788         pointers, but not necesarily an exact match.
6789         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
6790         is no longer blindly treated as an exact match.
6791         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
6792
6793 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
6794
6795         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
6796
6797 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
6798
6799         * src/pic/gen.c,
6800         * src/pic/pcode.c,
6801         * src/pic/ralloc.h,
6802         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
6803
6804 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
6805
6806         * src/pic/device.c,
6807         * src/pic/device.h,
6808         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
6809
6810 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6811
6812         * src/mcs51/gen.c (emitcode): fixed bug #992819
6813
6814 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
6815
6816         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
6817           there's no need to make it worse
6818
6819 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6820
6821         * src/mcs51/ralloc.c (deassignLR),
6822         * src/ds390/ralloc.c (deassignLR),
6823         * src/hc08/ralloc.c (deassignLR),
6824         * src/z80/ralloc.c (deassignLR),
6825         * src/pic/ralloc.c (deassignLR),
6826         * src/pic16/ralloc.c (deassignLR),
6827         * src/avr/ralloc.c (deassignLR),
6828         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
6829         rlivePoint): fixed another part of bug #971834
6830
6831 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6832
6833         * src/z80/main.c: enabled "critical" keyword
6834         * src/z80/mappings.i,
6835         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
6836         functions (fixes bug #979646)
6837         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
6838
6839 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6840
6841         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
6842           such as c:\mydir.
6843
6844 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
6845
6846         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
6847           doesn't disable too much optimizations
6848
6849 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
6850
6851         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
6852
6853 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
6854
6855         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
6856
6857 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
6858
6859         * src/pic/gen.c tidied up tabs
6860         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
6861         * src/pic/main.c tidied up tabs
6862         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
6863         * src/pic/pcoderegs.c tidied up tabs
6864         * src/pic/ralloc.c tidied up tabs
6865
6866 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
6867
6868         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
6869         to S_FIXED for pic16 port and when symbol is not in level 0,
6870         allocate for S_REGISTER storage class and pic16 port, too,
6871         * src/pic16/device.h: prototype for checkSym,
6872         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
6873         * (pic16_assignConfigWordValue): test the value and the mask to
6874         validate that the value is suitable for the configuration word,
6875         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
6876         collect extern declared symbols, don't emit symbol twice, check
6877         first if symbol is in publics set first,
6878         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
6879         * added command line '--fstack' which enables an experimental
6880         feature for stack access, too buggy to be used yet...
6881         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
6882         * (pic16_allocDirReg): when register has storage class S_REGISTER
6883         allocate in pic16_dynAccessRegs,
6884         * device/include/pic16/pic18f????.h: modified configuration word
6885         naming convention, words started as CONFIG0H but should be CONFIG1H
6886
6887 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
6888
6889         * device/include/mcs51reg.h: fixed bug 970993
6890
6891 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
6892
6893         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
6894         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
6895         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
6896         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
6897         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
6898         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
6899           error/warning numbers,
6900           added function setWarningDisabled()
6901         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
6902         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
6903           _memcmp.c _memmove.c calloc.c realloc.c free.c
6904         * support/regression/tests/malloc.c: added tests for new functionality
6905         * support/regression/tests/zeropad.c: added tests for truncated initializers
6906           and initialized char arrays starting with '\x0'
6907         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
6908
6909 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
6910
6911         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
6912
6913 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6914
6915         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
6916         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
6917         peephole 177.e. Thanks to anonymous
6918
6919 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
6920
6921         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
6922         function isn't used in the source but referenced as a
6923         variable initializer then declare it as extern in .asm file
6924
6925 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
6926
6927         * .version: increased version number to 2.4.3
6928
6929         Adding version extension according to ChangeLog CVS revision
6930         * src/Makefile.in (target all): added dependency 'version.h'
6931         * (rule version.h): added rule to create version.h from ChangeLog,
6932         * (rule dep): added dependency version.h,
6933         * src/version.awk: AWK script to create version.h
6934         * src/SDCCdwarf2.c (dwWriteModule),
6935         * src/SDCCglue.c (initialComments),
6936         * src/SDCCmain.c (printVersionInfo): modified to write after
6937         version string the version extension number,
6938         * src/SDCCutil.c: included "version.h"
6939         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
6940         number,
6941         * src/SDCCutil.h: added prototype for getBuildNumber
6942
6943         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
6944         includeDirsSet, too,
6945         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
6946         const char [] is found in function prototype...
6947
6948         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
6949         moving to WREG with source is already in WREG,
6950         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
6951         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
6952         * (aopForSym): stack'ed symbols are partially supported, added
6953         if-clause to support symbols in FARSPACE,
6954         * (sameRegs): added test for AOP_ACC to see if registers are same,
6955         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
6956         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
6957         * (pic16_popRegFromString): will not allocate a new register if it
6958         doesn't find one by name, bug may have introduced...
6959         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
6960         * (genIpush): revived to use pic16 port's stack,
6961         * (genAddrOf): added incomplete case for stack'ed operand,
6962         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
6963         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
6964         can handle multibyte operands,
6965         * src/pic16/glue.c (pic16_printIval*): some debug info added,
6966         * (pic16initialComments): added message for MPLAB compatibility
6967         mode enabled,
6968         * src/pic16/main.h: prototype for pic16_mplab_comp,
6969         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
6970         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
6971         * (_pic16_linkEdit): NEW, handles link stage, transferred here
6972         because of increased complexity of procedure,
6973         * (_process_pragma): stack pragma changed to format 'stack pos len',
6974         emit symbol '_stack_end' to conform with gplink,
6975         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
6976         to search for register,
6977         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
6978         PO_GPR_REGISTER,
6979         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
6980         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
6981         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
6982         case for PO_GPR_REGISTER,
6983         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
6984         dies, the new era is ahead !...
6985         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
6986         pic16_dynInternalRegs,
6987         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
6988         * (pic16_allocDirReg): minor optimizations and bug fixes,
6989         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
6990
6991         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
6992         load stack and frame pointer with address of 'stack_end' symbol
6993
6994 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
6995
6996         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
6997         without source code but only variable initializers
6998
6999 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
7000
7001         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
7002         external are not declared as extern to reduce overhead while linking
7003
7004 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
7005
7006         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
7007
7008 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
7009
7010         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
7011           Yee Keat for the patch
7012         * src/SDCCast.c (decorateType): fixed bug #979599
7013         * src/ds390/gen.h: removed local fReturnSizeDS390
7014         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
7015         * src/ds390/gen.c (genAnd, genOr, genXor),
7016         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
7017
7018 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
7019
7020         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
7021         add relFilesSet to $3, manipulate $2 to handle linking of object
7022         files without source files in command line,
7023         * device/include/pic16 (all headers): added ID location macros,
7024         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
7025         entries for ID location bytes,
7026         * (pic16_assignIdByteValue): NEW,
7027         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
7028         added field dumpcalltree to pic16_options_t,
7029         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
7030         is used instead of pic16_Gstack_base_addr, check if (ifx) before
7031         emitting rFalseIfx label after check_carry label,
7032         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
7033         pic16_emitDIRegs), NEW
7034         * (pic16glue): dump .calltree file when option --calltree found,
7035         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
7036         * (_pic16_genAssemblerPreamble): emit ID locations after
7037         configuration registers,
7038         * (pic16_linkCmd): modifications of the link command,
7039         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
7040         * (pic16_pCodeInitRegisters): don't init stack registers,
7041         * (pic16_findPrevInstruction): fixed bug,
7042         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
7043         bug with immediate registers,
7044         * (buildCallTree): traces stack push and pop,
7045         * (pct2): dump also stack usage for each function,
7046         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
7047         * (pic16_allocDirReg): various modifications,
7048         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
7049         fixed to 1,
7050
7051 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
7052
7053         * src/pic16/pcode.c: removed buggy double colon
7054
7055 2004-07-01 Borut Razem <borut.razem AT siol.net>
7056
7057         * support/scripts/sdcc.nsi: added include/pic16 to setup
7058
7059 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
7060
7061         * device/lib/Makefile.in: fixed bug in target objects-pic16,
7062         * device/lib/pic16/Makefile: prefixed with dash (-) command under
7063         target 'clean',
7064         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
7065         specific command line arguments. Also added sample lkr script
7066         for placing a variable at a specific memory bank.
7067         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
7068         at a specific memory bank,
7069         * (pic16_dump_isection): fixed bug which caused string literals to
7070         be omitted when dumping idata section,
7071         * (pic16_groupRegistersInSection): added code to handle registers
7072         in specific memory banks,
7073         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
7074         public, all references are renamed too,
7075         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
7076         AOP_DPTR2,
7077         * (pic16_storeForReturn): added case to handle when dest is WREG,
7078         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
7079         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
7080         pic16_rel_udata, check to see if that register is marked as being
7081         a member of a specific memory bank,
7082         * (pic16_printIvalCharPtr): added code to add string literals either
7083         to code or the idata sections,
7084         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
7085         also accept the 'udata' pragma,
7086         * src/pic16/main.h: new structure types sectName and sectSym
7087         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
7088         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
7089         * (pic16_findPrevInstruction): fixed, it returned nothing,
7090         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
7091         instruction combinations,
7092         * (pic16_FixRegisterBanking): heavily reorganised,
7093         * (pic16_AnalyzeBanking): if generating banksel directives is
7094         disabled, then don't call FixRegisterBanking at all,
7095         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
7096         completely removed,
7097         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
7098
7099 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
7100
7101         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
7102         Phuah Yee Keat <yk.phuah AT nestac.com>
7103
7104 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
7105
7106         * src/pic16/glue.c (pic16createInterruptVect): function now emits
7107         correctly the IVT even if it is relocated to some other location
7108
7109 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
7110
7111         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
7112         * device/include/pic16/pic18f2220.h: NEW,
7113         * device/lib/pic16/libdev/pic18f2220.c: NEW,
7114         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
7115         * src/pic16/device.c (struct Pics16): added info for 18f2220,
7116         * src/pic16/device.h (struct pic16_options): added ivt_loc and
7117         nodefaultlibs, ivt_loc is the location of the interrupt vector
7118         table, and nodefaultlibs signs that default libraries should not be
7119         linked in link stage,
7120         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
7121         according to --ivt-loc argument,
7122         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
7123         when pragma stack is found,
7124
7125 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7126
7127         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
7128         256 (range check), 257 (do while), 258.a-f (bit banging
7129         f.e. on 3-wire SPI bus)
7130
7131 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7132
7133         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
7134         variables used exclusively within a loop
7135
7136 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
7137
7138         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
7139
7140 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7141
7142         * src/SDCClrange.c (computeClash): fixed bug #971834
7143
7144 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7145
7146         * src/mcs51/gen.c (genCmp): fixed bug #975903
7147         * src/hc08/gen.c (operandsEqu),
7148         * src/ds390/gen.c (operandsEqu),
7149         * src/z80/gen.c (operandsEqu),
7150         * src/pic/gen.c (operandsEqu),
7151         * src/pic16/gen.c (operandsEqu),
7152         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
7153         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
7154
7155 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7156
7157         * src/SDCCcse.c (cseBBlock): fixed bug #966963
7158
7159 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
7160
7161         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
7162         default case in switch statement,
7163         * glue.c (pic16_initPointer): expr is initialised via decoarteType
7164         to eliminate problem with initialisation of pointers, but problem
7165         still exists,
7166         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
7167         * (emitStaticSegment): removed various lines emitting debug info,
7168         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
7169         added processor registers for utilizing EEPROM,
7170         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
7171         configurable and set 8
7172
7173 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
7174
7175         * .version: increased version number to 2.4.2,
7176
7177         Cumulative patch for pic16 port
7178         * src/pic16/device.c: changed scheme to dump initial values for
7179         variables in idata segment, all print_idata* functions were removed,
7180         now the pic16_printIval* will be called,
7181         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
7182         * _pic16_printPointerType, pic16_printPointerType,
7183         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
7184         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
7185         NEW, similar to the respective functions in SDCCglue.c,
7186         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
7187         way, emitting hex bytes,
7188         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
7189
7190 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7191
7192         * src/avr/ralloc.c (serialRegAssign),
7193         * src/xa51/ralloc.c (serialRegAssign),
7194         * src/pic/ralloc.c (serialRegAssign),
7195         * src/pic16/ralloc.c (serialRegAssign),
7196         * src/hc08/ralloc.c (serialRegAssign),
7197         * src/z80/ralloc.c (serialRegAssign),
7198         * src/ds390/ralloc.c (serialRegAssign),
7199         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
7200
7201 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7202
7203         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
7204         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
7205
7206 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
7207
7208         Cumulative patch for pic16 port:
7209         * src/pic16/device.h (typedef PIC16_device) modified fields for
7210         defining microcontrollers,
7211         * src/pic16/device.c: added new info for all devices in Pics16 array,
7212         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
7213         to be optimised out by the pCode optimiser,
7214         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
7215         specially, bug reported by G.M. Gallant,
7216         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
7217         as force'd so that cannot be optimised out by pCode optimiser,
7218         * src/pic16/pcode.c,
7219         * src/pic16/pcodepeeph.c,
7220         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
7221         they are disabled by default, but can be enabled explicit with
7222         command argument --denable-peeps, for testing,
7223         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
7224         --pomit-ivt in COMPILE_FLAGS
7225
7226 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
7227
7228         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
7229           compilation on MSVC
7230
7231 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
7232
7233         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
7234
7235 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7236
7237         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
7238         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
7239
7240 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
7241
7242         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
7243         would only assign 0x300001 register.
7244
7245 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
7246
7247         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
7248         in COMPILE_FLAGS. Thanks to G. Gallant for report.
7249
7250 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7251
7252         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
7253         for ds80c400
7254         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
7255         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
7256         added peephole 254 (left shift), 255 (jump table)
7257
7258 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
7259
7260         * device/lib/Makefile.in: removed comment line with model-pic16,
7261         * (target port-specific-objects-pic16): the libraries and objects
7262         are copied to the build directory form the device/lib/pic16/bin
7263         directory
7264
7265         Cumulative patch concerning pic16 port:
7266         * library directory has been re-organized,
7267         * added support for PIC18F1220,
7268         * added headers and library sources for chips 18f1220,18f6520,
7269         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
7270
7271         * configuration registers setting has changed, now each supported
7272         device has a complete description of the registers it uses,
7273         * all initialisations are moved to idata sections, these section
7274         can be absolute or relocatable,
7275         * fixed initialisation of codespace variables,
7276         * fixed warning about PCLATU and gpsim,
7277         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
7278         * (genAssign): use table reads when assigning from variables in codespace,
7279         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
7280         char/int variables placed in codespace,
7281         * (pic16_emitConfigRegs): NEW, emits a list with configuration
7282         registers set in .asm file, no need for --pomit-config-words anymore,
7283         * (pic16glue): some 8051 legacy segments are commented out
7284         (to be removed completely),
7285         * added support for alternative assembler and linker with --asm=
7286         and --link= command line arguments,
7287         * peepholes are disabled automatically in the port, no need to
7288         specify on command line,
7289         * port supports natively char/int/long multiplication, but converts
7290         all divisions to support functions,
7291         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
7292         to the file set in variable $2,
7293         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
7294         strings in ASCII format and not in hex,
7295         * ralloc.c (serialRegAssign): added a triplet of conditional calls
7296         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
7297         allocate proper register if iCodes aren't temporary,
7298
7299 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
7300
7301         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
7302
7303 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
7304
7305         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
7306         is commented out
7307
7308 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7309
7310         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
7311         computed address is reused
7312         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
7313         multi-byte bitfields
7314
7315 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
7316
7317         * src/z80/gen.c: (genArrayInit): must check for pointers too
7318
7319 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
7320
7321         * support/regression/tests/zeropad.c: never meant to commit the
7322           nestedstruct test: removed, added check for GCC version
7323
7324 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
7325
7326         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
7327         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
7328         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
7329           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
7330           bugs 928906 and 954082 half-empty initializers
7331         * src/SDCCsymt.h,
7332         * src/SDCCsymt.c (getAllocSize): added for above fix
7333         * src/z80/gen.c (genArrayInit): fixed bug 741044
7334         * support/regression/tests/zeropad.c: added tests
7335
7336 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
7337
7338         * src/pic16/device.c (pic16_dump_section): corrected bug which
7339         caused some symbols of the libraries to be misplaced
7340
7341 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
7342
7343         * src/pic16/glue.c,
7344         * src/pic16/ralloc.h,
7345         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
7346         to fix conflict with pic port
7347
7348 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
7349
7350         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
7351         externs configuration variables,
7352         * src/pic16/ralloc.h,
7353         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
7354         prototype in header, commented out some debug messages
7355
7356 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
7357
7358         * src/pic16/glue.c,
7359         * src/pic16/main.c,
7360         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
7361         for gpasm COFF object generation. Thanks to D. Hawkins for
7362         his patch info
7363
7364 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7365
7366         * src/ds390/main.c,
7367         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
7368         Brock for spotting this)
7369         * src/ds390/gen.c (genEndFunction),
7370         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
7371         interrupt handler and critical. Disable push/pop optimizations when
7372         peephole optimizations disabled.
7373
7374 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
7375
7376         Updated pic16 library sources and headers.
7377         * device/lib/pic16/pic18f*/ ,
7378         * device/include/pic16/*.h: modified to handle structured SFR
7379         definitions
7380
7381 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
7382
7383         * src/port.h (PORT structure): added hook initPaths, now each
7384         port can declare its own default search paths,
7385         which can been seen with the --print-search-dirs option,
7386         see pic16 port for example,
7387         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
7388         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
7389         * (doPrintSearchDirs): NEW, replaces in a central manner the
7390         printing of search dirs which was split in set*Paths functions,
7391         * (main): added call to port->initPaths and doPrintSearchDirs,
7392         * src/avr/main.c,
7393         * src/ds390/main.c,
7394         * src/hc08/main.c,
7395         * src/izt/i186.c,
7396         * src/izt/tlcs900h.c,
7397         * src/mcs51/main.c,
7398         * src/pic/main.c,
7399         * src/pic16/main.c: modified port structures to reflect addition of
7400         initPaths hook,
7401
7402         * src/pic16/device.c (regCompare): registers are finally sorted by name,
7403         * (pic16_dump_section): for registers in same address reserve memory once,
7404         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
7405         to no_banksel,
7406         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
7407         result is greater in size than right or left,
7408         * (pic16_genUMult8X8_8): there are some cases where the result can
7409         be 16 bits size, so handle these,
7410         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
7411         * (pic16_outBitC): modified to emit pcodes,
7412         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
7413         or not,
7414         * (genDivOneByte): implemented algorithm to divide 8-bits,
7415         * (genCmp): uncommented goto, but issues still exist,
7416         * (genAnd): fixed a bug with variables >8bits,
7417         * (genPackBits): optimization added that uses BCF/BSF to change a
7418         single bit,
7419         * (genAssign): fixed bug when assigning floating point literals,
7420         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
7421         __sdcc_gsinit_startup label,
7422         * src/pic16/main.c (_pic16_init): removed search directory
7423         initialisations,
7424         * (_pic16_initPaths): NEW, used to initialise search directories,
7425         * (_hasNativeMulFor): support functions for all except char/int
7426         multiplication, and char division,
7427         * (PIC16_port struct): modified entry for native mul support,
7428         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
7429         no_banksel option,
7430         * (buildCallTree): call to register_usage is ifdef'ed out,
7431
7432 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7433
7434         * device/include/string.h: applied Stas Sergeev's patch to make this
7435         header file compatible with the preprocessor -Wundef option
7436         * src/SDCCmain.c (main): abort compilation if preprocessor reports
7437         failure (fixes bug #941458)
7438
7439 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7440
7441         * src/SDCCopt.c (killDeadCode): fixed bug #907733
7442         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
7443         that the variable, not the function, should be static
7444         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
7445         to be consistent with non-literal case
7446
7447 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7448
7449         * src/SDCCast.c (isConformingBody): fixed bug #949967
7450         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
7451         convilong): fixed bug #952086
7452
7453 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7454
7455         * src/SDCCmem.c (allocVariables): fixed bug #955321
7456
7457 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7458
7459         * src/hc08/main.c (_hc08_genAssemblerEnd),
7460         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
7461         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
7462         completely eliminated the use of a temporary file
7463         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
7464         when more than one file linked
7465         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
7466
7467 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7468
7469         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
7470         which fixes bug #543481
7471         * support/regression/tests/bug-751703.c: fixed comments left from a
7472         cut and paste error
7473         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
7474         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
7475         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
7476         scopes
7477         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
7478         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
7479         are now changed to underscores in moduleName
7480
7481 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7482
7483         * as/mcs51/lkmem.c: better fix for bug #954173
7484
7485 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
7486         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7487
7488         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
7489         * device/include/c8051f000.h,
7490         * device/include/c8051f120.h,
7491         * device/include/c8051f300.h,
7492         * device/include/c8051f310.h,
7493         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
7494         PWM16) and detab'ed
7495
7496 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7497
7498         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
7499         and mailing lists, doc'ed --no-peep-comments, removed reference
7500         to knoppix (newest version has no LyX/LaTeX), other minor changes
7501         * src/SDCCglue.c (glue): save 2 bytes stack space with
7502         option --main-return. The ljmp could probably be avoided too
7503
7504 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7505
7506         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
7507
7508 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7509
7510         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
7511         * src/SDCCopt.c (isLocalWithoutDef),
7512         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
7513         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
7514         (credit to Maarten Brock for patch #949363, on which this is based)
7515         * support/regression/tests/bug-751703.c: some test cases of extern used
7516         within inner scopes.
7517
7518 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7519
7520         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
7521         SPEC_STRUCT
7522         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
7523         struct definitions
7524         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
7525         dwWriteLabel): fix to create valid debugger symbols even when
7526         the module name has non-alphanumeric symbols in it
7527         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
7528         when a variable's allocation has been optimized away
7529
7530
7531 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7532
7533         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
7534         * src/hc08/main.c,
7535         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
7536         * src/mcs51/main.c,
7537         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
7538         * src/ds390/main.c,
7539         * src/z80/gen.c (z80_emitDebuggerSymbol),
7540         * src/z80/main.c,
7541         * src/pic/gen.c (pic14_emitDebuggerSymbol),
7542         * src/pic/main.c,
7543         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
7544         * src/pic16/main.c,
7545         * src/avr/gen.c (avr_emitDebuggerSymbol),
7546         * src/avr/main.c,
7547         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
7548         * src/xa51/main.c,
7549         * src/SDCCdebug.c (emitDebuggerSymbol),
7550         * src/SDCCdebug.h,
7551         * src/port.h: added a debugger struct to the port struct. Added a
7552         callback for defining debugger symbols
7553
7554         * src/SDCCast.c (createLabel),
7555         * src/SDCC.y (labeled_statement): mark all compiler generated labels
7556         with isitmp = 1
7557         * src/SDCCicode.h,
7558         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
7559         iCode back to the ast for the function
7560
7561         * src/hc08/ralloc.c (hc08_assignRegisters),
7562         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
7563         unneeded fields from the regs struct.
7564         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
7565         pushReg() & pullReg() functions instead of emitcode()
7566
7567         * src/hc08/gen.c (genLabel, genhc08Code),
7568         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
7569
7570         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
7571         debugger hooks
7572
7573         * src/hc08/gen.c (genEndFunction, genhc08Code),
7574         * src/hc08/gen.h,
7575         * src/mcs51/gen.c (genEndFunction, gen51Code),
7576         * src/mcs51/gen.h,
7577         * src/ds390/gen.c (genEndFunction, gen390Code),
7578         * src/ds390/gen.h,
7579         * src/z80/gen.c (genEndFunction, genZ80Code),
7580         * src/z80/gen.h,
7581         * src/z80/z80.h,
7582         * src/pic/gen.c (genEndFunction, genpic14Code),
7583         * src/pic/gen.h,
7584         * src/pic16/gen.c (genEndFunction, genpic16Code),
7585         * src/pic16/gen.h,
7586         * src/avr/gen.c (genEndFunction, genAVRCode),
7587         * src/avr/gen.h,
7588         * src/xa51/gen.c (genEndFunction, genXA51Code),
7589         * src/xa51/gen.h,
7590         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
7591         specific code to cdbFile.c and out of the backend code generators
7592
7593         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
7594         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
7595         starting address is now 0
7596
7597         * as/hc08/asm.h,
7598         * as/hc08/m08pst.c,
7599         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
7600         assembler directive for DWARF support
7601         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
7602
7603         * src/src.dsp,
7604         * src/Makefile.in,
7605         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
7606
7607 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7608
7609         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
7610         and inappropriate peephole optimization in jump tables
7611
7612 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7613
7614         * as/hc08/m08pst.c,
7615         * src/SDCCglue.c: sdccopt works for the hc08 port now
7616
7617 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
7618
7619         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
7620
7621 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7622
7623         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
7624
7625 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7626
7627         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
7628         rules
7629         * src/SDCCmain.c,
7630         * src/SDCCglobl.h,
7631         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
7632         comments from the peephole optimizer replacement rules
7633         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
7634         symbols
7635         * src/SDCCcse.c (updateSpillLocation),
7636         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
7637         equivalents
7638         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
7639         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
7640         objects far pointers
7641
7642 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7643
7644         * src/SDCCsymt.h: a missing part of my last change
7645         * src/pic/ralloc.c (regTypeNum),
7646         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
7647
7648 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7649
7650         * src/SDCCicode.h,
7651         * src/SDCCicode.c (aggrToPtrDclType),
7652         * src/SDCCptropt.h,
7653         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
7654         ptrPseudoSymConvert),
7655         * src/pic/ralloc.c (regTypeNum),
7656         * src/pic16/ralloc.c (regTypeNum),
7657         * src/hc08/ralloc.c (regTypeNum),
7658         * src/ds390/ralloc.c (regTypeNum),
7659         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
7660         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
7661
7662 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7663
7664         * link/z80/lkmain.c (afile),
7665         * as/hc08/lkmain.c (afile),
7666         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
7667         prevent a pointer problem when a filename has no directory and
7668         no extension specified.
7669
7670 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7671
7672         * link/z80/lkmain.c (afile): allow periods in directory names
7673         * link/z80/lkmain.c (afile),
7674         * as/mcs51/lkmain.c (afile),
7675         * as/hc08/lkmain.c (afile): allow linker script file to have an
7676         extension other than ".lnk"
7677         * link/z80/lklex.c (getfid),
7678         * link/z80/lkmain.c (parse),
7679         * as/mcs51/lklex.c (getfid),
7680         * as/mcs51/lkmain.c (parse),
7681         * as/hc08/lklex.c (getfid),
7682         * as/hc08/lkmain.c (parse): Support comments in the linker script
7683         file on lines by themselves and after filenames
7684
7685 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7686
7687         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
7688
7689 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7690
7691         * src/z80/peeph-z80.def: removed some peephole rules that don't
7692         work with multibyte arithmetic (fixed bug #937126)
7693         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
7694         to registers and not global variables
7695         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
7696         geniCodePreInc, geniCodePostDec, geniCodePreDec,
7697         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
7698         checking for assignments not internally generated (fixed bug #931895)
7699         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
7700         structure member (fixed bug #930072)
7701
7702 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7703
7704         * src/SDCCmain.c (linkEdit),
7705         * src/hc08/main.c (_hc08_parseOptions),
7706         * as/hc08/Makefile.in,
7707         * as/hc08/aslink.h,
7708         * as/hc08/asm.h,
7709         * as/hc08/m08pst.c,
7710         * as/hc08/lkrloc.c (relr, rele),
7711         * as/hc08/lkarea.c (lnkarea)
7712         * as/hc08/lkmain.c (afile, parse),
7713         * as/hc08/lkelf.c: support for ELF output
7714         * as/hc08/lks19.c (s19),
7715         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
7716
7717 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7718
7719         * as/mcs51/lkihx.c: Fixed bug #899105.
7720
7721 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7722
7723         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
7724         .dsp files from Unix to DOS.
7725
7726 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7727
7728         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
7729         function pointers; we have been compliant for several months now.
7730         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
7731         change that was accidently commented out
7732         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
7733         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
7734         bug #922319
7735
7736 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7737
7738         * src/hc08/gen.c: output of all of the internal debugging information
7739         is now controlled by the D() macro; it is disabled by default
7740
7741 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7742
7743         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
7744         harder to keep the same registers during a CAST iCode
7745         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
7746         long via int can be done in a single cast, if the signedness is
7747         correct.
7748         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
7749         putchar() in tinibios.c in ds390's library
7750
7751 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
7752
7753         * src/SDCCast.c (decorateType): fixed bug #898889,
7754         cast result of a literal complement too
7755         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
7756         fixed check for bitfields
7757
7758 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
7759
7760         * src/SDCCicode.c (geniCodeLogic): made it static,
7761         (geniCodeLogicAndOr): added in order to fix bug #905492,
7762         (ast2iCode): fixed bug #905492
7763         * support/regression/tests/bug-905492.c: added
7764         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
7765         (processParms): fixed bug #927659: don't copy parms, this will clear
7766         decorated flag
7767         * support/regression/tests/bug-927659.c: added
7768
7769 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
7770
7771         * src/SDCCast.c (addCast): don't cast float to char
7772         * device/lib/libsdcc.lib: added _memmove
7773
7774 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
7775
7776         * device/lib/large/Makefile: fixed parallel execution by
7777         replacing `make` by `$(MAKE)`
7778
7779 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7780
7781         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
7782         offsets (fixes bug #923936)
7783
7784 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
7785
7786         * device/lib/small/Makefile: fixed parallel execution by
7787         replacing `make` by `$(MAKE)`
7788
7789 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
7790
7791         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
7792
7793 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
7794
7795         * src/pic/gen.c (genCpl): multi-byte complements were not working.
7796         * src/regression/Makefile: Regression test was not running.
7797
7798 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
7799
7800         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
7801         complement if possible
7802         * src/SDCCval.c (valComplement),
7803         * src/SDCCicode.c (operandOperation): fixed complement of literal
7804         * support/regression/tests/onebyte.c (testComplement): added
7805
7806 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
7807
7808         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
7809         return an optimized tree; actually replace actParm with the new tree
7810         * src/SDCCast.h: added some parantheses to remove side effects
7811         * support/regression/tests/bug-920866.c
7812
7813 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
7814         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
7815         Bit operands were not being handled properly in the pic14 port.
7816         (now src/regression/add.c passes again).
7817
7818 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7819
7820         * src/SDCC.y (labeled_statement): case and default no longer require
7821         a following statement (RFE #893037)
7822
7823 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7824
7825         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
7826         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
7827         disabled (fixes bug #916294)
7828         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
7829         "mov a,acc"; patch provided by Lenny Story
7830         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
7831
7832 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7833
7834         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
7835         functions
7836         * src/ds390/gen.c (genFunction, genEndFunction),
7837         * src/ds390/ralloc.c (ds390_assignRegisters),
7838         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
7839         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
7840         pushed if there are parameters passed on the stack. Also, a cleaner
7841         way to decide if r0/r1 should be pushed/popped. (Together they fix
7842         bug #918693)
7843
7844 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7845
7846         * doc/sdccman.lyx,
7847         * device/lib/mcs51/crtpagesfr.asm,
7848         * device/lib/mcs51/crtxinit.asm,
7849         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
7850         to avoid confusion with Si Lab's SFRPAGE register.
7851
7852 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7853
7854         * src/SDCCglue.c (emitMaps): allow public sfr variables
7855         * src/SDCCglue.c (initialComments): include compiler build date
7856         with compiler version and put the timestamp of the generated
7857         assembly file on a serperate line to be less confusing.
7858         * src/port.h: added genInitStartup hook
7859         * src/avr/main.c,
7860         * src/ds390/main.c,
7861         * src/hc08/main.c,
7862         * src/pic/main.c,
7863         * src/pic16/main.c,
7864         * src/xa51/main.c,
7865         * src/z80/main.c: genInitStartup initialize as NULL (default to
7866         historical behaviour)
7867         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
7868         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
7869         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
7870         library instead of hard coding it into the compiler.
7871         * support/regression/ports/mcs51-stack-auto/spec.mk,
7872         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
7873         * device/lib/mcs51/Makefile,
7874         * device/lib/small/Makefile,
7875         * device/lib/large/Makefile,
7876         * device/lib/mcs51/crtpagesfr.asm,
7877         * device/lib/mcs51/crtstart.asm,
7878         * device/lib/mcs51/crtxclear.asm,
7879         * device/lib/mcs51/crtxinit.asm,
7880         * device/lib/mcs51/crtclear.asm,
7881         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
7882         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
7883         and into user configurable files.
7884         * device/lib/clean.mk: clean mcs51 directory too
7885         * support/regression/tests/longlit.c: added static to T1 declaration
7886         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
7887         accesses in the initialization code
7888
7889 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7890
7891         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
7892         OSCTRIMVAL as noted in bug #916008
7893
7894 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7895
7896         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
7897         in loops with multiple exits (reported as incorrect registers
7898         used by Martin Helmling in Sdcc-user list)
7899
7900 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7901
7902         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
7903         made ds390 register extensions look less like error messages
7904
7905 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7906
7907         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
7908         reported by Adam Wozniak in Sdcc-user list
7909
7910 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
7911
7912         * src/SDCCast.c (decorateType): fixed with bug and promotion in
7913         arithmetic optimizations, added debug output
7914
7915 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
7916
7917         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
7918         * sdcc.spec: updated and split sdcc into 3 rpms
7919         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
7920         needed for literals of LEFT_OP and '+'
7921         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
7922         introduced RESULT_TYPE_NOPROM
7923         (geniCodeMultiply): fixed logic for decision if mul is optimized to
7924         left shift
7925         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
7926         limited promotion to int only for '*'
7927         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
7928
7929 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
7930
7931         * src/pic16/gen.c (genSkip),
7932         (genc16bit2lit), (gencjneshort): commented out
7933         (is_LitOp): new helper function, checks operand type
7934         (genCmpEq): rewritten
7935
7936 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
7937
7938         * support/regression/tests/bug-908454.c: added
7939
7940 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
7941
7942         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
7943         * src/SDCCicode.c (usualBinaryConversions): op needs int type
7944         (geniCodeCast): cosmetic, don't preserve bit storage class
7945         (geniCodeLeftShift): added promotion
7946         (geniCodeLogic): fixed regression
7947         * src/SDCCsymt.c (computeTypeOr): accept bits too
7948         (compareType): 2nd part of fix for bug #908454, needed for bitfields
7949
7950 2004-03-07  Borut Razem <borut.razem AT siol.net>
7951
7952         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
7953
7954 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
7955
7956         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
7957         version of pic16_genPackRegisters which does not check if ic is a
7958         CAST operator,
7959         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
7960         function cause string1.c regression test fails
7961
7962 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
7963
7964         * sim/ucsim/configure.in,
7965         * sim/ucsim/configure,
7966         * sim/ucsim/doc/Makefile.in: use docdir
7967         * src/SDCC.y: fixed sbit atrributes
7968         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
7969         * src/SDCCast.c (decorateType): |^& need special promotion handling
7970         * src/SDCCast.h,
7971         * src/SDCCsymt.h: moved definition of RESULT_TYPE
7972         * src/SDCCsymt.h (computeType),
7973         * src/SDCCicode.c: computeType() needs op
7974         * src/SDCCsymt.c (checkTypeSanity),
7975         * doc/sddman.lyx: "plain" bitfields are unsigned
7976         * src/SDCCsymt.c (computeTypeOr): added
7977         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
7978         |^& ops
7979         * src/SDCCval.c (val*): computeType() needs op
7980         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
7981         * support/regression/tests/onebyte.c: added tests for |^&
7982
7983 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
7984
7985         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
7986         for writing icode into asm output.
7987
7988 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
7989
7990         * src/pic16/device.c: added some debug lines enabled
7991         with macro DEBUG_CHECK,
7992         * src/pic16/genarith.c: more debug in genPlus,
7993         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
7994         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
7995         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
7996         * (aopForSym): onStack symbols are re-placed in data memspace,
7997         and onStack flag is cleared,
7998         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
7999         copy temporary pcodeop,
8000         * (genPcall): added warning for not updating PCLATU,
8001         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
8002         always true for pic16 port,
8003         * (genMultOneWord): NEW, supports integer multiplication,
8004         * (genMult): modified to call genMultOneWord,
8005         * (ifxForOp): added warning when return NULL,
8006         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
8007         flag is set before call to operandFromSymbol for implicit
8008         added structures,
8009         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
8010         options.intlong_rent are set by default,
8011         * (_hasNativeMulFor): modified to allow port generation of integer
8012         multiplication,
8013         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
8014         set regtype to REG_SFR for all registers, restricting seting the
8015         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
8016
8017 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8018
8019         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
8020         more than 500 times in the regression tests
8021
8022 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8023
8024         * support/Util/SDCCerr.h,
8025         * support/Util/SDCCerr.c,
8026         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
8027         enumerator_list),
8028         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
8029         for symbol conflicts.
8030         * support/valdiags/tests/enum.c,
8031         * support/valdiags/tests/tentdecl.c,
8032         * support/valdiags/tests/struct.c: expect possible error messages
8033         referring to original symbol definitions.
8034         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
8035         * src/SDCCsymt.h,
8036         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
8037
8038 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
8039
8040         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
8041
8042 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
8043
8044         * src/pic16/ralloc.c (newReg): fixed bug #908929
8045
8046 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8047
8048         * src/ds390/gen.c: added missing #include "main.h"
8049
8050 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
8051
8052         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
8053         checking if symbol is already in set,
8054         * src/pic16/device.h: prototype for checkAddSym,
8055         * src/pic16/gen.c: (_G): added entry interruptvector,
8056         * (assignResultValue): removed some commented out lines,
8057         * (genFunction): check for ISR via sym->type, absolute section for
8058         interrupt code is created via a new pBlock, the goto instruction is
8059         placed now correctly at the interrupt vector position, changed all
8060         references from ivec to _G.interruptvector,
8061         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
8062         is the interrupt is a high priority one, same for return from ISR,
8063         * src/pic16/glue.c: changed all calls of addSetHead for publics and
8064         externs to calls of checkAddSym,
8065         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
8066         pic16_pcode_verbose flag is set,
8067         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
8068         * src/pic16/pcoderegs.c: message about how many registers are saved
8069         will only be emitted if pic16_pcode_verbose flag is set,
8070
8071 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8072
8073         * src/ds390/ralloc.h,
8074         * src/ds390/ralloc.c (ds390_regWithIdx),
8075         * src/ds390/gen.c (emitcode),
8076         * src/ds390/main.h,
8077         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
8078         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
8079         ds390operandCompare, getRegsRead, getRegsWritten,
8080         initializeAsmLineNode): customized instruction size calculation for
8081         ds390, started basis for some register optimizations
8082         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
8083         corresponding assembly output
8084         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
8085         missing push/pop of r0/r1. Optimized push/pops
8086
8087 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8088
8089         * src/mcs51/main.c (instructionSize): fixed ACALL size
8090         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
8091
8092 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
8093
8094         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
8095         the sorting of rlist with NULL elements
8096         * (print_idataType, print_idata): NEW to create idata sections
8097         * src/pic16/device.h: idataSymSet new variable
8098         * src/pic16/gen.c (genFunction): fixed some bugs in string
8099         comparing, improved the absolute section creation for ISRs,
8100         added FSR0L/FSR0H in registers that are saved in an ISR,
8101         * (genInline): fixed the processing of inline snippets,
8102         now they undergo no process by the peephole optimizer
8103         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
8104         are placed in idataSymSet,
8105         * (pic16emitStaticSeg): extern symbols are added in externs,
8106         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
8107         switching when aboslute variables are placed in access bank memory
8108         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
8109         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
8110         commented out with #if,
8111         * (pic16_packRegisters): reintroduce the check for CAST because some
8112         symbols are not correctly handled,
8113         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
8114         pCodeInstruction instead of pCode,
8115         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
8116         pCodeAsmDir definition,
8117         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
8118         directive, then the argument directive is emitted without the leading
8119         tab, hack for inline labels which must be in the first column,
8120         * (compareLabel,pic16_findNextInstruction),
8121         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
8122         * (insertBankSwitch): modified for the new pCodeAsmDir,
8123
8124 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
8125         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
8126
8127         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
8128         instance,
8129         * (pushSide): commented out with #if,
8130         * (assignResultValue): fixed some typos in saving
8131         registers,
8132         * (genPcall): FIXED and sync'ed with genCall,
8133         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
8134         * (genNearPointerGet): fixed to handle some more cases,
8135         implementation scheme via table reads,
8136         * (genConstPointerGet): modified to access code memory correct,
8137         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
8138         and improved to handle some cases
8139         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
8140         instead of "RETLW" for init data
8141         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
8142         not IN_DIRSPACE, work around to reduce bank switching when aboslute
8143         variables are placed in access bank memory (<0x80 and >=0xf80),
8144         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
8145         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
8146         TBLWT_POSTDEC,TBLWT_PREINC
8147         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
8148         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
8149         directives
8150         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
8151         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
8152         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
8153         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
8154
8155 2004-02-29  Borut Razem <borut.razem AT siol.net>
8156
8157         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
8158         support/Util/findme.h, support/Util/system.h: enhance binary relative
8159         search for lib and include by using findProgramPath()
8160
8161 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8162
8163         * src/SDCCpeeph.h,
8164         * src/SDCCpeeph.c (pcDistance),
8165         * src/port.h,
8166         * src/mcs51/ralloc.h,
8167         * src/mcs51/ralloc.c (mcs51_regWithIdx),
8168         * src/mcs51/main.h,
8169         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
8170         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
8171         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
8172         size calculation port specific, started basis for some register
8173         optimizations
8174         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
8175         missing push/pop of r0/r1. Optimized push/pops
8176         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
8177         * device/lib/_modsint.c (_modsint),
8178         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
8179         and stack version so regression tests pass
8180
8181 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
8182
8183         * src/Makefile.in (dep): include SLIBOBJS in dependency check
8184         * src/SDCCast.c (decorateType): catch another small optimization
8185         with '?' operator
8186         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
8187         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
8188         modified to finally use computeType() all over SDCC,
8189         see Feature Request #877103
8190         * src/SDCCval.h: cosmetic
8191         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
8192         valCompare(); regression tested in muldiv.c
8193         * support/regression/tests/muldiv.c (testMod): mod sign follows
8194         dividend only
8195
8196 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
8197
8198         * src/SDCCast.c (decorateType): fixed bug #902362
8199         * doc/INSTALL.txt: fixed install instructions for win32
8200
8201 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
8202
8203         * device/include/Makefile.in (install): fixed by replacing spaces
8204         by tabs
8205         * doc/README.txt,
8206         * doc/INSTALL.txt: updated for release
8207         * doc/sdccman.lyx: added warning for --xstack being buggy
8208
8209 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
8210
8211         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
8212         to eliminate build warnings.
8213         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
8214
8215 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
8216            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
8217
8218         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
8219         removed -penable-stack, added comment for stack pragma, added
8220         warning for not initializing the stack/frame registers, removed
8221         comment at interrupts section
8222
8223         Stack is made permanent, there is no ability to disable stack usage.
8224         * src/pic16/device.h,
8225         * src/pic16/device.c: removed all references to USE_STACK macro,
8226         * src/pic16/device.c (pic16_dump_section): when no elements in
8227         rlist, free rlist before return,
8228         * (pic16_dump_int_registers): NEW, internal registers are a new set
8229         of general purpose registers reused by each function,
8230         * (checkAddReg): returns 1 if registers is added to set,
8231         * (pic16_groupRegistersInSection): when a registers is of type
8232         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
8233         * src/pic16/device.h: memRange and Assigned Memory are deleted,
8234         SRCASECMP macro is moved here from device.c
8235         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
8236         PO_PCLATU, PO_PRODL, PO_PRODH,
8237         * (pic16_pCodeOpType, genMinus,
8238         changed compares to "a" register, with AOP_ACC,
8239         * (pic16_genPlus): fixed some bugs and indented properly,
8240         * (pic16_addSign): changed size to size+offset in the MOVWF
8241         instruction,
8242         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
8243         multiply 8-bit operand by literal, result is 8-bit,
8244         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
8245         multiply 2 8-bit operand, result is 8-bit,
8246         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
8247         genUMult8X*_16,
8248         * src/pic16/gen.c: changed accUse to contain WREG only,
8249         * (pic16_emitcomment): renamed to pic16_emitpcomment,
8250         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
8251         true, do not use immediate addressing any more unless sym is a
8252         pointer in codespace,
8253         * (aopForRemat): do not use immediate addressing when symbol not in
8254         codespace and when symbol's address is requested,
8255         * (aopOp): for-loop in if(sym->accUse) is modified for the new
8256         accUse size (= 1),
8257         * (aopGet): added case for AOP_ACC and don't return "accumulator
8258         bug" but WREG instead,
8259         * (popGetTempReg): pushes contents of temporary register in stack,
8260         * (popReleaseTempReg): pops contents of temporary register from
8261         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
8262         * (pic16_popGet): separated case AOP_ACC to return register WREG
8263         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
8264         or PO_IMMEDIATE and initializes their instance/offset appropriately,
8265         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
8266         the use of immediate pointers to certain cases only.
8267
8268         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
8269         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
8270         * (assignResultValue, genCall, genRet): modified to use the new
8271         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
8272         genPcall is still broken,
8273         * (genFunction): added code to create 'A' type pBlocks when
8274         interrupt functions are generated, code not extensively tested yet,
8275         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
8276         * (genEndFunction): modified so ISRs pop stored registers from stack,
8277         * (genMultOneByte): cleanup,
8278         * (AccRsh): added flag andmask, to and result with appropriate mask,
8279         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
8280         * (genDataPointerGet): fixed and reenabled its use,
8281         * (genNearDataPointerGet): bugs fixed,
8282         * (genDataPointerSet): bugs fixed,
8283         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
8284         pic16_DumpSymbol, pic16_DumpOp,
8285         * src/pic16/genutils.h: function prototypes for the above functions,
8286         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
8287         pointers,
8288         * (pic16emitRegularMap): many many many improvements, but needs a
8289         major cleanup,
8290         * src/pic16/main.c: enable_stack in pic16_options is removed,
8291         * (_pic16_parseOptions): removed command line options -penable-stack,
8292         * (_process_pragma): emit stack symbol only when stack pragma is
8293         processed,
8294         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
8295         redirected to FSR0L/FSR0H pair,
8296         * (pic16_get_op, pic16_get_op2): modifications and improvements,
8297         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
8298         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
8299         for immediates,
8300         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
8301         * (dumpPicOptype): NEW,
8302         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
8303         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
8304         with movff instruction,
8305         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
8306         added pic16_int_regs, some packRegsFor* functions are commented out,
8307         because produce errors,
8308         * src/pic16/NOTES: minor modifications
8309
8310 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8311
8312         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
8313         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
8314         --pack-iram.
8315         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
8316         * as/mcs51/lkaomf51.c: fixed bug #895763
8317
8318 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
8319
8320         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
8321
8322 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8323
8324         * doc/sdccman.lyx: added details about the HC08 storage classes and
8325         interrupts, fixed the register usage info for z80 & gbz80
8326
8327 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
8328
8329         * doc/sdccman.lyx: added more pic16 port documentation
8330         * device/include/pic16/: added header pic18fregs.h
8331
8332 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
8333
8334         * doc/sdccman.lyx: added Vangelis' contribution
8335
8336 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8337
8338         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
8339         extend to the next CALL or PCALL, not just to the next CALL.
8340
8341 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
8342
8343         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
8344
8345 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8346
8347         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
8348         bug #895752 and a better fix for bug #716790
8349
8350 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8351
8352         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
8353
8354 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8355
8356         * doc/sdccman.lyx: minor changes, minor changed
8357
8358 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
8359
8360         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
8361         which can't handle SDCC_NEWONEBYTEOPS,
8362         (geniCodeMultiply): removed conversion from mult to shift for pic14
8363         and pic16
8364
8365 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8366
8367         * src/hc08/gen.h,
8368         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
8369         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
8370         thus fixing bug #895406
8371
8372 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
8373
8374         * device/lib/_modsint.c,
8375         * device/lib/_modslong.c: sign follows divisor only
8376         * src/hc08/gen.c (genMultOneByte): if result size is 1,
8377         signs or signedness can be ignored
8378         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
8379         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
8380         added optimization for IFX,
8381         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
8382         arguments;
8383         reenabled optimization for IFX, which was removed on 2004-01-11
8384         * src/SDCCast.h: added return type IFX
8385         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
8386         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
8387         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
8388         SDCC_OLDONEBYTEOPS selects the old behaviour
8389         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
8390         changed again and commented promotion rule
8391         * src/SDCCval.c (valDiv): promotion no longer necessary
8392         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
8393         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
8394         rewritten
8395         * support/regression/tests/onebyte.c: added
8396
8397 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
8398
8399         * gen.c (genInline): reverted to old code for assemnling inline
8400         code because of bug reported James Chadd
8401
8402 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
8403
8404         * ralloc.h: missing declarations from previous patch,
8405         seems that patch for ralloc.h was never applied, fixed
8406
8407 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
8408            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
8409
8410         * pcode.c,
8411         * pcode.h,
8412         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
8413         indirect addressing. Marked FSR0 as deprecated
8414         * gen.c (pointerCode): commented out, not needed now
8415         (pic16_popGet2p): new MOVFF helper function
8416         (genGenPointerGet),
8417         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
8418         (shiftRLong): removed duplicate debugging info
8419
8420 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8421
8422         * src/ds390/gen.c (genNearPointerGet),
8423         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
8424         optimization with bits, but not bitfields.
8425         * src/ds390/ralloc.c (packRegisters),
8426         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
8427
8428 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
8429
8430         * src/SDCCcse.c (algebraicOpts): copy operands before modification
8431
8432 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8433
8434         * src/SDCCsymt.h,
8435         * src/SDCCicode.c (operandFromSymbol),
8436         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
8437         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
8438         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
8439         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
8440         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
8441         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
8442         bug #892038
8443         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
8444         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
8445         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
8446         * src/SDCCsymt.c (newSymbol),
8447         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
8448         enumerator_list),
8449         * src/SDCCval.h,
8450         * src/SDCCval.c (newiList): fixed bug #885705
8451
8452 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8453
8454         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
8455         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
8456
8457 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8458
8459         * device/include/c8051f120.h,
8460         * device/include/c8051f300.h,
8461         * device/include/c8051f310.h: added/updated header files for Silicon
8462         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
8463         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
8464         in new section Submitting patches
8465
8466 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8467
8468         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
8469         genFarPointerGet, genCodePointerGet, genGenPointerGet,
8470         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
8471         genGenPointerSet),
8472         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
8473         genFarPointerGet, genCodePointerGet, genGenPointerGet,
8474         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
8475         genGenPointerSet),
8476         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
8477         genFarPointerGet, genCodePointerGet, genGenPointerGet,
8478         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
8479         genGenPointerSet),
8480         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
8481         genFarPointerGet, genCodePointerGet, genGenPointerGet,
8482         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
8483         genGenPointerSet): fixed bug #892400
8484         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
8485         to eliminate build warnings.
8486         * src/SDCCast.c (processParms),
8487         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
8488         fixed bug 751859
8489         * support/valdiag/valdiag.py: added GCC to the list of defines active
8490         when compiling with gcc
8491
8492 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8493
8494         * support/Util/SDCCerr.h,
8495         * support/Util/SDCCerr.c,
8496         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
8497         with an incomplete type (fixed bug #883734)
8498         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
8499
8500 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8501
8502         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
8503
8504 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8505
8506         * src/SDCCast.c (decorateType),
8507         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
8508         function pointer implementation
8509         * support/regression/tests/funptrs.c: added tests to verify both forms
8510         of function pointers work correctly. Added tests to verify parameters
8511         are passed in the correct order.
8512
8513 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
8514
8515         * device.c (regCompare): registers are sorted by ascending
8516         address and increasing size,
8517         * main.c (_pic16_finaliseOptions): removed the declaration
8518         of compiler macro MCU. Now a macro of the format pic18fxxxx
8519         will be defined from the command line
8520
8521 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
8522             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
8523
8524         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
8525         PCOP_RLCF was overwritten!
8526         * gen.c (genSkip): commented out calls to pic16_emitcode,
8527         * (genCmpEQ): fixed "long" compares, only high word did get compared,
8528         * (genlshTwo),
8529         * (genRRC): added debugging info,
8530         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
8531         overwritten while shifting,
8532         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
8533         overwritten while shifting,
8534         * (AccLsh),
8535         * (AccRsh),
8536         * (shiftLLeftOrResult),
8537         * (shiftRLeftOrResult),
8538         * (shiftRLong),
8539         * (shiftLLong): Implemented with pic16_emitpcode
8540         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
8541         * (genLeftShift): Fixed bug, operand for shift by variable always
8542         was "and"ed with 0x0f,
8543         * (genLeftShiftLiteral),
8544         * (genrshTwo),
8545         * (genRightShiftLiteral): added debugging info,
8546         * (genrshFour): added comment,
8547         * (genRightShift): determined signedness from operand "left"
8548         instead of "result"
8549
8550 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8551
8552         * src/SDCCicode.c (geniCodeParms),
8553         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
8554         function pointers, fixed function pointer bugs #861242 and #861896
8555
8556 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8557
8558         * device/include/c8051f000.h,
8559         * device/include/c8051f120.h,
8560         * device/include/c8051f300.h: added header files for Silicon
8561         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
8562
8563 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
8564
8565         * src/SDCCast.c (processParams): added new type flow and restructured
8566         (gatherAutoInit): added new type flow
8567         (addCast): cosmetic changes
8568         (getLeftResultType): added new type flow for array indices, patch
8569         provided by Stas, see FR #877103
8570         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
8571         array index patch by Stas
8572         * src/SDCCast.h: added prototype getResultTypeFromType()
8573         * src/SDCCval.h,
8574         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
8575         * src/pic/glue.c (pic14emitStaticSeg),
8576         * src/pic16/glue.c (pic16emitStaticSeg),
8577         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
8578         for initialization of symbols
8579         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
8580         * support/Util/SDCCerr.h:
8581         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
8582         * .version: bumped version number to 2.3.8
8583         * device/include/Makefile.in (install),
8584         * doc/Makefile (install): changed to 'rm `find ...`' construct to
8585         avoid warnings
8586
8587 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
8588
8589         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
8590         Slade Rich fixed an optimization bug
8591         * src/pic/pcodepeep.c,
8592         * src/pic/pcoderegs.c
8593         * doc/Makefile (install): added test for directory
8594
8595 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8596
8597         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
8598         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
8599         * src/pic/ralloc.c (getRegPtr, getRegGpr),
8600         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
8601         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
8602         * as/mcs51/asexpr.c (term),
8603         * as/hc08/asexpr.c (term): fixed bug #887146
8604
8605 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8606
8607         * src/z80/gen.c (genMult): handle single byte result product
8608         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
8609         DUMMY_READ_VOLATILE (fixed bug #886367)
8610
8611 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
8612
8613         * support/regression/tests/libmullong.c: fixed logic, on little endian
8614         hosts we ended without a mullong_wrapper()
8615
8616 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8617
8618         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
8619         virus/worm forged address usage.
8620
8621 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
8622
8623         Fixed promotion, it should be done on AST level:
8624         * src/SDCCast.c (addCast): added promotion to int
8625         (decorateType): updated call to upCast()
8626         * src/SDCCicode.c (geniCodeLeftShift): removed call to
8627         usualUnaryConversions()
8628
8629 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
8630
8631         * support/regression/tests/literalop.c (mulWrapper): Added a
8632         wrapper to remove integer overflow warnings.
8633
8634         * support/regression/tests/float_trans.c: Made work on host.
8635
8636         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
8637         location of sz80.
8638
8639         * support/regression/generate-cases.py (main): Changed from inline
8640         to a main method.
8641
8642         * doc/Makefile (install): Changed to depth first to get rid of
8643         missing directory install warning.
8644
8645         * as/Makefile (install-doc): Made work on Mac.
8646
8647 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
8648
8649         * src/SDCCast.c: added an additional type flow in decorateType() of
8650         opposite direction, see feature request #860006; it's enabled at runtime
8651         by setting the environment variable SDCC_NEWTYPEFLOW
8652         * src/SDCCast.h: changed prototype of decorateType()
8653         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
8654         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
8655         'char' to 'int' can be omitted, if both operands are 'unsigned char';
8656         see feature request #877103
8657         * src/SDCCval.c: updated call of decorateType()
8658         (valBitwise): fixed bug #882876
8659         (valMinus): added promotion
8660         (valLogicAndOr): result is unsigned
8661         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
8662         * src/SDCCsymt.c (computeType),
8663         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
8664         must not cause an unsigned operation
8665         * src/pic/glue (pic14emitRegularMap),
8666         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
8667
8668 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
8669
8670         * src/pic/pcode.c (PCodeID): commented out left over debug code
8671
8672 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
8673
8674         * support/valdiag/tests/overflow.c: added shift tests
8675         * src/pic/device.c,
8676         * src/pic/gen.c,
8677         * src/pic/gen.h,
8678         * src/pic/glue.c,
8679         * src/pic/main.c,
8680         * src/pic/pcode.c,
8681         * src/pic/pcode.h,
8682         * src/pic/pcodepeep.c,
8683         * src/pic/pcoderegs.c,
8684         * src/pic/ralloc.c,
8685         * src/pic/ralloc.h: applied patch from Slade Rich;
8686         added support for multiple code pages and multiple RAM banks on the
8687         PIC 14 port. The ASM files now no longer simply assume all the
8688         code / RAM are in the same page / bank. This means the linker can
8689         safely allocate code/RAM of separate ASM files to different pages/banks.
8690         * doc/sdccman.lyx: added Slade's tips
8691         * src/mcs51/peeph.def: fixed bug #880768
8692
8693 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8694
8695         * src/hc08/ralloc.c (rematStr): fixed bug #879282
8696         * src/SDCCast.c (decorateType): fixed bug #880197
8697
8698 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
8699
8700         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
8701         getopt.h.
8702
8703         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
8704         strtof is not part of C89 and isn't included with Mac OS X.
8705
8706 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8707
8708         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
8709         shiftL2Left2Result): fixed bug #879326
8710         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
8711         (genMultOneByte): fixed bug in signed vs unsigned multiplication
8712         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
8713         address fetch for clr instruction
8714         * device/lib/hc08/_mulint.c: created optimized assembly version
8715         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
8716
8717 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
8718
8719         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
8720         proposed in FR #877103
8721
8722 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
8723
8724         * src/SDCCval.c (cheapestVal): added missing checks
8725         * src/SDCCicode.c (usualBinaryConversions): fixed condition
8726         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
8727
8728 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
8729
8730         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
8731         equal operands
8732
8733 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
8734
8735         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
8736         loaded with the linker search paths (-L arguments) and the libraries
8737         to be linked with the current source (-l arguments). Changes
8738         currently will affect only the pic16 port.
8739         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
8740         include path the port specific paths and port specific libraries,
8741         * gplink command now contains the $3 argument,
8742         * src/pic16/device.h,
8743         * src/pic16/device.c,: structure PIC_device is made public and
8744         renamed to PIC16_device, the same for variable Pics which is renamed
8745         to Pics16. Updated all references to them.
8746         * src/pic16/glue.c (pic16glue): corrected bug with code
8747         initialization which bypassed the variable initializations block.
8748
8749         * device/lib/pic16/Makefile.rules: removed --penable-stack from
8750         COMPILE_FLAGS and added the --nostdinc option
8751
8752 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8753
8754         * device/include/mc68hc908jb8.h: Register defs for another member
8755         of the hc08 family. Contributed by Bjorn Bringert - thanks!
8756
8757 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
8758
8759         Documenting changes from previous commits.
8760         * configure.in (version 1.56),
8761         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
8762         when generating output files to configure the pic16 library,
8763         but now I've commented it out, since gputils aren't installed in the
8764         SF compile farm, so library won't compile
8765
8766         * device/lib/Makefile.in (version 1.56): initially I've added in
8767         target 'all' the prerequestive 'model-pic16' so it compiled the
8768         pic16 library, but now I've commented it out for the same reasons
8769         above,
8770         * added targets 'model-pic16' and 'objects-pic16' to compile the
8771         library
8772         * added target 'port-specific-objects-pic16' to handle the
8773         generated libraries and copy them into the build/ directory
8774         * added target 'clean-intermediate-pic16' to clean intermediate
8775         files into pic16 directory
8776         * in target 'installdirs' added line to create directory pic16 in
8777         the installation path
8778
8779         * device/include/Makefile.in (version 1.11): in target 'install'
8780         added lines to copy all header files to installation path,
8781         * in target 'installdirs' added line create directory for pic16
8782         headers in the installation path
8783
8784 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
8785
8786         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
8787          a function call
8788
8789 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
8790
8791         * configure,
8792         * device/lib/configure.in,
8793         * device/lib/configure: fixed for autoconf 2.57
8794
8795 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8796
8797         * src/z80/main.c (_parseOptions): fixed the portmode= command line
8798         option so that it actually works. Made it specific to the z80, since
8799         the gbz80 doesn't have these kinds of I/O ports.
8800
8801 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8802
8803         * device/include/z180.h,
8804         * device/lib/_memcpy.c,
8805         * device/lib/_memmove.c,
8806         * device/lib/_mulint.c,
8807         * device/lib/ser_ir.c,
8808         * device/lib/ser_ir_cts_rts.c,
8809         * device/lib/_strcmp.c,
8810         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
8811         * src/z80/main.c (_process_pragma): add support for pragmas bank and
8812         portmode; added deprecation warning for bank= and protmode= forms.
8813         Also, guard against buffer overflow.
8814         * src/z80/gen.c (aopGet): generate better code for sfr banked read
8815
8816 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8817
8818         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
8819         changed interrupt vector table generation to only emit declared vectors.
8820         * device/include/Makefile.in: added missing backslash
8821         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
8822
8823 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
8824
8825         Mainly changes to support compilation of the device libraries
8826         * src/pic16/device.c: stack is allocated via symbol and not
8827         via literal number. The symbol is placed in the corresponding
8828         position of the data ram
8829         * (pic16_dump_section): relocatable and absolute uninitialized
8830         data are now emitted in sorted order to reduce section naming,
8831         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
8832         weren't marked as being in the access bank,
8833
8834 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
8835
8836         Added portion of GNU PIC Library under the directory
8837         device/include/pic16 and device/lib/pic16. These files
8838         contain the declarations of SFRs for the PIC18Fxx2 devices.
8839         The directory is initialized via configure from toplevel.
8840
8841 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
8842
8843         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
8844         the spilllocations to be compared correctly
8845
8846 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
8847
8848         * src/SDCCast.c (decorateType): fixed bug introduced today
8849
8850 2004-01-12  Borut Razem <borut.razem AT siol.net>
8851
8852         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
8853         doc/sdccman.lyx: upper case pragmas are deprecated
8854
8855 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
8856
8857         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
8858         in simpler and even better code
8859
8860 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
8861
8862         * src/SDCCicode.c (operandOperation): fixed bug #874819
8863         * src/SDCCast.c (decorateType): fixed
8864         char foo (unsigned long ul) { return ul > 0; }
8865
8866 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8867
8868         * doc/sdccman.lyx: Moved and added some sections, small changes
8869         all over. Telling LaTeX to be less strict with word spacing
8870         to better keep the right margin. Changed some notes about
8871         maintainance of the ports in section 3.2.1 - is it OK like this?
8872
8873 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
8874
8875         SDCC source changes:
8876         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
8877         convilong): modified to inform the pic16 port that builtin functions
8878         are external
8879
8880         PIC16 PORT specific changes:
8881         * src/pic16/device.c pic16_dump_equates() added,
8882         processor registers declared internally by the port are emitted in
8883         the translation as equates,
8884         * src/pic16/gen.c: inline code is passed unprocessed to the
8885         translation,
8886         * (pic16_popGetLit2): fnuction modified to take second operand as
8887         pCodeOp pointer and not as literal,
8888         * (popRegFromIdx): prefixed with pic16_,
8889         * (pic16_popCombine2): modified to receive already allocated pCode
8890         operands,
8891         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
8892         * (genFunction): initializes local stack frame and pushes on stack
8893         all the registers used by this function,
8894         * (genEndFunction): restores all registers from stack and restores
8895         stack frame,
8896         * src/pic16/glue.c (pic16emitRegularMap): various changes and
8897         improvements,
8898         * (pic16glue): changed the program startup sequence,
8899         * added new dbName code 'A' for functions placed in absolute section
8900         * src/pic16/main.c: added function attribute _naked,
8901         * added pragma 'code' to place a fnuction at an absolute address,
8902         * added command line arguments --debug-ralloc and --pcode-verbose,
8903         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
8904         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
8905         * (pic16_newpCodeOpLit2): modified to take the second operand as
8906         pCodeOp pointer,
8907         * (pic16_printpBlock): modified to emit each function in a separate
8908         section,
8909         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
8910         UPPER for immediate operands,
8911         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
8912         instruction,
8913         * src/pic16/peeph.def: all peepholes with movff are commented out,
8914         because there is a problem in the pcode peep optimizer,
8915         * src/pic16/ralloc.c: the register allocator can now reuse local
8916         function symbols for another function. This saves register usage.
8917         * src/pic16/ralloc.h: added flag isLocal in structure regs,
8918
8919         Added file src/pic16/NOTES with information about program writing on
8920         the current port version.
8921
8922 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8923
8924         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
8925         and peephole 252 (array access)
8926
8927 2004-01-09  Borut Razem <borut.razem AT siol.net>
8928
8929         * src/SDCCmain.c : fixed #872250: -l command line defined library
8930           files are scanned before standard library files
8931
8932 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8933
8934         * src/SDCCast.c (decorateType): fixed bug #874046
8935
8936 2004-01-09  Borut Razem <borut.razem AT siol.net>
8937
8938         * support/scripts/sdcc.nsi: remove previous installation
8939
8940 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8941
8942         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
8943         bytes for last interrupt vector (mcs51)
8944         * sdcc.spec: fixed typo
8945
8946 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8947
8948         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
8949         gen51Code): more efficient parameter receive for --model-large
8950         ("bug" #845294)
8951
8952 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8953
8954         * src/ds390/main.c,
8955         * src/z80/main.c: added missed needLinkerScript flags (more than
8956         one port structure defined in these file)
8957         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
8958         bug #795325
8959
8960 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
8961
8962         * src/SDCCmain.c: removed various references to DEFAULT_PORT
8963         * src/port.h: added flag needLinkerScript in port->linker
8964         structure to inform whether to create a .lnk file or not,
8965         * src/avr/main.c,
8966         * src/ds390/main.c,
8967         * src/hc08/main.c,
8968         * src/mcs51/main.c,
8969         * src/pic/main.c,
8970         * src/pic16/main.c,
8971         * src/xa51/main.c,
8972         * src/z80/main.c: changed appropriately to configure
8973         needLinkerScript flag
8974         * src/pic/gen.c,
8975         * src/pic16/gen.c (genAddrOf): fixed bug #863624
8976         * src/pic/glue.c: added variable udata_section_name to
8977         override default uninitialized data segment definition for
8978         devices only with SHAREBANK memory (reported from Erik Epetrich)
8979         * (pic14emitOverlay): modified to emit a commented overlay segment
8980         directive when no overlay data exist
8981         * (picglue): modified to emit uninitialized data segment
8982         according to udata_section_name
8983         * src/pic/main.c (_pic14_parseOptions): added command line
8984         options --udata-section-name=[name] to override default
8985         udata definition name
8986         * modified _linkCmd and _asmCmd to include compiler passed
8987         arguments via -W option
8988         * src/pic16/main.c: added $l in _asmCmd, changed extension for
8989         object file from '.rel' to '.o' in port->linker structure,
8990         changed size of fptr from 2 to 3 in port structure
8991
8992 2004-01-07  Borut Razem <borut.razem AT siol.net>
8993
8994         * support/scripts/sdcc.nsi: update PATH
8995         * support/scripts/sdcc.ico: craeted
8996
8997 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
8998
8999         * device/include/Makefile.in: fix install
9000         * doc/Makefile: fix install
9001
9002 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9003
9004         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
9005         in bug #860505
9006         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
9007         how the function variable allocation summary is displayed; also
9008         include information about variables allocated to the overlay
9009         segment
9010
9011 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9012
9013         * as/mcs51/lkmain.c: Help about -Y option
9014         * as/mcs51/lkarea.c: Fixed gcc warnings
9015
9016 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
9017
9018         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
9019         fixed warning
9020         * support/valdiag/tests/overflow.c: added
9021         * src/SDCCast.c (decorateType),
9022         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
9023         LEFT_OP (left shift)
9024
9025 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9026
9027         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
9028         (default behaviour).
9029
9030 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9031
9032         A python script to validate compiler diagnostic messages. It can be
9033         used to verify that sdcc complains about bad c source code and
9034         gives a good location of the error.
9035         * support/valdiag/Makefile,
9036         * support/valdiag/valdiag.py,
9037         * support/valdiag/tests/*
9038
9039 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9040
9041         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
9042         * src/SDCCsymt.c (newEnumType),
9043         * src/SDCCsymt.h
9044         * support/Util/SDCCerr.c,
9045         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
9046         enum related bugs.
9047         * support/regression/tests/enum.c: added test for enum values that
9048         require at least 2 bytes of storage.
9049
9050 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
9051
9052         * src/common.h: added ifndef/define/endif macros
9053         around the header file.
9054         Bug reported from Jesus Calvino-Fraga
9055
9056 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
9057
9058         * sdcc.spec: updated
9059         * device/include/Makefile.in: don't install CVS directories
9060         * device/lib/Makefile.in: added removal of CVS directories after install
9061         * doc/Makefile: fixed install, added local_icons
9062         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
9063         * src/mcs51/gen.c (genRightShift): fixed bug #870788
9064         * src/ds390/gen.c (genRightShift): fixed bug #870788
9065         * src/SDCCast.c (decorateType): fixed bug #870781
9066
9067 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
9068
9069         PIC16 port related changes:
9070         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
9071         added variable stackPos,
9072
9073         * gen.c: genCall, assignResultValue: added support for
9074         pushing/retrieving function parameters to/from stack,
9075         genFunction,genEndFunction: setup stack frame for the
9076         generated function,
9077         genAddrOf: will be changed according to bug 863624
9078
9079         * added files genutils.c and genutils.h which contain gen*
9080         debugged and optimised functions extracted from gen.c
9081
9082         * glue.c: added variable 'externs' which holds extern symbols,
9083         pic16emitRegularMap: is modified to properly handle relocatable
9084          symbols under the new scheme,
9085         pic16createInterruptVect: is modified
9086         pic16printPublics: is modified to emit 'global' assembler directives,
9087         added pic16_printExterns to print extern symbols,
9088         pic16glue: initializes stack/frame pointer in the beginning of
9089         the assembly output. Temporary hack, will be corrected later,
9090         because gplink yet does not support stack and SDCC does not
9091         yet support a type of crt0.o object to create the final binary.
9092
9093         * Removed many lines that contain 8051 legacy code.
9094         * The code is finally placed under a 'code' directive.
9095         * Added port specific options.
9096
9097         * _process_pragma: simplified since now we do not need *special*
9098         include file to define SFR registers. But a separate header
9099         will be needed. This will be developed later.
9100         * _pic16_parseOptions: added, parses port specific options:
9101         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
9102         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
9103         --preplace-udata-with=
9104
9105         * _pic16_setDefaultOptions: modified to initialize section names,
9106         but hack is temporarly out of order since it needs improvement.
9107         * _pic16_genAssemblerPreamble: configuration words are emitted by
9108         their address instead of their name. This part is incomplete and
9109         supports only the 18Fxx2 devices. Other devices will emit an error
9110         during assembly since they do not contain the same set of config
9111         registers
9112         * _pic16_genIVT: is modified,
9113
9114         * pcode.c: added definitions for some hardware registers that are needed
9115         for stack support
9116         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
9117         All PCI entries are updated. Now LFSR is supported.
9118         * Removed pic16_pciTRIS is mentioned by mdubuc in source
9119         * added pic16_newpCodeOpLit2 to support instructions with
9120         two literal arguments
9121         * pic16_pCode2str: corrected code that emits assembler instructions
9122         with two literal operands and those that have an access bit modifier
9123         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
9124         this fixes a bug which caused some labels to be lost, when an
9125         assembler directive was added, i.e. banksel,
9126         * pic16_FixRegisterBanking: improved logic that causes the insertion
9127         of bank switching,
9128         * InlineFunction: functions that are called once, are not any more
9129         inlined. This can be a port option in the future,
9130
9131         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
9132
9133         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
9134         hold the corresponding uninitialized symbols,
9135         * pic16_allocProcessorRegister: registers have explicit marked the
9136         accessBank field,
9137         * pic16_allocInternalRegister: registers are explicit marked as
9138         not used,
9139         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
9140         processing list, so bit registers were lost,
9141         *
9142
9143         * ralloc.h: added field 'accessBank' and original symbol operand
9144         in register definition,
9145         * removed the field isMapped from register definition,
9146
9147         ** Several functions have been removed from various sources:
9148         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
9149         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
9150         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
9151         pic16_assignRelocatableRegisters
9152
9153         ** others have been introduced:
9154         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
9155         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
9156
9157 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
9158
9159         * support/scripts/inc2h.pl: changed definition of BIT_AT
9160         to emit 'sbit at' instead of 'bit at'. This was a request.
9161
9162         PIC16 port related preliminary changes:
9163         * gen.c: prefixed function popRegFromString with
9164         pic16_ and all references to it corrected
9165         * pcode.c: all pic16_pc_* hardware registers prefixed
9166         with underscore (_),
9167         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
9168         * ralloc.c: newReg(): when register is REG_SFR then
9169         set address to rIdx,
9170         pic16_allocProcessorRegister(): marks register wasUsed=0
9171         pic16_writeUsedRegs(): added a call to assign processor
9172         registers via pic16_assignFixedRegisters
9173
9174 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9175
9176         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
9177         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
9178         variables in unused register banks.  Also the SSEG is placed
9179         wherever there is enough space for it, and IDATA can be anywhere
9180         in internal RAM.  For now compile using -Wl-Y[stack_size].
9181         The mem file is different for this option as well, since it
9182         makes no sense of talking about DSEG lenght.
9183
9184 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
9185
9186         * src/SDCClrange.c: fixed bug 869095 that caused segfault
9187         in certain cases, e.g. when ROM assignment, patch provided
9188         from Albert den Haan.
9189
9190 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
9191
9192         Many signedness and type propagation fixes:
9193         * src/SDCCicode.c: made geniCodeCast() static
9194         replaced SPEC_ by IS_ (cosmetic)
9195         (operandOperation): fixed div and mod operation
9196         (usualBinaryConversions): added support for promotion of char
9197         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
9198         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
9199         (geniCodeAdd): an array index will stay unsigned, even if promoted
9200         from char to int
9201         (geniCodeArray): ditto
9202         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
9203         * src/SDCCsymt.c (computeType): added more support for char;
9204         promotion of char is selectable by promoteCharToInt, fixed signedness
9205         for all cases
9206         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
9207         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
9208         * src/SDCCval (val*): replaced signedness calculation by
9209         computeType()
9210         rearranged if-branches (cosmetic)
9211         (valShift): added warning W_SHIFT_CHANGED
9212         (valCompare): fixed problem with different types
9213         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
9214         * support/regression/tests/literalop.c: added many cases
9215         * support/regression/tests/ast_constant_folding.c: changed finally to
9216         'unsigned int'
9217         * .version: new year, new version: 2.3.7
9218         * src/SDCCmain.c (main): applied patch #866468
9219         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
9220         provided by Scott Bronson
9221         * doc/sdccman.lyx: updated documentation for sdcdb
9222         updated and added chapter tips
9223
9224 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9225
9226         * src/SDCCsymt.h: missing from yesterday's commits
9227
9228 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9229
9230         * src/SDCC.y (struct_or_union_specifier),
9231         * support/Util/SDCCerr.c,
9232         * support/Util/SDCCerr.h: verify that struct & union tags are used
9233         as declared.
9234
9235 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9236
9237         * src/SDCCglobl.h: missing from yesterday's commits
9238
9239 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9240
9241         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
9242         sft_attributes, struct_declaration, parameter_declaration,
9243         type_name, start_block, declaration_list),
9244         * src/SDCC.lex (check_type): support redefinition of typedef names
9245
9246 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9247
9248         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
9249         aligned xdata arrays. Erik helped me with the if clause.
9250
9251 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9252
9253         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
9254         warning
9255
9256 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9257
9258         * src/SDCCast.h,
9259         * src/SDCCast.c (newAst_),
9260         * src/SDCCicode.h,
9261         * src/SDCCicode.c (ast2iCode, newiCode),
9262         * src/SDCCglobl.h,
9263         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
9264         expr, statement, expression_statement, selection_statement,
9265         iteration_statement, expr_opt, jump_statement): foundation for tracking
9266         sequence points
9267         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
9268         point code too)
9269
9270 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9271
9272         * support/Util/SDCCerr.c,
9273         * src/SDCCast.h,
9274         * src/SDCCast.c (createCase, createDefault, decorateType),
9275         * src/SDCClabel.c (labelUnreach),
9276         * src/SDCC.y (labeled_statement, jump_statement): More improvements
9277         to error messages.
9278         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
9279         (with thanks to Stas Sergeev)
9280         * device/include/time.h,
9281         * device/lib/time.c (CheckTime): suppress unreachable code warning
9282
9283 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9284
9285         * src/SDCCast.c (createIvalCharPtr),
9286         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
9287         bug #753752)
9288         * support/regression/tests/nullstring.c: tests for these two bugs
9289
9290 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9291
9292         * support/Util/SDCCerr.h,
9293         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
9294         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
9295         about storage class and 'at' used inside struct or union
9296         * src/SDCCBBlock.c (iCodeFromeBBlock),
9297         * src/SDCCcse.c (ifxOptimize),
9298         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
9299         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
9300         printIval, emitStaticSeg, emitOverlay),
9301         * src/SDCClabel.c (deleteIfx),
9302         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
9303         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
9304         gatherAutoInit, processParms),
9305         * support/Util/SDCCerr.h,
9306         * support/Util/SDCCerr.c (werrorfl): Support for better error location
9307         reporting for post-parse errors.
9308
9309 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9310
9311         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
9312         implicit casts via union; they don't work on big endian systems
9313         (possible fix for bug #861138)
9314
9315 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9316
9317         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
9318         * src/mcs51/main.c: fixed the fix for bug #737001
9319
9320 2003-12-15  Borut Razem <borut.razem AT siol.net>
9321
9322         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
9323
9324 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9325
9326         * support/makebin/makebin.c: put output in binary mode
9327
9328 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9329
9330         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
9331         xdata and data memory on startup. Set the environment variable
9332         SDCC_NOGENRAMCLEAR to disable this.
9333         * src/mcs51/peephole.def,
9334         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
9335         (allows non-interrupt and interrupt code to safely compete for a resource
9336         without the non-interrupt code having to disable interrupts)
9337
9338 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9339
9340         * src/SDCCicode.c (geniCodeAdd),
9341         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
9342         with valFromType if type might be a pointer and host is big endian).
9343         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
9344         types, not just integer types.
9345         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
9346         multiply defined with mismatching "at" address.
9347
9348 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9349
9350         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
9351         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
9352         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
9353         with embedded nulls (fixed bug #753752)
9354
9355 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9356
9357         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
9358         Apparently this did not see much testing (endless loop)
9359
9360 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9361
9362         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
9363
9364 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9365
9366         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
9367         gracefully handle NULL memmap pointers
9368
9369 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9370
9371         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
9372         instead of deleting the iCode when an operand is volatile
9373         * src/z80/gen.c (genDummyRead),
9374         * src/mcs51/gen.c (genDummyRead),
9375         * src/ds390/gen.c (genDummyRead),
9376         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
9377         not just IC_RIGHT
9378         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
9379         * src/SDCC.y: fixed bug #850420
9380
9381 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9382
9383         Applied z80 i/o port patch from Peter Townson and fixed some operators
9384         to better handle operands in A register.
9385         * device/include/z180.h
9386         * src/SDCC.y
9387         * src/SDCCglue.c
9388         * src/z80/gen.c
9389         * src/z80/gen.h
9390         * src/z80/main.c
9391         * src/z80/peeph-z80.def
9392         * src/z80/peeph.def
9393         * src/z80/z80.h
9394
9395 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9396
9397         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
9398
9399 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9400
9401         * device/lib/hc08/_mullong.c: Removed extra #endif
9402
9403 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9404
9405         * sim/ucsim/hc08.src/inst.cc,
9406         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
9407         carries from x to h
9408         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
9409         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
9410         * device/include/stdarg.h: fixed varargs for hc08
9411         * device/lib/Makefile.in,
9412         * device/lib/hc08/Makefile,
9413         * device/lib/hc08/_mulint.c,
9414         * device/lib/hc08/_mullong.c: fixed some endian problems
9415
9416 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9417
9418         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
9419         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
9420         * device/lib/_gptrget.c,
9421         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
9422
9423 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9424
9425         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
9426         * src/SDCCast.c (astErrors): fixed bug #846007
9427         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
9428
9429 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9430
9431         * src/SDCCast.c (decorateType): disabled a transformation I added in
9432         revision 1.188 (access to fields of a structure at an absolute address);
9433         it breaks with bitfields, extern declarations, and gcse analysis.
9434         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
9435         could be assigned through a pointer, so don't complain.
9436         * src/SDCCast.c (astErrors),
9437         * src/SDCCast.h,
9438         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
9439
9440 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
9441
9442         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
9443         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
9444         output of __config directives, since gpasm now supports them
9445         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
9446         pre-processor macro, i.e. -DMCU=p18f452
9447         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
9448         and modified to handle 'cast' icode similarly to '=' icode
9449         * src/pic16/device.h (typedef struct PIC_device): added field
9450         'extMIface' to indicate that chip has external memory interface
9451         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
9452         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
9453         18F8720
9454
9455 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9456
9457         * src/SDCC.y (pointer): fixed bug #846006
9458         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
9459         * src/SDCCast.c (decorateType): fixed bug #846009
9460         * src/ds390/peeph.def,
9461         * src/ds390/gen.c (genAnd, genOr),
9462         * src/mcs51/peeph.def,
9463         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
9464
9465 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9466
9467         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
9468         * src/SDCCdflow.c
9469         * src/SDCCcse.c
9470         * src/SDCCcse.h
9471         * src/SDCCBBlock.h
9472         * src/SDCCBBlock.c
9473
9474 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
9475
9476         fixed bug #845089
9477         * src/SDCCbitv.h,
9478         * src/SDCCbitv.c: added function to free a bitvector
9479         * src/SDCClrange.h,
9480         * src/SDCClrange.c: added function to recompute the liveranges
9481         * src/avr/ralloc.c,
9482         * src/ds390/ralloc.c,
9483         * src/hc08/ralloc.c,
9484         * src/mcs51/ralloc.c,
9485         * src/pic/ralloc.c,
9486         * src/pic16/ralloc.c,
9487         * src/xa51/ralloc.c,
9488         * src/z80/ralloc.c: recompute the liveranges after register packing
9489
9490 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
9491
9492         * src/SDCCloop.c (newInduction): fixed bug #845630
9493
9494 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9495
9496         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
9497         inadvertantly left behind from my 2003-11-12 change
9498
9499 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9500
9501         Updated headers I neglected to commit yesterday.
9502         * src/SDCClrange.h,
9503         * src/SDCCicode.h
9504
9505 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9506
9507         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
9508         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
9509         * src/SDCCopt.c (eBBlockFromiCode),
9510         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
9511         the creation of the key hash table from the sequencing so it can be used
9512         earlier (for some GCSE bug fixes still pending)
9513
9514 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9515
9516         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
9517         * support/regression/tests/addsub.c: testing genPlus shortcut
9518
9519 2003-11-15  Borut Razem <borut.razem AT siol.net>
9520
9521         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
9522
9523 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9524
9525         * src/SDCCcse.c (cseBBlock): fixed bug #527779
9526         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
9527         ordering is immaterial.
9528         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
9529
9530 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9531
9532         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
9533         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
9534         (SIGSEV) of bug #840381
9535         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
9536         unlink new file before rename if new and old filenames are the same)
9537
9538 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9539
9540         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
9541         uninitialized variables) for the mcs51. Set environment variable
9542         SDCC_GENRAMCLEAR to test.
9543         xdata initialization slightly shorter
9544
9545 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9546
9547         * src/SDCCsymt.h,
9548         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
9549         #838241 & 780691 (basicly the same bug)
9550         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
9551         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
9552
9553 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
9554
9555         * src/SDCCmain.c (linkEdit): "fix" #834252
9556
9557 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9558
9559         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
9560         * src/SDCCast.h,
9561         * src/SDCC.y: fixed bug #819403
9562
9563 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9564
9565         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
9566         the reentrant attribute.
9567         * src/hc08/gen.c (genPackBits): added missing stack readjustment
9568         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
9569         simulation
9570         * src/SDCCast.c (decorateType): fixed bug with storage class not being
9571         updated during pointer dereference; f.e. ~(((char *)1)*) was being
9572         erroneously reduced to a literal.
9573         * src/hc08/ralloc.c (packRegisters, rematStr),
9574         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
9575         some cases
9576
9577 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9578
9579         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
9580         * doc/sdccman.lyx: changed from 'article' to 'book'
9581         * doc/Makefile: readded test_suite_spec and cdbfileformat
9582
9583 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
9584
9585         * device/include/stdlib.h: include malloc.h to comply with ANSI
9586         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
9587
9588 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9589
9590         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
9591         * doc/clean.mk: also remove *.out files
9592         * doc/sdccman.lyx: some additions, larger top/bottom margins
9593
9594 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9595
9596         * src/SDCC.y: fixed bug #837365
9597         * support/regression/tests/bitopcse.c
9598         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
9599         a symbol (might be valop instead)
9600         * device/lib/Makefile.in: added errno.c to HC08SOURCES
9601         * device/lib/clean.mk: added hc08 to the cleaning list
9602
9603 2003-11-04  Borut Razem <borut.razem AT siol.net>
9604
9605         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
9606           made 2003-11-04
9607         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
9608           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
9609           malloc is declared in standard stdlib.h
9610
9611 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9612
9613         * device/lib/hc08/Makefile: need to clean .rel not .o files
9614         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
9615
9616 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9617
9618         * src/port.h,
9619         * src/hc08/main.c,
9620         * src/mcs51/main.c,
9621         * src/ds390/main.c,
9622         * src/z80/main.c,
9623         * src/avr/main.c,
9624         * src/pic/main.c,
9625         * src/pic16/main.c,
9626         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
9627         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
9628         tests (which uses the port's oclsExpense function)
9629         * src/SDCC.y,
9630         * src/SDCCast.c,
9631         * src/SDCCicode.c,
9632         * src/hc08/gen.c,
9633         * src/ds390/gen.c,
9634         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
9635
9636 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9637
9638         * src/SDCCcse.c (ifxOptimize),
9639         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
9640         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
9641         deleting the IFX iCode.
9642         * src/hc08/ralloc.c: reduced unneeded slocs
9643         * src/hc08/gen.c: fixed bug in asmopToBoolean
9644
9645 2003-11-04  Borut Razem <borut.razem AT siol.net>
9646
9647         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
9648           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
9649           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
9650           transferred to configure
9651
9652 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
9653
9654         Use headers defined in the C[++] standards:
9655         * sim/ucsim/gui.src/serio.src/fileio.cc
9656         * sim/ucsim/gui.src/serio.src/frontend.cc
9657         * sim/ucsim/gui.src/serio.src/main.cc
9658         * sim/ucsim/gui.src/serio.src/posix_signal.cc
9659         * support/Util/NewAlloc.c
9660         * as/hc08/lklibr.c
9661         * as/mcs51/lklibr.c
9662         * as/z80/aslist.c
9663         * as/z80/assym.c
9664
9665 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9666
9667         * Added MSVC projects for hc08 assembler and linker:
9668         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
9669         /as/hc08/link_hc08.dsp
9670
9671 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
9672
9673         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
9674
9675 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
9676
9677         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
9678
9679 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9680
9681         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
9682
9683 2003-10-31  Borut Razem <borut.razem AT siol.net>
9684
9685         * support/cpp2/cpplib.h,
9686           support/cpp2/cpplib.c,
9687           support/cpp2/cpplex.c,
9688           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
9689           to switch _asm block preprocessing on / off. Default is
9690           #pragma preproc_asm +
9691
9692 2003-10-31  Borut Razem <borut.razem AT siol.net>
9693
9694         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
9695           when outputting comment blocks (when executed with -C option) and
9696           _asm (SDCPP specific) blocks
9697
9698 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9699
9700         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
9701
9702 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
9703
9704         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
9705
9706 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
9707
9708         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
9709         * src/SDCCast.c (decorateType): fixed bug #832664
9710
9711 2003-10-31  Borut Razem <borut.razem AT siol.net>
9712
9713         * support/cpp2/cpplex.c: fixed for SDCPP:
9714           comments(when executed with -C option) and _asm blocks
9715           were included even if they where in skipped #if block.
9716           Applied solution from GCC cpp 3.3.2
9717
9718 2003-10-31  Borut Razem <borut.razem AT siol.net>
9719
9720         * src/SDCC.lex: sdcc now understands both formats:
9721           '# <line_number> <file_name>' and
9722           '#line <line_number> <file_name>'
9723         * support/cpp2/cppmain.c: sdcpp now generates the standard
9724           '# <line_number> <file_name>' instead of former
9725           '#line <line_number> <file_name>'
9726
9727 2003-10-30  Borut Razem <borut.razem AT siol.net>
9728
9729         * support/cpp2/cpphash.h,
9730         * support/cpp2/cpplib.h
9731         * support/cpp2/cpplex.c,
9732         * support/cpp2/cppmain.c,
9733         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
9734
9735 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9736
9737         Fixed a number of problems revealed by bug #827883.
9738         * src/SDCCloop.c (loopInvariants): Spill location of the
9739         result operand should be recomputed if extracted from
9740         a loop. Also, don't extract assignments of an iTemp
9741         from a literal.
9742         * src/SDCCast.c (isConformingBody): loop reversal should
9743         not occur if the control variable is involved with a
9744         relational operator.
9745
9746 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
9747
9748         * .version: bumped to 2.3.6 to reflect the big improvements
9749         made by Erik and Klaus. Thanks!
9750
9751 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
9752
9753         Replaced the livrange code.
9754         * src/SDCClrange.c: added new LR code
9755         * src/SDCCloop.c,
9756         * src/SDCCBBlock.h: removed remainig parts from old LR code
9757         * src/ds390/ralloc.c,
9758         * src/ds390/gen.c: minor fixes to make it work with new code
9759
9760 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9761
9762         * as/hc08/asm.h,
9763         * as/hc08/lkrloc.c,
9764         * src/hc08/gen.c,
9765         * src/hc08/ralloc.c: Fix various warnings related to the hc08
9766         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
9767         (tweaked fix for bug #818696)
9768
9769 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9770
9771         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
9772
9773 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9774
9775         * src/SDCCmain.c,
9776         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
9777         * src/mcs51/gen.c (gencjneshort),
9778         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
9779         more efficient (per Scott Bronson's suggestion)
9780
9781 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9782
9783         Extended the semantics of the critical keyword to include
9784         individual statements. See RFE #827755 and #799831
9785         * src/SDCC.y
9786         * src/SDCCicode.c
9787         * src/SDCCopt.c
9788         * src/SDCCast.c
9789         * support/Util/SDCCerr.c
9790         * support/Util/SDCCerr.h
9791         * src/mcs51/gen.c
9792         * src/ds390/gen.c
9793         * src/hc08/gen.c
9794
9795 2003-10-19  Borut Razem <borut.razem AT siol.net>
9796
9797         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
9798
9799 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9800
9801         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
9802         Fixed bug #818696
9803         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
9804         and predecrement operand is displayed
9805
9806 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
9807
9808         * src/SDCCval.c (valMinus): fixed bug #826041
9809
9810 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9811
9812         Some hc08 related updates that I missed earlier
9813         * sim/ucsim/stypes.h
9814         * support/regression/ports/hc08/spec.mk
9815
9816 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9817
9818         New target "hc08" for the Motorola 68hc08 family of micros
9819
9820         * configure
9821         * configure.in
9822         * Makefile
9823         * src/hc08/*
9824         * src/SDCCmain.c
9825         * src/port.h
9826         * sim/ucsim/hc08.src/*
9827         * sim/ucsim/configure.in
9828         * src/ucsim/configure
9829         * sim/ucsim/packages_in.mk
9830         * as/hc08/*
9831         * as/Makefile
9832         * device/include/mc68hc908qy.h
9833         * device/lib/hc08/*
9834         * device/lib/Makefile.in
9835         * support/regression/ports/hc08/*
9836         * support/regression/Makefile
9837
9838 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9839
9840         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
9841         regression test
9842         * src/ds390/gen.c (genCast): fixed bug #821957
9843
9844 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
9845
9846         * device/lib/logf.c: "fixed" overlay bug
9847         * support/regression/ports/host/spec.mk: added m library
9848         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
9849         * support/regression/tests/float_trans: added (for Eric)
9850
9851 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
9852
9853         * src/mcs51/gen.c (genCpl): fixed bug
9854         http://sf.net/mailarchive/message.php?msg_id=6263915
9855
9856 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
9857
9858         * src/SDCCast.c (decorateType): added extended constant folding
9859         * src/SDCCsymt.c (computeType): cleanup
9860         * src/SDCCval.c (valShift): minor optimization
9861         * support/regression/tests/ast_constant_folding.c: added
9862
9863 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9864
9865         * src/SDCCmain.c: removed some unintended changes
9866
9867 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9868
9869         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
9870         * src/z80/gen.c: fixed part of bug #817589
9871         * src/SDCCsymt.c (checkFunction): fixed bug #817895
9872
9873 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
9874
9875         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
9876         * src/SDCCcflow.c
9877         * src/SDCCcse.c
9878         * src/SDCCdflow.c
9879         * src/SDCClabel.c
9880         * src/SDCClrange.c
9881         * src/SDCCmem.c
9882         * src/SDCCopt.c
9883         * src/SDCCpeeph.c
9884         * src/SDCCset.c
9885         * src/avr/ralloc.c
9886         * src/ds390/ralloc.c
9887         * src/izt/ralloc.c
9888         * src/mcs51/ralloc.c
9889         * src/pic/ralloc.c
9890         * src/pic16/ralloc.c
9891         * src/xa51/ralloc.c
9892         * src/z80/ralloc.c
9893         * src/z80/gen.c: removed unused label "release:"
9894
9895 2003-10-06  Borut Razem <borut.razem AT siol.net>
9896
9897         * src/SDCC.lex: removed definition of unused variables
9898           save_optimize and save_options
9899
9900 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
9901
9902         * clean.mk: removed '=' in "-maxdepth=1"
9903         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
9904         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
9905
9906 2003-10-06  Borut Razem <borut.razem AT siol.net>
9907
9908         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
9909           my_unput() replaced by unput()
9910
9911 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
9912
9913         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
9914         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
9915         type-punned pointer will break strict-aliasing rules"
9916         Old LR behaviour is again default; Klaus' LR can be choosen by
9917         defining the environment variable LRKLAUS
9918         * src/SDCCBBlock.h
9919         * src/SDCCloop.c
9920         * src/SDCClrange.c
9921         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
9922         * clean.mk: fixed removal of files in bin/CVS/
9923         * device/lib/clean.mk: fixed removal of directories small and large
9924         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
9925         * src/SDCCicode.c,
9926         * src/SDCCval.c: removed superflous test for pedantic
9927
9928 2003-10-05  Borut Razem <borut.razem AT siol.net>
9929
9930         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
9931           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
9932           message "unmatched #pragma SAVE and #pragma RESTORE"
9933
9934 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9935
9936         * doc/sdccman.lyx: various additions and updates (interrupts, inline
9937           assembly, critical functions, atomic, nojtbound)
9938
9939 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
9940
9941         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
9942         * src/SDCCBBlock.h
9943         * src/SDCCloop.c
9944         * src/SDCCloop.h
9945         * src/SDCClrange.c
9946
9947 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9948
9949         * src/z80/gen.h,
9950         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
9951         * src/mcs51/gen.h
9952         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
9953         * src/ds390/gen.h
9954         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
9955         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
9956         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
9957
9958 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9959
9960         * src/z80/gen.c (genRet): fixed bug #524753
9961         * src/z80/gen.c (genCast): fixed internal error on cast from
9962         pointer to long
9963         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
9964         fix for bug #477835 to the z80
9965         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
9966         for tracking iCodes in the peephole optimizer for z80
9967
9968 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9969
9970         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
9971         the other part of bug #814548
9972         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
9973
9974 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
9975
9976         * src/SDCCcse.c: fixed part of bug #814548
9977
9978 2003-09-28  Borut Razem <borut.razem AT siol.net>
9979
9980         * src/asm.c: rewrite of printILine() to use temporary file instead
9981           a pipe
9982         * src/xa51/main.c: commented out declaration of int rewinds
9983
9984 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9985
9986         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
9987
9988 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9989
9990         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
9991         * src/asm.c (printILine): Fixed bug #811015
9992
9993 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9994
9995         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
9996         freeing.
9997
9998 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9999
10000         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
10001         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
10002         to correctly handle general case of AOP_PAIRPTR
10003         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
10004
10005 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
10006
10007         * src/mcs51/ralloc.c (fillGaps),
10008         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
10009         register positioning bug)
10010
10011 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
10012
10013         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
10014
10015 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
10016
10017         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
10018         genCodePointerGet, genGenPointerGet, genFarPointerSet,
10019         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
10020         (ralloc doesn't intentionally do this now, but perhaps later)
10021         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
10022         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
10023         register positioning bugs (Fixed bug #762602 and #795325)
10024         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
10025         (Fixed bug #808779)
10026         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
10027         lines that --i-code-in-asm generates
10028
10029 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10030
10031         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
10032         trying to fclose a FILE* that was already closed.
10033
10034 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
10035
10036         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
10037         of const struct should be treated as if const themselves)
10038
10039 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
10040
10041         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
10042
10043 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10044
10045         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
10046         Unix (/n) and DOS (/r/n) line terminations.
10047
10048 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
10049
10050         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
10051         bug #613775
10052
10053 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
10054
10055         * src/mcs51/gen.c (genFunction, genEndFunction),
10056         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
10057         and restore of EA so that stack offsets to parameters are
10058         correct when using both critical and reentrant/stack-auto.
10059         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
10060         size (can be triggered in error if sloc is shared between
10061         different sized objects)
10062         * device/include/float.h: fixed macros to explicitly use
10063         unsigned long where needed
10064
10065 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
10066
10067         Feature req. 799831: added code to allow nesting of critical functions
10068         * src/mcs51/gen.c (genFunction, genEndFunction)
10069         * src/ds390/gen.c (genFunction, genEndFunction)
10070
10071 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
10072
10073         * src/SDCCsymt.c (sclsFromPtr),
10074         * src/SDCCsymt.h,
10075         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
10076         support for standard C idiom of memory mapped variables; for
10077         example, *((xdata int*)0x1234) = 1 is now internally equivalent
10078         to xdata int at 0x1234 tempvar = 1.
10079         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
10080         provided by Akiya ISHIDA
10081
10082 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
10083
10084         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
10085         * src/SDCCval.c (constVal): added reduction from int to char
10086         * src/SDCCval.c (valMult, valDiv): fixed sign handling
10087         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
10088         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
10089         to ignore the sign
10090         * support/regression/tests/shifts.c: fixed
10091
10092 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
10093
10094         * src/z80/gen.c (genXor): Fixed bug #805445
10095
10096 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
10097
10098         Fixed bug #621531 (const & volatile confusion in the type chain).
10099         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
10100         refer to the const or volatile state of the pointer itself.
10101
10102         * src/SDCCast.c
10103         * src/SDCCglue.c
10104         * src/SDCCicode.c
10105         * src/SDCCsymt.c
10106         * src/SDCCval.c
10107         * src/SDCC.y
10108         * src/SDCCsymt.h
10109         * src/pic/gen.c
10110         * src/pic/ralloc.c
10111         * src/pic16/gen.c
10112         * src/pic16/ralloc.c
10113         * support/regression/tests/const.c
10114
10115 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10116
10117         When checking for duplicated modules, use absolute paths
10118         instead of relative paths.  Files changed:
10119
10120         * as/mcs51/lklib.c
10121         * link/z80/lklib.c
10122
10123 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
10124
10125         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
10126
10127 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
10128
10129         * device/include/string.h: added size_t typedef, changed
10130         prototypes to use size_t, eliminated separate reentrant and
10131         non-reentrant declarations, added _memmove declaration
10132         * device/lib/_memcpy.c: changed to use size_t instead of int,
10133         changed /4 to >>2 to avoid division library call
10134         * device/lib/_memcmp.c,
10135         * device/lib/_memset.c,
10136         * device/lib/_strncat.c,
10137         * device/lib/_strncpy.c,
10138         * device/lib/_strncmp.c: changed to use size_t instead of int
10139         * device/lib/_memmove.c: new file (fixed bug #772294)
10140         * device/lib/Makefile.in: added _memmove.c
10141         * device/lib/z80/asm_strings.s: fixed bug #772290
10142         * support/regression/tests/bitfields.c: attempt to fix host assertion
10143         failure on amd64-unknown-linux2.2
10144
10145 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
10146
10147         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
10148         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
10149         * as/z80/asmain.c (main): fixed bug #801766
10150
10151 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
10152
10153         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
10154         compilers
10155
10156 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
10157
10158         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
10159         reported in bug #800609
10160
10161 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
10162
10163         * Top header beautifications in src/pic16 directory:
10164           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
10165           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
10166           pcoderegs.h, ralloc.c, ralloc.h
10167         * main.c: added top header and GPL license notice
10168         * pcode.c: fixed the if-conditional warning
10169
10170 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
10171
10172         * device/lib/_mullong.c: replaced int by short for gcc
10173
10174 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
10175
10176         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
10177         and JUMPTABLE iCodes properly now (worked by accident before)
10178         * src/mcs51/gen.c (leftRightUseAcc),
10179         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
10180         iCode properly now. Use getSize instead of nRegs since a & b
10181         aren't part of the nRegs tally.
10182
10183 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
10184
10185         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
10186         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
10187           before instructions that use the _STATUS register
10188
10189 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
10190
10191         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
10192         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
10193         fetching of the pointer
10194         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
10195         copied from genNearPointerSet()
10196         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
10197         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
10198         If they pop r0/r1 they must be called in the opposite order than aopOp().
10199         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
10200         (resp. --stack-auto), prepared for --xstack
10201
10202 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10203
10204         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
10205
10206 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
10207
10208         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
10209         these ports have their own __sdcc_external_start()
10210
10211 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
10212
10213         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
10214         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
10215         type for bits was changed. It resulted in bit variables becoming
10216         global, which is not permitted in PIC 14 assembly output.
10217
10218 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10219
10220         * doc/sdccman.lyx: various additions and updates. Rearranged sections
10221
10222 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10223
10224         Z80 and MCS51 linkers complaint if a public symbol is defined
10225         in more than one library module:
10226
10227         * as/mcs51/lklib.c
10228         * link/z80/lklib.c
10229         * as/mcs51/Makefile.in
10230
10231 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
10232
10233         A few small changes that speed up the peephole optimizer.
10234
10235         * src/SDCCpeeph.c
10236
10237 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
10238
10239         Try to make the peephole optimizer smarter by maintaining
10240         an association between the assembly source code and the
10241         iCodes that originated them. Put this information to use
10242         with a new peephole rule condition "notVolatile" so that
10243         the rules can be aggressive yet still safe.
10244
10245         * src/SDCCpeeph.c
10246         * src/SDCCpeeph.h
10247         * src/mcs51/gen.c
10248         * src/mcs51/peeph.def
10249
10250 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
10251
10252         Fixed bug #741761
10253
10254         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
10255         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
10256         if the left or right operand symbols have the accuse flag set.
10257
10258 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
10259
10260         Changed the type of the result of the ! (NOT) operator to char;
10261         previously it returned the same type as the source. This allows
10262         us to eliminate all the genFloatNot functions (all of its target
10263         implementations were very buggy) since !float can use the same
10264         code as !long now.
10265
10266         * src/SDCCicode.c (ast2iCode): ! returns char
10267         * src/mcs51/gen.c (genNot, genNotFloat),
10268         * src/ds390/gen.c (genNot, genNotFloat),
10269         * src/z80/gen.c (genNot, genNotFloat),
10270         * src/pic/gen.c (genNot, genNotFloat),
10271         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
10272
10273 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
10274
10275         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
10276         1. Interrupt would not compile properly. Ensure PCLATH register is saved
10277            during interrupts. Ensure WSAVE is located at a shared bank address.
10278         2. Fixed page selection in some places
10279         3. Fixed BTFSS/C to where necessary use registers directly and not simply
10280            the registers name strings.
10281         4. Fixed "signed / unsigned compare" compiler warnings.
10282         5. The PIC port manages its own allocation of the general purpose
10283            registers, but makes no attempt to reuse them. As a result when
10284            compiling it soon runs out of general purpose registers. Some
10285            additional code was added to the files pcode.c and device.c to walk
10286            through the function call tree and rename the registers so that they
10287            get reused.
10288
10289         * src/pic/device.c
10290         * src/pic/gen.c
10291         * src/pic/glue.c
10292         * src/pic/pcode.c
10293         * src/pic/pcode.h
10294         * src/pic/ralloc.c
10295         * src/pic/ralloc.h
10296         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
10297         genPlus() & genMinus() when the result is the same as left or right
10298
10299 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
10300
10301         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
10302
10303 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
10304
10305         Made bitfield a distinct type from bit so that bitfields
10306         convert as per ANSI C and bits retain their traditional
10307         boolean style behaviour. Implemented bitfield support in
10308         the z80 port.
10309
10310         * src/SDCCsymt.h,
10311         * src/SDCCsymt.c,
10312         * src/SDCCast.c,
10313         * src/cdbFile.c,
10314         * src/mcs51/gen.c,
10315         * src/ds390/gen.c: bit v bitfield split
10316         * src/z80/gen.c: New support for bitfields
10317         * support/regression/tests/bitfields.c: reenabled z80,
10318         added more tests
10319
10320 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10321
10322         Rules 246.x, 247.x relate to bitfields, the others speed up
10323         access to xdata mapped I/O devices.
10324
10325         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
10326
10327 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
10328
10329         Cleaned up genPackBits and genUnpackBits and added two helper
10330         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
10331         for literal assignments in genPackBits (thanks to Frieder for
10332         reminding me).
10333
10334         * src/mcs51/gen.c
10335         * src/ds390/gen.c
10336
10337 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
10338
10339         Fixed bug #748310 (pointer to function type mishandled when the
10340         function name is omitted). Also fixed a SIGSEGV when a function
10341         attribute (reentrant, etc) is used on a non-function or on a
10342         function but misplaced before the parameter list.
10343
10344         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
10345         bug #748310
10346         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
10347         * support/Util/SDCCerr.h,
10348         * support/Util/SDCCerr.c: Added func attr misuse error msg
10349
10350 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
10351
10352         Fixed bug #787649 by anonymous
10353         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
10354         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
10355
10356 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
10357
10358         Fixed numerous bitfield problems.
10359
10360         * src/SDCC.y: More bitfield related error checking
10361         * src/SDCCsymt.h,
10362         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
10363         * support/Util/SDCCerr.h,
10364         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
10365         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
10366         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
10367         * support/regression/tests/bitfields.c: tests added
10368
10369 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
10370
10371         Made the constant following the "interrupt" keyword optional. If
10372         omitted, the function will not automatically be given an entry
10373         in the interrupt vector table (similar to #pragma NOIV, but
10374         less syntacticly kludgy). The interrupt number is also now
10375         range checked. Also fixed a bug in the high order bit example
10376         in the manual.
10377
10378         * src/SDCC.y
10379         * src/SDCCmem.c
10380         * src/SDCCglue.c
10381         * src/SDCCsymt.h
10382         * support/Util/SDCCerr.c
10383         * support/Util/SDCCerr.h
10384         * doc/sdccman.lyx
10385
10386 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
10387
10388         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
10389         * src/SDCCicode.c (operandOperation): rewritten some ops
10390         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
10391         * src/SDCCsymt.c (computeType): literals are handled the same way as any
10392         other type
10393         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
10394         be re-activated by defining REDUCE_LITERALS)
10395         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
10396         unsigned, but are signed by default
10397         * src/SDCCval.c (constVal): rearranged
10398         * src/SDCCval.c (valMod): preliminary fix
10399         * src/SDCCval.c (valCastLiteral): use TYPE_* types
10400         * support/regression/literalop.c: added, work in progress
10401
10402 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
10403
10404         Generate warnings for useless declarations like "char data;"
10405         that don't do what new users expect.
10406
10407         * src/SDCC.y
10408         * support/Util/SDCCerr.h
10409         * support/Util/SDCCerr.c
10410
10411 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
10412
10413         * src/SDCCval.c (valMult): fix overflow detection of negative int
10414
10415 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
10416
10417         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
10418
10419         Changes to support big endian targets:
10420
10421         * src/ports.h
10422         * src/SDCCglue.c
10423         * src/avr/main.c
10424         * src/ds390/main.c
10425         * src/izt/i186.c
10426         * src/mcs51/main.c
10427         * src/pic/main.c
10428         * src/pic16/main.c
10429         * src/xa51/main.c
10430         * src/z80/main.c
10431
10432 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
10433
10434         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
10435         * device/lib/time.c: fixed warning "integer overflow in expression"
10436
10437 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
10438
10439         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
10440         * src/SDCCval.c (constVal): changed default to signed; hex and octal
10441         constants are unsigned; added recognition of "u" flag for unsigned
10442         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
10443         * src/SDCCval.c (valDiv, valMod): fixed signdness
10444         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
10445         signedness of modulo, left and right shift
10446         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
10447         * support/Util/SDCCerr.h: added warning W_INT_OVL
10448         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
10449         * src/SDCCast.c (ast_print): improved output of constants
10450
10451 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10452
10453         Fixed some warnings when building with MSVC:
10454
10455         * as/mcs51/asdata.c
10456         * as/z80/asdata.c
10457         * as/mcs51/asm.h
10458         * as/z80/asm.h
10459         * link/z80/aslink.h
10460         * link/z80/lkdata.c
10461         * link/z80/lkeval.c
10462         * link/z80/lkgb.c
10463         * link/z80/lkihx.c
10464         * link/z80/lks19.c
10465         * link/z80/lksym.c
10466         * support/cpp2/cpplib.c
10467         * src/ds390/gen.c
10468         * src/mcs51/gen.c
10469
10470 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
10471
10472         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
10473
10474 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10475
10476         * support/librarian/clean.mk: Do not remove Makefile.
10477         * support/librarian/Makefile: added.
10478
10479 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10480
10481         Added librarian to MSVC build:
10482         * all.dsp
10483         * sdcc.dsw
10484         * support/librarian/librarian.dsp
10485
10486         'configure' not needed for librarian, removed:
10487         * support/librarian/configure
10488         * support/librarian/configure.in
10489         * support/librarian/config_in.h
10490         * support/librarian/Makefile.in
10491
10492         Hopefully these ones built the librarian and the rest of sdcc properly:
10493         * Makefile
10494         * Makefile.common.in
10495
10496         Messed up 'configure', so revert to previous version:
10497         * configure
10498         * configure.in
10499
10500 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
10501
10502         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
10503         there, while the mantissa of a double is "only" 53 bits wide.
10504
10505 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10506
10507         Adding sdcclib to the build.  MSVC project coming soon.
10508         Files added/changed:
10509
10510         * support/librarian/clean.mk
10511         * support/librarian/configure
10512         * support/librarian/configure.in
10513         * support/librarian/config_in.h
10514         * support/librarian/Makefile.bcc
10515         * support/librarian/Makefile.in
10516         * support/librarian/sdcclib.c
10517         * Makefile.bcc
10518         * Makefile
10519         * Makefile.common.in
10520         * configure
10521         * configure.in
10522
10523 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10524
10525         Linker now complaints if linked modules have conflicting options, for
10526         example, one compiled using --model-large and another one compiled with
10527         --model-small.  The following files were modified:
10528
10529         * as/mcs51/asdata.c
10530         * as/mcs51/aslink.h
10531         * as/mcs51/asm.h
10532         * as/mcs51/asmain.c
10533         * as/mcs51/asout.c
10534         * as/mcs51/i51pst.c
10535         * as/mcs51/lkdata.c
10536         * as/mcs51/lklibr.c
10537         * as/mcs51/lkmain.c
10538         * as/z80/asdata.c
10539         * as/z80/asm.h
10540         * as/z80/asmain.c
10541         * as/z80/asout.c
10542         * as/z80/z80pst.c
10543         * link/z80/aslink.h
10544         * link/z80/lkdata.c
10545         * link/z80/lklibr.c
10546         * link/z80/lkmain.c
10547         * src/SDCCglue.c
10548
10549 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10550
10551         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
10552         as/mcs51/lklibr.c: Generate a warning when a library is not found.
10553
10554 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
10555
10556         * src/z80/mappings.i: fix _mul[us][int,long] entries
10557
10558 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10559
10560         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
10561
10562 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
10563
10564         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
10565         * support/regression/tests/bitopcse.c: added
10566         fixed warning:
10567         * src/avr/gen.c:
10568         * src/pic/gen.c:
10569         * src/pic16/gen.c:
10570         * src/z80/gen.c:
10571         * src/xa51/gen.c:
10572
10573 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10574
10575         added support for new library format to z80, gbz80 linkers:
10576         *link/z80/aslink.h
10577         *link/z80/lklex.c
10578         *link/z80/lklib.c
10579         *link/z80/lklist.c
10580
10581 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
10582
10583         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
10584         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
10585
10586 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
10587
10588         added DUMMY_READ_VOLATILE:
10589         * src/SDCC.y:
10590         * src/avr/gen.c:
10591         * src/xa51/gen.c:
10592         * src/z80/gen.c:
10593         * src/pic/gen.c:
10594         * src/pic16/gen.c:
10595         * src/mcs51/gen.c:
10596         * src/ds390/gen.c:
10597         * src/SDCCcse.c (algebraicOpts): many improvements
10598         * src/SDCCcse.h: removed algebraicOpts()
10599         * src/SDCCicode.c (picDummyRead): added
10600
10601 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10602
10603         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
10604         "Insufficient space in data memory".
10605
10606 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
10607
10608         * src/mcs51/gen.c: fixed bug #771358
10609         * src/z80/gen.c: fixed bug #759087
10610
10611 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
10612
10613         * src/pic16/glue.c: minor cleanup by Vangelis
10614
10615 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10616
10617         * device/include/regc515c.h: fixed #758477
10618         * device/lib/_gptrget.c: saving some cycles in generic pointer get
10619         * device/lib/_gptrput.c: saved a few bytes
10620         * my tab spacing is 8, yours too?)
10621         * device/lib/_ser.c: process RX bytes earlier than TX bytes
10622         * device/lib/serial.c: process RX bytes earlier than TX bytes
10623         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
10624
10625 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
10626
10627         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
10628
10629 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10630
10631     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
10632
10633 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
10634
10635         * device/lib/Makefile.in: bad fix, reverted to 1.43
10636
10637 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
10638
10639         * device/lib/Makefile.in: added missing z80 object files
10640
10641 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
10642
10643         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
10644         pic16 progress by Vangelis:
10645         * src/SDCCglobl.h:
10646         * src/SDCCmain.c:
10647         * src/pic/Makefile:
10648         * src/pic:
10649         * pic/Makefile:
10650         * pic16/device.c:
10651         * pic16/device.h:
10652         * pic16/gen.c:
10653         * pic16/gen.h:
10654         * pic16/genarith.c:
10655         * pic16/glue.c:
10656         * pic16/main.c:
10657         * pic16/pcode.c:
10658         * pic16/pcode.h:
10659         * pic16/pcodepeep.c:
10660         * pic16/peeph.def:
10661
10662 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10663
10664     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
10665
10666 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10667
10668     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
10669     added gbz80 build to MSVC project.
10670     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
10671     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
10672     from 8051 stuff and setup so it links using a .lnk file.
10673
10674 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10675
10676     * support/librarian/sdcclib.c: sdcc librarian.
10677     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
10678     with sdcclib.
10679
10680 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10681
10682     * as/mcs51/lkmain.c: properly handle extensions in function afile.
10683
10684 2003-07-02  Borut Razem <borut.razem AT siol.net>
10685
10686         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
10687         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
10688         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
10689         src/xa51/main.c, src/z80/main.c:
10690         virtualization of glue() function: each port has it's own glue function,
10691         which is accessed by do_glue function pointer in PORT.general structure
10692
10693 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
10694
10695         * DS800C400 fun, improved ROM interface and tinibios.
10696
10697 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
10698
10699         * More support for DS80C400. Now includes beginning of interface to ROM.
10700
10701 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
10702
10703         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
10704
10705 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10706
10707         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
10708
10709 2003-06-19  Borut Razem <borut.razem AT siol.net>
10710
10711         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
10712
10713 2003-06-19  Borut Razem <borut.razem AT siol.net>
10714
10715         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
10716         fixed Z80 port - crt0.o: cannot open.
10717
10718 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
10719
10720         * support/Util/MySystem.c (merge_command): revert bad fix
10721
10722 2003-06-18  Borut Razem <borut.razem AT siol.net>
10723
10724         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
10725
10726 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10727
10728         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
10729         option --use-stdout sends errors to stdout instead of stderr.
10730
10731 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
10732
10733         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
10734
10735 2003-06-15  Borut Razem <borut.razem AT siol.net>
10736
10737         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
10738         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
10739         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
10740         fixed width array of pointers replaced with sets;
10741         multiple include and lib paths ared transferred to preprocessor and linker
10742         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
10743         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
10744         fixed width array of pointers
10745         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
10746         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
10747         fixupPath(), getPathDifference()
10748         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
10749         fixed width array of pointers
10750
10751 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
10752
10753         * src/pic16/ralloc.c: fix warnings
10754         * src/pic16/pcode.c: fix warning
10755
10756 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
10757
10758          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
10759         know all the details, but essentially this set of changes enable
10760         the pic16 port to generate movff instructions and generate assembler
10761         directives,
10762         * src/SDCCmain.c:
10763         * src/pic16/gen.c:
10764         * src/pic16/glue.c:
10765         * src/pic16/pcode.c:
10766         * src/pic16/device.c:
10767         * src/pic16/main.c:
10768         * src/pic16/pcode.h:
10769         * src/pic16/pcoderegs.c:
10770         * src/pic16/ralloc.c:
10771         * src/pic16/ralloc.h:
10772
10773 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10774
10775         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
10776         added option --vc, so sdcc errors and warnings are compatible with
10777         Microsoft Visual Studio.
10778
10779 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10780
10781         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
10782           device/lib/libfloat.lib: added atof function.
10783
10784 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
10785
10786         * doc/sdccman.lyx: updated to Lyx 1.3
10787         * doc/cdbfileformat.lyx: updated to Lyx 1.3
10788         * doc/test_suite_spec.lyx: updated to Lyx 1.3
10789         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
10790
10791 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
10792
10793         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
10794
10795 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10796
10797         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
10798           additions to the "related tools/documentation" section
10799
10800 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
10801
10802         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
10803
10804 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
10805
10806         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
10807         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
10808
10809 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
10810
10811         * doc/sdccman.lyx: fix double dash and other minor things
10812         * doc/Makefile: fix double dash
10813
10814 2003-05-28  Karl Bongers(patches from Martin Helmling)
10815         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
10816           condition and ignore commands.
10817
10818 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10819
10820         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
10821           is in parts still quite out of date, I did changes as far as I felt makes sense
10822           for a non-native english speaker.
10823           Please feel free to add to the manual or to correct my changes.
10824         * doc/Makefile: undid touching the date of intermediate tex files.
10825
10826 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10827
10828         * doc/sdccman.lyx: Manual has an index now
10829
10830 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
10831
10832         Finalize muluint/mulsint and mululong/mulslong merging:
10833         * device/lib/_mulint.c
10834         * device/lib/_mullong.c
10835         * device/lib/gbz80/mul.s
10836         * device/lib/gbz80/stubs.s
10837         * device/lib/z80/mul.s
10838         * device/lib/z80/stubs.s
10839         * src/SDCCsymt.c (initCSupport)
10840
10841 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10842
10843         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
10844         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
10845           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
10846           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
10847           instead of /Zm500.
10848
10849 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10850
10851         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
10852           the regression tests I'm not brave enough to enable 245.b, 245.c
10853         * doc/sdccman.lyx: added latex preamble for hyperref package.
10854           Using pdflatex this will give you a hyperlinked pdf file with
10855           bookmarks. (prepend '%' before /usepackage if this breaks something)
10856
10857 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10858
10859          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
10860
10861 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
10862
10863         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
10864
10865 2003-05-21    <johan AT balder>
10866
10867         * src/SDCCglue.c (printIval): fixed bug #739934
10868
10869 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
10870
10871         Applied patch from bug 737905 (renamed yylineo to mylineno):
10872         * src/altlex.c
10873         * src/SDCCast.c
10874         * src/SDCglobl.h
10875         * src/SDCC.lex
10876         * src/SDCCsymt.c
10877         * src/SDCCval.c
10878         * src/pic16/pcode.c: Cleaned warnings
10879         * src/pic16/pcodeflow.c: Cleaned warnings
10880         * src/pic16/pcoderegs.c: Cleaned warnings
10881
10882 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
10883
10884         * src/pic16/pcode.c: Cleaned warnings
10885         * src/pic16/pcodepeep.c: Cleaned warnings
10886         * src/pic16/ralloc.c: Cleaned warnings
10887
10888 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
10889
10890         * doc/sdccman.lyx: fixed bug 739745
10891         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
10892
10893 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
10894
10895         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
10896         it can be defined with CFLAGS when running configure
10897         * src/SDCCmain.c: fixed compiling + linking with object files
10898
10899 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
10900
10901         * configure.in: configure for pic16 port,
10902             added --disable-pic16-port
10903         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
10904         * src/SDCCmain.c: linkOptions is changed to set *,
10905             added if/endif conditional macros to remove options help
10906             messages from optionsTable when a port is not configured, added
10907             support for the PIc16 port in the ports table, when executing
10908             the compiler with no port specified on command line, a default
10909             port is selected with the new macro DEFAULT_PORT which is
10910             defined in port.h, in setDefaultOptions() linkOptions is removed
10911             from initialization assignment, since now it is a set,
10912             parseCmdLine uses setParseWithComma for linkOptions, in
10913             linkEdit() linkOptions are accessed with new function indexSet()
10914             which returns the i'th item of a set variable. See SDCCset.c, in
10915             linkEdit() when calling buildCmdLine(), added linkOptions as
10916             last argument. Now users can pass arguments to gplink via the
10917             -Wl option, main() uses pic16glue() to glue up pic16 programs
10918         * src/SDCCpeeph.c: various changes to support pic16
10919         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
10920             return the i'th item of the set
10921         * src/SDCCset.h: added function prototype for indexSet()
10922         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
10923         * src/clean.mk: added pic16 in CLEANALLPORTS variable
10924         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
10925             added macro DEFAULT_PORT
10926         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
10927         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
10928             generated
10929         * src/pic16/glue.c: commented out some error producing lines
10930         * src/pic16/main.c: __config directives are commented out to stop
10931             gpasm complaining and test the linkage with gplink, _linkCmd and
10932             _asmCmd changed to be more gplink and gpasm friendly
10933         * src/pic16/peeph.def: peep rule 3 is commented out, since it
10934             produced an error when parsed, peep rule 12 is added to utilize
10935             movff, but it is commented out since the pCode does not support
10936             yet a command with 2 address arguments
10937
10938 2003-05-18    <johan AT balder>
10939
10940         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
10941         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
10942 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
10943
10944         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
10945   Added feature to script commands from file.
10946
10947 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
10948
10949         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
10950         * src/SDCCutil.c: include ctype.h for win32
10951
10952 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
10953
10954         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
10955
10956 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
10957
10958         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
10959   Fixed so you can set breakpoints prior to run, run does not stop
10960   on entry now.  Add tbreak.  Other enhancements and fixes for use
10961   with ddd.
10962
10963 2003-05-12  Borut Razem <borut.razem AT siol.net>
10964
10965         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
10966
10967 2003-05-11  Borut Razem <borut.razem AT siol.net>
10968
10969         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
10970         the path of bin directory, so that PATH is the only env. variable, which has to be set
10971         in case of standard installation.
10972         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
10973         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
10974         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
10975
10976 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
10977
10978         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
10979         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
10980         temp files are in the port dir; clean the gen/test directory when
10981         generating new test.c
10982         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
10983         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
10984         * support/regression/tests/zeropad.c: added
10985
10986 2003-05-09    <johan AT balder>
10987
10988         * src/SDCCglue.c: fixed bug #597940
10989
10990 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
10991
10992         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
10993   cache sfr, optimize next,step, fix off by one sourceline,
10994   support ddd list function.
10995         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
10996
10997 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
10998
10999         * support/regression/HTMLgen.py: added compare_s2f()
11000         * support/regression/Makefile: redo 1.27
11001         * support/regression/generate-cases.py: redo 1.5
11002
11003 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
11004
11005         * support/regression/tests/float.c: workaround 33 bit hex constant
11006         * support/regression/tests/simplefloat.c: fix division for host
11007
11008 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
11009
11010         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
11011         that tame's the PIC's over-aggressive optimizer.
11012
11013 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
11014
11015          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
11016          support for MSVC.
11017
11018 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
11019
11020         Initial support for DS80C400. "Hello world" runs on TINIm400
11021         (with polled I/O).
11022
11023 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
11024
11025          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
11026          * Some notes on ddd usage added in debugger/README
11027          Martin Helmling adding more features and fixes for ddd GUI debugger.
11028          Code added for nexti, stepi, up, down, and other adjustments.
11029
11030 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
11031
11032         * src/pic/pCodepeep.c non-wildcard asmops are now handled
11033         * src/pic/peeph.def Added two rules to optimize carry manipulation
11034         * src/pic/* removed debug printfs
11035
11036 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
11037
11038         * debugger/mcs51/cmd.c: added header newalloc.h
11039
11040 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
11041
11042         * as/Makefile: new EXEEXT
11043         * as/z80/Makefile: remove trailing slash of BUILDIR
11044         * as/z80/clean.mk: new EXEEXT
11045         * Makefile.common.in: add to CFLAGS (and others), don't replace it
11046         * support/cpp2/Makefile.in: new EXEEXT
11047         * src/pic/glue.c (pic14emitRegularMap): fixed warning
11048
11049 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
11050
11051         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
11052         EXEEXT was introduced to fix all related problems with targets
11053         "clean", "install" and "uninstall"; a couple of further flaws
11054         especially with "clean" have been fixed too
11055         * as/mcs51/Makefile.in
11056         * as/mcs51/clean.mk
11057         * as/z80/Makefile
11058         * Makefile
11059         * clean.mk
11060         * debugger/mcs51/Makefile.in
11061         * debugger/mcs51/clean.mk
11062         * link/z80/Makefile
11063         * link/z80/Makefile.in
11064         * link/z80/clean.mk
11065         * link/Makefile
11066         * packihx/Makefile.in
11067         * packihx/clean.mk
11068         * sim/ucsim/Makefile
11069         * sim/ucsim/clean.mk
11070         * sim/ucsim/avr.src/Makefile.in
11071         * sim/ucsim/avr.src/clean.mk
11072         * sim/ucsim/s51.src/Makefile.in
11073         * sim/ucsim/s51.src/clean.mk
11074         * sim/ucsim/xa.src/Makefile.in
11075         * sim/ucsim/xa.src/clean.mk
11076         * sim/ucsim/z80.src/Makefile.in
11077         * sim/ucsim/z80.src/clean.mk
11078         * sim/ucsim/main_in.mk
11079         * sim/ucsim/packages_in.mk
11080         * sim/ucsim/gui.src/Makefile.in
11081         * sim/ucsim/gui.src/serio.src/Makefile.in
11082         * sim/ucsim/gui.src/serio.src/clean.mk
11083         * src/Makefile.in
11084         * src/clean.mk
11085         * support/cpp2/Makefile.in
11086         * support/cpp2/clean.mk
11087         * support/makebin/Makefile
11088         * support/makebin/clean.mk
11089         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
11090         * doc/sdccman.lyx: --program-suffix no longer needed
11091
11092 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
11093
11094          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
11095          Martin Helmling added support for ddd GUI debugger.
11096          Code added to display assembly, set variables, and other commands
11097          to interface to ddd.
11098
11099 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
11100
11101         * as/Makefile: fix target clean
11102         * as/clean.mk: fix target clean
11103         * as/z80/clean.mk: fix target clean
11104
11105 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
11106
11107         * Makefile.common.in: added  AT EXEEXT AT
11108         * configure.in: removed all mingw32 stuff
11109         * configure: rebuilt from configure.in
11110         * doc/sdccman.lyx: updated section "installation"
11111         * support/scripts/sdcc_mingw32: adapted to configure
11112         * support/scripts/sdcc_cygwin_mingw32: added
11113
11114 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
11115
11116         * src/pic Added object file support for the PIC port
11117         * src/pic Applied patch from Craig Franklin (this started the object file support)
11118         * src/regression Updated the PIC regression tests for object files
11119
11120 2003-04-20  Borut Razem <borut.razem AT siol.net>
11121
11122         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
11123           lklex.c: In function `getfid':
11124           lklex.c:203: warning: array subscript has type `char'
11125         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
11126           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
11127         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
11128           stack handling macros
11129
11130 2003-04-19  Borut Razem <borut.razem AT siol.net>
11131
11132         * "handling space characters in file path" task:
11133         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
11134         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
11135         * support/Util/MySystem.h: make it self-sufficient
11136         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
11137           src/z80/main.c, sdcc/as/mcs51/lklex.c:
11138           handling space characters in file path
11139         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
11140           (it will be used by assemblers, which have their own includes, e.g. gpasm)
11141         * support/Util/MySystem.c: handling space characters in executable's path
11142
11143 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
11144
11145         * as/z80/Makefile: fix permanent rebuild of z80
11146         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
11147         * support/regression/tests/bitfields.c: added Johan's bitfields.c
11148
11149 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
11150
11151         * src/SDCCopt.c: add special case optimization to replace modulo by
11152           a power of two with a bitwise AND.
11153
11154 2003-04-18    <johan AT balder>
11155
11156         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
11157
11158 2003-04-17    <johan AT balder>
11159
11160         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
11161         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
11162
11163 2003-04-13  Borut Razem <borut.razem AT siol.net>
11164
11165         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
11166         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
11167           fixed mingw problem in adl_NORMALIZE_PATH
11168
11169 2003-04-12  Borut Razem <borut.razem AT siol.net>
11170
11171         * fixed "#pragma SAVE/RESTORE can not be nested":
11172         * src/SDCC.lex: reworked pragma handling functions
11173         * sdcc/src/SDCCglobl.h: reworked stack handling macros
11174         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
11175
11176 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
11177
11178         * src/SDCCutil.c (pathEquivalent): defined but not used
11179         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
11180         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
11181         * configure: rebuilt from configure.in
11182         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
11183         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
11184         * device/include/Makefile.in: replace sdcc_datadir
11185         * device/lib/Makefile.in: replace sdcc_datadir
11186         * Makefile.common.in: add LDFLAGS from configure
11187         * packihx/Makefile.in: use LDFLAGS
11188         * src/Makefile.in: use LDFLAGS
11189         * support/cpp2/Makefile.in: add LDFLAGS from configure
11190         * support/makebin/Makefile: use LDFLAGS
11191         * .version: bumped version number to 2.3.5
11192
11193 2003-04-12  Borut Razem <borut.razem AT siol.net>
11194
11195         * completed "different paths" task:
11196         * src/SDCCmacro.c: fixed bug in handling quotes
11197         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
11198         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
11199
11200 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
11201
11202         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
11203
11204 2003-04-11 kevin Vigor <kevin AT vigor.nu>
11205
11206         * ds390/gen.c ds390/peeph.def: fix bug 706781
11207
11208 2003-04-11  Borut Razem <borut.razem AT siol.net>
11209
11210         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
11211
11212 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
11213
11214         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
11215         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
11216          set - this bit used to not be set...).
11217         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
11218           bad code in PIC Port
11219         * src/regression/and2.c added to test bug 609268
11220         * src/regression/Makefile added and2.c to regression test
11221
11222
11223 2003-04-08    <johan AT CP255758-A>
11224
11225         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
11226         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
11227         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
11228
11229 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
11230
11231         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
11232         fix bug #487815
11233         * support/cpp2/Makefile.in: fix bug #487815
11234         * configure: rebuilt from configure.in
11235         * Makefile.common.in: docdir changed, new path suffixes
11236         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
11237         * sdcc_vc_in.h: reflect changes from sdccconf.h
11238         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
11239         * src/SDCCutil.h: remove BINDIR hack
11240         * doc/sdccman.lyx: update new path hierarchy
11241
11242 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
11243
11244         * src/SDCCpeeph.c: added okToRemoveSLOC test
11245
11246 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
11247
11248         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
11249
11250 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
11251
11252         * src/SDCCpeeph.c: added labelIsReturnOnly test
11253         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
11254
11255 2003-04-05    <johan AT balder>
11256
11257         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
11258         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
11259         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
11260         * src/SDCCast.c: fixed a warning
11261         * src/SDCCast.h: fixed a warning
11262         * src/SDCCicode.c (operandFromAst): fixed a warning
11263
11264 2003-04-04    <johan AT balder>
11265
11266         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
11267         * src/SDCCast.c (decorateType): fixed bug #715076
11268         * src/SDCC.y: fixed bug #702907
11269
11270 2003-04-03    <johan AT balder>
11271
11272         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
11273         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
11274         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
11275         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
11276         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
11277
11278 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
11279
11280         * _decdptr.c: fix return values
11281         * _gptrget.c: fix return values
11282         * _gptrgetc.c: fix return values
11283         * _gptrput.c: fix return values
11284         * _mulint.c: fix return values
11285         * as/z80/Makefile: fix 'make -j' problem
11286
11287 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
11288
11289         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
11290         * configure.in: big cleanup, updated to autoconf 2.5x
11291         * configure: rebuilt from configure.in
11292         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
11293         * sdcc_vc_in.h: reflect changes from sdccconf.h
11294         * doc/Makefile: fixed a flaw in "make install"
11295
11296 2003-04-02    <johan AT balder>
11297
11298         * src/ds390/gen.c (genCmp): no comments
11299         * src/mcs51/gen.c (genCmp): no comments
11300         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
11301         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
11302
11303 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
11304
11305         * support/regression/generate-cases.py: place generated file in given sub directory
11306         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
11307         * support/regression/Makefile: improvements for 'make -j';
11308         side effect: it's simpler and faster now
11309
11310 2003-03-31  Borut Razem <borut.razem AT siol.net>
11311
11312         * src/z80/main.c: link-{port} and as-{port} defined without path
11313         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
11314
11315 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
11316
11317         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
11318
11319 2003-03-30  Borut Razem <borut.razem AT siol.net>
11320
11321         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
11322           changed type of list parameter to set
11323         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
11324         * src/port.h: changed type of do_assemble() parameter to set
11325         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
11326           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
11327           definition of "cppoutfilename" macro with NULL value in preProcess()
11328         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
11329         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
11330         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
11331           replaced with set *binPathSet
11332         * shash_add() deallocates the item, if allready exsists, before adding the new one
11333         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
11334
11335 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
11336
11337         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
11338           a nested for loop bug in the PIC port
11339         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
11340           for loops
11341
11342 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
11343
11344         * support/Util/dbuf.h: remove C++ stuff to make it portable
11345
11346 2003-03-28  Borut Razem <borut.razem AT siol.net>
11347
11348         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
11349           literal strings in stringLiteral()
11350         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
11351         * src/Makefile.bcc, src/Makefile.in, src/src.dsp: added support/Util/dbuf.c
11352           to the project
11353
11354 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
11355
11356         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
11357
11358 2003-03-26    <johan AT balder>
11359
11360         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
11361         * src/ds390/gen.c (saveRegisters): catched symbol abuse
11362         * src/SDCCast.c (decorateType): fixed " -v < 3"
11363
11364 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
11365
11366         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
11367         Added Lenny Story's debug infrastructure changes:
11368         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
11369         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
11370         * src/cdbFile.c: added
11371         * src/SDCCdebug.c: added
11372         * src/SDCCdebug.h: added
11373         * src/SDCCast.c (createFunction)
11374         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
11375         * src/SDCCmain.c (parseCmdLine, main)
11376         * src/SDCCmem.c (redoStackOffsets)
11377         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
11378         * src/SDCCsymt.h
11379         * src/common.h
11380         * src/avr/gen.c (genAVRCode)
11381         * src/ds390/gen.c (gen390Code)
11382         * src/mcs51/gen.c (gen51Code)
11383         * src/pic/gen.c (genpic14Code)
11384         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
11385         * src/xa51/gen.c (genXA51Code)
11386         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
11387
11388 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
11389
11390         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
11391         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
11392
11393 2003-03-22    <johan AT balder>
11394
11395         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
11396
11397 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
11398
11399         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
11400         * doc/cdbfileformat.lyx: added, written by Lenny Story
11401         * doc/Makefile: added cdbfileformat.lyx
11402         * doc/clean.mk: added cdbfileformat.lyx
11403
11404 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
11405
11406         * src/mcs51/peeph.def: fix bug #705773
11407
11408 2003-03-20    <johan AT balder>
11409
11410         An sfr/sbit can have an "at #" AND an initializer
11411         * src/SDCCsymt.c (checkSClass):
11412         * src/SDCCmem.c (allocGlobal):
11413         * src/SDCCmem.c (allocLocal):
11414         * src/SDCCast.c (createBlock):
11415
11416 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
11417
11418         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
11419
11420 2003-03-16    <johan AT balder>
11421
11422         Undid the hackup of const and volatile, the problem is much bigger
11423         * src/SDCC.y:1.65
11424         * src/SDCCast.c:1.171
11425         * src/SDCCglue.c:1.138
11426         * src/SDCCicode.c:1.146
11427         * src/SDCCsymt.c:1.150
11428         * src/SDCCval.c:1.65
11429
11430 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
11431
11432         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
11433         * src/ds390/gen.c (genAddrOf): fixed bug #704087
11434
11435 2003-03-13    <johan AT balder>
11436
11437         Hackup const and volatile modifiers in type chains a bit:
11438         * src/SDCC.y:1.63
11439         * src/SDCCast.c:1.169
11440         * src/SDCCglue.c:1.136
11441         * src/SDCCicode.c:1.143
11442         * src/SDCCsymt.c1.146
11443         * src/SDCCsymt.h1.59
11444         * src/SDCCval.c:1.63
11445
11446 2003-03-12    <johan AT balder>
11447
11448         * src/SDCCBBlock.h: more LRH debugging junk
11449         * src/SDCCcflow.h: more LRH debugging junk
11450         * src/SDCCloop.c: more LRH debugging junk
11451         * src/SDCC.y (struct_declaration): fixed bug #697590
11452         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
11453         * src/ds390/gen.c (aopForRemat): fixed bug #700031
11454         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
11455
11456 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
11457         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
11458         test function names must now match exactly).
11459         * src/SDCCcse.c: added special case in findCheaperOp to allow
11460         extending a short integer. Makes less awful code for bug 700121 test case.
11461
11462 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
11463
11464         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
11465         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
11466
11467 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
11468
11469         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
11470         actually called (operandsNotEqual() was called for all
11471         operandsNotEqualX tests).
11472
11473 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
11474
11475         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
11476         with shorter literals. Fixes bug 700121.
11477
11478 2003-03-11    <johan AT balder>
11479
11480         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
11481
11482 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
11483
11484         * src/SDCCloop.c (mergeRegions): an evil beast is dead
11485         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
11486
11487 2003-03-10  Borut Razem <borut.razem AT siol.net>
11488
11489         * src/SDCCmain.c: pipe preprocessor's output
11490         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
11491         * sdcc_vc_in.h: define pclose as _pclose for WIN32
11492         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
11493         which closes all pipes in pipeSet set
11494         * src/SDCCset.c: free deleted item in function deleteSetItem()
11495         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
11496         moved from z80 to src subproject
11497         * .version: increased version number to 2.3.4
11498
11499 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
11500
11501         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
11502         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
11503         * support/regression/ports/xa51/spec.mk: fix typo
11504
11505 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
11506
11507         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
11508
11509 2003-03-09  Borut Razem <borut.razem AT siol.net>
11510
11511         * src/SDCCmain.c: pipe preprocessor's output
11512         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
11513         * sdcc_vc_in.h: define pclose as _pclose for WIN32
11514         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
11515         which closes all pipes in pipeSet set
11516         * src/SDCCset.c: free deleted item in function deleteSetItem()
11517         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
11518         moved from z80 to src subproject
11519
11520 2003-03-09  Borut Razem <borut.razem AT siol.net>
11521
11522         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
11523         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
11524         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
11525         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
11526         * src/SDCCglobl.h: unification of WIN32 native definitions
11527
11528 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
11529
11530         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
11531
11532 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
11533
11534         * src/configure.in:   check for endianess (even while cross-compiling)
11535         * src/configure:      check for endianess (even while cross-compiling)
11536         * src/configure_in.h: check for endianess (even while cross-compiling)
11537         * src/avr/gen.c:        remove old endianess stuff
11538         * src/mcs51/gen.c:      remove old endianess stuff
11539         * src/ds390/gen.c:      remove old endianess stuff
11540         * src/pic/gen.c:        remove old endianess stuff
11541         * src/pic/genarith.c:   remove old endianess stuff
11542         * src/pic/glue.c:       fix endianess check
11543         * src/pic16/gen.c:      remove old endianess stuff
11544         * src/pic16/genarith.c: remove old endianess stuff
11545         * src/pic16/glue.c:     fix endianess check
11546         * src/xa51/gen.c:       remove old endianess stuff
11547         * src/z80/gen.c:        fix endianess check
11548         * src/SDCCglue.c:       fix endianess check
11549         * src/ds390/peeph.def: fix bug 700036
11550
11551 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
11552
11553         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
11554         * src/configure: find appropriate data-types on host for SDCC's int and long
11555         * src/configure.in: find appropriate data-types on host for SDCC's int and long
11556         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
11557         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
11558
11559 2003-03-07    <johan AT balder>
11560
11561         Just a big NOOP:
11562                 some minor cleanups before the big shot
11563                 OP_DEFS and OP_USES now use Kevin's protection
11564                 new option --nolabelopt
11565
11566         * src/SDCCBBlock.c:
11567         * src/SDCCast.c,:
11568         * src/SDCCcflow.c:
11569         * src/SDCCcse.c:
11570         * src/SDCCicode.c:
11571         * src/SDCCicode.h:
11572         * src/SDCClabel.c:
11573         * src/SDCCloop.c:
11574         * src/SDCCmain.c:
11575         * src/ds390/ralloc.c:
11576         * src/mcs51/ralloc.c:
11577         * src/pic/ralloc.c:
11578         * src/xa51/ralloc.c:
11579         * src/z80/ralloc.c:
11580
11581 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
11582
11583         * src/pic/pcode.c (get_op): fix 64 bit warnings
11584         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
11585         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
11586         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
11587         * support/regression/tests/malloc.c: fix 64 bit warnings
11588
11589 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
11590
11591         * src/mcs51/gen.c (genMinus): fixed bug 696436
11592
11593 2003-03-02  Borut Razem <borut.razem AT siol.net>
11594
11595         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
11596
11597 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
11598
11599         * configure.in: test for mkstemp
11600         * sdccconf_in.h: add HAVE_MKSTEMP
11601
11602 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
11603
11604         * device/include/ctype.h: removed warning while using --stack-auto
11605         * device/include/malloc.h: removed warning while using --stack-auto
11606         * device/include/string.h: removed warning while using --stack-auto
11607
11608 2003-02-23  Borut Razem <borut.razem AT siol.net>
11609
11610         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
11611         because NDEBUG is defined (see man assert)
11612         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
11613
11614 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
11615
11616         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
11617         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
11618
11619 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
11620
11621         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
11622         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
11623
11624 2003-02-18    <johan AT balder>
11625
11626         * as/mcs51/asmain.c (asmbl): module can start with a digit
11627         * as/z80/asmain.c (asmbl): module can start with a digit
11628
11629 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
11630
11631         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
11632         * src/asm.c: fix pipe() for Mingw32
11633
11634 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
11635
11636         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
11637         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
11638         make -V work again; --c1mode reads now from stdin
11639         * doc/sdccman.lyx: added --c1mode
11640         * support/Util/SDCCerr.c: new messages for c1 mode
11641         * support/Util/SDCCerr.h: new messages for c1 mode
11642         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
11643
11644 2003-02-15    <johan AT balder>
11645
11646         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
11647
11648 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
11649
11650         * doc/sdccman.lyx: Environment variables, -o and other minor things
11651
11652 2003-02-14    <johan AT balder>
11653
11654         * src/xa51/main.c: before anyone really tries to use it :)
11655
11656         * Install doc's in share/sdcc/doc
11657         * removed some obsolete files
11658         * Do a proper make distclean and uninstall
11659         M Makefile.common.in
11660         R sdccbuild.sh
11661         M as/Makefile
11662         M device/include/Makefile.in
11663         M device/lib/Makefile.in
11664         M doc/sdccman.lyx
11665         M link/Makefile
11666         M sim/ucsim/doc/Makefile.in
11667         M src/clean.mk
11668         R src/avr/peeph.rul
11669         R src/xa51/peeph.rul
11670         M support/cpp2/Makefile.in
11671         M support/makebin/Makefile
11672
11673
11674 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
11675
11676         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
11677
11678 2003-02-10  Borut Razem <borut.razem AT siol.net>
11679
11680         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
11681         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
11682         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
11683         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
11684         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
11685         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
11686         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
11687         src/z80/Makefile.bcc: Borland Makefile cleanup
11688         * as/z80/Makefile.bcc: Added Borland Makefile
11689         * support/cpp2/borland.h: Removed
11690
11691 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
11692
11693         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
11694         * src/SDCC.lex: new pragma NOIV
11695         * src/SDCCglobl.h: new pragma NOIV
11696         * src/SDCCmem.c: new pragma NOIV
11697
11698 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
11699
11700         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
11701
11702 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
11703
11704         * src/SDCCmain.c: signal handling is switched off by --debug
11705         * doc/Makefile: small fix for install; use clean.mk again
11706         * doc/clean.mk: clean *.pdf and *.html too
11707
11708 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
11709
11710         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
11711         * device/lib/printfl.c: fix a ds390 bug by making it portable
11712         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
11713         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
11714         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
11715         * debugger/mcs51/cmd.c: converted multi-line string literals
11716         * sim/ucsim/globals.cc: converted multi-line string literals
11717         * src/SDCCmain.c: introduced signal handler to remove temp files
11718         * doc/Makefile: small tweaks, implement clean
11719         * doc: removed generated files
11720
11721 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
11722
11723         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
11724         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
11725         Address Record is not correctly generated for DS390."
11726
11727 2003-02-02  Borut Razem <borut.razem AT siol.net>
11728
11729         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
11730         * as/mcs51/asm.h: fixed compilation with Borland C
11731         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
11732         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
11733         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
11734         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
11735         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
11736         src/z80/Makefile.bcc: delete $(LIB) only if exist
11737         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
11738
11739 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
11740
11741         * device/include/malloc.h: introduced NULL
11742         * device/include/string.h: introduced NULL
11743         * device/include/stdlib.h: introduced NULL
11744         * device/lib/_memcpy.c: removed NULL
11745         * device/lib/_strcat.c: removed NULL
11746         * device/lib/_strchr.c: removed NULL
11747         * device/lib/_strcmp.c: removed NULL
11748         * device/lib/_strcpy.c: removed NULL
11749         * device/lib/_strcspn.c: removed NULL
11750         * device/lib/_strlen.c: removed NULL
11751         * device/lib/_strncat.c: removed NULL
11752         * device/lib/_strncmp.c: removed NULL
11753         * device/lib/_strncpy.c: removed NULL
11754         * device/lib/_strpbrk.c: removed NULL
11755         * device/lib/_strrchr.c: removed NULL
11756         * device/lib/_strspn.c: removed NULL
11757         * device/lib/_strstr.c: removed NULL
11758         * device/lib/_strtok.c: removed NULL
11759         * device/lib/malloc.c: removed NULL, include own header
11760
11761 2003-02-02    <johan AT balder>
11762
11763         * 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
11764         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
11765         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
11766         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
11767         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
11768         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
11769
11770 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
11771
11772         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
11773         area 'DATA'"
11774
11775 2003-02-01    <johan AT balder>
11776
11777         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
11778
11779 2003-01-31    <johan AT CP255758-A>
11780
11781         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
11782
11783 2003-01-30    <johan AT balder>
11784
11785         * src/SDCCBBlock.c: automatic bug detection
11786         * src/SDCCicode.c: automatic bug detection
11787
11788 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
11789
11790         * src/SDCCglobl.h:   now --xram-size 0 works
11791         * src/SDCCmain.c:    now --xram-size 0 works
11792
11793 2003-01-29    <johan AT balder>
11794
11795         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
11796
11797 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
11798
11799         * as/mcs51/aslink.h: Added options --xram-size and --code-size
11800         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
11801         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
11802         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
11803         * src/SDCCglobl.h:   Added options --xram-size and --code-size
11804         * src/SDCCmain.c:    Added options --xram-size and --code-size
11805
11806 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
11807
11808         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
11809         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
11810
11811 2003-01-27    <johan AT balder>
11812
11813         * src/SDCC.y: fixed bug #613764
11814
11815 2003-01-26    <johan AT balder>
11816
11817         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
11818         * src/SDCCsymt.h: fixed bug #673374
11819         * src/SDCCglue.c: fixed bug #661910
11820         * src/SDCCast.c: fixed bug #458099 and 673374
11821
11822 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
11823
11824         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
11825         * as/mcs51/strcmpi.h: added
11826         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
11827         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
11828         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
11829         * as/mcs51/assym.c: strcmpi -> as_strcmpi
11830         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
11831         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
11832         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
11833         * as/mcs51/Makefile.aslink: new module strcmpi
11834         * as/mcs51/Makefile.asx8051: new module strcmpi
11835         * as/mcs51/Makefil.bcc: new module strcmpi
11836         * as/mcs51/Makefile.in: new module strcmpi
11837         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
11838
11839 2003-01-26    <johan AT balder>
11840
11841         * src/SDCCglue.c: reverted back to 1.124
11842         * src/SDCCast.c: reverted back to 1.156
11843         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
11844
11845 2003-01-25    <johan AT balder>
11846
11847         * src/SDCCglue.c: A better fix for bug #661910
11848         * src/SDCCast.c: A better fix for bug #661910
11849         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
11850
11851 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
11852
11853         * src/Makefile.in: remove spawn.o
11854         * src/SDCCmain.c: remove spawn.h
11855         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
11856         * src/spawn.c: removed
11857         * src/spawn.h: removed
11858         * support/regression/ports/ds390/spec.mk: link with -r
11859
11860 2003-01-24    <johan AT CP255758-A>
11861
11862         * src/ds390/gen.c (aopOp): fixed bug #667458
11863         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
11864         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
11865         (createIvalCharPtr): an ival doesn't always have a storage class anymore
11866
11867 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
11868
11869         * src/mcs51/peeph.def: better assembler identation by Frieder
11870         * src/mcs51/gen.c: better assembler identation by Frieder
11871
11872 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
11873
11874         * as/z80/string.h: removed for gcc 3.2
11875         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
11876         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
11877
11878 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
11879
11880         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
11881         * src/SDCCpeeph.c (replaceRule): fix bug #663503
11882         * support/regression/Makefile: separate temp files for ports
11883         * support/regression/generate-cases.py: separate temp files for ports
11884         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
11885         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
11886
11887 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
11888
11889         * moved tinitalk to device/examples/ds390
11890
11891 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
11892
11893         * as/mcs51/lkmem.c: rflag is for DS390
11894         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
11895         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
11896                          (linkEdit): move mem- and map-files the same way as ihx-files
11897         * src/z80/main.c (_setDefaultOptions): removed --generic
11898         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
11899         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
11900         * src/pic/glue.c (picglue): --c1mode works again
11901         * src/pic16/glue.c (pic16glue): --c1mode works again
11902         * src/asm.c (printCLine): fix #660034
11903
11904 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
11905
11906         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
11907         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
11908         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
11909         * as/mcs51/lkmem (summary): better fix for sp problem
11910         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
11911         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
11912         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
11913                                               remove --stack-after-data
11914
11915 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
11916
11917         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
11918         * src/SDCCutil.c (join): ugly bug: missing '\0'
11919         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
11920
11921 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
11922
11923         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
11924         * src/port.h: typo
11925         * src/pic/main.c (_asmCmd): gpasm supports -o
11926         * src/z80/main.c: more general macros
11927         * device/lib/Makefile.in: remove intermediate files
11928
11929 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
11930
11931         * .version: Bumped version number to 2.3.3
11932         * src/SDCCBBlock.c: new option -o
11933         * src/SDCCglobl.h: new option -o
11934         * src/SDCCglue.c: new option -o
11935         * src/SDCCmain.c: new option -o
11936         * src/asm.c: new option -o
11937         * src/ds390/main.c: new option -o
11938         * src/pic/glue.c: new option -o
11939         * src/pic/pcode.c: new option -o
11940         * src/pic/ralloc.c: new option -o
11941         * src/pic16/glue.c: new option -o
11942         * src/pic16/pcode.c: new option -o
11943         * src/pic16/ralloc.c: new option -o
11944         * src/z80/main.c: new option -o
11945         * device/lib/Makefile.in: use -o
11946         * support/regression/ports/ds390/spec.mk: use -o
11947         * support/regression/ports/gbz80/spec.mk: use -o
11948         * support/regression/ports/mcs51/spec.mk: use -o
11949         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
11950         * support/regression/ports/z80/spec.mk: use -o
11951         * support/regression/ports/ucz80/spec.mk: use -o
11952         * support/regression/ports/xa51/spec.mk: use -o
11953         * support/regression/fwk/lib/timeout.c: fix usage string
11954
11955 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
11956         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
11957
11958 2003-01-07    <johan AT balder>
11959
11960         * src/SDCCast.c (decorateType): fixed bug #600035
11961
11962 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
11963         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
11964         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
11965         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
11966         * src/pic/pcode.c: outcommented unused variable to remove warnings
11967         * src/pic/ralloc.c: outcommented unused variable to remove warnings
11968
11969 2003-01-06    <karl AT turbobit.com>
11970         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
11971    regression tests.
11972
11973 2003-01-06    <johan AT balder>
11974
11975         * src/SDCCicode.c: fixed array add
11976
11977 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
11978         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
11979         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
11980
11981 2003-01-04    <johan AT balder>
11982
11983         * src/SDCCval.c (getNelements): fixed the initialized array of structures
11984
11985 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
11986         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
11987
11988 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
11989         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
11990         * support/regression/tests/bug-524697.c: fit mem usage into 8032
11991
11992 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
11993         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
11994
11995 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
11996         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
11997
11998 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
11999         * src/mcs51/main.c: removed {bindir}{sep} from aslink
12000
12001 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
12002
12003     * in /sdcc/as/mcs51/ changed these files in order to create an
12004     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
12005     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
12006     following files to include the previous two files: aslink.dsp,
12007     Makefile.aslink, Makefile.bcc, and Makefile.in.
12008
12009     * Changed /sdcc/src/SDCCmain.c so it creates files with extension
12010     .adb instead of .cdb
12011
12012 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
12013
12014         * /sdcc/as/mcs51/lklist.c: Now reports memory usage using the
12015         value from option --iram-size.
12016
12017 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
12018
12019         * /sdcc/as/mcs51/lklist.c: added boundary check before using
12020         dram[] array.
12021
12022 2002-09-18    <wiml AT hhhh.org>
12023
12024         * SDCClrange.h: exposed setFromRange() and setToRange()
12025         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
12026           packRegsForAccUse() (bug 542397)
12027         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
12028           multiple times and emitting the fetch operations more than once
12029           added aopGetUsesAcc() function to allow binary operators to
12030           fetch their operands in the correct order; made genMinus() emit
12031           compact code for X = LITERAL - Y
12032
12033 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
12034         * /sdcc/as/mcs51/lklist.c: Fixed incorrect number of parameters to
12035         sprintf() in line 1267.
12036
12037 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
12038         * /sdcc/src/SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
12039         like ports.
12040
12041 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
12042         Changes to aslink (All the changes are marked with 'JCF'):
12043
12044         * /sdcc/as/mcs51/aslink.h: External definition of sflag and
12045         summary().
12046
12047         * /sdcc/as/mcs51/lkarea.c: Computes the size of area BSEG_BYTES from
12048         area BSEG.  Also moves, if possible, the DATA area down into the internal
12049         ram so more space is available.
12050
12051         * /sdcc/as/mcs51/lkdata.c: Definition of memory summary output flag
12052         sflag.
12053
12054         * /sdcc/as/mcs51/lklist.c: For the BSEG area report the size in bits,
12055         not bytes.  Function summary() which creates a memory usage summary
12056         file with extension .mem.  Reports of overlaping stack and small stack
12057         size.  If the space for the stack is less than 16 bytes aslink trows a
12058         warning.
12059
12060         * /sdcc/as/mcs51/lkmain.c: Creation of some of the default areas for
12061         the 8051.  Option 'y' for memory summary output file.
12062
12063         Changes to sdcc (All the changes are marked with 'JCF'):
12064
12065         * /sdcc/src/SDCCglobl.h: External definition of RegBankUsed[4].
12066
12067         * /sdcc/src/SDCCglue.c:  If a register bank is used, creates an
12068         overlaying area for it (uses RegBankUsed[4]).
12069
12070         * /sdcc/src/SDCCmain.c: Definition RegBankUsed[4]; marks register
12071         bank zero as used by default.  By default aslink locates the stack
12072         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
12073         the creation of the .mem file.  Delegates the allocation of data area
12074         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
12075         the begining of the stack area to aslink.
12076
12077         * /sdcc/src/SDCCmem.c:  If a register bank is used, marks it so
12078         glue() in SDCCglue.c creates an area for it.
12079
12080 2002-09-03  Borut Razem <borut.razem AT siol.net>
12081         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
12082         sdcc/src/pic/glue.c:
12083         introduced atexit() handler for teporay files removal in case of
12084         errors, assertions, ...
12085
12086 2002-08-29  Borut Razem <borut.razem AT siol.net>
12087         * sdcc/support/cpp2/auto-host_vc_in.h:
12088         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
12089         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
12090         Maybe there is a similar problem with BORLANDC? It should be checked!
12091
12092         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
12093         corrected improper use of assert: the assignment to clr variable was done inside the assert.
12094         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
12095         was not executed, and the compiler (cl) launched a warning:
12096         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
12097
12098 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
12099         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
12100
12101 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
12102         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
12103
12104         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
12105           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
12106           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
12107           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
12108           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
12109           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
12110           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
12111         - added Release configuration in VS projects
12112         - review of compiler an linker options
12113         - VC .exe files are generated in bin_vc directory, not to interfere
12114           with binaries generated from other projects (cygwin, mingw, bcc ...)
12115
12116         * sdcc/src/yacc.dsp: added
12117
12118         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
12119         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
12120         and insert the version number definitions from .version
12121
12122         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
12123
12124         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
12125         added - genarate auto-host.h using auto-host_vc_in.h as template
12126
12127         * sdcc/sdcc_vc.h,
12128         removed from CVS, generated automatically
12129
12130 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
12131         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
12132
12133 2002-08-11  Borut Razem <borut.razem AT siol.net>
12134         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
12135
12136 2002-08-10  Borut Razem <borut.razem AT siol.net>
12137         * src/SDCCmain.c (main):
12138         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
12139         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
12140         The consequence was that some temporary files were not removed.
12141
12142         * src/SDCCglue.c:
12143         unification of code in functions tempfilename() and tempfile():
12144         function tempnam() is defined in Visual Studio 6.0 and .NET
12145
12146         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
12147
12148         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
12149           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
12150         - removed compiler command line option /WX: Treats all warnings as errors
12151         - update a list of source files, included into the project
12152
12153         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
12154           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
12155         changed project type to Generic Project so that can be correcly converted to VS.NET project
12156
12157         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
12158
12159         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
12160
12161         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
12162
12163         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
12164         added return 0 statements after assert() to make compiler happy
12165
12166         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
12167         added newline in the def file to keep MSC compiler satisfied
12168
12169         * sdcc/src/z80/gen.c:
12170         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
12171           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
12172         - solved MSC error in function aopDump()
12173
12174         * sdcc_vc.h: define PREFIX as "\\sdcc"
12175
12176 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
12177         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
12178
12179 2002-06-22  Scott Dattalo <scott AT dattalo.com>
12180         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
12181         - Rewrote the register banking algorithm.
12182         - Added pCode live-range analysis to registers (for now, only non-used and
12183         singly-used registers optimized away)
12184
12185         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
12186
12187         * 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.
12188
12189 2002-05-10  Scott Dattalo <scott AT dattalo.com>
12190         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
12191
12192 2002-04-22  Michael Hope  <michaelh AT vroom>
12193
12194         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
12195
12196         * configure.in (DD_COPT): Added include support required for gbdk.
12197
12198         * .version: Bumped version number just to increase it.
12199
12200         * src/SDCCmain.c: Added -nostdinc to the default options.
12201
12202 2002-04-15  Michael Hope  <michaelh AT vroom>
12203
12204         * device/lib/z80/printf.c (sprintf): Added.
12205
12206         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
12207
12208         * src/z80/peeph.def: Added transpose redundent load rule.
12209
12210         * src/z80/main.c: Added force callee saves for jaune.
12211
12212         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
12213
12214         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
12215
12216 2002-03-28  Johan Knol  <johan AT balder>
12217
12218         * src/SDCCval.c: fixed bug #532436
12219
12220 2002-03-14  Scott Dattalo <scott AT dattalo.com>
12221         * /src/port.h:
12222         Added "char *Processor" field to the port structure.
12223
12224         * /src/SDCCmain.c:
12225         Added -p option. Allows port dependent processor to be specified.
12226
12227         * all ports:
12228         Initialized the new field char *Processor field to NULL in all ports
12229
12230         * /src/pic/*:
12231         Compiler generated registers for interrupt context saving
12232         were not getting allocated.
12233
12234 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
12235
12236         * /src/SDCCast.c:
12237         Fixed left shift. Will promote the left side of a left shift
12238         if a) left shifting more than size of operand or b) when assigned
12239         to something size > size of left side
12240
12241 2002-03-14  Scott Dattalo <scott AT dattalo.com>
12242         * src/pic/*
12243         tons of changes. Register allocation has been
12244         rewritten. Added customization for the various PICs. Flow
12245         analysis is restructured. ...
12246
12247         * src/pic/device.h:
12248         Added
12249
12250         * src/pic/device.c:
12251         Added. device.c is a PIC port hack to accomodate variations
12252         in PIC devices.
12253
12254 2002-03-13  Michael Hope  <michaelh AT vroom>
12255
12256         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
12257
12258 2002-03-04  johanknol  <johanknol AT manik>
12259
12260         * /src/SDCCval.c: fixed
12261
12262         const unsigned char arr[][2] = { { 0, 1 } };
12263         t18.c:1: error: Initializer element is not constant
12264
12265 2002-03-04  bela  <bela AT manik>
12266
12267         * /device/include/mcs51reg.h:
12268         ds89c420 register definition update
12269
12270 2002-03-03    <johan AT FRIJA>
12271
12272         * support/Util/SDCCerr.c: did something, but don't no why anymore
12273
12274         * support/regression/tests/bug-524691.c: made it a little less shy
12275
12276         * src/SDCCast.c (decorateType): fixed bug #524697
12277
12278         * src/SDCCast.c: made some lineno improvements
12279
12280         * src/SDCCval.c (getNelements): changed warning to error
12281
12282         * src/SDCCglue.c (printIvalArray): changed warning to error
12283
12284         * src/SDCCicode.c: fixed a warning for mingw
12285
12286         * src/SDCCast.c (decorateType): fixed the << promotion for ops
12287
12288         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
12289
12290 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
12291
12292         * src/ds390/peeph.def:
12293         Added some more peephole rules
12294
12295         * src/ds390/gen.c: Various fixes & enhancements
12296
12297         * src/SDCClrange.c, src/SDCClrange.h:
12298         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
12299
12300         * src/ds390/ralloc.c:
12301         various fixes & enhancements (ds390) specific
12302
12303         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
12304         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
12305         from rallocs.
12306
12307         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
12308
12309 2002-03-02    <johan AT FRIJA>
12310
12311         * src/SDCCast.c (decorateType): fixed bug #524708
12312
12313         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
12314
12315         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
12316
12317 2002-03-01  Michael Hope  <michaelh AT vroom>
12318
12319         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
12320
12321         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
12322
12323 2002-03-01    <johan AT FRIJA>
12324
12325         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
12326
12327         * src/SDCCast.c (decorateType): fixed bug #524209
12328
12329         * src/SDCCval.c (valNot): fixed bug #524195
12330
12331 2002-02-26    <johan AT balder>
12332
12333         * src/xa51/gen.c: fixed a warning
12334
12335         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
12336
12337         * src/SDCCast.c (decorateType): fixed bug #522534
12338
12339 2002-02-23    <johan AT balder>
12340
12341         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
12342
12343 2002-02-22    <johan AT balder>
12344
12345         * src/SDCCast.c: fixed bug #514865
12346
12347         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
12348
12349 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
12350
12351         * sdcc/src/SDCCloop.c:
12352         Previous fix was not good. basic blocks that have "break" or "return" are
12353         not really partof a loop , but live ranges used in these blocks should
12354         be live thru the entire loop, so set partOfLoop but don't add them to
12355         loop region
12356
12357 2002-02-21    <johan AT FRIJA>
12358
12359         * src/SDCCcse.c: fixed bug #514308
12360
12361 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
12362
12363         * src/SDCCloop.c:
12364         Fixed BUG #519583. If a conditional block ended in a return/break
12365         statement inside a loop, it was not being considered part of the loop.
12366
12367         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
12368
12369 2002-02-10  Karl Bongers <karl AT turbobit.com>
12370
12371         * debugger/*:
12372         Fixed up SDCDB debugger somewhat.  Updated debugger/README
12373         with lots of comments and notes.
12374
12375         * device/examples/test2.c:
12376         Fix bug, "red" variable not being initialized(compiler complained).
12377
12378         * device/examples/Makefile, examples/test3.c:
12379         Add Makefile in device/examples folder, compiles test3.c
12380         for use as a multiple module SDCDB test case.
12381
12382         * sim/ucsim/cmd.src/cmdset.cc:
12383         Took out debug printfs in ucsim "next" command.
12384
12385         * sim/ucsim/xa.src:
12386         Karl and Johan start ucsim XA support.  Most dissassembly working,
12387         about 75% emulation done(plenty of work remaining).
12388
12389         * sim/ucsim/z80.src:
12390         Add Z80 support to ucsim, add test-ucz80 regression test,
12391         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
12392         Notice z80 compiler fails on examples/test3.c/crc code.
12393
12394 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
12395
12396         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
12397         Added support for --parms-in-bank1
12398
12399         * src/ds390/peeph.def:
12400         added a few more peephole optimzations
12401
12402         * src/ds390/main.c:
12403         1) added __builtin_inp & __builtin_outp used to read in data of given length
12404            from a memory mapped port
12405         2) added __builtin_memcmp
12406         3) added __builtin_swapw swap bytes of a short
12407
12408         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
12409         1) handle multiple send & receives from register bank1
12410         2) ralloc can now allocate DPTR1 to some liveRanges
12411
12412         * src/SDCCsymt.c, src/SDCCsymt.h:
12413         changes to handle multiple sends & receives
12414
12415         * src/SDCCptropt.h:
12416         added some pointer arithmetic optimization
12417
12418         * src/SDCCptropt.c:
12419         added some pointer arithmetic optimizations but not stable yet so not
12420         called from anywhere (will get this working shortly)
12421
12422         * src/SDCCopt.c: fixed for multiple sends & receives
12423
12424         * src/SDCCmain.c:
12425         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
12426         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
12427            set preprocessor defines (depending on options)
12428
12429         * src/SDCCicode.c, src/SDCCicode.h:
12430         changes made to handle multiple sends & receives
12431
12432         * src/SDCCglobl.h:
12433         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
12434
12435         * src/SDCCcse.c, src/SDCCcse.h:
12436         added function findbackward def (to be used in upcoming optimization)
12437
12438         * src/SDCCcflow.c, src/SDCCcflow.h:
12439         added function returnAtEnd - to determine if a basic block terminates with
12440         a RETURN iCode
12441
12442         * src/SDCCast.c, src/SDCCast.h:
12443         added option parms-in-bank1
12444
12445         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
12446         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
12447         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
12448         adjusted for --parms-in-bank1 option
12449
12450         * device/include/string.h:
12451         donot redefine "reentrant" keyword
12452
12453         * device/include/ds80c390.h: Added some more SFRs
12454
12455 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
12456
12457         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
12458
12459 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
12460
12461         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
12462
12463 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
12464
12465         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
12466
12467 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
12468
12469         * Added --xram-movc option
12470
12471 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
12472
12473         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
12474
12475 2002-01-11  Johan Knol
12476
12477         * Added math lib of Jesus Calvino-Fraga
12478
12479 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
12480
12481         * src/SDCCmain.c (processFile): fix processing of ../../src.c
12482         * support/regression/Makefile: new target test-mcs51-stack-auto
12483         * support/regression/ports/mcs51-stack-auto/spec.mk: added
12484
12485 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
12486
12487         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
12488
12489 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
12490
12491         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
12492
12493 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
12494
12495         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
12496
12497         * src/SDCCglue.h: add definition for printIvalChar()
12498
12499 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
12500
12501         * src/SDCCast.c: fix #498138 by Johan
12502
12503         * src/SDCCglue.c: fix #498138 by Johan
12504
12505 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
12506
12507         * support/regression/Makefile: fix clean
12508
12509         * support/regression/ports/ds390/support.c: fix transmission of last character
12510
12511 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
12512
12513         * /sdcc/src/ds390/gen.c:
12514         a) improved computing address of stack variable
12515         b) took out some #if 0 code
12516         c) improved parmBytes adjustment
12517         d) improved genPlusIncr & genMinusIncr
12518         e) genCmp could generate bad code (when left assigned to DPTR)
12519         f) Fixed bug in hasInc
12520
12521         * /sdcc/src/ds390/ralloc.c:
12522         a) packRegsForSupport could mess up live information (Fixed)
12523         b) packRegsDPTRuse could be incorrect for left & right shift
12524
12525         * /sdcc/src/mcs51/ralloc.c:
12526         packRegsForSupport could mess up the live information (Fixed)
12527
12528         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
12529
12530         * /sdcc/src/SDCCast.c:
12531         can reverse a loop even if function call is present as long
12532         as the loop control variable is local & is not passed as parameter
12533
12534 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
12535
12536         * /sdcc/ChangeLog: *** empty log message ***
12537
12538         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
12539         More builtin function additions for TININative
12540
12541         * /sdcc/src/ds390/ralloc.c:
12542         Had broken the regression testsuite
12543
12544         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
12545
12546         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
12547         Added funcattr hasStackParms will be set for reentrant functions when there
12548         are paramteres on the stack, this helps in minimizing frame pointer generation
12549         typeFromStr can handle function pointers now
12550
12551         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
12552         *** empty log message ***
12553
12554 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
12555
12556         * /src/ds390/gen.c, /src/ds390/main.c:
12557         More builtin function additions for TININative
12558
12559         * /src/ds390/ralloc.c:
12560         Had broken the regression testsuite
12561
12562         * /src/SDCCast.c: Fixed a bug in dumptree
12563
12564         * /src/SDCCsymt.c, /src/SDCCsymt.h:
12565         Added funcattr hasStackParms will be set for reentrant functions when there
12566         are paramteres on the stack, this helps in minimizing frame pointer generation
12567         typeFromStr can handle function pointers now
12568
12569         * /doc/builtins.txt, /doc/TININative.txt:
12570         *** empty log message ***
12571
12572
12573 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
12574
12575         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
12576         ALPHA version for -mTININative
12577
12578         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
12579         updated to reflect changes in the port structure
12580
12581         * /src/port.h:
12582         added function do_assemble (similar to do_link) if non-null this function
12583         will be called to do assembly (-mTININative) requires a multi command
12584         assembly
12585         added function genAssemblerEnd will be called to generate assembler Epilogue
12586
12587         * /src/SDCCsymt.c:
12588         added _JavaNative to debug info printing
12589
12590         * /src/SDCCmain.c: added option --tini-libid
12591         added port->do_assemble function (-mTININative) has a multi command assemble
12592
12593         * /src/SDCCglue.c: Disabled "constExpr" check
12594         added port->genAssemblerEnd function
12595
12596         * /src/SDCCglobl.h: Added option --tini-libid value
12597
12598         * /src/SDCCast.h:
12599         tookout optimizeCompare from the header (has no external references)
12600
12601         * /src/SDCCast.c: made one more function "static"
12602
12603 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
12604
12605         * src/z80/mappings.i: Added z80asm support.
12606
12607         * src/z80/main.c: Added z80asm support on --asm=z80asm
12608
12609         * src/z80/gen.c: Fixed asm portability issues.
12610
12611         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
12612
12613         * src/SDCCglue.c (printExterns): Added global/extern split.
12614
12615 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
12616
12617         * support/regression/Makefile: added test for mcs51 model large
12618
12619         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
12620
12621         * support/regression/ports/gbz80/spec.mk: added -mgbz80
12622
12623 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
12624
12625         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
12626
12627 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
12628
12629         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
12630
12631         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
12632
12633 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
12634
12635         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
12636
12637         * support/regression/tests/simplefloat.c: Port to mcs51.
12638
12639 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
12640         * support/regression/tests/bug-485362.c: Added.
12641
12642         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
12643
12644         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
12645
12646         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
12647
12648         * src/z80/gen.c (aopDump): Added a dump function.
12649
12650 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
12651         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
12652
12653         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
12654
12655         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
12656
12657         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
12658
12659         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
12660
12661         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
12662
12663         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
12664
12665         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
12666
12667         * support/regression/ports/ds390/support.c: Use tinibios.
12668
12669         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
12670
12671 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
12672
12673         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
12674         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
12675
12676         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
12677
12678         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
12679
12680 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
12681
12682         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
12683
12684         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
12685         (packRegsForIYUse): Created and optimised.
12686
12687 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
12688
12689         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
12690 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
12691
12692         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
12693
12694         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
12695
12696         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
12697
12698 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
12699
12700         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
12701
12702         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
12703
12704 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
12705
12706         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
12707
12708         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
12709
12710         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
12711
12712 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
12713
12714         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
12715         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
12716         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
12717
12718         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
12719
12720         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
12721         (genNotFloat): Added.
12722         (genUminusFloat): Added.
12723
12724         * device/lib/z80/Makefile: Added floating pt stubs.
12725
12726         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
12727
12728         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
12729
12730         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
12731
12732 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
12733
12734         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
12735
12736         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
12737
12738         * sdcc/support/regression/Makefile: Add port ds390.
12739
12740         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
12741
12742         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
12743
12744         * sdcc/support/regression/ports/ds390/spec.mk: Added.
12745
12746         * sdcc/support/regression/ports/ds390/support.c: Added.
12747
12748         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
12749
12750         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
12751
12752         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
12753
12754 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
12755
12756         * device/include/malloc.h: Added z80 and gbz80 support.
12757
12758         * device/lib/gbz80/heap.s: Added.
12759
12760         * device/lib/z80/heap.s: Added.
12761
12762         * device/lib/malloc.c: Added z80 and gbz80 support.
12763
12764         * support/regression/tests/malloc.c (testMalloc): Added.
12765
12766         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
12767
12768         * support/regression/tests/bug-478094.c: Added.
12769
12770         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
12771
12772 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
12773
12774         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
12775
12776         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
12777
12778         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
12779
12780         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
12781
12782         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
12783
12784 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
12785
12786         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
12787
12788 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
12789
12790         * support/regression/tests/bug-477927.c: Added.
12791
12792         * src/z80/peeph.def: Added minor rules.
12793
12794         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
12795
12796         * src/z80/peeph.def: Added jump optimisation modification.
12797
12798 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
12799
12800         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
12801
12802 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
12803
12804         * support/regression/tests/funptrs.c: Added.
12805
12806 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
12807
12808         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
12809
12810 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
12811
12812         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
12813
12814         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
12815
12816         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
12817         (movLeft2ResultLong): Created.
12818
12819         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
12820         (joinPushes): Added.  Joins two char pushes into a word push.
12821
12822 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
12823
12824         * support/cpp2/Makefile.in (install): Added creation of dest dir.
12825
12826         * support/makebin/Makefile (install): Added creation of dest dir.
12827
12828 2001-10-24 Karl Bongers <karl AT turbobit.com>
12829
12830         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
12831
12832 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
12833
12834         * src/z80/ralloc.c: Turned off faulty pack for one use.
12835
12836         * src/z80/peeph-gbz80.def: Removed redundent restart options.
12837
12838         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
12839
12840 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
12841
12842         * support/regression/Makefile: Improved clean
12843
12844         * support/regression/ports/gbz80/spec.mk: Added clean
12845
12846         * support/regression/ports/host/spec.mk: Added clean
12847
12848         * support/regression/ports/z80/spec.mk: Added clean
12849
12850         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
12851
12852         * support/regression/ports/mcs51/timeout.c: little improvements
12853
12854 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
12855
12856         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
12857
12858         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
12859
12860         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
12861
12862 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
12863
12864         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
12865
12866         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
12867
12868 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
12869         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
12870
12871         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
12872
12873         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
12874
12875         * src/mcs51/main.c (_linkCmd): Added bin path to command.
12876
12877         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
12878
12879         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
12880
12881         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
12882
12883         * support/regression/tests/longor.c: Added.
12884
12885 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
12886
12887         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
12888
12889         * as/mcs51/aslink.h: define PATH_MAX
12890
12891         * as/mcs51/asm.h: define PATH_MAX
12892
12893         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
12894
12895         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
12896
12897         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
12898
12899         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
12900
12901         * src/SDCCglobl.h: define PATH_MAX
12902
12903         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
12904
12905         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
12906
12907 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
12908
12909         * src/z80/gen.c (gencjneshort): Fixed
12910
12911         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
12912
12913 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
12914
12915         * support/regression/tests/bug-469671.c: Added.
12916
12917         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
12918
12919 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
12920
12921         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
12922
12923         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
12924
12925 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
12926
12927         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
12928
12929         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
12930
12931         * src/device/lib/_mullong.c : removed hint: nooverlay bug
12932
12933         * src/device/lib/_divuint.c : removed hint: nooverlay bug
12934
12935         * src/device/lib/_divulong.c: removed hint: nooverlay bug
12936
12937         * src/device/lib/_moduint.c : removed hint: nooverlay bug
12938
12939         * src/device/lib/_modulong.c: removed hint: nooverlay bug
12940
12941 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
12942
12943         * 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.
12944
12945         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
12946
12947         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
12948
12949 2001-10-07    <johan AT FRIJA>
12950
12951         * device/lib/gets.c (gets): fixed the return value.
12952
12953 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
12954         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
12955
12956         * 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.
12957
12958         * 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.
12959
12960         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
12961
12962         * src/pic/gen.c: Removed Safe_strdup.
12963
12964         * configure.in: Added option to enable libgc support.
12965
12966         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
12967         (bitVectUnion): Optimised.
12968         (bitVectIntersect): Optimised.
12969         (bitVectBitsInCommon): Optimised.
12970         (bitVectCplAnd): Optimised.
12971
12972         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
12973
12974 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
12975
12976         * src/SDCCmain.c: distinguish between assembler debug and plain options
12977
12978         * src/avr/main.c:   remove standard assembler options
12979
12980         * src/ds390/main.c: remove standard assembler options
12981
12982         * src/mcs51/main.c: remove standard assembler options
12983
12984         * src/port.h: removed "PENDING" comment
12985
12986 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
12987
12988         * src/device/lib/_mulint.c  : new, with assember functions
12989
12990         * src/device/lib/_mullong.c : new, with assember functions
12991
12992         * src/device/lib/_divuint.c : with assember functions
12993
12994         * src/device/lib/_divsint.c : with assember functions
12995
12996         * src/device/lib/_divulong.c: with assember functions
12997
12998         * src/device/lib/_divslong.c: with assember functions
12999
13000         * src/device/lib/_moduint.c : with assember functions
13001
13002         * src/device/lib/_modsint.c : with assember functions
13003
13004         * src/device/lib/_modulong.c: with assember functions
13005
13006         * src/device/lib/_modslong.c: with assember functions
13007
13008         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
13009
13010         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
13011
13012         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
13013                                       replaced _mululong.c and _mulslong.c by _mullong.c
13014
13015 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
13016
13017         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
13018
13019 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
13020
13021         * src/SDCCglue.c: test, if win32api is available for MINGW
13022
13023 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
13024
13025         * src/SDCCsymt.c: no more _modifier in printTypeChain()
13026         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
13027         * support/regression/ports/gbz80/spec.mk: removed GENERIC
13028         * support/regression/ports/host/spec.mk: removed GENERIC
13029         * support/regression/ports/mcs51/spec.mk: removed GENERIC
13030         * support/regression/ports/z80/spec.mk: removed GENERIC
13031
13032 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
13033
13034         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
13035
13036         * support/regression/tests/bug-467035.c: Created.
13037
13038 2001-10-01    <johan AT FRIJA>
13039
13040         * src/SDCC.y: fixed bug #466586 part 1
13041
13042 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
13043
13044         * SDCCicode.c: z80 has no generic pointers
13045         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
13046
13047 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
13048
13049         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
13050
13051 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
13052
13053         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
13054
13055         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
13056
13057 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
13058
13059         * configure.in: Fixed up so that ucsim is only configured once.
13060
13061         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
13062
13063         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
13064         (getPathDifference): As above.
13065
13066         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
13067
13068         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
13069
13070 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
13071         * .version: Updated to 2.3.1
13072
13073         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
13074         Added copyright header.
13075
13076         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
13077         (assemble): Added support for macro based assembler commands.
13078         (linkEdit): Added support for macro based linker commands.
13079         (preProcess): Changed the pre-processor to use macros.
13080         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
13081         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
13082
13083         * device/lib/z80/crt0.s: Added module name for debugging.
13084
13085 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
13086
13087         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
13088
13089         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
13090
13091         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
13092
13093         * src/Makefile.in: Added SDCCmacro and SDCCutil
13094
13095 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
13096
13097         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
13098
13099 2001-09-16    <johan AT FRIJA>
13100
13101         * 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.
13102
13103 2001-09-15    <johan AT FRIJA>
13104
13105         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
13106         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
13107
13108 2001-09-11    <johan AT FRIJA>
13109
13110         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
13111
13112 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
13113
13114         * support/regression/tests/bug-460444.c: Added test case.
13115
13116         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
13117         (genCast): Added justification for all of the asserts.
13118
13119 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
13120
13121         * support/regression/support.c: _xdata replaced by xdata
13122
13123         * support/regression/spec.mk: removed _generic
13124
13125 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
13126
13127         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
13128
13129         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
13130         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
13131
13132         * src/z80/peeph.def: Added a rule to optimise shift then compare.
13133
13134         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
13135
13136         * support/regression/tests/bug-460010.c: Added test case.
13137
13138         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
13139
13140 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
13141
13142         * support/regression/Makefile: inter-port-clean adjusted for mcs51
13143
13144         * support/regression/testfwk.c: removed workaround for bug #436344
13145
13146         * support/regression/tests/bp.c: use less memory with mcs51
13147
13148         * support/regression/tests/bug-441448.c: use less memory
13149
13150         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
13151
13152         * support/regression/collate-results.py: typo
13153
13154 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
13155
13156         * support/regression/tests/fetchoverlap.c: Added new test case.
13157
13158         * support/regression/tests/bp.c: Added new test case.
13159
13160         * support/regression/tests/bug-448984.c: Added new test case.
13161
13162         * support/regression/tests/pow2shifts.c: Added new test case.
13163
13164         * src/z80/gen.c: Turned off the noise it normally generates for the release.
13165         (genlshTwo): Fixed right shift for count > 8.
13166
13167         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
13168
13169 2001-09-08    <johan AT FRIJA>
13170
13171         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
13172
13173 2001-09-07    <johan AT FRIJA>
13174
13175         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
13176
13177         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
13178
13179 2001-09-06    <johan AT FRIJA>
13180
13181         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
13182         * bernhard noted me at this: "() equals to (void)" (1.38)
13183
13184 2001-09-05    <johan AT FRIJA>
13185
13186         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
13187
13188 2001-09-04    <johan AT FRIJA>
13189
13190         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
13191
13192
13193 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
13194
13195         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
13196
13197 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
13198
13199         * link/z80/aslink.h: Fixed path for PATH_MAX
13200
13201 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
13202
13203         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
13204
13205         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
13206
13207         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
13208
13209         * 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.
13210
13211 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
13212
13213         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
13214         (genCmp): Fixed up genCmp for the GB with longs.
13215
13216         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
13217
13218         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
13219
13220         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
13221
13222         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
13223
13224 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
13225
13226         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
13227
13228 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
13229
13230         * 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.
13231
13232         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
13233
13234 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
13235
13236         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
13237
13238         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
13239
13240 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
13241
13242   * sim/ucsim/configure:    little improvement of Cygwin-detection
13243   * sim/ucsim/configure.in: little improvement of Cygwin-detection
13244   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
13245   * support/regression/tests/bug-221100.c: small changes for mcs51
13246   * support/regression/tests/bug-221168.c: small changes for mcs51
13247   * support/regression/tests/bug-227710.c: small changes for mcs51
13248   * support/regression/tests/staticinit.c: small changes for mcs51
13249   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
13250   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
13251   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
13252
13253 $Revision$