e4a435565201cc7dc85e21a66a2ba46b09822ced
[fw/sdcc] / ChangeLog
1 2006-06-10 Raphael Neider <rneider AT web.de>
2
3         * src/pic16/gen.c (pic16_aopOp): use WREG as destination even for
4           multibyte dummy reads (fixes #1503234)
5
6 2006-06-10 Maarten Brock <sourceforge.brock AT dse.nl>
7
8         * device/include/mcs51/compiler.h: new, added header file to enable
9           creating common sfr definition header files for different compilers
10
11 2006-06-05 Raphael Neider <rneider AT web.de>
12
13         * src/pic16/{pcode.h,genarith.c}:
14           introduced pCodeOp combining any two pCodeOps (previously only
15           two register operands could be combined), removed pcop2 from
16           pCodepReg, replaced pCodeOpReg2 with pCodeOp2, fixes #1492366
17         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): added case for PO_TWO_OPS
18         * src/pic16/gen.c (pic16_popGet2,pic16_popGet2p,pic16_popCombine2):
19           rewritten to use new PO_TWO_OPS
20         * src/pic16/main.c (_hasNativeMulFor): cover more cases natively,
21         * src/pic16/pcode.c (pic16_newpCodeOpImmd): initialize rIdx field,
22           (pic16_newpCodeOp): catch invalid attempts on PO_TWO_OPS,
23           (pic16_newpCodeOp2): NEW, create combined pCodeOp,
24           (pic16_get_op): embraced return arg to allow #define return(x),
25             added new case for combined opcodes
26           (pic16_get_op2): reduced to use pic16_get_op() on second pCodeOp,
27           (pic16_pCode2str,pic16_getRegFrompCodeOp,
28            pic16_getRegFromInstruction2): fixed/added handling of new pCodeOp
29
30 2006-06-04 Bernhard Held <bernhard AT bernhardheld.de>
31
32         * src/SDCCval.c (checkConstantRange): added
33         * src/SDCCval.h: added checkConstantRange
34         * support/Util/SDCCerr.c,
35         * support/Util/SDCCerr.h: replaced unused W_IF_NEVER_TRUE and
36         W_IF_ALWAYS_TRUE by W_COMP_RANGE and W_LIT_OVERFLOW
37         * src/SDCC.y: moved early 'condition transformations' to SDCCast.c
38         * src/SDCCast.c (decorateType): added checkConstantRange,
39         added 'condition transformations' from SDCC.y so that now W_COMP_RANGE
40         can be emitted with the correct always true/false warning,
41         added optimization for double '!';
42         result of decorateType() must be assigned back to the tree, because
43         decorateType() can change the tree
44         * src/SDCCicode.c (geniCodeLogic),
45         (geniCodeAssign): replaced new checkConstantRange, added warnings,
46         (checkConstantRange): removed, it was only a fragment which never
47         emitted a warning
48         * src/SDCCsymt.c (computeType): fixed promotion for
49         "-1 < (unsigned bit) b"
50         * src/pic/ralloc.c (packRegsForAssign),
51         * src/pic16/ralloc.c (packRegsForAssign),
52         * src/hc08/ralloc.c (packRegsForAssign),
53         * src/z80/ralloc.c (packRegsForAssign): ported fix for bug #930931
54         from mcs51
55         * src/mcs51/ralloc.c (packRegsForAssign): removed outcommented source
56         * support/regression/tests/constantRange.c: added
57         * support/valdiag/tests/constantRange.c: added
58         * support/valdiag/valdiag.py: added -DPORT_HOST=1
59
60 2006-06-02 Borut Razem <borut.razem AT siol.net>
61
62         * support/regression/ports/pic16/support.c: increase stack size
63           to 255 bytes
64         * support/regression/Makefile.in: sort tests by name so that the
65           resutlts can be compared on different machines / platforms
66
67 2006-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
68
69         * device/lib/printf_large.c (output_digit): optimized further, Tnx Frieder
70         * src/ds390/gen.c (emitLabel): new, added,
71           (genDjnz): fixed stack overflow bug,
72           (throughout): cosmetic changes to sync with mcs51/gen.c,
73           replaced emitcode("", "%05d$:", lbl->key + 100) with emitLabel(lbl)
74         * src/mcs51/gen.c (genEndFunction): small optimization,
75           (throughout): cosmetic changes to sync with ds390/gen.c
76
77 2006-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
78
79         * device/lib/printf_large.c (output_digit, calculate_digit): optimized,
80           (_print_format): fixed printing pointers
81         * src/mcs51/gen.c (emitLabel, movb): new, added,
82           (genAssign): small optimization,
83           (genDjnz): fixed stack overflow bug,
84           (throughout): replaced sprintf with SNPRINTF,
85           replaced mcs51_regWithIdx with REG_WITH_INDEX,
86           replaced emitcode("mov", "b,...") with MOVB(...),
87           replaced emitcode("", "%05d$:", lbl->key + 100) with emitLabel(lbl),
88           replaced D(emitcode("; genXXX", "")) with D(emitcode(";", "genXXX"))
89         * src/mcs51/peeph.def: added rules 140 and 264
90         * src/SDCCmem.c (allocLocal): store register declared locals in DSEG/OSEG
91           so they may get optimized into registers
92
93 2006-05-30 Maarten Brock <sourceforge.brock AT dse.nl>
94
95         * src/SDCCmain.c (optionsTable, parseCmdLine): handle --use-stdout
96           immediately when encountered,
97           (printUsage): always use stderr even on windows
98
99 2006-05-30 Bernhard Held <bernhard AT bernhardheld.de>
100
101         * src/SDCCast.c (isLoopCountable): fixed bug #1478316
102         (processParms): fixed bug #1247551
103         * src/SDCCmain.c (printVersionInfo, printOptions, printUsage,
104         parseCmdLine, main): print '--version' to stdout,
105         print 'help' to stdout if --help is given,
106         print 'help' to stderr and exit with EXIT_FAILURE if no or bad
107         arguments are given; fixed --help
108
109 2006-05-27 Bernhard Held <bernhard AT bernhardheld.de>
110
111         * src/SDCCcse.c (findPointerSet): fixed bug #1493710
112         * support/regression/tests/bug-1493710.c: added
113
114 2006-05-27 Borut Razem <borut.razem AT siol.net>
115
116         * support/regression/fwk/lib/testfwk.c: define array in _printn() as
117           static instead auto
118         * support/regression/ports/pic16/support.c: increase stack size
119           from default 64 bytes to 128 bytes
120         * support/regression/tests/staticinit.c,
121           support/regression/tests/float.c: regression tests fully enabled
122           for pic16 port by putting the initialized data arrays into the code
123           section
124         * support/regression/ports/pic16/spec.mk: don't link default libraries.
125           This was changed by mistake in the previous version.
126
127 2006-05-28 Vangelis Rokas <vrokas AT users.sourceforge.net>
128
129         * src/pic16/gen.c (genFunction, genEndFunction): some
130         beautifications, fixed bug with falsely restoring FSR2 in large
131         stack model, thanks to Beau E. Cox for reporting the bug
132
133 2006-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
134
135         * debugger/mcs51/break.c,
136         * debugger/mcs51/cmd.c (throughout): removed unused variables and labels,
137           use %p to print pointers, made address variables unsigned
138         * debugger/mcs51/cmd.c (infoSymbols): added missing parameter to printf
139         * debugger/mcs51/symtab.c (parseSymbol): must return something
140         * src/mcs51/gen.c (aopForSym): small optimization,
141            moved declarations mcs51_ptrRegReq and mcs51_nRegs to ralloc.h,
142           (freeAsmop): added missing break,
143           (aopPut): removed parameter bvolatile, determine it inside the function,
144           (saveRegisters, unsaveRegisters): small optimization,
145           (genIpush): removed pointless check,
146           (throughout): replaced Safe_calloc, strcpy with Safe_strdup,
147           replaced sprintf with SNPRINTF,
148           replaced strcpy with strncpyz,
149           updated aopPut calls,
150           replaced D(emitcode("; genXXX", "")) with D(emitcode(";", "genXXX"))
151         * src/mcs51/ralloc.h:  added declarations mcs51_ptrRegReq and mcs51_nRegs
152
153 2006-05-24 Borut Razem <borut.razem AT siol.net>
154
155         * support/regression/tests/bug-221100.c: fixed xdata problem caused by
156           modification of test for the pic16 port, put the array to the code
157           memory for pic16port; thanks to Maarten Brock and Frieder Ferlemann
158
159 2006-05-23 Jesus Calvino-Fraga <jesusc at ece.ubc.ca>
160
161         * src/pic/gen.c: MSC 6 does not have <stdint.h>.  Use pstdint.h instead.
162         * support/Util/pstdint.h: added
163
164 2006-05-22 Borut Razem <borut.razem AT siol.net>
165
166         * src/regression/Makefile: removed bool2.c test, added -q linker option
167         * src/regression/add2.c, src/regression/add3.c, src/regression/bool1.c,
168           src/regression/bool3.c, src/regression/nestfor.c, src/regression/ptrfunc.c,
169           src/regression/compare.c, src/regression/or1.c, src/regression/compare2.c,
170           src/regression/while.c, src/regression/compare3.c, src/regression/compare4.c,
171           src/regression/compare5.c, src/regression/sub2.c, src/regression/rotate1.c,
172           src/regression/rotate2.c, src/regression/rotate3.c, src/regression/rotate4.c,
173           src/regression/switch1.c, src/regression/rotate5.c, src/regression/for.c,
174           src/regression/add.c, src/regression/sub.c, src/regression/call1.c:
175           define SUPPORT_BIT_TYPES 0, removed unused bit variables
176
177 2006-05-22 Raphael Neider <rneider AT web.de>
178
179         * src/pic16/gen.c (pic16_storeForReturn): fragile fix for
180           bug #1492360 (problematic due to generic pointers, see code)
181
182 2006-05-22 Borut Razem <borut.razem AT siol.net>
183
184         * support/regression/ports/pic16/specs.mk: removed stack size linker
185           directive
186         * support/regression/tests/array.c,
187           support/regression/tests/bitopcse.c,
188           support/regression/tests/bug-908454.c,
189           support/regression/tests/malloc.c: modified for pic16 regression test
190         * support/regression/tests/bitfields.c:
191           pic16 - excluded bitfileds of size > 8
192         * support/regression/tests/bp.c: pic16 - reduced data size
193         * support/regression/tests/bug-221100.c: pic16 - reduced data size
194         * support/regression/tests/bug-460010.c:
195           pic16 - used the absolute address the fits in memory
196         * support/regression/tests/bug-716242.c:
197           bug [ 1443651 ] pic 16: redefining symbol that cannot be redefined.
198         * support/regression/tests/float.c:
199           pic16 - excluded - data size too big
200         * support/regression/tests/onebyte.c:
201           pic16 - bug [ 1444425 ] onebyte.c regression tes fails on pic16
202         * support/regression/tests/shifts.c:
203           pic16 - function names probably have to differ in first X characters
204           (gpasm limitation?)
205         * support/regression/tests/staticinit.c:
206           pic16 - excluded some tests due error: no target memory available for
207           section ".idata"
208
209 2006-05-22 Borut Razem <borut.razem AT siol.net>
210
211         * support/Util/dbuf.c: fixed bug #1489008 fix dbuf_c_str(),
212           second try. Thanks Stas Sergeev once more.
213
214 2006-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
215
216         * src/hc08/gen.c (transferAopAop): aop forced to stack was not restored,
217           (genLeftShift, genRightShift): fixed bug 1491627
218         * src/hc08/peeph.def (rules 7, 8.x): added
219         * support/regression/tests/shifts.c (ShiftLeftByParam,
220           ShiftRightByParam, testShiftByParam): added to test variable shifting
221
222 2006-05-20 Raphael Neider <rneider AT web.de>
223
224         * src/pic/gen.c (bitpatternFromVal): fixed for 64-bit machines
225         * src/pic16/ralloc.c (newReg): use correct name in hashtable,
226           (allocReg): add only new registers to dynAllocRegs,
227           (pic16_assignRegisters): do not reset dynrIdx, fixes bugs
228             #1489055, #1445850, and probably #1483693
229
230 2006-05-19 Vangelis Rokas <vrokas AT users.sourceforge.net>
231
232         * src/pic16/glue.c (pic16_emitConfigRegs, pic16_emitIDRegs): fixed
233         bug in for-loop that didn't emit the last of CONFIG and ID registers
234
235 2006-05-18 Maarten Brock <sourceforge.brock AT dse.nl>
236
237         * src/mcs51/gen.c (genCodePointerGet): inc dptr instead of loading acc
238           with offset
239         * src/mcs51/peeph.def (186.x): updated and reenabled to fix bugs
240           1489016, 1434401 and 1490124
241         * src/ds390/peeph.def (186.x, 227.x): updated and reenabled to fix bugs
242           1489016, 1434401 and 1490124
243
244 2006-05-17 Borut Razem <borut.razem AT siol.net>
245
246         * support/Util/dbuf.c: fixed bug #1489008 fix dbuf_c_str(),
247           thanks Stas Sergeev
248
249 2006-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
250
251         * device/include/mcs51/P89c51RD2.h,
252         * device/include/mcs51/P89LPC901.h,
253         * device/include/mcs51/P89LPC922.h,
254         * device/include/mcs51/P89LPC932.h: added, thanks Omar Espinosa
255
256 2006-05-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
257
258         * device/lib/pic16/libsdcc/stack/{stack.S, Makefile.in}: add workaround
259         to fix missing stack pragma in compiled binary object file,
260
261 2006-05-14 Bernhard Held <bernhard AT bernhardheld.de>
262
263         * support/packihx/configure.in,
264         * support/packihx/configure: removed warning, autoconf >= 2.5x can
265         determine sizeof basic types even while cross compiling
266
267 2006-05-13 Bernhard Held <bernhard AT bernhardheld.de>
268
269         * src/avr/gen.c (aopop),
270         * src/ds390/gen.c (aopOp),
271         * src/hc08/gen.c (aopOp),
272         * src/mcs51/gen.c (aopop),
273         * src/pic16/gen.c (pic16_aopOp),
274         * src/pic/gen.c (aopOp),
275         * src/z80/gen.c (aopop): fix for bug #1479882; use new, exclusive asmop
276         if size of operand is smaller than spill location
277
278 2006-05-12 Borut Razem <borut.razem AT siol.net>
279
280         * *.dsw, *.dsp: changed property svn:eol-style to CRLF since they
281           have to have CR/LF line endings even if they are checked out on *nix
282           or on WIN32 in cygwin binmode
283
284 2006-05-12 Maarten Brock <sourceforge.brock AT dse.nl>
285
286         * doc/sdccman.lyx: documented numeric ranges, WEBDOC #1442369
287         * device/include/ds80c390.h: added sfr16 definitions
288         * src/ds390/gen.c,
289         * src/ds390/gen.h,
290         * src/ds390/main.c,
291         * src/ds390/ralloc.c,
292         * src/ds390/ralloc.h: changes all over the place to sync with mcs51
293           fixing several bugs and adding sfr16/sfr32, reentrant bit params,
294           bit returning functions
295         * support/regression/tests/sfr16.c: enabled test on ds390
296
297 2006-05-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
298
299         * src/hc08/gen.c (asmopToBool, genIfx): fix for bug #1429722
300         * src/hc08/gen.c (storeRegToAop): fix for bug #1439894
301
302 2006-05-11 Maarten Brock <sourceforge.brock AT dse.nl>
303
304         * sim/ucsim/sim.src/memcl.h: added get_decoder() to cl_address_space
305         * sim/ucsim/sim.src/mem.cc: implemented cl_address_space::get_decoder,
306           (cl_address_space constructor): removed expensive initialization,
307           (cl_address_space::get_cell): extended for late initialization,
308           (cl_address_space::*): use late initialization,
309           (cl_address_decoder::activate): removed expensive initialization,
310           This reduced regression test running time by 25%
311
312 2006-05-11 Bernhard Held <bernhard AT bernhardheld.de>
313
314         * packihx/,
315         * configure.in,
316         * configure,
317         * sdcc.dsw,
318         * Makefile.bcc,
319         * Makefile.in,
320         * support/packihx/Makefile.in,
321         * support/packihx/clean.mk,
322         * support/packihx/Makefile.bcc,
323         * support/packihx/PackIhx.dsp: moved packihx to support/packihx
324
325 2006-05-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
326
327         * src/SDCCval.c (valNot): fix for regression test failure
328           of not.c on big endian hosts
329
330 2006-05-10 Maarten Brock <sourceforge.brock AT dse.nl>
331
332         * device/inlcude/mcs51/msc1210.h: new, added, thanks Philippe Latu
333
334 2006-05-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
335
336         * device/lib/mcs51/Makefile.in: changed string comparison operator
337           to = for POSIX compliance; == is bash extension
338
339 2006-05-10 Maarten Brock <sourceforge.brock AT dse.nl>
340
341         * device/lib/hc08/_mulint.c: applied patch 1485428, thanks
342           kosmonaut_pirx
343
344 2006-05-09 Vangelis Rokas <vrokas AT users.sourceforge.net>
345
346         * src/pic16/gen.c (pic16_freeAsmop): release any temp registers
347         allocated by aopForSym thus fixing bug #1478657 about failed testfwk.c
348         * src/pic16/main.c (_pic16_keywords): added 'sfr16' keyword,
349         * src/pic16/ralloc.c (pic16_allocWithIdx): also a fix for bug exposed by
350         bug report #1478657,
351
352 2006-05-05 Borut Razem <borut.razem AT siol.net>
353
354         * doc/Makefile.in: remove of WARNINGS and labels.pl immediately after
355           making the html
356
357 2006-05-02 Borut Razem <borut.razem AT siol.net>
358
359         * doc/Makefile.in: removed *.ind dependency since there is no rule to
360           create *.ind, which made make to fail if invoked with -j 2
361
362 2006-05-01 Maarten Brock <sourceforge.brock AT dse.nl>
363
364         * src/SDCCglue.c (emitRegularMap): partial fix for bug 1477149, thanks
365           Hubert Sack for patch 1479782
366
367 2006-05-01 Vangelis Rokas <vrokas AT users.sourceforge.net>
368
369         * src/pic16/glue.c (pic16_printIvalStruct): fixed bug #1445929
370
371 2006-05-01 Raphael Neider <rneider AT web.de>
372
373         * src/pic/device.c (sanitise_processor_name): only remove p(ic) prefix,
374           (create_pic): store only prefix-free device name,
375           (init_pic): check for device names with "16" prefix,
376           (list_valid_pics),
377         * src/pic/device.h (struct PIC_device),
378         * src/pic/main.c (_pic14_genAssemblerPreamble): adapted to single
379             stored device name,
380         * device/include/pic/pic12f{635,675,629,683}.h,
381         * device/lib/pic/libdev/pic12f{635,675,629,683}.c: NEW device libraries
382         * device/lib/pic/libdev/Makefile.in: allow pic12* devices,
383         * device/include/pic/pic16f505.h,
384         * device/lib/pic/libdev/pic16f505.c: removed
385         * device/include/pic/pic14devices.txt: added support for pic12f
386             devices, removed unsupported non 16-bit devices
387             [above changes provided by patch from Zik Saleeba]
388         * src/pic/*, src/pic16/*, device/include/pic16/*,
389           device/lib/pic/**, device/lib/pic16/**: obfuscated email address
390
391 2006-05-01 Borut Razem <borut.razem AT siol.net>
392
393         * configure.in, configure, doc/Makefile.in:
394           sync with nightly build makefile - latex, dvipdf and dvips
395           not needed any more
396
397 2006-04-30 Bernhard Held <bernhard AT bernhardheld.de>
398
399         * support/scripts/sdcc.nsi: removed all Readmes and Makefiles
400         in the library source
401
402 2006-04-30 Maarten Brock <sourceforge.brock AT dse.nl>
403
404         * support/regression/ports/hc08/spec.mk: fixed bug 1478892
405
406 2006-04-28 Raphael Neider <rneider AT web.de>
407
408         * src/pic16/pcode.c (pic16_newpCodeOpLit12),
409         * src/pic16/gen.c (pic16_popGetLit12): NEW, create 12 bit literal,
410           (pic16_loadFSR0): handle 12 bit literals correctly, fixes #1440527
411         * src/pic16/pcode.h: added prototype for pic16_newpCodeOpLit12()
412
413 2006-04-28 Bernhard Held <bernhard AT bernhardheld.de>
414
415         * device/lib/pic/libdev/Makefile.in,
416         * device/lib/hc08/Makefile.in,
417         * device/lib/gbz80/Makefile.in,
418         * device/lib/z80/Makefile.in,
419         * device/lib/ds390/Makefile.in,
420         * device/lib/ds400/Makefile.in: added srcdir to include search path,
421         thanks to Borut for the bug report
422         * configure.in,
423         * configure: always create doc/Makefile independent from --enable-doc
424         * Makefile.in: always install from directory doc independent from
425         --enable-doc
426         * device/lib/pic/Makefile.in: added libdev again, it was erroneously
427         removed
428         * device/lib/pic/libdev/Makefile.in: fixed VPATH build
429         * doc/Makefile.in: install *.txt if present
430         * device/include/Makefile.in (install): added installation of pic/*.inc
431         and pic/*.txt files again, they were erroneously removed
432
433 2006-04-28 Raphael Neider <rneider AT web.de>
434
435         * src/pic/{gen.c,main.h,pcode.c},
436         * src/pic16/{gen.c,pcode.c}: quietened compiler warnings
437             concerning signedness with casts
438
439 2006-04-28 Raphael Neider <rneider AT web.de>
440
441         * src/pic/gen.c (genFunction): set global pic14_hasInterrupt on
442             definition of an interrupt handler,
443         * src/pic/glue.c (pic14_emitInterruptHandler): moved output of
444             interrupt handler stuff from picglue() to separate routine,
445           (picglue): enabled definition of intr handlers in files w/o main()
446
447 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
448
449         * support/librarian/sdcclib.c: moved include <limits.h> up to enable
450           compilation with MSVC 2005 Express Edition (VC8)
451
452 2006-04-26 Bernhard Held <bernhard AT bernhardheld.de>
453
454         * device/lib/Makefile: fixed build of gbz80 lib
455
456 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
457
458         * support/regression/tests/bug-460010.c,
459         * support/regression/tests/bug-524691.c,
460         * support/regression/tests/bug-716242.c: removed conditional defines
461           that are already in testfwk.h
462
463 2006-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
464
465         * src/ds390/gen.c (AccAXRrl1, AccAXLrl1): changed to real rotate by 1,
466           (AccAXRsh1): added, shift right by 1,
467           (AccAXLsh, AccAXRsh, AccAXRshS): updated for AccAXRrl1, AccAXRsh1 and
468            AccAXLrl1
469         * support/regression/tests/rotate.c: use <stdint.h> and enabled ds390
470
471 2006-04-25 Bernhard Held <bernhard AT bernhardheld.de>
472
473         * src/SDCCast.c (decorateType): partial fix for RFE 1475769,
474         remove cast to same type
475         * src/SDCCast.c (decorateType): fix for RFE 1475742,
476         optimize 'ifx (op == 0)' resp. 'ifx (op != 0)'
477         * as/z80/Makefile,
478         * link/z80/Makefile: removed, they have moved to
479         Makefile.in files
480         * configure,
481         * configure.in: replaced duplicate message about ucsim by missing sdcpp
482         * install-sh: fix bug #1204398 by setting umask 0022
483         * device/lib/Makefile: separate build of z80 and gbz80 lib
484
485 2006-04-24 Bernhard Held <bernhard AT bernhardheld.de>
486
487         Enabled VPATH feature: changed nearly all Makefiles (149 files).
488         See sdccman.lyx '2.4.10 VPATH feature' about how to use it.
489
490         One basic decision: e.g. src/clean.mk includes further files. In order
491         to make this work there are two solutions:
492         - rename another dozen clean.mk to clean_in.mk, add srcdir to them and
493           run configure on them. This way they can use
494           'include $(srcdir)/port-clean.mk'
495         - always include clean.mk by the Makefile at the same level. To avoid
496           that `make clean` tries to include and build Makefile.dep the
497           MAKECMDGOALS are examined (see e.g. src/Makefile.in). This has been
498           implemented, because now even `make uninstall` doesn't create
499           Makefile.in. clean.mk could be eliminated by pasting it in
500           Makefile.in.
501
502         * debugger/mcs51/Makefile.in: build own objects from library sources
503         (SLIB, SDCC) in current directory
504
505         * configure, configure.in: renamed --disable-device-lib-build in
506         --disable-device-lib; added --enable-doc, the required tools are
507         searched by configure; added result message; the toolchain for the
508         belonging ports are now only built, if the port is enabled.
509
510         * support/regression/*: all output is written in directory gen, because
511         the fwk and ports directories don't livet in the build tree using vpath
512
513         * doc/sdccman.lyx: renamed --disable-device-lib-build to
514         --disable-device-lib, added --enable-doc, added section VPATH
515
516         * sim/ucsim/configure.in,
517         * sim/ucsim/configure.in: hc08 couldn't be disabled, now hc08 and
518         z80 are enabled by default
519
520 2006-04-24 Raphael Neider <rneider AT web.de>
521
522         * src/pic/device.c (pic14_assignConfigWordValue): remember assignments
523             to config word, "pic14_"-prefixed some extern functions
524           (pic14_emitConfigWord): emit __config directive(s) if assignment to
525             config word has been found
526         * src/pic/device.h: added prototypes
527         * src/pic/pcode.c: added "pic14_"-prefix where needed
528         * src/pic/ralloc.c (IS_CONFIG_ADDRESS,pic14_assignRegisters): cosmetic
529             fixup
530         * src/pic/glue.c (pic14_constructAbsMap): handle assignments to config
531             words,
532           (pic14emitRegularMap): ignore config words,
533           (pic14createInterruptVect): moved generating __config directives away
534           (picglue): have __config directives emitted
535
536 2006-04-24 Borut Razem <borut.razem AT siol.net>
537
538         * doc/Makefile: sync with nightly build makefile
539
540 2006-04-24 Raphael Neider <rneider AT web.de>
541
542         * src/pic/pcoderegs.c (OptimizeRegUsage): do not optimize
543             registers that have not been assigned proper liveranges,
544             fixes #1469504 and #1474602,
545           (pCodeRegOptimizeRegUsage): fixed typo in comment
546
547 2006-04-24 Borut Razem <borut.razem AT siol.net>
548
549         * device/examples/main8051.c: deleted - it was removed from CVS
550           24.mar.2000 and after that modified 18.feb.2001, so it reappered
551           after the transition to Subversion
552         * src/SDCCalloc.h: deleted - it was removed  from CVS
553           3.feb.2001 and after that modified 18.feb.2001, so it reappered
554           after the transition to Subversion
555         * sim/ucsim/cpu.gif, sim/ucsim/interrupt.gif, sim/ucsim/new.gif,
556           sim/ucsim/serial1.gif, sim/ucsim/serial2.gif,
557           sim/ucsim/term_cpuopt.gif, sim/ucsim/timers.gif, sim/ucsim/wins.gif,
558           sim/ucsim/post.jpg, sim/ucsim/UCsim.jpg: corrected
559
560 2006-04-22 Maarten Brock <sourceforge.brock AT dse.nl>
561
562         * as/asx8051.dsp: added mcs51/strcmpi.h
563         * as/hc08/as_hc08.dsp: added asm.h, m6808.h, strcmpi.h
564         * as/hc08/aslink.h: updated lnksect prototype
565         * as/hc08/asm.h,
566         * as/mcs51/asm.h: added a_addr to struct area and s_org to struct sym
567         * as/hc08/asmain.c,
568         * as/mcs51/asmain.c (asmbl): init dot.s_org for S_ORG,
569           (newdot): handle A_ABS
570         * as/hc08/asout.c,
571         * as/mcs51/asout.c (outarea): output address
572         * as/hc08/lkaomf51.c,
573         * as/mcs51/lkaomf51.c: disabled unused array UsageType
574         * as/hc08/m08pst.c,
575         * as/mcs51/i51pst.c,
576         * as/z80/z80pst.c: "ABS" is not A_OVR
577         * as/hc08/lkarea.c (newarea): read a_addr,
578           (lnkarea): added codemap array, sort absolute areas to the front,
579            combine all GSINITx/GSFINAL,
580           (find_empty_space, allocate_space): new functions,
581           (lnksect): return next address, handle absolute sections
582         * as/mcs51/lkarea.c (newarea): read a_addr,
583           lnksect2 prototype changed,
584           (lnkarea2): define codemap unsigned, combine all GSINITx/GSFINAL,
585           (find_empty_space, allocate_space): new, factored out of lnksect2,
586           (lnksect2): return next address, handle absolute sections
587         * as/hc08/lkhead.c,
588         * as/mcs51/lkhead.c (newhead): head is absolute but not overlay
589         * as/hc08/lklibr.c (addfile, fndsym),
590         * as/mcs51/lklibr.c (addfile, buildlibraryindex, fndsym): prevent
591           index out of range and detect both '\' and '/'
592         * device/include/mcs51/c8051f200.h: added _XPAGE, removed bad comment
593         * device/include/stdbool.h: removed SDCC_ds390 from check to pass
594           regression tests (ds390 cannot return bool yet)
595         * doc/sdccman.lyx: changed version number, document changed --no-peep,
596           document critical interrupts on z80, document changed SDCC define
597         * src/asm.c (_asxxxx_mapping): fixed .org directive,
598           (_a390_mapping): added .org directive
599         * src/hc08/gen.c (transferAopAop): made bytemask log to fix warning,
600           (genMultOneByte): fixed warnings
601         * src/hc08/hc08.dsp: lowered warning level to 2 to suppress pedantic
602           ones
603         * src/pic16/device.c: removed newReg prototype, removed BYTE_IN_LONG
604         * src/pic16/gen.c (pic16_popGetLabel): made parameter key signed,
605           (pic16_genLeftShiftLiteral, genRightShiftLiteral): fixed warnings
606         * src/pic16/gen.h: changed prototype for pic16_popGetLabel
607         * src/pic16/main.c: removed newReg prototype
608         * src/pic16/pcode.c,
609         * src/pic16/pcode.h (pic16_emitDB): changed parameter c to int to fix
610           warnings
611         * src/pic16/pic16.dsp: lowered warning level to 2 to suppress pedantic
612           ones
613         * src/pic16/ralloc.c
614         * src/pic16/ralloc.h (newReg): changed type to int and size to unsigned
615           to fix warnings
616         * src/pic/pcode.c (allocInternalRegister): changed parameter optype
617           from short to PIC_OPTYPE
618         * src/pic/pic.dsp: lowered warning level to 2 to suppress pedantic ones
619         * src/pic/ralloc.c (newReg, allocInternalRegister): changed parameter
620           optype from short to PIC_OPTYPE
621         * src/port.h: made int_size unsigned to fix warnings
622         * src/SDCC.y: fixed warning on MSVC
623         * src/SDCCicode.c (getArraySizePtr): return unsigned int
624         * src/SDCCopt.c (convertToFcall): fixed warnings
625         * src/SDCCsymt.h: removed double prototype for genSymName
626         * src/xa51/ralloc.c (allocReg): made size unsigned int, type int and
627           offset int to fix warnings
628
629 2006-04-22 Borut Razem <borut.razem AT siol.net>
630
631         * doc/sdccman.lyx, */Makefile, */Makefile.in:
632           references to CVS replaced with Subversion
633
634 2006-04-21 Borut Razem <borut.razem AT siol.net>
635
636         * doc/sdccman.lyx, */Makefile, */Makefile.in:
637           references to CVS replaced with Subversion
638
639 2006-04-19 Borut Razem <borut.razem AT siol.net>
640
641         * src/version.awk: adapted for svn
642         * /asxxxx/asxhtml/*.gif: set property svn:mime-type to image/gif
643           sim/ucsim/doc/*.gif: set property svn:mime-type to image/gif
644           sim/ucsim/doc/*.jpg: set property svn:mime-type to image/jpeg
645           /binutils-avr/etc/*.vi, *.jin: removed all properties
646           support/scripts/sdcc.ico: set property svn:mime-type to image/x-icon
647
648 2006-04-19 Borut Razem <borut.razem AT siol.net>
649
650         * CVS to Subversion migration completed
651
652 2006-04-18 Borut Razem <borut.razem AT siol.net>
653
654         * support/scripts/sdcc.nsi: removed unexisting ${DEV_ROOT}\lib\pic\*.o,
655           ${DEV_ROOT}\lib\src\pic\libdev\*.S, ${DEV_ROOT}\lib\src\pic\libdev\*.inc
656
657 2006-04-17 Borut Razem <borut.razem AT siol.net>
658
659         * device/include/Makefile.in: added pic/*.inc to the installation
660
661 2006-04-15 Bernhard Held <bernhard AT bernhardheld.de>
662
663         * support/regression/collate-results.py: fixed output in case of
664         a valdiag error
665         * support/regression/generate-cases.py: fixed splitting of pathnames
666         with dots
667         * as/hc08/lklibr.c (addfile),
668         * as/mcs51/lklibr.c (addfile): fixed off-by-one bug
669
670 2006-04-11 Raphael Neider <rneider AT web.de>
671
672         * src/pic16/gen.c (getFreePtr, pic16_popRegFromString),
673         * src/pic16/ralloc.c (pic16_allocregWithName): removed debug output
674         * src/pic16/pcode.c (assignValnums): fixed #1460578
675
676 2006-04-11 Raphael Neider <rneider AT web.de>
677
678         * device/lib/pic/libdev/*.c,
679         * device/include/pic/*.h: replaced sfr and data with __sfr and __data,
680           fixes #1468739, enables compilation in --std-c99 mode
681         * support/scripts/inc2h.pl: emit __sfr/__data instead of sfr/data
682
683 2006-04-11 Raphael Neider <rneider AT web.de>
684
685         * src/pic/device.c (find_device): removed debug output
686           (list_valid_pics): enabled verbose listing of supported devices
687         * device/include/stdbool.h: define bool as char for pic14/16 as well
688
689 2006-04-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
690
691         * src/SDCC.y: allow using brackets here: "__interrupt (1) __using (1)"
692
693 2006-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
694
695         * .version: bumped version to 2.5.6
696         * src/pic/ralloc.c (newReg): MSVC doesn't support __builtin_return_address
697
698 2006-04-06 Raphael Neider <rneider AT web.de>
699
700         * .version: bumped version to 2.5.6 (pic14 ABI changed)
701         * src/SDCCmain.c: add -DSDCC_PROCESSOR=<id> for pic14 port
702         * src/pic/glue.c (emitSymbolToFile,pic14_constructAbsMap,
703           pic14emitRegularMap,pic14emitMaps): moved output for absolute symbols to
704             pic14_constructAbsMap
705           (pic14printPublics): declare absolute global symbols as global
706           (pic14createInterruptVect),
707         * src/pic/ralloc.c (IS_CONFIG_ADDRESS): support second config word,
708           (newReg): assume new registers unused, use correct name in
709             hashtable (reg->name instead of name), more debugLog output
710         * src/pic/device.h (PIC_device): added fields for verbose output
711         * src/pic/device.c: moved device definition to pic14devices.txt,
712             added routines for runtime parsing of pic14devices.txt,
713             added support for second config word
714         * src/pic/main.c (_process_pragma): removed #pragma maxram,
715           (_pic14_keywords): no longer accept "bit" and "sbit" keywords
716           (_pic14_initPaths): add search paths with "pic" suffix (not "pic14")
717           (_pic14_parseOptions): moved pCodeInitRegisters here
718           (_pic14_do_link): add "pic$(ARCH).lib" to linker arguments
719         * src/pic/pcode.c (AnalyzeBanking): bail out on unset processor,
720           (pCodeInitRegisters): rewrapped comments, perpared new approach to
721             handling the pseudo stack
722         * device/lib/Makefile.in: ignore failures in objects-pic16,
723         * device/lib/pic/{configure,configure.in,Makefile}: added libdev/
724         * device/lib/pic/NEWS: document new dependency on picXXX.lib
725         * device/lib/pic/Makefile.subdir,
726         * device/lib/pic16/Makefile.subdir: improved clean rules
727         * device/lib/pic/libdev/: NEW, pic14 device libraries
728         * device/lib/pic/libsdcc/_gptr{get,put}{1,2,3,4}.S: use _X not X
729         * device/lib/pic/libsdcc/macros.inc: use _X not X, declare default SFRs
730         * device/include/Makefile.in: create subdir and install pic14 headers
731         * device/include/pic/p16f_common.inc: removed unused declarations
732         * device/include/pic/pic16*.h: added header files for 100+ 14 bit
733             PICs from inc2h.pl v1.6,
734             replaced BIT_AT macros with struct declarations
735         * device/include/pic/pic14devices.txt: definition of supported devices,
736             all above improvements contributed by Zik Saleeba, thanks
737         * support/scripts/inc2h.pl: removed BIT_AT, replaced with structs
738         * support/scripts/sdcc.nsi: also install pic14 device libraries and
739             headers
740
741 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
742
743         * device/include/mcs51/c8051f410.h: added interrupt numbers,
744         * device/include/mcs51/c8051f200.h: old SiLabs mcu completes the list,
745           thanks to Charles Olds
746
747 2006-04-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
748
749         * debugger/mcs51/cmd.c (infoRegisters): show return address on stack
750
751 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
752
753         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug 1464657
754         * src/mcs51/gen.c (genJumpTab): fixed bug in medium model
755         * support/regression/bug1464657.c: added, new test
756
757 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
758
759         * src/SDCCmain.c (preProcess): implemented RFE 1449908, define SDCC as the
760           version number
761
762 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
763
764         * src/SDCCpeeph.c (initPeepHole): implemented RFE 1460196, when both
765           --no-peep and --peep-file <file> are used don't use default rules but
766           do use the <file>
767
768 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
769
770         * src/mcs51/gen.c (genCall): fixed bug 1457608
771
772 2006-03-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
773
774         * doc/sdccman.lyx: reverted to version 1.129 of december as my latest
775         changes seem to cause (trigger?) problems with the build system.
776
777 2006-03-29 Maarten Brock <sourceforge.brock AT dse.nl>
778
779         * src/SDCCpeeph.c (operandsLiteral): new, added,
780           (callFuncByName): inserted operandsLiteral
781         * src/mcs51/peeph.def: reenabled 132.e, added extra check to 132.x
782
783 2006-03-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
784
785         * doc/sdccman.lyx: added paragraph "Use of SDCC in Education"
786         * src/mcs51/peeph.def: disabled rule 132.e fixing bug #1453093
787
788 2006-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
789
790         * src/z80/gen.c (genFunction, genEndFunction): fixed bug 1160666,
791           implemented patch 1120823 Thanks to Willy De la Court (normal
792           interrupts need an interrupt number now if they are made critical),
793           and enabled nesting of critical functions though not for gbz80
794           (genCritical, genEndCritical): added functions
795           (genZ80Code): added cases for CRITICAL and ENDCRITICAL
796         * src/z80/mappings.i: added "ei" to all mappings
797
798 2006-03-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
799
800         * sim/ucsim/cmd.src/newcmdcl.h: applied patch fixing GCC 4.1 build
801         submitted by the Debian SDCC maintainer Aurelien Jarno:
802         "Credits goes to Martin Michlmayr, who rebuilt the whole Debian
803         archive with gcc 4.1 on mips and wrote the patch"
804
805 2006-03-16 Raphael Neider <rneider AT web.de>
806
807         * src/pic16/genarith.c (genAddLit): simplified and fixed case where
808           the left operand is shorter than the result (c* = lit-c* + int),
809           fixes bug #1450796
810         * src/pic16/gen.c (genRightShift): check IS_SYMOP before accessing
811           OP_SYMBOL
812
813 2006-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
814
815         * src/.version: increased version number to 2.5.5
816         * src/SDCCmain.c (linkEdit): do not test for PIC16 target since, PIC16
817         linking is done manually in pic16 port's _linkEdit,
818         * src/SDCCsymt.c (compStructSize): for target PIC16 and shell variable
819         PIC16_PACKED_BITFIELDS, compact bitfield structures as much as possible,
820         * src/pic16/gen.c (aopForSym): when direct register name is WREG then
821         allocate asmop as AOP_ACC,
822         (aopForRemat): added parameter 'bool result' in function declaration,
823         (pic16_aopGet): return AOP_ACC when accessing WREG,
824         (pic16_popGetTempReg): minor modification,
825         (pic16_popRegFromIdx): first try with 'pic16_regWithIdx' then with
826         'pic16_allocWithIdx',
827         (genPcall): removed ftype, usage of OP_SYM_TYPE asserted error when
828         calling function in absolute addresses,
829         (genAssign): take into account AOP_ACC asmop,
830         * src/pic16/pcode.c (pic16_newpCodeOpReg): minor modifications,
831         * src/pic16/pcoderegs.c: some debug functions and lines added,
832         * src/pic16/ralloc.c (decodeRegType): added but commented out,
833         * (pic16_typeRegWithIdx): search 'pic16_dynInternalRegs' for given
834         register too,
835         * (pic16_findFreeReg, pic16_findFreeRegNext): allocate new register via
836         call to allocReg, not by manually allocating a new one,
837         (pic16_assignRegisters): now before going through the register
838         allocating functions mark all registers as free. This eliminates some
839         side effects resulting from peephole parser done earlier in the backbone
840
841 2006-03-13 Maarten Brock <sourceforge.brock AT dse.nl>
842
843         * src/SDCCicode.c (geniCodeLogic),
844         * src/SDCCast.c (decorateType): applied patch by Bernhard for rfe 1422617
845
846 2006-03-10 Maarten Brock <sourceforge.brock AT dse.nl>
847
848         * src/mcs51/gen.c (sameReg): new, checks if two aop regs are the same,
849           (genSend): bugfix, do not allocate and free twice,
850           (shiftRLong): handle partially overlapping aops
851         * support/regression/tests/bitopcse.c: fixed warning redefined idata
852
853 2006-03-08 Borut Razem <borut.razem AT siol.net>
854
855         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata
856           for pic16
857
858 2006-03-08 Maarten Brock <sourceforge.brock AT dse.nl>
859
860         * support/regression/tests/bug1409955.c: new, added
861         * src/mcs51/gen.h: changed asmop.freed:1 to asmop.allocated for tracking
862         * src/mcs51/gen.c (newAsmop): set asmop.allocated to 1,
863           (aopForSym, aopOp): increment asmop.allocated if reused,
864           (freeAsmop): decrement asmop.allocated and check for zero instead of
865           using asmop.freed,
866           (freeForBranchAsmop): use asmop.allocated instead of asmop.freed,
867           (genNot, genCpl, genUminus, genMinus, genMult, genDiv, genMod, genCmpGt,
868            genCmpLt, genAndOp, genOrOp, genAnd, genOr, genXor, genRRC, genRLC,
869            genGetHbit, genGetAbit, genGetByte, genGetWord, genSwap,
870            genLeftShiftLiteral, genLeftShift, genRightShiftLiteral,
871            genSignedRightShift, genRightShift, genDataPointerGet,
872            genPagedPointerGet, genFarPointerGet, genCodePointerGet,
873            genGenPointerGet, genDataPointerSet, genAssign, genCast): free asmop's
874             in reverse order from allocation,
875           (genPlus, genCmpEq): free asmop's in reverse order from allocation and
876             added swappedLR to keep track
877         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata,
878           pdata & code for GCC, z80, gbz80 & hc08
879         * support/regression/tests/zeropad.c: moved defines to testfwk.h
880
881 2006-03-08 Raphael Neider <rneider AT web.de>
882
883         * src/pic16/main.c (_hasNativeMulFor): fixed bug #1444425
884
885 2006-03-07 Maarten Brock <sourceforge.brock AT dse.nl>
886
887         * device/include/mcs51/c8051f410.h: new SiLabs mcu
888         * src/ds390/peeph.def: disabled 186.d and 227.a as fix for #1434401
889         * support/regression/tests/array.c: added parenthesis, made arrays unsigned
890
891 2006-03-06 Borut Razem <borut.razem AT siol.net>
892
893         * support/regression/ports/pic16/spec.mk: link with libm18f.lib,
894           made the linker quiet
895
896 2006-03-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
897
898         * src/pic16/gen.c (genPcall): fixed bug #1443644
899         * src/pic16/device.h (struct pic16_options_t): added 'int CATregs' flag
900         which dumps before the function entry point a data byte which represents
901         the number of the local variables used by the specified function, added
902         'xinst' for initial support for Extended Instruction Support,
903         * src/pic16/gen.c (aopForSym, pic16_aopGet): beautifications,
904         (pic16_testStackOverflow): do not prefix GSTACK_TEST_NAME with
905         port->fun_prefix anymore (may change later),
906         (genFunction, genEndFunction): do not store/restore local registers for
907         _main (this should take care the --main-return command line option in
908         the future),
909         (genOr): removed some legacy pic-port instructions,
910         * src/pic16/genarith.c (genAddLit): re-enabled old code because
911         performing operations with SFR's causes data to be written more than
912         once to each SFR. Perhaps SFRs should be handled in special cases...
913         * src/pic16/glue.c: macros BIG_ENDIAN and BYTE_IN_LONG are moved to
914         pcode.h
915         * src/pic16/main.c (_process_pragma): stack bound checking did not take
916         into account for stack starting position,
917         (struct OPTIONS pic16_optionsTable): added command line argument
918         --extended or -y for Extended Instruction Support,
919         * src/pic16/ralloc.c (pic16_decodeOp): added case for FUNCTION,
920         (deassignLRs): *** perhaps the most important change, old 'for' code
921         (commented out for reference), didn't account for some registers which
922         were left marked 'not free' after a pointer operation. The change
923         reduces register usage a lot in some cases
924
925 2006-03-04 Borut Razem <borut.razem AT siol.net>
926
927         * support/regression/ports/hc08/spec.mk: remove *.asm in traget
928           _clean
929         * support/regression/tests/bug-524697.c: decreased array size for
930           mcs51 to fit into the internal RAM
931         * support/regression/Makefile.in: a little bit more verbose
932
933 2006-03-03 Borut Razem <borut.razem AT siol.net>
934
935         * support/regression/fwk/lib/testfwk.c,
936           support/regression/fwk/include/testfwk.h: introduced function
937           _prints(), nonrecursive _printn(), call _initEmu() from main()
938         * support/regression/ports/gbz80/support.asm,
939           support/regression/ports/ucz80/support.asm,
940           support/regression/ports/z80/support.asm,
941           support/regression/ports/ds390/support.c,
942           support/regression/ports/hc08/support.c,
943           support/regression/ports/host/support.c,
944           support/regression/ports/mcs51/support.c,
945           support/regression/ports/xa51/support.c: added empty _initEmu()
946           function
947         * support/regression/ports/pic16/gpsim.cmd,
948           support/regression/ports/pic16/spec.mk,
949           support/regression/ports/pic16/support.c,
950           support/regression/Makefile.in: added pic16 regression test
951
952 2006-03-01 Raphael Neider <rneider AT web.de>
953
954         * src/pic16/gen.c (genPcall,pic16_derefPtr,genGenPointerGet,
955           genConstPointerGet): use safe way of generating MOVFF to cover
956             literals as well as registers, fixes bug #1440527
957         * src/pic16/glue.c (pic16_printIvalBitFields): prevent NULL pointer
958             dereference
959           (pic16_printIvalUnion,pic16_isUnion): NEW, handle initialized unions
960             more correctly, fixes bug #1232186
961           (pic16_printIval): use pic16_printIvalUnion() for initialized unions
962         * src/pic16/main.c (_pic16_linkEdit): reorder linker arguments to make
963             gplink guess the correct processor in more cases, applied patch
964             from Till Riedel attached to and fixing bug #1436552
965
966 2006-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
967
968         * support/regression/tests/array.c: added, contains check for #1434401
969         * src/mcs51/peeph.def: disabled 186.d as temporary fix for #1434401
970
971 2006-02-16 Maarten Brock <sourceforge.brock AT dse.nl>
972
973         * device/include/mcs51/at89s8253.h: new, thanks to Krzysztof Polomka
974         * device/include/mcs51/at89S8252.h: fixed, thanks to Krzysztof Polomka
975         * device/include/mcs51/c8051f326.h,
976         * device/include/mcs51/c8051f340.h: new SiLabs mcu's
977         * device/include/mcs51/c8051f000.h,
978         * device/include/mcs51/c8051f018.h,
979         * device/include/mcs51/c8051f020.h: used () with __at, renamed IDLE,STOP to
980           PCON_IDLE,PCON_STOP and added sfr16 definitions
981
982 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
983
984         * src/mcs51/gen.c (genPlus, genMinus, genMult, genGetAbit, genGetByte,
985           genGetWord): fixed bug 1409955
986
987 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
988
989         * device/include/hc08/mc68hc908gp32.h,
990         * device/include/hc08/mc68hc908jb8.h: removed AWUL, added PTA6 & PTA7
991
992 2006-02-13 Maarten Brock <sourceforge.brock AT dse.nl>
993
994         * src/SDCCast.c (constExprValue): return NULL if not a value
995         * src/SDCCglue.c (printIvalArray): fixed bug 1225568
996         * src/hc08/gen.c(genUnpackBits, genUnpackBitsImmed): fixed bug 1019480
997         * support/regression/tests/bitfields.c: enabled signed bitfield for all
998
999 2006-02-13 Borut Razem <borut.razem AT siol.net>
1000
1001         * src/regression/ptrarg.c: added, fails due to bug #1430967
1002         * src/regression/Makefile: ptrarg.c added, ...
1003
1004 2006-02-12 Maarten Brock <sourceforge.brock AT dse.nl>
1005
1006         * src/z80/gen.c (genUnpackBits): fixed bug 1019480
1007         * support/regression/tests/bitfields.c: enabled signed bitfield for z80
1008
1009 2006-02-11 Borut Razem <borut.razem AT siol.net>
1010
1011         * src/SDCCmain.c: Added "sdcc: Calling linker..." if --verbose,
1012           print "Processor: xxx" message to stdout only if --verbose
1013
1014 2006-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1015
1016         * src/SDCCglue.c (printIvalStruct): fixed bug 1426356 union initializer
1017         * support/regression/tests/bug1426356.c: added
1018         * support/regression/tests/bitfields.c: removed 2 tests
1019
1020 2006-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1021
1022         * device/include/mcs51/at89c51snd1c.h: updated comments, see patch 1428901
1023         * device/include/mcs51/c8051f330.h,
1024         * device/include/mcs51/c8051f350.h: used () with __at, renamed IDLE,STOP to
1025           PCON_IDLE,PCON_STOP and added sfr16 definitions
1026         * device/lib/_divsint.c,
1027         * device/lib/_divuint.c,
1028         * device/lib/_divulong.c,
1029         * device/lib/_divulong.c: renamed a,b to x,y to avoid confusion, fixed
1030           register bank bug for small stackauto
1031
1032 2006-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1033
1034         * support/regression/fwk/lib/timeout.c: include <stdlib.h> for exit()
1035
1036 2006-02-08 Maarten Brock <sourceforge.brock AT dse.nl>
1037
1038         * support/regression/ports/mcs51-xstack-auto/spec.mk: forgot -I(...)/mcs51
1039         * all.dsp: corrected several bin paths
1040         * device/include/mcs51/c8051f120.h,
1041         * device/include/mcs51/c8051f300.h,
1042         * device/include/mcs51/c8051f310.h: used () with __at and renamed IDLE,STOP
1043           to PCON_IDLE,PCON_STOP
1044         * device/include/mcs51/c8051f320.h: see above, also added sfr16 definitions
1045         * device/lib/printf_large.c (output_float): fixed bug 1388703
1046         * support/regression/tests/bug1057979.c: added test for bug 1388703
1047
1048 2006-02-08 Raphael Neider <rneider AT web.de>
1049
1050         * src/pic/pcode.c (pciTRIS): fixed typo,
1051           (BuildFlow,LinkFlow_pCode): added (disabled) debug output,
1052           (LinkFlow): fixed handling of flows that end in a call,
1053           (ReuseReg): perform safety check earlier
1054         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed
1055             to work with flows at the beginning of a pBlock,
1056             fixes #1426557 (Symbol not previously defined),
1057           (pic14_ReMapLiveRanges): NEW, destroy and rebuild register
1058             usage information
1059           (RemoveUnusedRegisters): update register usage info
1060         * src/pic/ralloc.c (newReg): prevent duplicate registers from being
1061             created, reuse existing ones instead
1062         * src/pic/gen.c (genPcall): fixed #1424719
1063
1064 2006-02-07 Bernhard Held <bernhard AT bernhardheld.de>
1065
1066         * link/z80/lkmain.c,
1067         * link/z80/lklex.c,
1068         * link/z80/lkdata.c,
1069         * link/z80/aslink.h: fixed build on current cygwin:
1070         replaced getline() by lk_getline()
1071
1072 2006-02-01 Borut Razem <borut.razem AT siol.net>
1073
1074         * src/regression/add.c, src/regression/add2.c, src/regression/add3.c,
1075           src/regression/add4.c, src/regression/and1.c, src/regression/and2.c,
1076           src/regression/arrays.c, src/regression/b.c, src/regression/bank1.c,
1077           src/regression/bool1.c, src/regression/bool2.c,
1078           src/regression/bool3.c, src/regression/call1.c,
1079           src/regression/compare.c, src/regression/compare10.c,
1080           src/regression/compare2.c, src/regression/compare3.c,
1081           src/regression/compare4.c, src/regression/compare5.c,
1082           src/regression/compare6.c, src/regression/compare7.c,
1083           src/regression/compare8.c, src/regression/compare9.c,
1084           src/regression/configword.c, src/regression/for.c,
1085           src/regression/inline.c, src/regression/mult1.c,
1086           src/regression/nestfor.c, src/regression/or1.c,
1087           src/regression/pointer1.c, src/regression/ptrfunc.c,
1088           src/regression/rotate1.c, src/regression/rotate2.c,
1089           src/regression/rotate3.c, src/regression/rotate4.c,
1090           src/regression/rotate5.c, src/regression/rotate6.c,
1091           src/regression/rotate7.c, src/regression/string1.c,
1092           src/regression/struct1.c, src/regression/sub.c,
1093           src/regression/sub2.c, src/regression/switch1.c,
1094           src/regression/while.c, src/regression/xor.c,
1095           src/regression/create_stc, src/regression/simulate,
1096           src/regression/rt.sh, src/regression/Makefile: reenabled Scott's PIC14
1097           regression tests
1098         * src/regression/gpsim_assert.h: added
1099
1100 2006-01-28 Bernhard Held <bernhard AT bernhardheld.de>
1101
1102         * src/ds390/gen.c (unsaveRegisters): fixed literal function pointer
1103         ((void (code *) (void)) 0) ();
1104         * as/hc08/aslex.c,
1105         * as/hc08/aslink.h,
1106         * as/hc08/asm.h,
1107         * as/hc08/asmain.c,
1108         * as/hc08/lkdata.c,
1109         * as/hc08/lklex.c,
1110         * as/hc08/lkmain.c,
1111         * as/mcs51/aslex.c,
1112         * as/mcs51/aslink.h,
1113         * as/mcs51/asm.h,
1114         * as/mcs51/asmain.c,
1115         * as/mcs51/lkdata.c,
1116         * as/mcs51/lklex.c,
1117         * as/mcs51/lkmain.c,
1118         * as/z80/aslex.c,
1119         * as/z80/asm.h,
1120         * as/z80/asmain.c: fixed build on current cygwin:
1121         replaced getline() by as_getline()
1122
1123 2006-01-27 Bernhard Held <bernhard AT bernhardheld.de>
1124
1125         * src/SDCC.y: fixed bug #716242, exchanged pointer and function
1126         declarator in the symbol chain
1127         * src/SDCCsymt.h,
1128         * src/SDCCsymt.c (processFuncPtrArgs): added, removes "(void)"
1129         parameter list for function pointers
1130         * src/SDCCast.c (decorateType): added call of processFuncPtrArgs()
1131         * support/regression/tests/bug-716242.c: added
1132
1133 2006-01-20 Bernhard Held <bernhard AT bernhardheld.de>
1134
1135         * src/SDCCicode.c (geniCodeAdd, geniCodeArray): use char for array
1136         offset if possible
1137         * src/SDCCast.c (getLeftResultType): 255 fits in char, not 256
1138
1139 2006-01-18 Bernhard Held <bernhard AT bernhardheld.de>
1140
1141         * src/SDCCast.c (backPatchLabels): fixed bug #1408066: made it
1142         inifinitely recurseable, added static
1143         * support/regression/tests/bug-1408066.c: added
1144
1145 2006-01-17 Bernhard Held <bernhard AT bernhardheld.de>
1146
1147         * src/SDCCicode.h,
1148         * src/SDCCicode.c (newiTempPreheaderLabel, newiTempLoopHeaderLabel):
1149         renamed, added possibility to create "postLoopLbl"-labels
1150         * src/SDCCBBlock.c (iCodeBreakDown): renamed newiTempPreheaderLabel to
1151         newiTempLoopHeaderLabel
1152         * src/SDCCloop.c (newInduction, newRegion, backEdges, insertIntoLoop,
1153         isNotInBlocks, addToExitsMarkDepth, createLoop, dominatedBy,
1154         addDefInExprs, assignmentsToSym, isOperandInvariant, pointerAssigned,
1155         hasNonPtrUse, loopInvariants, addressTaken, findInduction,
1156         findDefInRegion, mergeRegions, ifMerged, mergeInnerLoops): made static,
1157         (pinduction, pregion, hasIncomingDefs, findLoopEndSeq): disabled,
1158         (basicInduction): fixed bug #136564, made static,
1159         (loopInduction): changed parameter of basicInduction, made static,
1160         (addPostLoopBlock): added
1161         * src/SDCCloop.h: removed backEdges, pregion, pinduction,
1162         loopOptimizations, addressTaken, findDefInRegion, hasIncomingDefs,
1163         findLoopEndSeq
1164         * support/regression/tests/bug-136564.c: added
1165         * support/regression/ports/mcs51-xstack-auto/spec.mk: added
1166         --std-sdcc99 to LIBSDCCFLAGS
1167
1168 2006-01-16 Bernhard Held <bernhard AT bernhardheld.de>
1169
1170         * src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false
1171         while loop
1172         * support/regression/tests/bug-1406131.c: added
1173
1174 2005-12-31 Bernhard Held <bernhard AT bernhardheld.de>
1175
1176         * src/SDCCast.c (decorateType): fix promotion of unary minus
1177         * src/SDCCsymt.c (computeType): beautified
1178         * src/SDCCval.c (cheapestVal): beautified, old non-Ansi version removed,
1179         (valUnaryPM, valComplement): fix sign and promotion,
1180         (valNot): ANSI: result type is int (SDCC: unsigned char)
1181         * support/regression/tests/uminus.c: speedup by removing superflous
1182         test case 'int'
1183         * support/regression/tests/onebyte.c: added promotion and signedness
1184         tests for unary minus
1185         * support/regressions/tests/bug-477927.c: disable warning about
1186         uninitialized variables
1187         * support/regression/tests/not.c: added
1188
1189 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
1190
1191         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
1192         * src/mcs51/gen.c (gen51Code): show final register usage after
1193         fillGaps in asm with --i-code-in-asm
1194         * src/SDCClrange.c (sequenceiCode, setLiveFrom, setLiveTo,
1195         markLiveRanges, markAlive, findNextUseSym, findNextUse, unvisitBlocks,
1196         incUsed, rliveClear, adjustIChain): made static,
1197         (setFromRange): excluded because it's unused,
1198         (findPrevUseSym, markWholeLoop): added,
1199         (findPrevUse): rewritten; fixes bug 895992; now a complete search
1200         through all branches of predecessors enables sdcc to emit the warning
1201         W_LOCAL_NOINIT, marking of outermost loop was incomplete,
1202         (rlivePoint): made static, added parameter emitWarnings which is only
1203         true during the first run out of two,
1204         (findRecursiveSucc, findRecursivePred): removed,
1205         (computeLiveRanges): made static, added parameter emitWarnings,
1206         (dumpIcRlive): added for debugging only
1207         * src/SDCClrange.h: added boolean parameter to computeLiveRanges(),
1208         removed prototype of setFromRange()
1209         * src/SDCCopt.c (eBBlockFromiCode): added new parameter emitWarnings
1210         in call of computeLiveRanges()
1211         * support/regression/tests/bug-895992.c: added
1212         * support/regression/tests/bug-971834.c: added
1213         * support/valdiag/tests/bug-895992.c: added
1214         * support/valdiag/tests/bug-971834.c: added
1215
1216 2005-12-18 Raphael Neider <rneider AT web.de>
1217
1218         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
1219           (genUnpackBits): improved code for direct operands,
1220           (genPackBits): improved code for literal assignment to bitfields
1221             and for direct destination operands (no FSR indirection),
1222             prevented redundant AND, fixes #1362800,
1223           (AccLsh): added parameter to disable masking of the result
1224         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
1225           skip instructions with side-effects (like incfsz),
1226           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
1227         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
1228         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
1229           fixes #1375263
1230
1231 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
1232
1233         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
1234         volatile variables as spill location
1235
1236 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
1237
1238         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
1239         replacing literals
1240         * support/regression/tests/bug-1376320.c: added
1241
1242 2005-12-08 Raphael Neider <rneider AT web.de>
1243
1244         * src/pic/device.c: renamed is_shared to pic14_is_shared
1245         * src/pic/gen.c (genIfx): re-enabled handling of sbits
1246         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
1247           (is_valid_identifier): added for above workaround
1248
1249 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
1250
1251         * device/lib/Makefile.in: fixed to enable port-specific-objects
1252         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
1253           char, thanks Hubert Sack
1254         * doc/sdccman.lyx: documented --xstack-loc,
1255           elaborated a bit more on interrupts and pitfalls,
1256           removed "setjmp/longjmp unsupported",
1257           documented some unsupported C99 features
1258         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
1259         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
1260           if, thanks Hubert Sack
1261         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
1262         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
1263           make make_library
1264         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
1265           regression tests can report resource usage (rfe 700441)
1266         * support/regression/collate-results.py: report resource usage
1267         * support/regression/ports/ds390/spec.mk,
1268         * support/regression/ports/hc08/spec.mk,
1269         * support/regression/ports/mcs51/spec.mk,
1270         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
1271         * support/regression/ports/ds390/uCsim.cmd,
1272         * support/regression/ports/hc08/uCsim.cmd,
1273         * support/regression/ports/mcs51/uCsim.cmd,
1274         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
1275         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
1276           library, use the default one
1277         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
1278           building the library
1279
1280 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
1281
1282         * config.dsp: added dependency on .version and configure_vc.awk
1283         * device/include/setjmp.h: updated for --stack-auto and --xstack
1284         * device/include/mcs51/at89c51snd1c.h: corrected line endings
1285         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
1286         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
1287         * device/lib/libsdcc.lib: added _setjmp
1288         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
1289           (decorateType): fixed bug 1372851,
1290           (optimizeGetHbit): fixed warning
1291         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
1292           array initialisation
1293         * support/regression/tests/bug1057979.c: added test for bug 1358192
1294         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
1295
1296 2005-12-03 Borut Razem <borut.razem AT siol.net>
1297
1298         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
1299           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
1300
1301 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
1302
1303         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
1304         createIval): implement symbol independant "flexible array member",
1305         (createIvalCharPtr): implemented flexible array initialisation with a
1306         string
1307         * src/SDCCsymt.c (copyStruct): removed,
1308         (getSize): fixed misleading comment,
1309         (getAllocSize): removed, the additional allocation size is now in
1310         sym->flexArrayLength,
1311         (checkStructFlexArray): new, syntax checks for flexible array members,
1312         (compStructSize): added syntax checks for "flexible array members"
1313         (copyStruct): removed,
1314         (copyLinkChain): removed inefficient fix for bug 770487
1315         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
1316         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
1317         symbol->flexArrayLength
1318         * src/SDCCerr.c,
1319         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
1320         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
1321         * support/regression/tests/structflexarray.c: added
1322         * support/valdiag/tests/structflexiblearray.c: added
1323
1324 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
1325
1326         * src/SDCCast.c (decorateType): fixed bug 1368489
1327         * support/Util/SDCCerr.c,
1328         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
1329
1330 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1331
1332         * device/include/mcs51/at89c51snd1c.h: added file submitted by
1333           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
1334
1335 2005-11-27 Borut Razem <borut.razem AT siol.net>
1336
1337         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
1338           support/cpp2/mkdeps.h: added command line option
1339           -obj-ext=<extension> to SDCPP to define object file externion, used
1340           for generation of make dependencies (-M)
1341         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
1342
1343 2005-11-26 Borut Razem <borut.razem AT siol.net>
1344
1345         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
1346           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
1347           added pic and pic16 libraries
1348
1349 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1350
1351         * device/include/float.h: Corrected typo in prototype of __fsgt
1352
1353 2005-11-25 Borut Razem <borut.razem AT siol.net>
1354
1355         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
1356           added creation of model-mcs51-stack-auto libraries
1357
1358 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
1359
1360         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
1361         and fields-list too
1362         * src/SDCCast.c (createIvalArray): removed obsolete comment
1363
1364 2005-11-24 Borut Razem <borut.razem AT siol.net>
1365
1366         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
1367           added missing device/lib/mcs51/crt*.asm sources
1368
1369 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
1370
1371         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
1372
1373 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
1374
1375         * device/lib/_fs2schar.c,
1376         * device/lib/_fs2sint.c,
1377         * device/lib/_fs2slong.c: optimized inline asm
1378
1379 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1380
1381         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
1382           Better handling of floats between -1.0 and 0.0.
1383
1384 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1385
1386         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
1387           (the missing "if"s prohibited removal of redundant labels)
1388
1389 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1390
1391         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
1392           Properly convert floats between -1.0 and 0.0 to long, int, and char
1393           types (max integer value of negative floats tends to zero).
1394         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1395           Removed changes made so to work properly with floats between
1396           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
1397           and _fs2char.c
1398
1399 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1400
1401         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
1402         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
1403         (genCast) cosmetic change
1404         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
1405         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
1406         from mcs51
1407         * support/regression/tests/bitfields (testSignedBitfields): added
1408
1409 2005-11-18 Borut Razem <borut.razem AT siol.net>
1410
1411         * sdcc/device/lib/Makefile.in: remove all unnecessary files
1412         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
1413           introduced SILENT option to make building of pic16 libraries less
1414
1415 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1416
1417         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1418           Now they work properly with floats between -1.0 and 0.0
1419         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
1420
1421 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
1422
1423         * src/SDCCicode.c (printOperand): added missing else
1424
1425 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1426
1427         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
1428         reformatted for better readability
1429         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
1430         signed bitfields
1431
1432 2005-11-17 Borut Razem <borut.razem AT siol.net>
1433
1434         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
1435           introduced SILENT option to make building of pic16 libraries less
1436           verbose - used for nightly snapshot build
1437         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
1438           available on Win32 platforms.
1439         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
1440           medium, large, pic and pic16
1441
1442 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1443
1444         * device/lib/printf_large.c: Temporary patch for bug 1358192:
1445           printf("%f"...) sets fraction to zero.
1446
1447 2005-11-16 Raphael Neider <rneider AT web.de>
1448
1449         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
1450           fixes #1357221
1451         * src/pic/gen.c (genIfx): implemented for CARRY bit
1452         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
1453           to generic pointers, fixes #1357332,
1454           (pic16_movLit2f): NEW,
1455           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
1456
1457 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
1458
1459         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
1460
1461 2005-11-11 Raphael Neider <rneider AT web.de>
1462
1463         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
1464         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
1465           compute pointer's type from operand,
1466           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
1467           improved single bit reads, fixes bug #1353379
1468
1469 2005-11-09 Borut Razem <borut.razem AT siol.net>
1470
1471         * support/scripts/sdcc.nsi: added lib/pic to the package
1472
1473 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
1474
1475         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
1476
1477 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
1478
1479         * support/regression/tests/bug1348008.c: added
1480         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
1481         * support/regression/tests/bug1337835.c: updated comment
1482
1483 2005-11-06 Borut Razem <borut.razem AT siol.net>
1484
1485         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1486           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1487           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1488           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1489           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
1490           dynamic construction of cl_error_class and derivates - 2.nd try
1491
1492 2005-11-05 Borut Razem <borut.razem AT siol.net>
1493
1494         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
1495           bug, which caused Bus Errors on sparc solaris
1496
1497 2005-11-04 Borut Razem <borut.razem AT siol.net>
1498
1499         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1500           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1501           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1502           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1503           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
1504           and derivates to resolve the initialization problem on OSX
1505
1506 2005-11-02 Borut Razem <borut.razem AT siol.net>
1507
1508         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1509           corrected typo - #include <winsock2.h>
1510
1511 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
1512
1513         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
1514           (_asxxxx_mapping): added org directive for future enhancements
1515
1516 2005-11-01 Borut Razem <borut.razem AT siol.net>
1517
1518         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1519           enabled sockets on WIN32
1520         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
1521
1522 2005-10-31 Borut Razem <borut.razem AT siol.net>
1523
1524         * support/regression/generate-cases.py: escape backslashes in {testcase}:
1525           WIN32 backslash path delimiters should be escaped when used in C strings
1526         * support/regression/tests/bitfields.c: exclude failing assertions for
1527           __CYGWIN32__ and __MINGW32__ hosts
1528
1529 2005-10-30 Borut Razem <borut.razem AT siol.net>
1530
1531         * src/SDCCutil.c: corrected double comparison typo
1532
1533 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
1534
1535         * device/lib/medium/Makefile: added for new memory model medium
1536         * device/include/asm/mcs51/features.h: updated for medium/pdata
1537         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
1538           added Multiply & Accumulate sbit's and MAC0_PAGE define
1539         * device/include/mcs51/c8051f300.h: added sfr16 definitions
1540         * device/include/mcs51/c8051f310.h: added sfr16 definitions
1541         * device/lib/_mullong.c: update for medium model
1542         * device/lib/incl.mk: added medium model
1543         * doc/sdccman.lyx: documented medium model
1544         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
1545         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
1546         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
1547         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
1548           (allocParms): set SCLS and OCLS to pdata for medium model
1549         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
1550           for pdata,
1551           (powof2): return <0 if not power of 2
1552         * src/avr/gen.c (genBitWise): use updated powof2
1553         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
1554           (shiftR2Left2Result): small optimization in setup, save acc when storing,
1555           (shiftLLeftOrResult): use B if necessary
1556         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
1557         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
1558         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
1559         * support/regression/Makefile.in: added test-mcs51-medium
1560         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
1561
1562 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
1563
1564         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
1565         specifier unsigned
1566         * device/lib/time.c (mktime): fixed bug 1334315
1567
1568 2005-10-28 Raphael Neider <rneider AT web.de>
1569
1570         * device/include/pic/p16f_common.inc: added common declarations
1571         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
1572
1573 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1574
1575         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
1576           (aopPutUsesAcc): added to predict accumulator use,
1577           (assignResultValue): save acc if necessary,
1578           (genMinusDec): store result if indirectly addressed,
1579           (genDivOneByte):  save acc if necessary,
1580           (movLeft2Result): bugfix if left already in acc,
1581           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
1582             attention to accumulator use (esp. pdata),
1583           (genReceive): receive pdata correctly
1584         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
1585         * src/SDCCicode.h: added isOperandInPagedSpace prototype
1586
1587 2005-10-27 Raphael Neider <rneider AT web.de>
1588
1589         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
1590
1591 2005-10-27 Raphael Neider <rneider AT web.de>
1592
1593         * .version: changed version to 2.5.4
1594         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
1595         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
1596           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
1597             arithmetics support routines
1598         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
1599         * device/lib/Makefile.in: also create installdir for pic
1600
1601         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
1602           pic14 port as well
1603         * src/pic/device.c (dump_sfr): rewritten to delegate register
1604           placement to the linker (use `extern sym' rather than sym EQU addr),
1605           (validAddress): fixed to check last specified address
1606         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
1607           (popGetLit): truncate literal value to 8 bit,
1608           (popGet): moved assert to more appropriate place
1609           (popGetExternal): create pCode operand from and mark the according
1610             symbol as being `extern'
1611           (popGetAddr): added sanity check on immediate's offset, provide
1612             GPOINTER tag on demand
1613           (aopPut): fixed for immediates,
1614           (mov2w_op): move operand's address or contents to WREG (depending on
1615             operand type), safer variant of mov2w,
1616           (movwf,call_libraryfunc): NEW, handy abbreviations,
1617           (get_argument_pcop,get_return_val_pcop,pass_argument,
1618           get_returnvalue): interface for accessing function parameters and
1619             return values,
1620           (assignResultValuei,genRet): use new parameter/return value interface
1621           (pic14_getDataSize): back to old version handling generic pointers,
1622           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
1623             provided implementation and/or fixed old one,
1624           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
1625             calls, removed legacy 8051 reference code
1626           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
1627           (loadSignToC): NEW, move the operands sign bit to CARRY,
1628           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
1629             genRightShiftSigned, accepts negative shift counts,
1630           (setup_fsr): load FSR and adjust IRP (indirect memory access),
1631           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
1632             generic pointers, __data pointers and __code pointers,
1633           (genUnpackBits,genPackBits): rewritten to work with generic pointers
1634             and signed bitfields, limit bitfields to 8 bit,
1635           (genDataPointerGet): fixed number of bytes read,
1636           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
1637           (genPointerGet,genPointerSet): fixed handling of __code pointers,
1638             pointers to constant data are no longer assumed to point to __code
1639             space, removed invalid pointer types,
1640           (bitpatternFromVal): retrieve the PICs representation of an integer
1641             or float literal,
1642           (genDataPointerSet): fixed assigning to po_immediate operands,
1643           (genGenPointerSet): implemented as library call,
1644           (genIfx): fixed incorrect condition,
1645           (genAddrOf): limit generic pointers' addresses to 2 bytes,
1646             provide GPOINTER tag according to destination's storage class,
1647           (genCast): added code to handle casting to generic pointers, added
1648             sign-/zero extension of the result
1649           (aop_isLitLike,op_isLitLike): fixed handling of immediates
1650         * src/pic/gen.h: added macros to access IRP bit in STATUS register
1651         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
1652           extend the result
1653         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
1654           address/register resides in the shared banks
1655           (emitSymbolToFile): improved to handle global and `pinned' symbols,
1656             put all variables into separate sections (have the linker arrange
1657             them)
1658           (picglue): put init code and interrupt handlers in separate sections
1659         * src/pic/main.c: added port specific options table, modified to PORT
1660           structure to make GPOINTERs 3 byte, added pic14_options
1661           (_pic14_do_link): private linking routine (update paths to libraries,
1662             add libsdcc.lib by default)
1663         * src/pic/main.h: declare pic14_options
1664         * src/pic/pcode.c: fixed instructions i/o relations,
1665           (RegCond): reverted to correct version,
1666           (newpCodeOpLit): truncate literals to 8 bit,
1667           (genericPrint): added debug output,
1668           (getRegFromInstruction): fixed for various operand types, simplified
1669           (BuildFlow): fixed broken handling of isntructions with labels
1670           (LinkFlow): start at last instruction in flow (skip trailing comments),
1671             pass the flow on to the next instruction after CALL
1672           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
1673           (insertPCodeInstruction): fixed inserting after a skip instruction,
1674           (DoBankSelect): fixed for labeled instructions
1675           (OptimizepBlock): honor --nopeep switch
1676           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
1677         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
1678         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
1679           (pCodeOptime2pCodes): allow disabling this optimization via
1680             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
1681             but is still buggy), started implementation of a dataflow based
1682             pCode optimization (CSE + dead code elimination)
1683           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
1684         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
1685           names are independant of the stack location and therefore portable across
1686           devices
1687
1688 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1689
1690         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
1691           (selectSpil): fixed bug 1337835 by not spilling bit variables
1692         * support/regression/tests/bug1337835.c: added test for this bug
1693         * src/mcs51/peeph.def: restart after rule 3.c,
1694           addded rules 263.x to optimize loading constants
1695
1696 2005-10-26 Raphael Neider <rneider AT web.de>
1697
1698         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
1699         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
1700           (genAssign): emit warning when casting literals to generic pointer
1701             type, also applies when taking the address of a fixed variable,
1702           (genCast): improved casting to generic pointers
1703         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
1704           extern variables, added verbose error message
1705         * device/include/pic16/{string.h,errno.h}: added #pragma library c
1706
1707 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
1708
1709         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
1710         carry must be complemented too
1711         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
1712         could be emitted by genMinus
1713         * src/SDCCval.c (constVal): fixed bug 1305065
1714
1715 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
1716
1717         * src/SDCCast.c (addCast): added promotion for bit variables
1718         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
1719         promotion casts + optimisation
1720         (optimizeGetWord): fix warning 'i' might be used uninitialized
1721         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
1722         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
1723
1724 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
1725
1726         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
1727         all chars are promoted to int; promotion should be handled in SDCCast.c
1728
1729 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1730
1731         * device/lib/_strcmp.c: Fixed bug 1326457
1732
1733 2005-10-11 Raphael Neider <rneider AT web.de>
1734
1735         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
1736         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
1737
1738 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
1739
1740         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
1741         * support/regression/tests/sfr16.c: added test for the sfr32 bug
1742
1743 2005-10-04 Raphael Neider <rneider AT web.de>
1744
1745         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
1746           device/lib/pic16/pics.all: added pic18f1320
1747         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
1748
1749 2005-09-30 Raphael Neider <rneider AT web.de>
1750
1751         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
1752         * src/pic16/devices.inc: NEW, provides device descriptions
1753         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
1754
1755 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
1756
1757         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
1758           GETHBIT
1759
1760 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
1761
1762         * doc/sdccman.lyx: updated Highest Order Bit documentation,
1763           documented Any Order Bit, Higher Order Byte and Higher Order Word
1764         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
1765         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
1766           (optimizeGetAbit): new, to get any bit, not only the high bit,
1767           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
1768           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
1769           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
1770           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
1771             RIGHT_OP: also try GETBYTE, GETWORD optimization,
1772             GETABIT, GETBYTE, GETWORD: decorate them,
1773           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
1774           (ast_print): added GETABIT, GETBYTE, GETWORD
1775         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
1776         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
1777           (geniCodeBinary): new generic binary icode,
1778           (ast2iCode): added GETABIT, GETBYTE, GETWORD
1779         * src/port.h: updated comment for PORT.hasExtBitOp
1780         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
1781           (genGetByte): new, to get a single byte,
1782           (genGetWord): new, to get a word from a long,
1783           (gen51Code): added GETABIT, GETBYTE, GETWORD
1784         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
1785
1786 2005-09-23 Raphael Neider <rneider AT web.de>
1787
1788         * configure.in, configure: have device/lib/pic configured
1789         * device/lib/Makefile.in: added model-pic14
1790         * device/lib/clean.mk: added pic/ to clean rule
1791         * device/lib/pic: added rudimentary pic14 library providing support
1792           functions for multiplication/division/generic pointer access
1793         * src/SDCCopt.c (convilong): mark support functions as extern
1794           for pic14 port as well
1795         * src/pic/gen.c (genMult): added assertions,
1796           (genpic14Code): emit warning on unhandled iCodes
1797         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
1798         * src/pic/pcode.c (pCodeOpCopy),
1799         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
1800           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
1801           SFR_REGISTER}), made safe for future extensions
1802         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
1803           instructions even if preceeded by SKIP instructions (also remove
1804           them); removed unused code
1805         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
1806           prevents leaving parts of the structure uninitialized after copying
1807
1808 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
1809
1810         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
1811           ago by me
1812         * support/regression/tests/addsub.c: added test for the bug
1813
1814 2005-09-21 Raphael Neider <rneider AT web.de>
1815
1816         * device/include/pic16/pic18f1220.h,
1817           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
1818         * device/lib/pic16/Makefile.rules: added missing opening paren
1819         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
1820           are provided in genutils.c,
1821           (genUminusFloat,genUminus,genCmpEq): added asserts on different
1822           operand/result sizes,
1823           (genCmp): assert on NULL pointers first, then check deref'ed values
1824         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
1825           result size
1826
1827 2005-09-18 Raphael Neider <rneider AT web.de>
1828
1829         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
1830           as these are now unused,
1831           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
1832         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
1833           local, avoids uninitialized pointer dereference on r->name
1834         * src/pic16/ralloc.c (newReg): fixed indentation
1835
1836 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
1837
1838         * src/SDCCval.c (constVal): fixed bug 730366
1839         * support/Util/SDCCerr.c,
1840         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
1841
1842 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
1843
1844         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
1845
1846 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
1847
1848         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
1849
1850 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
1851
1852         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
1853           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1854         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
1855           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1856         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
1857         * packihx/packihx.c (hexDigit): made c unsigned char
1858         * as/mcs51/lklibr.c (fndsym),
1859         * link/z80/lkgb.c (gb),
1860         * link/z80/lklibr.c (fndsym),
1861         * link/z80/lkrloc.c (relr),
1862         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
1863         * src/SDCC.lex (checkCurrFile, process_pragma),
1864         * src/SDCCglue.c (spacesToUnderscores),
1865         * src/SDCCmain.c (setParseWithComma, processFile),
1866         * src/asm.c (tvsprintf, printCLine),
1867         * src/avr/gen.c (emitcode, aopPut),
1868         * src/ds390/gen.c (emitcode),
1869         * src/hc08/gen.c (emitcode, emitinline),
1870         * src/mcs51/gen.c (emitcode, genInline),
1871         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1872           tokenizeLineNode),
1873         * src/pic/ralloc.c (debugLog),
1874         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1875           tokenizeLineNode),
1876         * src/pic16/ralloc.c (debugLog),
1877         * src/z80/main.c (_process_pragma):
1878            made all ctype.h function calls safe
1879         * src/SDCCopt.c: include math.h for fabs
1880         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
1881           and used them throughout the code to make ctype.h function calls safe
1882         * src/ds390/main.c (asmLineNodeFromLineNode),
1883         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
1884         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
1885            unsigned char*
1886         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
1887           (newpCodeAsmDir): made ctype.h function calls safe
1888         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
1889           pic16_emitcode):  made lbp unsigned char*
1890         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
1891           (pic16_newpCodeAsmDir): made ctype.h function calls safe
1892         * src/xa51/gen.c (emitcode),
1893         * src/z80/gen.c (_emit2): made lbp unsigned char*
1894         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
1895            char*
1896
1897 2005-09-05 Raphael Neider <rneider AT web.de>
1898
1899         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
1900           access bank splitpoint
1901
1902 2005-09-05 Raphael Neider <rneider AT web.de>
1903
1904         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
1905
1906 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
1907
1908         * .version: changed to version 2.5.3
1909         * doc/sdccman.lyx: changed version to 2.5.3,
1910           documented --codeseg and --constseg and pragma codeseg and constseg,
1911           documented bit parameters (reentrant) and bit returning
1912         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
1913            currFunc->recvSize, but is this ok for all ports?
1914           (ast2iCode): result of ~ on unsigned char must be cast to int for
1915            bool to work
1916         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
1917           function pointers in bit space
1918         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
1919           (processFuncArgs): call port.reg_parm() with reentrancy info
1920         * src/port.h,
1921         * src/avr/main.c,
1922         * src/ds390/main.c,
1923         * src/hc08/main.c,
1924         * src/pic/main.c,
1925         * src/pic16/main.c,
1926         * src/xa51/main.c,
1927         * src/z80/main.c: port.reg_parm prototype extended with
1928           "bool reentrant" parameter
1929         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
1930           options.stackAuto for allocating bit register parameters
1931         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
1932           (genSend): set BitBankUsed if it is,
1933           (selectRegBank): factored out of genCall for use in genPcall,
1934           (genCall): removed redundant dtype assignmen, use selectRegBank,
1935           (genPcall): handle returning in Carry properly, save in F0 if needed,
1936           (genReceive): handle bit register parameters
1937         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
1938           (mcs51_assignRegisters): enable bit registers for all reentrant
1939            functions and don't set BitBankUsed unconditionally
1940         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
1941         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
1942         * support/regression/tests/funptrs.c: added tests for BOOL and for return
1943
1944 2005-08-27 Borut Razem <borut.razem AT siol.net>
1945
1946         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
1947         ppc-osx (Darwin) does not support -u option. It seems that it is
1948         supported only on Linux - GNU cp
1949
1950 2005-08-25 Borut Razem <borut.razem AT siol.net>
1951
1952         * sim/ucsim/gui.src/serio.src/Makefile.in,
1953           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
1954           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1955           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
1956           install and strip, since the strip at /usr/ccs/bin should be used
1957           on solaris
1958
1959 2005-08-24 Borut Razem <borut.razem AT siol.net>
1960
1961         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
1962
1963 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
1964
1965         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
1966         ffffffffu
1967
1968 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
1969
1970         * as/mcs51/aslink.h: completed lkrloc.c prototypes
1971         * as/mcs51/lkmain.c (link_main): fixed warning
1972         * device/include/stdbool.h: ds390 has no advanced bit support yet
1973         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
1974         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
1975         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
1976           and updated their macros
1977         * src/SDCCval.c (constVal): updated comment for renamed b_long
1978
1979 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
1980
1981         * as/mcs51/asdata.c: changed ctype['['] to BINOP
1982         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
1983           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
1984           (oprio): set priority for '['
1985         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
1986            and adb_24_bit
1987         * as/mcs51/asm.h: added defines R_BIT and S_BIT
1988         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
1989         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
1990         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
1991           added overlayable BIT_BANK area
1992         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
1993           (summary2): explain 'T' in legenda
1994         * as/mcs51/lkrloc.c: replaced old K&R style,
1995           (relr): added R_BIT processing,
1996           (errmsg): added "Bit-addressable relocation error",
1997           (adb_bit): added for converting from byte- to bit-addressable space,
1998           (adb_24_bit): added for converting from byte- to bit-addressable space
1999         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
2000            used in reentrant functions now even as return value
2001         * device/lib/_gptrput.c (_gptrput): removed obsolete code
2002         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
2003           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
2004         * src/SDCCglobl.h: added indicator BitBankUsed
2005         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
2006            the bit registers b0-b7
2007         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
2008           (geniCodeCast): fixed bug 1263853,
2009           (geniCodeLogicAndOr): put result in bool or char,
2010           (geniCodeReceive): added parameter func for accessing the return type,
2011           (geniCodeFunctionBody): pass func to geniCodeReceive
2012         * src/SDCCmain.c: added indicator BitBankUsed
2013         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
2014         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
2015           (checkSClass): don't put automatic bool/bit on stack,
2016           (checkFunction): removed check on function cannot return bit
2017         * src/SDCCsymt.h: added newBoolLink prototype
2018         * src/mcs51/gen.c (rb1regs): added bit registers,
2019           (movc): created for assigning to carry,
2020           (pushReg, popReg): created for pushing registers,
2021           (sameRegs): check both AOP_REG and AOP_CRY types,
2022           (aopOp): handle bit registers,
2023           (aopPut): optimization no self-assign,
2024           (saveRegisters): push reg->base (bits) only once for bit registers,
2025            and use pushReg,
2026           (unsaveRegisters): pop reg->base only once and use popReg,
2027           (assignResultValue): added parameter func and return in carry for bits,
2028           (genIpush): optimization no reload in A if not changed,
2029           (genSend): bit parameters in reentrant functions are passed in bit
2030            registers by first assigning to bits in B, then save registers and
2031            copy B to bits,
2032           (genCall): handle returning in Carry properly, save it in F0 if needed,
2033           (genPcall): updated assignResultValue call, this is not safe yet for bit
2034            returning function !!!
2035           (genFunction): don't generate equ's for bit registers and use pushReg,
2036           (genEndFunction): take care of bit returning functions and use popReg,
2037           (genRet): return bit in Carry,
2038           (genIfx): optimize bit registers and other directly addressable bits,
2039           (genReceive): updated assignResultValue call
2040         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
2041           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
2042            registers when using stack-auto
2043         * src/mcs51/ralloc.c (_G): added allBitregs,
2044           (regs8051): added the bit registers,
2045           (createStackSpil): use macro IS_BIT,
2046           (getRegBit): added to allocate a bit register, else spill,
2047           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
2048           (updateRegUsage): factored out to ease stepping while debugging,
2049           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
2050            also allocate bit registers,
2051           (fillGaps): handle bit registers,
2052           (findAllBitregs): added to create bit vector with all bit registers,
2053           (mcs51_allBitregs): returns this bit vector,
2054           (mcs51_assignRegisters): when using stack-auto use bit registers for
2055            passing parameters and creating local variables
2056         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
2057
2058 2005-08-22 Borut Razem <borut.razem AT siol.net>
2059
2060         * device/lib/Makefile.in: replaced find option -or with -o
2061           to make it run on solaris
2062
2063 2005-08-22 Raphael Neider <rneider AT web.de>
2064
2065         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
2066           fixes #1265442 (crash on Solaris)
2067
2068 2005-08-20 Borut Razem <borut.razem AT siol.net>
2069
2070         * configure, configure.in: added tests for libsocket and libnsl libraries,
2071           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
2072           from support/regression/Makefile.in
2073         * support/regression/Makefile.in: added
2074         * device/lib/pic16/Makefile.common.in: force make to use bash shell
2075         * sim/ucsim/libtool: regenerated on sparc-solaris
2076         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
2077           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
2078           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
2079           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
2080           sparc-solaris, which doesn't use GNU ld linker
2081         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
2082         * as/Makefile: find on sparc-solaris does not support -maxdepth option
2083
2084 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
2085
2086         * src/mcs51/peeph.def: updated comments
2087
2088 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2089
2090         * device/lib/_gptrget.c,
2091         * device/lib/_gptrput.c: slightly shorter
2092         * doc/sdccman.lyx: incremented version
2093         * src/mcs51/peeph.def: moved peephole comments to the line of first
2094           change to better keep line correlation, reanimated 186.e
2095         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
2096
2097 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
2098
2099         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
2100           David Saxton with quotes around file name.
2101
2102 2005-08-15 Borut Razem <borut.razem AT siol.net>
2103
2104         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
2105           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
2106           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
2107           make tests run on x86_64 platform
2108
2109 2005-08-13 Raphael Neider <rneider AT web.de>
2110
2111         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
2112           as it might be executed DURING a build (parallel make is wonderful)
2113
2114 2005-08-13 Raphael Neider <rneider AT web.de>
2115
2116         * device/lib/Makefile.in (port-specific-objects-pic16):
2117           revert to cp $(PORT)/bin/*.* $(PORTDIR)
2118         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
2119           dependency
2120         * device/lib/pic16/Makefile.rules: build subdirs before creating
2121           the library, removed builddir rule, create $(builddir) early in
2122           recurse rule, use empty recurse rule for leaf directories
2123         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
2124           mkdir errors (race condition), removed duplicate suffix "hex"
2125           from clean rules
2126         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
2127         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
2128           prevents mkdir -p from aborting on Alpha
2129
2130 2005-08-12 Raphael Neider <rneider AT web.de>
2131
2132         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
2133           db-statements in order to allow for arrays of pointers in code
2134           sections to be placed without interspersed 0-padding, fixes
2135           bug #1256215
2136         * (emitStatistics): fixed division by zero for pic18f1220
2137         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
2138           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
2139         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
2140         * (pic16_pCodeConstString): keep track of already emitted string
2141           literals to prevent "duplicate definitions of symbol _str_NR"
2142         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
2143           debug message
2144         * device/lib/Makefile.in: ignore failing PIC16 library builds
2145         * device/lib/pic16/Makefile: do not build if gputils are missing
2146         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
2147
2148 2005-08-10 Raphael Neider <rneider AT web.de>
2149
2150         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
2151           my last commit)
2152
2153 2005-08-10 Raphael Neider <rneider AT web.de>
2154
2155         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
2156           Rokas' patch to add the new fixed point type "__fixed16x16"
2157         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
2158           functions for __fixed16x16 arithmetics
2159         * device/lib/pic16: reimplemented the build system to support
2160           a separate build directory, better handling of libio (create
2161           the library in a separate subdir for each architecture) and
2162           easier configuration (centralized in Makefile.common)
2163
2164 2005-08-07 Raphael Neider <rneider AT web.de>
2165
2166         * src/pic16/gen.c (genrshTwo): fixed sign extension
2167         * src/pic16/device.c: added pic18f2320, 4220 and 4320
2168         * device/include/pic16/pic18f2220.h: changed some bit definitions,
2169           added T0CONbits
2170         * device/include/pic16/pic18f4220.h: NEW, header for
2171           pic18f4220 and pic18f4320
2172         * device/include/pic16/pic18fregs.h: added new devices,
2173           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
2174         * device/include/pic16/signal.h: resolved name clashes
2175           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
2176           to also allow testing for interrupt enable bits, added
2177           comments on how to use the macros
2178         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
2179         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
2180           register definitions for the devices
2181         * device/lib/pic16/pics.all: added new devices
2182         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
2183           allocated memory
2184         * device/lib/pic16/libc/stdlib/memfree: do not count
2185           the block header as free memory
2186         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
2187           simplified and added missing end-of-blocklist-marker
2188           (reported by Peter Onion, fixes #1252814)
2189         * (_mergeHeapBlock): fixed loop condition
2190         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
2191           len==0, restructured code
2192         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
2193           up a bit, reduced bitfield accesses, prevent endless loops
2194           in case of heap corruption
2195         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
2196           "unreferenced arguments/must return a value" warnings
2197         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
2198           replaced BAUDREG with SPBRG
2199         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
2200           device/lib/pic16/debug/gstack/gstack.c: replaced
2201           _naked, _asm, _endasm with __naked, __asm, __endasm
2202
2203 2005-08-05 Raphael Neider <rneider AT web.de>
2204
2205         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
2206           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
2207
2208 2005-08-05 Borut Razem <borut.razem AT siol.net>
2209
2210         * device/lib/Makefile.in: added missing ';'
2211         * configure: removed ^M characters
2212
2213 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2214
2215         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
2216           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
2217           License
2218
2219 2005-08-04 Borut Razem <borut.razem AT siol.net>
2220
2221         * configure.in: pic16 libraries build 2nd try - enable running
2222           configure in device/lib/pic16
2223         * configure: regenerated from configure.in
2224         * device/lib/Makefile.in: create $(PORT)/bin directory
2225
2226 2005-08-03 Raphael Neider <rneider AT web.de>
2227
2228         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
2229           to get/set values via pointers
2230         * (genUnpackBits,genPackBits): changed detection of
2231           ptr->bitfield vs. sym.bitfield, fixed access via generic
2232           pointers, removed dead (wrong) code for multibyte bitfields
2233         * (genNearPointerGet, genGenPointerGet): removed useless code,
2234           fixed bitfield detection, fixes #1250594
2235         * (genNearPointerSet): removed useless code
2236         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
2237           and introduced macro pic16_emitpcode that conditionally emits
2238           the origin of the following pCode (useful for debugging SDCC)
2239         * src/pic16/pcode.c: changed (and disabled) some debug outputs
2240         * (createDefmap): fixed handling of LFSR for --optimize-df
2241
2242 2005-08-02 Borut Razem <borut.razem AT siol.net>
2243
2244         * device/lib/Makefile.in: pic16 libraries build enabled since
2245           gputils-0.13.2 are now localy installed at sourceforge's compile farm
2246
2247 2005-08-02 Raphael Neider <rneider AT web.de>
2248
2249         * src/pic16/gen.c (genPackBits): removed deprecated warning
2250         * (genGenPointerSet): fixed bitfield detection
2251
2252 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2253
2254         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
2255
2256 2005-07-31 Raphael Neider <rneider AT web.de>
2257
2258         * device/lib/pic16/libdev/pic18f458.c,
2259           device/include/pic16/pic18f458.h: added missing T0CONbits
2260
2261 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
2262
2263         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
2264
2265 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
2266
2267         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
2268
2269 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2270
2271         * device/include/mcs51/at89c51ed2.h: added.
2272
2273 2005-07-23 Raphael Neider <rneider AT web.de>
2274
2275         * src/pic/gen.h: added emitpcode macro for debugging
2276         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
2277           and replace by macro adding debug information on demand
2278         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
2279         * (gencjne): tried to fix; replaced with correct (slower) code
2280         * (gen{Unp,P}ackBits): fixed single bit access
2281         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
2282         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
2283           previous instruction
2284         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
2285           register has to be handled with care (forbidding movement
2286           of assignments/uses, removing assignments completely, ...)
2287         * (pCodeOptime2pCodes): make use of regIsSpecial
2288         * added lots of debugging output (commented out)
2289         * src/pic/rallloc.c (deassignLRs): prevent operand registers
2290           from being reused as result UNLESS it is known to work
2291
2292 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
2293
2294         * support/Util/dbuf.h: include <stddef.h> for size_t
2295         * .version: changed to version 2.5.2
2296
2297 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2298
2299         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
2300
2301 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2302
2303         * src/hc08/gen.c (genMinus): fixed bug #1241835,
2304           (genModOneByte): removed needless psha/pula
2305
2306 2005-07-22 Raphael Neider <rneider AT web.de>
2307
2308         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
2309           have PIC14 handled like PIC16, fixes broken pic14 linker calls
2310         * src/pic/gen.c (resolveIfx): do not "invent" labels
2311         * (genSkipc): changed to positive logic
2312         * (genSkipCond): removed as no longer needed
2313         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
2314           backport from PIC16
2315         * (genLeftShift): check operands are in different registers
2316         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
2317           INCF does not update CARRY...
2318         * src/pic/main.c: fixed _linkCmd
2319         * src/pic/pcode.c (unlinkpCode): added inactive code
2320         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
2321           alive (do not assign result and operand overlapping registers)
2322
2323 2005-07-22 Raphael Neider <rneider AT web.de>
2324
2325         * src/pic/device.c (dump_sfr): replaced register declaration with
2326           call to emitSymbolToFile() to avoid duplicate symbols
2327         * (assignRelocatableRegisters): do not declare external symbols
2328         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
2329           right (take size of type, not etype)
2330         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
2331         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
2332         * (packRegsForAccUse): disabled assignment of WREG as
2333           the result reg to prevent occurence of just fixed #1235003,
2334           fixes #1242954
2335         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
2336           symbols (avoids duplicate symbols in .asm file)
2337         * (pic14emitRegularMap): use emitSymbolToFile()
2338         * src/pic/gen.c (aopOp): fixed spillLocation handling
2339         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
2340         * (genDataPointerSet): removed unneccessary variables/output
2341
2342 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
2343
2344         * as/mcs51/lkarea.c: enlarged codemap for banked memory
2345         * device/lib/mcs51/crtbank.asm: added # to 0x0F
2346
2347 2005-07-21 Raphael Neider <rneider AT web.de>
2348
2349         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
2350           architecture cannot handle them efficiently, fixes bug #1235003
2351         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
2352           check for empty sets before using them (fixes bug #1232190)
2353
2354 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
2355
2356         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
2357           (lnksect2): generate warnings for memory overlap
2358         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
2359           constseg to set the name of these segments so you can instruct the linker
2360           to place them in banks
2361         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
2362         * src/SDCCglobl.h: added MODEL_HUGE to enum,
2363           added code_seg and const_seg to options
2364         * src/SDCCglue.c (emitMaps): use options.const_seg,
2365           (createInterruptVect): put interrupt vectors in segment HOME,
2366           (glue): put HOME before static segment and put the main glue in HOME,
2367           (glue): use options.code_seg
2368         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
2369         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
2370           these segments so you can instruct the linker to place them in banks
2371           (linkEdit): use code_loc for HOME segment which should be the first
2372           segment in code memory now
2373         * src/SDCCmem.c: fixed more stuff like bug 1238386
2374         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
2375           (changePointer): don't change function pointers to code pointers for
2376           banked functions,
2377           (compareType): added exceptional check for banked function pointers
2378         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
2379         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
2380           after static in code memory
2381         * src/mcs51/gen.c: added aopLiteralLong prototype,
2382           (aopForSym): use getSize for functions,
2383           (genCall): generate banked calls over one trampoline __sdcc_banked_call
2384           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
2385           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
2386           the segment,
2387           (genPcall): use call for literal function pointers and generate banked
2388           calls over the one trampoline so there's only one place for the user to
2389           modify according to his/hers hardware,
2390           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
2391           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
2392         * src/mcs51/main.c: added keyword banked,
2393           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
2394         * support/Util/SDCCerr.c,
2395         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
2396           needed for passing the bank and address to the trampoline
2397         * device/lib/mcs51/crtbank.asm: added for bankswitching
2398         * device/lib/mcs51/Makefile: added crtbank
2399
2400 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2401
2402         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
2403           for fields at offset 0 of a struct or union as reported
2404           on 2005-07-07 in the developer mailing list.
2405
2406 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
2407
2408         * src/SDCCmem.c: fixed bug 1238386
2409
2410 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2411
2412         * src/mcs51/peeph.def: added labelrefcounting for peepholes
2413           (patch #1144962), added peephole 300, enabled 259.x
2414         * doc/sdccman.lyx: removed screenshot and provided link instead
2415
2416 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2417
2418         * doc/sdccman.lyx: added section about debugging with ddd
2419         * doc/figures/ddd_example.eps: screenshot of debugging session
2420
2421 2005-07-04 Raphael Neider <rneider AT web.de>
2422
2423         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
2424           like CODE pointers, fixes #1115683
2425         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
2426           call, fixes bugs #1232211, #1228110,
2427           fixed wrong casts to pCodeFlow from pCodeInstructions
2428
2429 2005-07-04 Raphael Neider <rneider AT web.de>
2430
2431         * src/pic/gen.c (popGet): changed assert to allow for
2432           bit operands
2433         * (popGetAddr): changed signature to provide
2434           an additional index, patched all call sites
2435         * (genCmpEq): handle literal-like operands correctly
2436         * (genAddrOf): added sanity checks on __code/__data pointers
2437         * (genAssign): added handling of symbols from __code section
2438         * (gencjne): do not generate code for comparisons whose result
2439           is neither stored nor used, fixes bug #1171114
2440         * (AccLsh, AccRsh): operate on operand instead of WREG
2441         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
2442           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
2443           by known count
2444         * rewrote complete shift-by-literal logic, commented unused
2445           functions out
2446         * (genConstPointerGet): get multiple bytes (if result size > 1),
2447           fixed handling of non-immediate addresses
2448         * (genPointerGet): handle CODE pointers like CONST pointers
2449         * (genpic14Code): insert C-SRC lines as Cource-pCodes
2450         * ({aop,op}_isLitLike): NEW, single place to decide whether an
2451           operand is to be treated as a literal or not
2452         * (mov2w,genPcall,genCmpEq),
2453           src/pic/genarith.c: use aop_isLitLike() to decide between
2454           literal/register contents
2455         * (addSign): added missing offset
2456         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
2457           only emit comment in debug-mode,
2458           use {aop,op}_isLitLike throughout the file
2459         * src/pic/glue.c: fix initializers for pointers (work in progress)
2460         * src/pic/pcode.c (get_op): honor index on _const symbols
2461         * ({reset,dump}pCodeStatistics): NEW, estimate code size
2462         * (dumppBlock): added pCode size estimation
2463         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
2464           check for IS_SYMOP before OP_SYMBOL'ing
2465         * fixed indentation, compacted switch-statements
2466         * (allocReg): find free register and allocate it instead of
2467           allocating new registers all the time
2468         * (deassignLRs): prevent POINTER_GET's from being assigned the same
2469           registers as its operands (necessary only for multibyte GETs)
2470
2471 2005-07-01 Raphael Neider <rneider AT web.de>
2472
2473         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
2474           debugging .asm-output macros FENTRY + FEXIT
2475         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
2476           way... I wonder...
2477         * (emitpComment): NEW, printf to pCode
2478         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
2479           offset handling
2480         * (popGetAddr): NEW, variant of popGet to access an immediates
2481           high(er) bytes instead of the n'th byte of memory they reference,
2482           replaced popGet with popGetAddr where neccessary
2483         * (genDataPointerGet): reactivated and fixed implementation
2484         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
2485           accesses
2486         * (genDataPointerSet): fixed multibyte assignments
2487         * (genpic14Code): fixed --i-code-in-asm handling
2488         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
2489         * (genPlus): fixed index-out-of-bounds error
2490         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
2491         * src/pic/ralloc.c: added debugging output macro FENTRY2
2492         * (spillThis): fixed indentation, enbraced for-body for clarity
2493         * (rematStr): commented out as now unused
2494         * (regTypeNum): commented out special spill case (overwrites
2495           arbitrary values)
2496         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
2497
2498 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
2499
2500         * doc/sdccman.lyx: documented sfr16/sfr32,
2501           added example for using storage class with function pointers
2502         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
2503
2504 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
2505
2506         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
2507         * device/lib/_itoa.c,
2508         * device/lib/_ltoa.c: optimized codesize
2509         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
2510           but don't know how to suppress the double warning.
2511         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
2512         * support/Util/SDCCerr.c,
2513         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
2514
2515 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
2516
2517         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
2518           fixed old K&R prototypes
2519         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
2520         * device/lib/_gptrget.c,
2521         * device/lib/_gptrgetc.c,
2522         * device/lib/_gptrput.c: changed versions for new memory indicator values,
2523           also new versions for small generic pointers and banked generic pointers
2524         * src/port.h: added const_name
2525         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
2526         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
2527         * src/SDCCcse.c (findPrevIc): check all associative operators
2528         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
2529         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
2530         * src/SDCCmem.c: updated comments,
2531           set far-space to 0 for pdata, results in optimized code
2532         * src/SDCCmem.h: added macro CONST_NAME
2533         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
2534           moving the info into the highest bits, see also gptrget/gptrput
2535         * src/src.dsp: added sdcc.ico to project files
2536         * src/avr/gen.c (genCast): fixed bug 0x%d
2537         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
2538         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
2539           relation between ptr_type and DCL_TYPE,
2540           (genCast): fixed bug 0x%d
2541         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
2542           (CODE)" for const_name
2543         * src/hc08/gen.c (genCast): fixed bug 0x%d
2544         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
2545           (hc08_port): added "CONST (CODE)" for const_name
2546         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
2547           (aopForRemat, adjustArithmeticResult): disconnected direct relation
2548           between ptr_type and DCL_TYPE,
2549           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
2550           operand* and took AOP() inside function so sfr-ness can be checked,
2551           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
2552           new prototype,
2553           (genFunction, genEndFunction): optimized stack setup,
2554           (genMinus): optimized for literals with ending zeroes (in bytes),
2555           (genCast): fixed bug 0x%d
2556         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
2557           (mcs51_port): added "CONST (CODE)" for const_name
2558         * src/mcs51/peeph.def: made rule 226 more generic
2559         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
2560         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
2561         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
2562         * src/z80/main.c (z80_port): added NULL for const_name,
2563           (gbz80_port): added NULL for const_name
2564         * support/regression/tests/bug663539.c,
2565         * support/regression/tests/sfr16.c: new tests
2566
2567 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2568
2569         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
2570
2571 2005-06-24 Raphael Neider <rneider AT web.de>
2572
2573         * device/lib/pic16/libdev/pic18f[68][567]20.c:
2574           corrected typos...
2575         * device/include/pic16/signal.h: added USBIF
2576           and SIG_USB
2577
2578 2005-06-24 Raphael Neider <rneider AT web.de>
2579
2580         * device/lib/pic16/libdev/pic18f2455.c,
2581           device/include/pic16/pic18f2455.h: NEW
2582         * device/include/pic16/pic18fregs.h,
2583           device/lib/pic16/pics.all,
2584           src/pic16/device.c: added 18f2455
2585         * device/lib/pic16/libdev/pic18f[68][567]20.c,
2586           device/include/pic16/{pic18f[68][567].h,usart.h}:
2587           replaced MULTIPLE_USARTS define with more relaible
2588           compatibility sfrs (for USART access)
2589
2590 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
2591
2592         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
2593           and the output asm file line is printed on two lines.
2594
2595 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2596
2597         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
2598           BGT, BLE, BHI, and BLS instructions
2599         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
2600           genCmpEq): removed
2601         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
2602           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
2603           fixes bug #1216342
2604         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
2605
2606 2005-06-15 Raphael Neider <rneider AT web.de>
2607
2608         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
2609         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
2610         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
2611           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
2612           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
2613
2614 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2615
2616         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
2617           Marcel Telka in bug #1215704
2618
2619 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
2620
2621         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
2622           located in shared memory bank.
2623
2624 2005-05-31 Raphael Neider <rneider AT web.de>
2625
2626         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
2627           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
2628           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
2629
2630 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
2631
2632         * device/lib/_strncpy.c: fixed the fix
2633
2634 2005-05-26 Raphael Neider <rneider AT web.de>
2635
2636         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
2637           initializers with \0, bug #1208187
2638         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
2639           intializers with \0, bug #1208187
2640
2641 2005-05-26 Raphael Neider <rneider AT web.de>
2642
2643         * src/pic16/glue.c (pic16_printIvalChar): fixed string
2644           initializers with \0, bug #1208187
2645         * src/pic16/main.c (_process_pragma): added sanity checks
2646           for stack position and size, emit warnings when appropriate
2647
2648 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
2649
2650         * device/lib/_strncpy.c: fixed not filling with \0
2651
2652 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2653
2654         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
2655           createFunction),
2656         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
2657           compound_statement),
2658         * src/SDCCsymt.h,
2659         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
2660
2661 2005-05-24 Raphael Neider <rneider AT web.de>
2662
2663         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
2664
2665 2005-05-24 Raphael Neider <rneider AT web.de>
2666
2667         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
2668           TRISE definitions, closes bug #1162453
2669
2670 2005-05-22 Raphael Neider <rneider AT web.de>
2671
2672         * src/pic16/main.c (_process_pragma): check for missing
2673           arguments to pragmas code and udata
2674         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
2675           consistency fixes to match other headers (thanks to Jim Paris)
2676         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
2677
2678 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
2679
2680         * src/SDCCicode.c (isOperandEqual): fixed missing ;
2681
2682 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
2683
2684         * support/regression/tests/bug1198642.c: new test
2685         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
2686         * src/SDCCcse.c (findPrevIc): added comment, please have a look
2687         * support/scripts/resource.h,
2688         * support/scripts/resource.rc,
2689         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
2690         * support/scripts/sdcc.ico: added 32x32 icon
2691
2692 2005-05-18 Raphael Neider <rneider AT web.de>
2693
2694         * device/lib/pic16/libdev/pic18f*.c,
2695         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
2696           keywords to "__sfr" and "__at (X)"
2697         * device/include/pic16/pic18fregs.h: added pic18f4520
2698         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
2699           #1203088 (MPLAB compatibility)
2700
2701 2005-05-17 Raphael Neider <rneider AT web.de>
2702
2703         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
2704         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
2705         * device/lib/pic16/pics.all: added new devices
2706         * src/pic16/device.c: added support for pic18f4520
2707
2708 2005-05-16 Raphael Neider <rneider AT web.de>
2709         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
2710         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
2711         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
2712           convenience function for bit access
2713
2714 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
2715
2716         * device/lib/printf_large.c: fixed bug 1193299
2717         * support/regression/tests/bug1057979.c: added test %3.3s
2718
2719 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2720
2721         * device/include/mcs51/8051.h,
2722         * device/include/mcs51/8052.h: made parseable with lint
2723         * device/include/mcs51/lint.h: added include file for (sp)lint
2724         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
2725         * doc/cdbfileformat.lyx,
2726         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
2727
2728 2005-05-14 Raphael Neider <rneider AT web.de>
2729
2730         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
2731         * device/lib/pic16/libc/stdlib/itoa.c (new)
2732         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
2733         * device/lib/pic16/libio/Makefile: exclude subdir according to
2734           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
2735         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
2736         * src/pic16/gen.c (genFunction): prevent annoying warning
2737         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
2738           nameclashes on BeOS
2739         * support/cpp2/cppmain.c (cpp_output_string): new
2740         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
2741           fixes bug 1116802
2742
2743 2005-05-13 Borut Razem <borut.razem AT siol.net>
2744
2745         * src/SDCCmain.c (linkEdit): fixed bug 1195202
2746
2747 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2748
2749         * .version: changed to version 2.5.1; back to bleeding edge development
2750
2751 2005-05-11 Borut Razem <borut.razem AT siol.net>
2752
2753         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
2754           generate PDF version 1.3 documents
2755
2756 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2757
2758         * .version: changed to version 2.5.0
2759
2760 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2761
2762         * doc/sdccman.lyx: updated weblinks, index and smaller updates
2763
2764 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2765
2766         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
2767         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
2768         well as many smaller updates.
2769         * .version: changed to version 2.5.0-pre1
2770
2771 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2772
2773         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
2774
2775 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
2776
2777         * support/regression/tests/bug1185672.c: added
2778         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
2779           bug 1185672
2780         * src/mcs51/gen.c (genCall): added comments, made it look safer
2781         * src/mcs51/gen.c (genEndFunction): simplified
2782
2783 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
2784
2785         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
2786
2787 2005-04-14 Borut Razem <borut.razem AT siol.net>
2788
2789         * fixed bug 1045046 - SIGSEGV with really simple code?:
2790           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
2791           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
2792
2793 2005-04-14 Borut Razem <borut.razem AT siol.net>
2794
2795         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
2796           src/pic16/device.h: temporarily disabled experimental #inline pragma
2797           for 2.5.0 release
2798
2799 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
2800
2801         * device/include/z80/stdio.h,
2802         * device/include/z80/string.h: removed these highly incomplete files so
2803           SDCC can use the default ones in device/include/
2804
2805 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2806
2807         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
2808         gcc warning.
2809         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
2810         fix sdcpp warnings.
2811
2812 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2813
2814         * device/include/malloc.h: removed redundant __reentrant prototypes
2815         * device/lib/_mullong.c: added working xstack variant in asm (C version
2816           doesn't pass regression tests)
2817         * device/lib/bpx.c: used __data and made bpx char for mcs51
2818         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
2819           (createFunction): fixed bug with xstackPtr
2820         * src/SDCCcse.c: corrected comments
2821         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
2822           (killDeadCode, eBBlockFromiCode): removed unused code
2823         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
2824           corrected comments
2825         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
2826           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
2827           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
2828           (genModOneByte): fixed warning in MSVC
2829         * src/mcs51/main.c (): added comments
2830         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
2831
2832 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2833
2834         * src/SDCCmain.c (linkEdit): oops, changed one line too many
2835
2836 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
2837
2838         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
2839
2840 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
2841
2842         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
2843         characters arrays of larger size than the declared one.
2844
2845 2005-04-10 Borut Razem <borut.razem AT siol.net>
2846
2847         * src/pic/gen.c (genInline),
2848           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
2849           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
2850           (findNextInstruction), (findPrevInstruction),
2851           (findInstructionUsingLabel),
2852           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
2853         * src/pic/pcode.c (findLabel): added missing '\n'
2854         * src/src.dsp: added SDCCdwarf2.c to the project
2855
2856 2005-04-09 Borut Razem <borut.razem AT siol.net>
2857
2858         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
2859
2860 2005-04-08 Raphael Neider <rneider AT web.de>
2861
2862         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
2863           into the chain after a given one) and mergeDefmapSymbols (combine
2864           defmap entries for each symbol per pcode)
2865         * (createDefmap): have defmap entries merged in the end
2866         * (defmapReplaceSymRef): split defmap entries covering two accesses to
2867           a symbol before replacing one access type's symbol, merge symbols in
2868           the end (replacement symbol might already have an entry)
2869         * (assignValnums): keep reference to written WREG intact
2870
2871 2005-04-08 Raphael Neider <rneider AT web.de>
2872
2873         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
2874           Alpha)
2875
2876 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
2877
2878         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
2879         bytes
2880
2881 2005-04-07 Raphael Neider <rneider AT web.de>
2882
2883         * device/include/pic16/usart.h: added compatibility defines for
2884           devices with more than one USART
2885         * device/include/pic16/pic18f[68][567]20.h: activated above defines
2886
2887 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2888
2889         * device/lib/Makefile.in: updated for port specific include
2890
2891 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2892
2893         * support/regression/ports/mcs51/spec.mk: added mcs51 include
2894
2895 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2896
2897         * device/include/8051.h,
2898         * device/include/8052.h,
2899         * device/include/at89S8252.h,
2900         * device/include/at89c55.h,
2901         * device/include/at89x051.h,
2902         * device/include/at89x51.h,
2903         * device/include/at89x52.h,
2904         * device/include/mcs51reg.h,
2905         * device/include/reg51.h,
2906         * device/include/reg764.h,
2907         * device/include/regc515c.h,
2908         * device/include/sab80515.h: (re)moved these 12 files
2909         * device/include/mcs51/8051.h,
2910         * device/include/mcs51/8052.h,
2911         * device/include/mcs51/at89S8252.h,
2912         * device/include/mcs51/at89c55.h,
2913         * device/include/mcs51/at89x051.h,
2914         * device/include/mcs51/at89x51.h,
2915         * device/include/mcs51/at89x52.h,
2916         * device/include/mcs51/mcs51reg.h,
2917         * device/include/mcs51/reg51.h,
2918         * device/include/mcs51/reg764.h,
2919         * device/include/mcs51/regc515c.h,
2920         * device/include/mcs51/sab80515.h: and added them here
2921
2922 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
2923
2924         * device/include/stdarg.h: changed SDCC specific keywords to double
2925           underlined form.
2926         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
2927           mcs51 and ds390.
2928         * device/include/hc08/mc68hc908gp32.h,
2929         * device/include/hc08/mc68hc908jb8.h,
2930         * device/include/hc08/mc68hc908jkjl.h,
2931         * device/include/hc08/mc68hc908qy.h: fixed comments
2932         * device/include/mcs51/README: updated
2933         * device/include/mcs51/c8051f120.h: added PINRSF
2934         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
2935         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
2936           amidst code. Also inline is not supported.
2937
2938 2005-04-06 Raphael Neider <rneider AT web.de>
2939
2940         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
2941         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
2942           callers stack/frame pointers
2943
2944 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
2945
2946         * device/include/pic16/usart.h: added, missing in previous commit,
2947         * device/include/pic16/adc.h: fixed typo,
2948         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
2949         commit,
2950         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
2951         <p18fxxx.inc>
2952         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
2953         uninitialized because a bug appears with gplink
2954         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
2955         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
2956         complains for unrecognised option
2957
2958 2005-04-05 Raphael Neider <rneider AT web.de>
2959
2960         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
2961           structs as well (using memcpy)
2962         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
2963           on ISRs (GOTO has no label)
2964         * src/pic16/device.h: added OF_OPTIMIZE_DF
2965         * src/pic16/main.c: added compiler switch --optimize-df to enable the
2966           new data flow analysis/optimization
2967         * src/pic16/pcode.c: added (prototypes for and implementation of)
2968           dataflow analysis functions, fixed pCodeInstructions' inCond and
2969           outCond values, made RCALL a branch instruction
2970         * (pic16_unlinkpCode): keep C line if possible
2971         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
2972           C line moved if possible
2973         * (pic16_getRegFrompCodeOp): NEW, improved version of...
2974         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
2975           to use new pic16_getRegFrompCodeOp (works for more SFRs)
2976         * (pic16_BuildFlow): fixed skip instructions with label (did not start
2977           new flow)
2978         * (pic16_getJumptabpCode): NEW, needed in...
2979         * (LinkFlow): fixed handling of jumptables, calls and conditional
2980           branches
2981         * (pic16_InsertCommentAfter): NEW
2982         * (pic16_pCodeReplace): made verbose and flow preserving
2983         * (AnalyzeFlow): added call to data flow analysis
2984         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
2985         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
2986         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
2987
2988 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2989
2990         * src/SDCCast.c (decorateType): fixed bug #1105626
2991
2992 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
2993
2994         * device/include/asm/pic16/features.h,
2995         * pic18f*.h headers,
2996         * device/include/pic16/adc.h,
2997         * device/include/pic16/delay.h,
2998         * device/include/pic16/i2c.h,
2999         * device/include/pic16/malloc.h,
3000         * device/include/pic16/stdio.h,
3001         * device/include/pic16/stdlib.h,
3002         * device/include/pic16/string.h,
3003         * device/lib/pic16/libc/stdio/printf_tiny.c,
3004         * device/lib/pic16/libc/stdio/printf_small.c,
3005         * device/lib/pic16/libc/stdio/strmgpsim.c,
3006         * device/lib/pic16/libc/stdio/strmmssp.c,
3007         * device/lib/pic16/libc/stdio/strmusart.c,
3008         * device/lib/pic16/libc/stdio/vfprintf.c,
3009         * device/lib/pic16/libc/stdlib/ltoa.c,
3010         * device/lib/pic16/libc/stdlib/putchar.c,
3011         * device/lib/pic16/libc/stdlib/x_ftoa.c,
3012         * device/lib/pic16/libc/stdlib/memchrpgm.c,
3013         * device/lib/pic16/libc/stdlib/memchrram.c,
3014         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
3015         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
3016         * device/lib/pic16/libio/adc/adcbusy.c,
3017         * device/lib/pic16/libio/adc/adcread.c,
3018         * device/lib/pic16/libio/adc/adcsetch.c,
3019         * device/lib/pic16/libio/usart/ubaud.c,
3020         * device/lib/pic16/libio/usart/ubusy.c,
3021         * device/lib/pic16/libio/usart/udrdy.c,
3022         * device/lib/pic16/libio/usart/uopen.c,
3023         * device/lib/pic16/libio/usart/uputc.c,
3024         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
3025         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
3026         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
3027         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
3028         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
3029         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
3030         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
3031         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
3032         specific keywords to double underlined form,
3033         * device/lib/pic16/libc/Makefile.rules,
3034         * device/lib/pic16/libsdcc/Makefile.rules,
3035         * device/lib/pic16/libm/Makefile,
3036         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
3037         to compile with C standard set in Makefile.common
3038         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
3039         rand.c and crc.c in compilation process,
3040         * device/lib/pic16/libsdcc/int/divuint.c,
3041         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
3042         `c' from signed to unsigned,
3043         * device/lib/pic16/startup/crt0.c,
3044         * device/lib/pic16/startup/crt0i.c,
3045         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
3046         keywords to double underlined form, bug fixes in _do_cinit function
3047         which prevented the correct initialization of the .idata segment,
3048         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
3049         core to enter a infinite loop
3050         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
3051
3052 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3053
3054         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
3055
3056 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3057
3058         * device/include/Makefile.in: add support for hc08 subdirectory
3059         * device/include/hc08/: new subdirectory
3060         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
3061         Lucas Loizaga, thanks!
3062         * device/include/hc08/mc68hc908qy.h,
3063         * device/include/hc08/mc68hc908gp32.h,
3064         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
3065         their own directory. Changed internal macro names to use the compiler
3066         reserved namespace. Changed SDCC specific keywords to double
3067         underlined form.
3068         * device/include/math.h,
3069         * device/include/malloc.h,
3070         * device/include/stdarg.h,
3071         * device/include/stdbool.h
3072         * device/include/string.h,
3073         * device/include/tinibios.h,
3074         * device/include/ds400rom.h,
3075         * device/include/8051.h,
3076         * device/include/8052.h,
3077         * device/include/80c51xa.h,
3078         * device/include/at89c55.h,
3079         * device/include/at89S8252.h,
3080         * device/include/at89x51.h,
3081         * device/include/at89x52.h,
3082         * device/include/ds80c390.h,
3083         * device/include/reg764.h,
3084         * device/include/regc515c.h,
3085         * device/include/sab80515.h,
3086         * device/include/mcs51/c8051f000.h,
3087         * device/include/mcs51/c8051f018.h,
3088         * device/include/mcs51/c8051f020.h,
3089         * device/include/mcs51/c8051f040.h,
3090         * device/include/mcs51/c8051f060.h,
3091         * device/include/mcs51/c8051f120.h,
3092         * device/include/mcs51/c8051f300.h,
3093         * device/include/mcs51/c8051f310.h,
3094         * device/include/mcs51/c8051f320.h,
3095         * device/include/mcs51/c8051f330.h,
3096         * device/include/mcs51/c8051f350.h,
3097         * device/include/z180.h: Changed SDCC specific keywords to double
3098         underlined form.
3099
3100 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
3101
3102         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
3103         18F4455,
3104         * (pic16_assignConfigWordValue): disable testing of configuration
3105         register value with config mask,
3106         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
3107         function with port->fun_prefix,
3108         * (genFunction): when generating a naked interrupt function never
3109         create an absolute segment placed in interrupt vector address, place
3110         the actual interrupt function at IVA instead, when an interrupt
3111         function is generated with unspecified interrupt then do not create
3112         the absolute section,
3113         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
3114         code for generating a call to generic pointer get/put function with
3115         a call to function pic16_callGenericPointer(),
3116         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
3117         the call to the generic pointer get/put functions with prefixing the
3118         function name with port->fun_prefix,
3119         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
3120         * src/pic16/main.c (_process_pragma): prefix function with
3121         port->fun_prefix,
3122         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
3123         calling assembler, old 18Fxxxx macro is deprecated,
3124         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
3125         PC_ASMDIR in while condition,
3126         * (findInstruction): add PC_ASMDIR in while condition,
3127         * (buildCallTree): prefix main with port->fun_prefix,
3128         * (pic16_pCode2str): fixed bug that didn't emit the memory access
3129         identifier for variable with banked access in instructions BTFSS,
3130         BTFSC, BCF, BSF, BTG
3131         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
3132         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
3133         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
3134         perform optimization when enviroment variable NO_REG_OPT is set,
3135         * (insideLRBlock): NEW, return 1 if register is inside an
3136         INF_LOCALREGS block,
3137         * (RemoveRegFromLRBlock): remove a register that is completely
3138         eliminated by register optimization, but it is still left in local
3139         register store/restore in/from stack block,
3140         * (Remove2pcodes): after removing register, check to see if it
3141         should be removed from local register store/restore in/from stack
3142         block,
3143         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
3144         DUMMY_READ_VOLATILE,
3145
3146         * device/include/pic16/adc.h: minor prototype modifications and
3147         update,
3148         * device/include/pic16/malloc.h: added GPL notice various
3149         modifications,
3150         * device/include/pic16/stdint.h: NEW, standard header for ints
3151         * device/include/pic16/delay.h: NEW, header for delay functions,
3152         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
3153         delay1mtcy,
3154         * device/include/pic16/signal.h: NEW, header providing helper macros
3155         for implementing signal handlers,
3156         * device/include/pic16/stdio.h: added prototypes for functions,
3157         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
3158         prototypes for stdin and stdout, added macro PUTCHAR to
3159         automatically implement putchar function prototype,
3160         * device/include/pic16/usart.h: modified and updated USART library,
3161         * device/lib/pic16/libio/adc/,
3162         * device/lib/pic16/libio/i2c: some modifications to improve library
3163         performance,
3164         * device/lib/pic16/libc/stdio/: modifications for the new printf*
3165         family of functions,
3166         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
3167         family of functions and other sources,
3168         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
3169         of the PIC18Fxx[28] devices,
3170         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
3171         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
3172         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
3173         _do_cinit function, because the previous failed when local variables
3174         where not placed in the same memory bank,
3175         * device/lib/pic16/libsdcc/char/: various modifications to improve
3176         library performance,
3177         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
3178         information on the new functions of the c library and more...
3179
3180 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3181
3182         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
3183
3184 2005-03-26 Raphael Neider <rneider AT web.de>
3185
3186         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
3187           if condition == CARRY)
3188         * (genCmp): adapted to new genSkipc semantics
3189         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
3190           on rIfx (genCmp was broken)
3191
3192 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3193
3194         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
3195         * src/z80/main.c (_keywords[]),
3196         * src/SDCCglobal.h (struct options),
3197         * src/SDCC.y,
3198         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
3199         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
3200         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
3201         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
3202         always available in leading double underscore form. The C99 support is
3203         mostly missing, but it's a start.
3204         * support/regression/tests/bug-227710.c: fixed nonconforming use of
3205         reserved identifier "__data".
3206
3207 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
3208
3209         * src/mcs51/peeph.def: fixed bug 1170013
3210
3211 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
3212
3213         * device/include/mcs51reg.h: fixed bug 842007
3214
3215 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3216
3217         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
3218         last time.
3219
3220 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3221
3222         * src/port.h (struct PORT),
3223         * src/avr/ralloc.c (avr_assignRegisters),
3224         * src/avr/main.c,
3225         * src/ds390/ralloc.c (ds390_assignRegisters),
3226         * src/ds390/main.c,
3227         * src/hc08/ralloc.c (hc08_assignRegisters),
3228         * src/hc08/main.c,
3229         * src/mcs51/ralloc.c (mcs51_assignRegisters),
3230         * src/mcs51/main.c,
3231         * src/pic/ralloc.c (pic14_assignRegisters),
3232         * src/pic/main.c,
3233         * src/pic16/ralloc.c (pic16_assignRegisters),
3234         * src/pic16/main.c,
3235         * src/xa51/ralloc.c (xa51_assignRegisters),
3236         * src/xa51/main.c,
3237         * src/z80/ralloc.c (z80_assignRegisters),
3238         * src/z80/ralloc.h,
3239         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
3240         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
3241         * src/SDCCcse.h,
3242         * src/SDCCdflow.c (computeDataFlow),
3243         * src/SDCCdflow.h,
3244         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
3245         * src/SDCCloop.h,
3246         * src/SDCCcflow.c (*),
3247         * src/SDCCcflow.h,
3248         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
3249         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
3250         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
3251         immedDom() returning wrong block; probably fixes bug #1160833)
3252
3253 2005-03-20 Borut Razem <borut.razem AT siol.net>
3254
3255         * support/scripts/inc2h.pl: WIN32 port
3256
3257 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
3258
3259         * device/lib/makefile.in: added abs.c and labs.c
3260
3261 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
3262
3263         * device/include/stdint.h: added
3264         * device/lib/abs.c: added
3265         * device/lib/labs.c: added
3266         * device/include/stdlib.h: added abs() and labs() prototypes
3267         * device/lib/libsdcc.lib: added abs and labs
3268         * device/include/float.h,
3269         * device/lib/_fsmul.c,
3270         * device/lib/printf_fast.c,
3271         * device/lib/printf_tiny.c: updated comments
3272
3273 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3274
3275         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
3276         bug #1164313
3277
3278 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3279
3280         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
3281         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
3282
3283 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
3284
3285         * device/lib/printf_large.c: removed inline assembly for portability and
3286           readability. Use printf_fast if speed or size are more important.
3287         * src/pic16/gen.c: removed conditions around use of DEBUGpc
3288         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
3289
3290 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
3291
3292         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
3293         prevent compiler warning
3294
3295 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
3296
3297         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
3298         moved to level 0 and declared as static. Also they are explicit
3299         placed in access bank. This was necessery because some times they
3300         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
3301         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
3302         optimizations. Currently only compare to unsigned char is implemented,
3303         * src/pic16/gen.c: added fReturnIdx array,
3304         * (struct resolvedIfx) is moved to gen.h and made public,
3305         * (struct _G): added sregsAlloc and sregsAllocSet fields,
3306         * (aopForSym): added an optimization to directly store in stack of
3307         the operand of a SEND iCode,
3308         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
3309         but as registers instead (AOP_REG) using the fReturnIdx array,
3310         * (pic16_freeAsmop): remove the freed register from the
3311         _G.sregsAlloc field,
3312         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
3313         a compare of 'WREG',
3314         * (pic16_popGetTempRegCond): changed function prototype, now
3315         function takes also a bitVector argument v which holds the current
3316         set of registers that are allocated for stack access by aopForSym,
3317         registers allocated in aopForSym for accessing stack symbols are not
3318         any more part of the functions usedRegs field,
3319         * (genCall): some times aopOp is called for a stack variable to be
3320         send, aopForSym might perform the push, if this is true make sure
3321         that genCall doesn't push the variable twice by testing _G.resDirect,
3322         * (genFunction): changed testing for unspecified interrupt number
3323         from 256 to INTNO_UNSPEC,
3324         * modified selection scheme of frame pointer generation. Previously
3325         if function did use local registers a frame pointer was generated,
3326         now a frame pointer is generated only if function has arguments
3327         (that need PLUSW2 register access), or has stack arguments, or the
3328         compiler is not instructed to omit the frame pointer,
3329         * (genEndFunction): before restoring local registers that were saved
3330         in the function preamble, also restore the registers that *might*
3331         have been allocated for stack access,
3332         * (genRet): removed some old comments,
3333         * (genCmp, the active (RN's) version): added a call to the
3334         pic16_genCmp_special function to perform the compare with a more
3335         robust and optimized way,
3336         * (genInline): a feature has been added in inline code generation,
3337         which allows a wildcard variable substitution when writing inline
3338         assembly. Code is incomplete and experimental therefore undocumented,
3339         * (genCast): changed order of aopOp for result and right to allow
3340         aopForSym to directly load the result if possible,
3341         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
3342         perform an optimized compare on some selected special occasions,
3343         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
3344         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
3345         generate an IVT any more,
3346         * src/pic16/main.c (pic16_optionsTable): added command line option
3347         --optimize-cmp,
3348         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
3349         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
3350         macros,
3351         * src/pic16/NOTES: Raphael Neider added in list of active developers
3352         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
3353         jumptable_end to prevent bug #,
3354         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
3355         inCond and outCond fields,
3356         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
3357         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
3358         turn off register spilling,
3359         * (packRegsForOneUse): synced with other ports' versions although it
3360         is not used currently,
3361         * (pic16_packRegisters): added an optimization while reading
3362         structure bitfields, some registers may be saved (malloc code is
3363         decreased by 80 bytes)
3364
3365 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
3366
3367         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
3368         left is a bitfield, if yes, then don't optimize assignment. Perhaps
3369         this can be optimized more?
3370
3371 2005-03-10 Raphael Neider <rneider AT web.de>
3372
3373         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
3374           genNearPointerGet): (hopefully) fixed access to bitfields via
3375           pointers (p->bitN = x; and x = p->bitN; failed)
3376
3377 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
3378
3379         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
3380
3381 2005-03-09 Raphael Neider <rneider AT web.de>
3382
3383         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
3384
3385 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
3386
3387         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
3388         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
3389           (regTypeNum): set REG_BIT type if necessary
3390         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
3391         * support/regression/tests/critical.c: check bug 1144613
3392
3393 2005-03-02 Raphael Neider <rneider AT web.de>
3394
3395         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
3396
3397 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3398
3399         * src/avr/ralloc.c (serialRegAssign),
3400         * src/ds390/ralloc.c (serialRegAssign),
3401         * src/hc08/ralloc.c (serialRegAssign),
3402         * src/mcs51/ralloc.c (serialRegAssign),
3403         * src/pic/ralloc.c (serialRegAssign),
3404         * src/pic16/ralloc.c (serialRegAssign),
3405         * src/xa51/ralloc.c (serialRegAssign),
3406         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
3407
3408 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
3409
3410         * src/SDCCast.c (decorateType): fixed bug 1124787
3411
3412 2005-02-20 Hubert Sack <sack AT digiplan.de>
3413         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3414
3415         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
3416         patch #1121755
3417
3418 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3419
3420         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
3421         to keep the correct label reference count when adding/removing references
3422         to labels. A peephole file using this is appended to patch #1144962.
3423
3424 2005-02-14 Raphael Neider <rneider AT web.de>
3425
3426         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
3427         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
3428         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
3429           retrievals of result operand's value on assignment
3430
3431 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
3432
3433         * device/include/pic16/string.h: modified prototype for memccpy()
3434         to memccpy(void *, void *, char, size_t)
3435         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
3436         check whether to omit frame pointer or not,
3437         * (genInline): convert all occurences of "\n" to LF in inline
3438         assembler blocks, this helps formatting the inline text,
3439         * (pic16_loadFSR0): modified prototype,
3440         * (genNearPointerGet, genNearPointerSet): reorganization of code,
3441         removed some 8051 legacy code,
3442         * (genPackBits): enabled handling bitfields exceeding one byte in size,
3443         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
3444         before allocating temporary registers in functions,
3445
3446 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
3447
3448         * support/regression/tests/bitvars.c: corrected the "fix"
3449
3450 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
3451
3452         * support/regression/tests/bitvars.c,
3453         * support/regression/tests/bitwise.c,
3454         * support/regression/tests/rotate.c: "fixed" problems on Alpha
3455
3456 2005-02-10 Raphael Neider <rneider AT web.de>
3457
3458         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
3459           different size for Alpha
3460         * src/pic16/gen.c (genCmpEq) : improved compare with 0
3461
3462 2005-02-09 Raphael Neider <rneider AT web.de>
3463
3464         * src/SDCC.lex(doPragma) : save and restore warning options as well
3465           (also added new stack plus clone- and copyAndFreeSDCCERRG())
3466         * have #pragma less_pedantic set the errorlevel to WARNING
3467           (fixes #1117001)
3468         * (cloneOptimize) : fixed wrong malloc's size
3469         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
3470           facilitate correct handling of #pragma (save|restore)
3471
3472 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
3473
3474         * src/mcs51/gen.c: removed non-standard C nameless struct/union
3475
3476 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
3477
3478         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
3479
3480 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
3481
3482         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
3483
3484 2005-02-02 Raphael Neider <rneider AT web.de>
3485
3486         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
3487         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
3488         * (pic16_storeForReturn): fixed to allow returning function pointers
3489         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
3490         * device/include/pic16/{stddef.h,stdbool.h}: added
3491
3492 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
3493
3494         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
3495
3496 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
3497
3498         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
3499         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
3500          appeared to be required
3501
3502 2005-01-31 Borut Razem <borut.razem AT siol.net>
3503
3504         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
3505           include/mcs51 and include/z80 directories to the package
3506
3507 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3508
3509         * src/hc08/gen.c (genFunction): fixed bug #1112752
3510
3511 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3512
3513         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
3514
3515 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3516
3517         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
3518
3519 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
3520
3521         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
3522
3523 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
3524
3525         * device/include/c8051fxxx.h: removed these 6 files
3526         * device/include/mcs51/c8051fxxx.h: added these 11 new files
3527
3528 2005-01-26 Raphael Neider <rneider AT web.de>
3529
3530         * src/pic16/gen.c (genAssign): fixed assignment from longs
3531           in codespace (were cut to three bytes)
3532         * (genDummyRead): implemented (except for CODESPACE...),
3533           fixed bug #1108575
3534         * src/pic16/glue.c (emitStatistics): beautified
3535         * device/lib/pic16/libm/Makefile: added include path
3536
3537 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3538
3539         * src/z80/gen.c (aopPut): fixed bug #1103902
3540
3541 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3542
3543         * device/lib/expf.c: fixed bug #1095792
3544
3545 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
3546
3547         * device/lib/pic16/libm: added Math library sources
3548
3549 2005-01-24 Raphael Neider <rneider AT web.de>
3550
3551         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
3552           to enable upcast to pCodeOpReg2 (there is no type tag to
3553           differenciate the two and pic16_popGet2p cast into PCOR2)
3554         * src/pic16/main.c (_process_pragma): fixed another malloc bug
3555           (sizeof(sectNames) changed to sizeof(sectName))
3556           Both patches fix segfaults under MinGW.
3557
3558 2005-01-23 Raphael Neider <rneider AT web.de>
3559
3560         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
3561           Safe_[mc]?alloc()'ed variables
3562         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
3563           of (byte sized) temporaries (assign them to WREG for now)
3564         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
3565           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
3566           this might fix SIGSEGVs on MinGW...
3567         * src/SDCCopt.c (killDeadCode): restored original behaviour
3568           (volatile operands might get thrown away though)
3569
3570 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
3571
3572         * src/pic16/gen.c: fixed bug #1106975,
3573         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
3574         pointer update, INTCON is saved, global interrupts are disabled and
3575         restored after updateing TOS.
3576         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
3577         * added function attribute 'shadowregs' to take advantage of shadow
3578         registers,
3579         * added function attribute 'wparam' as an alternative to the wparam
3580         pragma,
3581         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
3582         user declares a non-ISR function as 'shadowregs',
3583         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
3584
3585 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
3586
3587         * .version: bumped version number to 2.4.8
3588         * device/lib/pic16/pics.all: list of PIC18F devices supported by
3589         pic16 port,
3590         * device/lib/pic16/libio/i2c/: I2C module support library,
3591         * device/include/pic16/i2c.h: I2C support library header,
3592         * device/lib/pic16/libc/stdio/: standard IO support sources,
3593         * (printf_small.c): printf_small() source, supports float print,
3594         * (printf_tiny.c): printf_tiny() source, does not support floats,
3595         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
3596         enable global optimizations for entire library source, other
3597         Makefiles in the source tree are also modified to reflect this,
3598         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
3599         function,
3600         * doc/sdccman.lyx: updated to reflect new changes,
3601         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
3602         sym->onStack if-case,
3603         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
3604         sbit, idata, _idata, xdata, _xdata,
3605         * added pragma library, to link an external library, (see doc),
3606         * removed command line options, --pomit-config-words, --pomit-ivt,
3607         --pleave-reset-vector,
3608         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
3609         when calling assembler to reflect memory model used, also define
3610         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
3611         reflect stack model used,
3612         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
3613         on stack return NULL,
3614
3615 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3616
3617         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
3618           of the operands is volatile. Fixes #1020220
3619
3620 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3621
3622         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
3623         * (OptimizeRegUsage): make sure that there is really no other flow where
3624           the first pCode is used
3625
3626 2005-01-22 Raphael Neider <rneider AT web.de>
3627
3628         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
3629           to fix #1106967 (pCode->seq are not set up correctly)
3630
3631 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3632
3633         * src/SDCCglue.c (glue): make sure code area is declared before the
3634         static initialization area.
3635
3636 2005-01-21 Raphael Neider <rneider AT web.de>
3637
3638         * device/lib/Makefile.in: fixed test for pic16 install dir
3639         * device/lib/pic16/*/Makefile*: modified compile flags to enable
3640           optimizations
3641         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
3642           added --optimize-goto compiler switch and pragma wparam documentation
3643         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
3644         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
3645           and PRODH closing bug #1071770 (peephole optimizer)
3646
3647 2005-01-19 Raphael Neider <rneider AT web.de>
3648
3649         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
3650           cmdLine buffers (used when calling sdcpp...) are large enough
3651           (MAX_PATH=256 truncates arguments leading to system halts when
3652           used in MinGW...)
3653         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
3654         * (genUminus): rewritten to for efficiency
3655         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
3656           used uninitialized in some cases)
3657         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
3658           copy the third byte from the int -- now assumes 0x80 (data memory)
3659         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
3660           operands (genAddLit expects the iCode's operands to swapped as
3661           well), fixed leftover bytes (crashed for short left operands)
3662         * (pic16_genMinusDec): performance improvements, removed false
3663           PIC14 emitSKPNCs
3664         * (pic16_genMinus): fixed to cope with differently sized operands
3665         * src/pic16/glue.c (pic16_glue): added new banksel optimization
3666           for --obanksel > 1
3667         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
3668         * src/pic16/graph.[ch]: implementation of directed graphs, used by
3669           new banksel optimization
3670         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
3671           analysis for temporary registers (segfaults...)
3672         * src/pic16/peeph.def: added rule
3673
3674 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
3675
3676         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
3677         which converts a float number to its ASCII representation
3678         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
3679         functions to convert the fractional and integer part of a float to ASCII,
3680         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
3681         realloc.c): added _MALLOC_SPEC to explicit place variables in data
3682         ram
3683         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
3684         _STATMEM macros,
3685         * device/include/pic16/adc.h: added GPL info,
3686         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
3687         a pCodeOp as tested operand,
3688         * (genNearPointerGet): optimized bit testing, does not use
3689         intermediate register for bit value, test directly instead with
3690         BTFSS, BTFSC, works only for single bits,
3691         * (genpic16Code): dump the name of the iCode in the asm,
3692         * src/pic16/ralloc.c (decodeOp): removed static declaration and
3693         renamed to pic16_decodeOp,
3694         * (serialRegAssign): do not allocate a temporary register for iCode
3695         sequences that test a single bit for 1/0
3696
3697 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
3698
3699         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
3700         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
3701         access stack and frame pointers. They are initially assigned to
3702         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
3703         accessing SFRs. Updated all occurences of modification of stack or
3704         frame pointer in gen.c and pcode.c,
3705         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
3706         assigning of a literal value to pointers,
3707         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
3708         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
3709         selected
3710
3711 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
3712
3713         * doc/sdccman.lyx: update documentation about stack pragma, added
3714         some info for stack memory models
3715
3716 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3717
3718         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
3719
3720 2005-01-08 Raphael Neider <rneider AT web.de>
3721
3722         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
3723           udata sections to fix bug #1097823
3724
3725 2005-01-05 Raphael Neider <rneider AT web.de>
3726
3727         * src/pic16/gen.c (genGenericShift): added handling of differently
3728           sized left operand and result
3729
3730 2005-01-04 Raphael Neider <rneider AT web.de>
3731
3732         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
3733         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
3734           to hold the condition bit)
3735         * added new version of genCmp (old code available via #define)
3736         * added new version of genShiftLeft/genShiftRight in a generic
3737           way, now supports shifting by negative values
3738         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
3739           shiftCount (expected by genGenericShift)
3740         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
3741         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
3742           dump
3743         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
3744           is an invalid literal too...)
3745
3746 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
3747
3748         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
3749         from Raphael Neider,
3750         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
3751         for 8-bit literals. This fixes some literal operands which are sign
3752         extended to 16-bits ints when instruction needs only 8-bits.
3753
3754 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
3755
3756         * device/lib/logf.c: added mcs51 assembly version
3757         * device/lib/expf.c: added mcs51 assembly version
3758         * device/lib/_logexpf.c: new shared asm code for expf and logf
3759         * device/include/math.h: add defines for assembly math library
3760         * device/lib/Makefile.in: build new _logexpf.c
3761         * device/lib/libfloat.lib: use new _logexpf.c
3762
3763 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3764
3765         * src/pic/device.c
3766         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
3767           device types which have less than 0x7f registers.
3768
3769 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3770
3771         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
3772
3773 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3774
3775         * device/lib/printf_fast.c: only build on supported arch.
3776         * device/lib/printf_tiny.c: only build on supported arch.
3777         * device/lib/printf_fast_f.c: only build if asm float lib
3778         * device/lib/_fsget1arg.c: only build if asm float lib
3779         * device/lib/_fsget2args.c: only build if asm float lib
3780         * device/lib/_fsnormalize.c: only build if asm float lib
3781         * device/lib/_fsreturnval.c: only build if asm float lib
3782         * device/lib/_fsrshift.c: only build if asm float lib
3783         * device/lib/_fsswapargs.c: only build if asm float lib
3784         * device/include/stdio.h: don't provide print_fast,
3785           print_fast_f, print_tiny prototypes if --xstack used
3786
3787 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
3788
3789         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
3790         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
3791           to the SOURCES
3792
3793 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3794
3795         * device/lib/printf_fast_f.c: same as printf_fast, but
3796           with floating point enabled
3797         * device/lib/printf_fast.c: minor tweaks
3798         * device/include/stdio.h: add printf_fast_f
3799
3800 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3801
3802         * src/SDCCmain.c: make --float-reent default for mcs51
3803         * device/lib/_fsadd.c: added mcs51 assembly version
3804         * device/lib/_fssub.c: added mcs51 assembly version
3805         * device/lib/_fsmul.c: added mcs51 assembly version
3806         * device/lib/_fsdiv.c: added mcs51 assembly version
3807         * device/lib/_fseq.c: added mcs51 assembly version
3808         * device/lib/_fsneq.c: added mcs51 assembly version
3809         * device/lib/_fsgt.c: added mcs51 assembly version
3810         * device/lib/_fslt.c: added mcs51 assembly version
3811         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
3812         * device/lib/Makefile.in: add _fscmp to build
3813         * device/lib/libfloat.lib: add _fscmp to build
3814
3815 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3816
3817         * device/lib/_fs2slong.c: added mcs51 assembly version
3818         * device/lib/_fs2sint.c: added mcs51 assembly version
3819         * device/lib/_fs2schar.c: added mcs51 assembly version
3820         * device/lib/_fs2ulong.c: added mcs51 assembly version
3821         * device/lib/_fs2uint.c: added mcs51 assembly version
3822         * device/lib/_fs2uchar.c: added mcs51 assembly version
3823         * device/lib/_slong2fs.c: added mcs51 assembly version
3824         * device/lib/_sint2fs.c: added mcs51 assembly version
3825         * device/lib/_schar2fs.c: added mcs51 assembly version
3826         * device/lib/_ulong2fs.c: added mcs51 assembly version
3827         * device/lib/_uint2fs.c: added mcs51 assembly version
3828         * device/lib/_uchar2fs.c: added mcs51 assembly version
3829         * device/include/float.h: added #define to select asm vs c
3830
3831 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
3832
3833         * device/lib/printf_fast.c: improvements to float output
3834         * device/include/float.h: add defines for assembly float library
3835         * device/lib/_fsget1arg.c: receive 1 float arg
3836         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
3837         * device/lib/_fsnormalize.c: normalize a float
3838         * device/lib/_fsreturnval.c: return float, various helper routines
3839         * device/lib/_fsrshift.c: right shift a float's mantissa
3840         * device/lib/_fsswapargs.c: swap 2 floats
3841         * device/lib/Makefile.in: build these 6 new files for mcs51
3842         * device/lib/libfloat.lib: add these 6 files to the library
3843
3844 2004-12-26 Borut Razem <borut.razem AT siol.net>
3845
3846         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
3847           built by gcc 3.4.2
3848
3849 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
3850
3851         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
3852           and fully reentrant and register bank neutral.
3853         * device/lib/printf_fast.c: added float (not enabled by default),
3854           added compact/slower integer (also not enabled by default),
3855           improved size/speed of fast integer code, other minor changes
3856         * device/include/stdio.h, device/lib/Makefile.in,
3857           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
3858
3859 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
3860
3861         * src/pic16/pcode.c: declaring variables other than at the start of a
3862           block is not supported in C by VC6.
3863
3864 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
3865
3866         * applied a previous patch from Raphael Neider that wasn't included
3867         in the previous commits, which fixes infinite loops within jumptable
3868         improvements,
3869         * made some fixes that previous patches introduced
3870
3871 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
3872
3873         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
3874         that fixes an issue with AOP_PCODE asmop's offset,
3875         * (pic16_popCopyReg): update instance field too,
3876         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
3877         function of pic port,
3878         * (genCmp, genAnd, genAssign),
3879         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
3880
3881 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
3882
3883         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
3884         variables initial values to idata section,
3885         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
3886         variables in some functions. This utilizes parmBytes field of iCode
3887         structure to hold the offset of the variable in stack. (might be
3888         able to use the stack field too?)
3889         * applied patch from Raphael Neider # ### , # ###
3890         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
3891         variable initial values in idata section,
3892         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
3893         for static variables with initial value
3894         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
3895         applied fix in while loop from Raphael Neider.
3896
3897 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
3898
3899         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
3900         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
3901         * src/ds390/ralloc.c (serialRegAssign): spill bits
3902         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
3903         * support/Util/SDCCerr.c,
3904         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
3905         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
3906         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
3907
3908 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
3909
3910         * device/include/sdcc-lib.h: inserted LGPL, added includes
3911           asm/ds390/features.h and asm/mcs51/features.h
3912         * device/include/asm/default/features.h,
3913         * device/include/asm/gbz80/features.h,
3914         * device/include/asm/z80/features.h: added empty _AUTOMEM
3915           and _STATMEM
3916         * device/include/asm/ds390/features.h,
3917         * device/include/asm/mcs51/features.h: added files with defines for
3918           _AUTOMEM and _STATMEM indicating automatic and static storage class
3919         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
3920         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
3921         * src/SDCCicode.c (geniCodeCast),
3922         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
3923         * src/SDCCloop.c (loopInduction): removed unused variable lr
3924         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
3925           to convertToFcall to include char modulo (RFE 1065037), added check
3926           if left operand is unsigned and use abs of literal value
3927         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
3928           as it doesn't work after conversion from peephole.def to peephole.rul
3929         * src/mcs51/gen.c (toBoolean): added check for size,
3930           (genModOneByte): optimized code for signed char modulo a literal
3931           power of 2 (thanks to Hubert Sack),
3932           (genRRC): removed unnecessary "clr c",
3933           (genRLC): replaced "add a,acc" with cheaper "rlc a"
3934         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
3935           jump optimization,
3936           swapped rules 256.c and 256.d,
3937           extended 256.d by using new multiple checks (thanks Erik),
3938           added rules 256.e and 256.f,
3939           updated rule 261.a and 261.b to new generated code
3940         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
3941
3942 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3943
3944         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
3945           induction related bugs, including first part of bug #1074377
3946
3947 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
3948
3949         * applied patch from bug-report #1076292,
3950         * applied patches for genAnd and Goto-optimizations for Raphael
3951         Neider,
3952         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
3953         dump a less iCode information,
3954         * src/pic16/device.h (pic16_options_t): added field debgen,
3955         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
3956         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
3957         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
3958         puclic,
3959         * (various functions): added macros FENTRY and FENTRY2 to functions,
3960         to emit function prologue,
3961         * (various functions): fixed indentation,
3962         * (genNearPointerGet): fixed loading of FSR0,
3963         * (genPackBits): applied patch from Raphael Neider to fix updating
3964         of FSR0 and touching only the modified bits,
3965         * src/pic16/genarith.c (various functions): added macros FENTRY to
3966         emit function prologue in comments,
3967         * src/pic16/pcode.h: added functions debugf2, debugf3,
3968         * src/pic16/ralloc.c: partial fix for packForPush caused
3969         segmentation fault,
3970
3971 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3972
3973         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
3974           <stsp AT users.sourceforge.net> with reversed byte order
3975         * support/regression/tests/rotate.c: added (ds390 skips some tests)
3976
3977 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3978
3979         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
3980           bug #1074377
3981         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
3982         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
3983
3984 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3985
3986         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
3987
3988 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3989
3990         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
3991           conditions,
3992           (setFromConditionArgs): friendly operand parser for peephole rules,
3993           (operandBaseName, operandsNotRelated): new peephole condition
3994           "operandsNotRelated" -- similar to "operandsNotSame", but takes
3995           architecture specific register naming into account, handles n-way
3996           comparisons, and supports quoted literals
3997         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
3998
3999 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4000
4001         * src/mcs51/peeph.def: fixed bug #1076940
4002
4003 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
4004
4005         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
4006
4007 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4008
4009         Adding support for replacing ljmps with sjmps in jumptables
4010         generated for switch statements. For now you need to set the
4011         environment variable SDCC_SJMP_JUMPTABLE to enable this.
4012         Now 4 algorithms for mcs51 jumptable generation are used:
4013         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
4014         addresses loaded pc-relative for up to 112 cases and stack-pushing
4015         target addresses loaded with offset from dptr for up to 256 cases.
4016
4017         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
4018         * src/mcs51/main.c: adapted constants for switch table generation
4019         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
4020
4021 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
4022
4023         * device/lib/printf_large.c (_print_format): fixed bug 1073386
4024         * support/regression/tests/bug1057979.c: added test for bug 1073386
4025
4026 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
4027
4028         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
4029         compilers
4030
4031 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
4032
4033         * src/pic16/device.h,
4034         * src/pic16/genarith.c,
4035         * src/pic16/glue.c,
4036         * src/pic16/main.c,
4037         * src/pic16/pcode.c: applied patches #1068154 and #1070213
4038
4039 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
4040
4041         Large cummulative patch for pic16 port.
4042         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
4043         to call when a stack overflow occurs,
4044         * (malloc.h): added CVS Id tag,
4045         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
4046         variable,
4047         * added libc directory. The current version of LibC contains string
4048         functions, ctype functions and macros and some functions of the
4049         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
4050         be extensively tested in the future. Standard disclaimer here.
4051         Library is not automatically build yet. But one can build it by
4052         invoking 'make' inside the libc directory.
4053         * added ADC library under libio. Preliminary version yet.
4054
4055         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
4056         * src/pic16/gen.c (aopForRemat): asmop size is filled by
4057         aopForRemat() now and not by pic16_aopOp(),
4058         * (pic16_popGetTempReg): removed warning messgae when allocating
4059         temporary registers, its a buggy feature and will be removed,
4060         * (pic16_popGet): set register instance field in AOP_CRY,
4061         * (pic16_outBitC): fixed for results in size greater than 1,
4062         * (genUminusFloat): fixed for pic16, ported code from mcs51,
4063         * (pic16_storeForReturn): optimized return of 0,
4064         * (genCmp): experimental code for new genCmp which uses PIC18's
4065         special compare&skip instructions. Initial tests fail some times
4066         with variables grater than 1 byte in size, so new code is disabled,
4067         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
4068         a single bit,
4069         * (genCast): began a fix to optimize the casting of a bit to another
4070         bit, now assigning a bitfield to another bitfield will fail, sorry,
4071         * src/pic16/main.c: disabled the use of lr-support feature,
4072         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
4073         * added some function prototypes, added function _debugf prototype,
4074         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
4075         bits with offset (case PO_GPR_BIT),
4076         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
4077         command line,
4078         * (isBankInstruction): modified to return 0 for no banking instruction,
4079         and 1 for banking instruction,
4080         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
4081         caused stop processing pCodes after a inline assembly block,
4082         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
4083         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
4084         registers when it shouldn't,
4085         * src/pic16/ralloc.c (allocReg): add preliminary support for
4086         supporting a limited set of temporary registers,
4087
4088 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4089
4090         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
4091           genDataPointerSet): ensure assignments always copy in MSB to LSB
4092           order,
4093           (loadRegFromAop): recognize CLRH optimization,
4094           (genFunction): optimize RECEIVE iCodes in reentrant functions
4095
4096 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4097
4098         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
4099           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
4100           selected.
4101         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
4102         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
4103           contiguous with data
4104
4105 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4106
4107         * device/lib/_gptrget.c (_gptrget),
4108         * device/lib/_gptrgetc.c (_gptrgetc),
4109         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
4110           instead of sjmp to ret
4111         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
4112           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
4113
4114 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
4115
4116         * .version: bumped version to 2.4.7
4117         * device/lib/_gptrget.c (_gptrget): is now _naked
4118         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
4119         * device/lib/_gptrput.c (_gptrput): is now _naked
4120         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
4121           (createFunction): fixed xstack
4122         * src/SDCCglue.c (emitMaps): set allocation required for bit area
4123         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
4124           or bit either,
4125           (geniCodeCritical): store original interrupt state in an iTemp bit
4126           var unless stack-auto
4127         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
4128         * src/SDCCmain.c (setIncludePath): added include/target to search path
4129         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
4130         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
4131           prototype,
4132           (processFuncArgs): put bit vars in bit area
4133         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
4134           unsaveRBank): fixed xstack,
4135           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
4136           (genFunction, genEndFunction): fixed xstack,
4137           (genAssign): optimization don't walk backwards through mem
4138         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
4139         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
4140         * support/regression/Makefile: also make library (for stack-auto) when
4141           making "all" and added "test-mcs51-xstack-auto"
4142         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
4143         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
4144         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
4145         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
4146         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
4147           make-library by MAKE_LIBRARY
4148         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
4149           regression tests for xstack
4150         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
4151         * support/regression/tests/critical.c: test for critical on mcs51
4152
4153 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4154
4155         * support/regression/ports/ucz80/spec.mk: use include and lib files from
4156           built version of sdcc instead of installed version
4157
4158 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
4159
4160         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
4161         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
4162           vprintf.c now
4163         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
4164         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
4165           WARNING: remove device/lib/build/z80/printf.o by hand when
4166           updating from previous build!
4167         * device/lib/z80/printf.c: updated comment
4168         * support/regression/tests/bug1057979.c: test all ports now
4169         * support/regression/tests/bug1065458.c: file added
4170
4171 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4172
4173         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
4174           *_start and *_end symbols for static functions
4175
4176 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
4177
4178         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
4179           and search crt0.o in all library paths,
4180           (setIncludePath): proper handling of --nostdinc,
4181           (setLibPath): proper handling of --nostdlib
4182         * support/regression/Makefile,
4183         * support/regression/ports/ds390/spec.mk,
4184         * support/regression/ports/gbz80/spec.mk,
4185         * support/regression/ports/hc08/spec.mk,
4186         * support/regression/ports/mcs51/spec.mk,
4187         * support/regression/ports/mcs51-large/spec.mk,
4188         * support/regression/ports/mcs51-stack-auto/spec.mk,
4189         * support/regression/ports/z80/spec.mk: use include and lib files from
4190           built version of sdcc instead of installed version
4191         * doc/sdccman.lyx: fixed typo in --nostdinc
4192
4193 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
4194
4195         * src/pic/pcode.c,
4196         * src/pic/device.c,
4197         * src/pic/ralloc.c,
4198         * src/pic/gen.c : added support to generate code for struct bit fields.
4199
4200 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
4201
4202         * as/xa51/xa_version.h,
4203         * device/include/errno.h,
4204         * device/include/regc515c.h,
4205         * device/lib/_itoa.c,
4206         * device/lib/_ltoa.c,
4207         * device/lib/ser_ir_cts_rts.c,
4208         * sim/ucsim/xa.src/glob.cc,
4209         * sim/ucsim/xa.src/inst_gen.cc,
4210         * sim/ucsim/xa.src/xa_bit.cc,
4211         * sim/ucsim/xa.src/xa_sfr.cc,
4212         * sim/ucsim/z80.src/inst_dd.cc,
4213         * sim/ucsim/z80.src/inst_fdcb.cc,
4214         * support/scripts/keil2sdcc.pl,
4215         * src/pic16/pic16.dsp,
4216         * src/pic16/pic16a.dsp: corrected cvs line endings
4217         * device/lib/printf_large.c: fixed bug 1057979
4218         * src/pic16/gen.c: fixed non-C standard code
4219         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
4220         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
4221         * support/regression/ports/mcs51/support.c: reload T1 asap
4222         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
4223           pdata use and clear idata startup behaviour
4224         * support/regression/tests/bug1057979.c: added
4225
4226 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
4227
4228         * device/examples/ds390/ow390/ad26.h,
4229         * device/examples/ds390/ow390/cnt1d.h,
4230         * device/examples/ds390/ow390/crcutil.c,
4231         * device/examples/ds390/ow390/ownet.h,
4232         * device/examples/ds390/ow390/owsesu.c,
4233         * device/examples/ds390/ow390/swt12.h,
4234         * device/examples/ds390/ow390/swtoper.c,
4235         * device/examples/ds390/ow390/temp10.h,
4236         * device/examples/ds390/ow390/thermodl.c,
4237         * device/examples/ds390/tinitalk/tinitalk.dsp,
4238         * device/examples/ds390/tinitalk/tinitalk.dsw,
4239         * device/examples/mcs51/clock/hw.h,
4240         * device/examples/mcs51/simple2/go.bat,
4241         * device/examples/serialcomm/windows/serial.h,
4242         * device/examples/xa51/dummy.c,
4243         * device/examples/xa51/hello.c,
4244         * device/include/80c51xa.h,
4245         * device/include/at89x051.h: corrected cvs line endings
4246
4247 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
4248
4249         * src/pic16/main.c (options): added command line --gstack, to trace
4250         stack over/under flows,
4251         * added pragma 'wparam' to allow passing first byte of function
4252         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
4253         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
4254         call to __gstack_test function and sets up the symbol as extern,
4255         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
4256         * popaop): added call to pic16_testStackOverflow,
4257         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
4258         wparamList list,
4259         * (genCall, genPcall): now all parameters are passed via stack
4260         except in functions that are pass to wparam pragma in which WREG is
4261         used too,
4262         * (genPcall): REENTRANT flag is checked to see if variable prototype
4263         contains reentrant keyword, don't call a non-reentrant function, via
4264         a reentrant function pointer or vice versa, functions are never
4265         passed via WREG,
4266         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
4267         D.Winkler,
4268         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
4269         SIGSEGV when accessing a NULL register stucture,
4270         * (pic16_printGPointerType): modified to handle UPPER modifier for
4271         function initializers, changed prototype of function to simpler one,
4272         * (pic16_printIvalFuncPtr): check to see if function is already
4273         added in externs list,
4274         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
4275         optimized a move from W to SFR with a move to the same register
4276         later after a CALL,
4277         * device/lib/pic16/debug: NEW directory, contains debug features
4278         which are enabled when linking with libdebug.lib, currently command
4279         line option --gstack enables stack pointer tracing for over/under
4280         flow, corresponding sources are in debug/gstack
4281
4282 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
4283
4284         * doc/sdccman.lyx: updated SDCC version,
4285         * (PIC16 port): update list of command line options,
4286         * src/pic16/device.h (structure pic16_options_t): added field gstack
4287         to enable stack overflow tracing on push/pops,
4288         * src/pic16/device.c (statistics structure): added statistics
4289         structure,
4290         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
4291         pic16_dump_int_registers): increase statistics counters for each
4292         * variable which is encountered
4293         * (pic16_dump_usection): emit each .udata variable to its own udata
4294         section,
4295         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
4296         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
4297         parameters via stack, otherwise use old scheme,
4298         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
4299         assembler output file,
4300         * src/pic16/main.c: added command line options --gstack to enable
4301         push/pop tracing for stack overflow,
4302         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
4303         instructions): added size of each instruction,
4304         * (pic16_countInstruction): estimate size of instructions in
4305         the_pFile list, inline assembly blocks are not counted,
4306         * (pic16_FixRegisterBanking): trace previous register usage, when
4307         banksel optimizations is greater than 0, don't emit a redudant
4308         banksel directive,
4309
4310 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
4311
4312         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
4313         * src/pic16/ralloc.c : applied same fix for pic16.
4314         * src/pic/gen.c : tidied it up a little.
4315
4316 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4317
4318         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
4319         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
4320
4321 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4322
4323         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
4324
4325 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4326
4327         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
4328         non-reentrant function __modsint in the interrupt function (thus
4329         corrupting math operations during serial I/O)
4330         * device/lib/ser_ir.c: as above, changed buffersize
4331         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
4332         256.c,d for zeroing
4333         * doc/Makefile: added option -t for rsync
4334
4335 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4336
4337         * src/SDCCast.h (struct ast),
4338         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
4339
4340 2004-10-20 Borut Razem <borut.razem AT siol.net>
4341
4342         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
4343         package
4344
4345 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
4346
4347         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
4348         makefile targets,
4349         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
4350         support functions to replace long sequences of MOVFF's from access
4351         bank registers to stack and vice versa,
4352         * src/pic16/device.h: added new field opt_flags, where optimization
4353         flags can be set to enable certain features,
4354         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
4355         * pBlock, (genFunction, genEndFunction): surroung loop for
4356         saving/loading used registers in stack with PC_INFO pCodes,
4357         INF_LREGS. Code in between can then be optimized by pCode optimizer
4358         to support function calls,
4359         * (genDataPointerSet): fixed bug which loaded float fields in
4360         structures with corrupt data,
4361         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
4362         in a standard way debug info on stderr. Feature used for developing
4363         and debugging only,
4364         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
4365         obsolete chunks of code,
4366         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
4367         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
4368         * pic16/src/pcode.c (pic16_newpCodeInfo,
4369         * (pic16_newpCodeOpLocalRegs),
4370         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
4371         feature,
4372         * (pic16_pCodeConstString): printing of the initial value of a
4373         symbol as a comment is inhibited since parsing was already done by
4374         copyStr and output is corrupt,
4375         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
4376
4377 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4378
4379         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
4380
4381 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
4382
4383         * as/mcs51/lkarea.c: removed old K&R style,
4384           (lnksect): changed check on boundary error,
4385           (lnksect2): changed check on boundary error,
4386           (lnksect2): extend XSTK to end of page if size = 1
4387         * as/mcs51/lkmain.c: removed old K&R style,
4388           (Areas51): create l_IRAM symbol
4389         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
4390         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
4391           model-mcs51-stack-auto, added model-mcs51-xstack-auto
4392         * device/lib/_mullong.c: added version to be compiled with xstack
4393         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
4394         * device/lib/mcs51/crtxclear.asm: clear pdata as well
4395         * device/lib/mcs51/crtxstack.asm: fixed comment
4396         * src/SDCCglue.c: maxInterrupts defaults to 0,
4397           (emitMaps): added pdata,
4398           (createInterruptVect): (re)moved default,
4399           (glue): added pdata,
4400           (glue): moved __start__xstack to XSTK with default size 1
4401         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
4402           and options.float_rent when options.stackAuto is set,
4403           (linkEdit): only write XDATA_NAME if provided on command line
4404         * src/SDCCmem.h,
4405         * src/SDCCmem.c: added pdata
4406         * src/port.h: added pdata_name to PORT
4407         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
4408           (saveRegisters, unsaveRegisters): removed usage of B,
4409           (genMinus): fixed accumulator clash,
4410           (genJumpTab): added comment, this needs another look
4411         * src/mcs51/gen.c: added check for "B in use" paranoia,
4412           added pushB() and popB()
4413         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
4414           chance
4415         * src/avr/main.c,
4416         * src/ds390/main.c,
4417         * src/hc08/main.c,
4418         * src/mcs51/main.c,
4419         * src/pic/main.c,
4420         * src/pic16/main.c,
4421         * src/xa51/main.c,
4422         * src/z80/main.c: (reset_regparms) made void parameter explicit and
4423           added PSEG (PAG,XDATA) or NULL to port specifier
4424         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
4425         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
4426           (_mcs51_genInitStartup): removed __start__xstack equ,
4427           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
4428         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
4429         * src/z80/gen.c (_rleAppend): fixed warnings
4430         * support/regression/tests/zeropad.c: added pdata test
4431         * .version: bumped to 2.4.6
4432
4433 2004-10-17 Borut Razem <borut.razem AT siol.net>
4434
4435         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
4436         as a part of nightly build
4437
4438 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
4439
4440         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
4441         WREG holds the first byte function parameters,
4442         * (aopForSym): take special case for symbols which are in FARSPACE
4443         but in CODESPACE too,
4444         * (assignResultValue): modified to take into account _G.useWreg,
4445         * (genCall): don't use wreg for parameter passing when function is
4446         declared as reentrant, too, added optimization INCF to stack
4447         pointer when stack parameter count is 1,
4448         * (genFunction, genEndFunction): refurnished and fixed to not using
4449         wreg for passing parameters when function has varargs or is
4450         reentrant, fixed bug with symbol name compare for generating
4451         functions in absolute address,
4452         * (pic16_storeForReturn): refurnished,
4453         * (genCmp): began writing a new version of the function, not ready
4454         yet, therefore it is disabled,
4455         * (genAssign): do not read code memory when assigning a function to
4456         a pointer function,
4457         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
4458         array of characters, not pointer,
4459         * (pic16initialComments): in debug mode emit an .ident directive for
4460         the assembler,
4461         * (_process_pragma): emit a new warning type (internal to pic16)
4462         when setting stack to default length, emit a similar warning when
4463         placing a function at absolute address and address is not word aligned
4464         * (_pic16_parseOptions): added 'return TRUE' statement,
4465         * (_pic16_linkEdit): if compiling a source, then add the source's
4466         file object, first in the list of objects to link,
4467
4468 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
4469
4470         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
4471         * src/pic/main.c : removed VC warning.
4472         * src/pic/gen.c : changed comment.
4473
4474 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
4475
4476         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
4477         reference to a deprecated symbol _GPTRREG was causing failure to
4478         link. Thanks G. M. Gallant for the info.
4479
4480 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
4481
4482         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
4483         comments for Bugs item #954788.
4484
4485 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
4486
4487         * src/pic16/device.c (pic16_dump_gsection,
4488         * pic16_groupRegistersInSection): handle symbols declared to be in
4489         access bank differently,
4490         * src/pic16/gen.c (struct _G): added field resDirect,
4491         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
4492         send values read from stack directly to result and don't allocate
4493         temporary values,
4494         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
4495         same registers,
4496         * (pic16_sameRegsOfs): NEW,
4497         * (freeAsmop): if _G.resDirect is set then do not mark registers as
4498         free because they were not allocated from temporary pool,
4499         * pic16_popRegFromString): workaround to fix a problem with
4500         allocating variables twice or never,
4501         * (genGenPointerGet): using PRODL instead of FSR0H,
4502         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
4503         instead of FSR0H,
4504         * (genAssign): take advantage of the _G.resDirect flag,
4505         * (genCast): around line 11844, use mov2f instead of directly
4506         MOVFF'ing between operands to account for literal values,
4507         * src/pic16/genutils.c: some new debug functions for gpsim have been
4508         added,
4509         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
4510         float with integer part only,
4511         * src/pic16/main.c (_process_pragma): handle pragma udata access to
4512         place variables in access bank
4513         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
4514         updated sources to reflect recent changes in gen.c
4515
4516 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
4517
4518         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
4519         sources that searched for headers in installation path, now the
4520         device/include/pic16 is used,
4521         * src/pic16/glue.c (pic16glue),
4522         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
4523         .line directives if not in debug mode, this suppresses assembler's
4524         warnings for ignored directives
4525
4526 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
4527
4528         * src/port.h: made reset_regparms prototype void parameter explicit.
4529         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
4530         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
4531         * doc/sdccman.lyx: documented warning disabling and how to use
4532           printf_large to make it print floats.
4533         * device/include/stdbool.h: NEW
4534         * device/lib/_atof.c,
4535         * device/lib/_divuint.c,
4536         * device/lib/_divulong.c,
4537         * device/lib/expf.c,
4538         * device/lib/printf_large.c,
4539         * device/lib/sincosf.c,
4540         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
4541         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
4542           a completely reentrant lib.
4543
4544 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
4545
4546         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
4547         * device/include/pic16/stdio.h: fixed bug with colon
4548
4549 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
4550
4551         * device/include/pic16/stdio.h,
4552         * device/include/pic16/stdlib.h,
4553         * device/include/pic16/math.h: NEW
4554         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
4555         declared as _naked to reduce overhead
4556         * device/lib/Makefile.in (target port-specific-objects-pic16):
4557         changed * to *.* so to ignore the CVS directory,
4558         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
4559         stacked variables back in stack,
4560         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
4561         corruption
4562
4563 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
4564
4565         * .version: bumped version number to 2.4.5
4566         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
4567         * support/Util/SDCCerr.c (messages structure): added entry for
4568         W_POSSBUG2
4569
4570         Large cumulative patch for pic16 port and libraries.
4571         * device/include/pic16/sdcc-lib.h,
4572         * device/include/pic16/stdarg.h,
4573         * device/include/asm/pic16/features.h,
4574         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
4575         * device/include/pic16/float.h: changes reentrant keyword with
4576         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
4577         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
4578         updated target build-libraries to include objects from gptr,
4579         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
4580         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
4581         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
4582         all function headings,
4583         * src/SDCCmain.c: added global parameter userIncDirsSet,
4584         * (parseCmdLine): when option -I is encountered add directory to
4585         userIncDirsSet too,
4586         * src/version.awk: added space between control and long,
4587         * src/pic16/NOTES: added some notes for the port,
4588         * src/pic16/gen.c: added prototype for mov2fp function,
4589         * (fReturnpic16[]): properly named return value registers,
4590         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
4591         * (aopForSym): added code to handle symbols with onStack flag set,
4592         symbols onStack are allocated PTRSIZE bytes,
4593         * (aopFreeAsmop): handles special case where asmops are stack objects,
4594         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
4595         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
4596         added argument lock to trace flaws in allocating temporary registers
4597         when developing port,
4598         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
4599         * (pic16_popRegFromString): reenabled allocating a direct register
4600         from string,
4601         * (assignResultValue): various beautifications,
4602         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
4603         referenced function argument,
4604         * (genIpush): reenabled to allow stacked arguments, handles only
4605         ic->parmPush iCodes,
4606         * (genCall, genPcall): major changes to allow for variable argument
4607         functions, fixed a bug with falsely restoring stack pointer after
4608         returning from call,
4609         * (genFunction): pending code for critical function,
4610         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
4611         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
4612         * (genNearPointerGet): fixed bug with indirect reading, was always
4613         reading from INDF0
4614         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
4615         pointers,
4616         * (genAddrOf): rewrote code to take address of a stacked function parameter
4617         * (genCast): fixed casting to generic pointer type,
4618         * src/pic16/gen.h: added AOP_STA,
4619         * (struct asmop): added field stk,
4620         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
4621         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
4622         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
4623         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
4624         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
4625         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
4626         generic pointers,
4627         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
4628         and library paths,
4629         * (pic16_port structure): generic pointer size is set to 3,
4630         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
4631         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
4632         compiler warning,
4633         * src/pic16/ralloc.c (allocReg): prevent allocating register when
4634         operand is an iTemp,
4635
4636 2004-09-24 Martin Helmling <mh AT octo-soft.de>
4637
4638         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
4639         * debugger/mcs51/simi.c: addapt new syntax of s51
4640
4641 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
4642
4643         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
4644         * src/pic16/pcode.c: commented out some calls to free() in order to
4645         fix bug #989576,
4646
4647 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4648
4649         * src/SDCCicode.h,
4650         * src/SDCCicode.c (isiCodeInFunctionCall),
4651         * src/avr/ralloc.c (selectSpil),
4652         * src/pic/ralloc.c (selectSpil),
4653         * src/pic16/ralloc.c (selectSpil),
4654         * src/ds390/ralloc.c (selectSpil),
4655         * src/hc08/ralloc.c (selectSpil),
4656         * src/xa51/ralloc.c (selectSpil),
4657         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
4658         stack in the middle of a function call sequence (fixes bug #1020268)
4659         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
4660         costs associated with the minimum switch case.
4661
4662 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4663
4664         * src/SDCC.lex: fixed bug #1030549
4665
4666 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4667
4668         * src/SDCCcse.h (struct cseDef),
4669         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
4670         over a function call if the CSE is derived from a symbol whose
4671         address has been taken (fixes bug #1029883)
4672         * support/regression/tests/bug-1029883: a new regression test for
4673         this bug
4674
4675 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4676
4677         * src/hc08/gen.c (emitinline): fixed bug #1029778
4678         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
4679         to a cast object is no longer a syntax error ("fixes" bug #1030006,
4680         and starts toward RFE #905167)
4681
4682 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
4683
4684         * src/pic16/gen.c (mov2f): New function to move an operand to
4685         another without considering if it is a literal or a register,
4686         * (pic16_sameRegs): don't check if they are both AOP_REG,
4687         * (AccRsh): removed andmask=0 lines,
4688         * (genLeftShift): duplicated to be improved in future versions,
4689         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
4690         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
4691         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
4692         * (pic16initMnemonics): added initialization for POC_INFSNZW,
4693         * (insertBankSwitch): fixed inserting banksel directives algorithm
4694         for instructions that follow a skip instruction, this fixes a report
4695         for broken subtraction code generation,
4696         * src/pic16/ralloc.c (deassignLRs): do not free register if current
4697         iCode is a left op, just in case result and right share the same
4698         registers
4699
4700 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4701
4702         * src/hc08/main.c,
4703         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
4704         preservation of HX
4705         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
4706         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
4707         on 2004-09-12; it was buggy
4708
4709 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
4710
4711         * src/SDCCsymt.h: removed RESULT_CHECK
4712         * src/SDCCast.c,
4713         * src/SDCCglue.c,
4714         * src/SDCCval.c,
4715         * src/pic/glue.c,
4716         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
4717
4718 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
4719
4720         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
4721         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
4722         configuration values no more rejected by compiler, they are assigned
4723         to configuration registers with a warning message instead,
4724         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
4725         the for-loop so last conf register is emitted too,
4726         * (_pic16_initPaths): link library libsdcc.lib by default,
4727         * (_hasNativeMulFor): modified test for multiplication according to
4728         Raphael Neider's remarks. Integer multiplication is also done with
4729         support functions,
4730         * device/include/pic16/pic18fregs.h: corrected type error in while
4731         testing and including 18f6720 header file
4732
4733 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
4734
4735         * src/pic16/device.h (pic16_options): removed field use_crt,
4736         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
4737         until an optimization to handle single bits is added,
4738         * (pic16_loadFSR0): moved before genUnpackBits,
4739         * (genAnd): some white lines removed,
4740         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
4741         leave_reset flags in pic16_options when using crt modules,
4742
4743 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
4744
4745         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
4746           for bugs 898889 & 979599. Also used some safer print instructions.
4747
4748 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
4749
4750         * src/pic16/device.h (pic16_options_t): added field use_crt,
4751         crt_name, no_crt,
4752         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
4753         catch a probable future bug,
4754         * src/pic16/gen.c: aopIdx function commented out,
4755         * (genAssign): commented out old code which used aopIdx,
4756         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
4757         code, added if conditionals to take into account the --use-crt
4758         command line options,
4759         * src/pic16/main.c (pic16_optionsTable): added new command line
4760         options, --use-crt= and --no-crt,
4761         * (_pic16_linkEdit): now the proper crt object is added in the
4762         linker command line except than when --no-crt is specified,
4763         * src/pic16/pcode.c,
4764         * src/pic16/pcode.h: added some structures and functions for a new
4765         optimization scheme to compansate for instruction overhead between
4766         same iCodes, this scheme is currently under development and is not
4767         working in any way,
4768         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
4769         to && operator,
4770         * device/lib/pic16/startup/crt0i.c,
4771         * device/lib/pic16/startup/crt0iz.c: added global char variable
4772         __uflags to force the generation of an idata section
4773
4774 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
4775
4776         * doc/Makefile,
4777         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
4778         * doc/sdccman.lyx: updated sdcc version to 2.4.4
4779
4780 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4781
4782         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
4783         Frieder) and clarified the default code optimization mode
4784
4785 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4786
4787         * src/SDCC.lex (doPragma, process_pragma),
4788         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
4789         "opt_code_size", and "opt_code_balanced"
4790         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
4791         regrouped options by category, added support for category headers
4792         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
4793         and "--opt-code-size"
4794         * doc/sdccman.lyx: documented these new options and pragmas
4795         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
4796         preference into account
4797
4798 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4799
4800         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
4801           geniCodePreDec): Fixed bug 904237 by generating a warning
4802         * src/SDCCerr.h,
4803         * src/SDCCerr.c: added warning W_SIZEOF_VOID
4804
4805 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
4806
4807         * src/pic/device.c : When no max ram set validate full memory range.
4808         * src/pic/pcode.c,
4809         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
4810
4811 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4812
4813         * device/lib/_gptrget.c,
4814         * device/lib/_gptrput.c: updated comment
4815         * device/lib/calloc.c,
4816         * device/lib/free.c,
4817         * device/lib/malloc.c,
4818         * device/lib/realloc.c: added LGPL, made them reentrant-safe
4819         * src/SDCCcse.c (cseBBlock),
4820         * src/SDCCicode.c (printOperand, geniCodeArray),
4821         * src/SDCCicode.h (struct operand): fixed bug 868103
4822         * support/regression/tests/bug-868103.c: added
4823         * src/SDCCast.c (searchLitOp),
4824         * src/SDCCcse.h (struct cseDef),
4825         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
4826         * src/SDCCicode.h (struct operand),
4827         * src/SDCCsymt.h (struct sym_link),
4828         * src/avr/gen.c (hasInc),
4829         * src/ds390/gen.c (hasInc),
4830         * src/hc08/gen.c (genPlusIncr, hasInc),
4831         * src/mcs51/gen.c (hasInc),
4832         * src/pic16/glue.c (pic16_printIvalChar),
4833         * src/pic16/ralloc.c (regWithIdx),
4834         * src/xa51/gen.c (hasInc) : removed warnings
4835         * src/SDCCast.c (createBlock): added comment ???
4836         * src/hc08/ralloc.c: updated comments
4837
4838 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4839
4840         * doc/sdccman.lyx: updated section on switch statements, added
4841         section about semaphore locking
4842         * doc/Makefile: added option -info for latex2html
4843         * device/lib/_gptrget.c,
4844         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
4845
4846 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4847
4848         * src/pic/device.h,
4849         * src/pic/device.c,
4850         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
4851          maxram is less than 0x100.
4852
4853 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4854
4855         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
4856
4857 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4858
4859         * src/port.h,
4860         * src/mcs51/main.c,
4861         * src/ds390/main.c,
4862         * src/z80/main.c,
4863         * src/hc08/main.c,
4864         * src/pic/main.c,
4865         * src/pic16/main.c,
4866         * src/avr/main.c,
4867         * src/xa51/main.c
4868         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
4869         a jump table is the best form for a switch statement, including
4870         automatic insertion of missing cases to make the case range
4871         continuous. Developed in collaboration with Frieder Ferlemann.
4872
4873 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4874
4875         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
4876         accumulator result if it needs sign extension
4877
4878 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4879
4880         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
4881
4882 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4883
4884         * device/lib/gbz80/printf.c,
4885         * device/lib/z80/printf.c: removed define for NULL
4886
4887 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4888
4889         * as/xa51/xa_link.c,
4890         * device/examples/ds390/ow390/ad26.c,
4891         * device/examples/ds390/ow390/cnt1d.c,
4892         * device/examples/ds390/ow390/counter.c,
4893         * device/examples/ds390/ow390/ds2480.h,
4894         * device/examples/ds390/ow390/ds2480ut.c,
4895         * device/examples/ds390/ow390/findtype.c,
4896         * device/examples/ds390/ow390/gethumd.c,
4897         * device/examples/ds390/ow390/owllu.c,
4898         * device/examples/ds390/ow390/ownetu.c,
4899         * device/examples/ds390/ow390/swt12.c,
4900         * device/examples/ds390/ow390/swtloop.c,
4901         * device/examples/ds390/ow390/temp.c,
4902         * device/examples/ds390/ow390/temp10.c,
4903         * device/examples/ds390/ow390/thermo21.c,
4904         * device/examples/ds390/ow390/tinilnk.c,
4905         * device/examples/ds390/ow390/tstfind.c,
4906         * device/examples/serialcomm/windows/serial.cpp,
4907         * device/examples/serialcomm/windows/test_serialcomm.cpp,
4908         * device/include/reg51.h: fixed line endings for cvs
4909
4910 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4911
4912         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
4913         packRegsForAccUse, packRegisters): new accumulator register
4914         packing algorithm
4915         * support/regression/ports/hc08/support.c (_putchar): suppress
4916         warning of unused variable
4917         * src/SDCCicode.c: added SWAP entry to codeTable
4918
4919 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
4920
4921         * device/lib/sprintf.c: forgot to add this file before previous commit
4922
4923 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
4924
4925         * src/pic16/gen.c (genPackBits): added operand right in function
4926         parameters, load result directly if p_type is POINTER (that is
4927         called by genNearPointerSet)
4928         * (genUnPackBits): added operand left in function parameters,
4929         * (genNearPointerGet, genNearPointerSet): prevent the loading of
4930         FSR0 if accessing bitfields,
4931
4932 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
4933
4934         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
4935           _print_format; updated printf, sprintf, vsprintf
4936         * device/include/asm/default/features.h: corrected comment/define
4937         * device/lib/Makefile.in: added sprintf.c
4938         * device/lib/libsdcc.lib: added sprintf module
4939         * device/lib/printf_large.c,
4940         * device/lib/vprintf.c,
4941         * device/lib/sprintf.c: totally refactored printf_large and vprintf
4942           into these 3 files
4943         * support/regression/Makefile: changed ALL_PORTS into a usefull default
4944         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
4945         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
4946           hc08 test
4947         * support/regression/tests/zeropad.c: define idata as data for hc08
4948
4949 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4950
4951         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
4952         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
4953         labels are referenced at least once (even if a reference is not found)
4954         * src/hc08/gen.c (emitcode): set isComment flag for comments
4955         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
4956         loads), rules 6a..6b (optimize jumps to return)
4957
4958 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4959
4960         * device/lib/acosf.c (acosf),
4961         * device/lib/asinf.c (asinf),
4962         * device/lib/atanf.c (atanf),
4963         * device/lib/ceilf.c (ceilf),
4964         * device/lib/cosf.c (cosf),
4965         * device/lib/coshf.c (coshf),
4966         * device/lib/cotf.c (cotf),
4967         * device/lib/fabsf.c (fabsf),
4968         * device/lib/floorf.c (floorf),
4969         * device/lib/log10f.c (log10f),
4970         * device/lib/logf.c (logf),
4971         * device/lib/sinf.c (sinf),
4972         * device/lib/sinhf.c (sinhf),
4973         * device/lib/sqrtf.c (sqrtf),
4974         * device/lib/tanf.c (tanf),
4975         * device/lib/tanhf.c (tanhf),
4976         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
4977         replaced all instances of "reentrant" in the library functions
4978         defined in math.h with this macro.
4979         * support/regression/tests/float_trans.c: reenabled test for hc08
4980
4981 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
4982
4983         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
4984         erroneously deleted
4985
4986 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4987
4988         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
4989         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
4990         multi-byte volatile operands are used
4991         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
4992         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
4993         initialization to area GSINIT0 so that it would always precede
4994         any static initializers in GSINIT
4995         * support/regression/tests/zeropad.c: fixed idata define for hc08
4996         * support/regression/tests/bug-927659.c,
4997         * support/regression/tests/float_trans.c: disabled tests for hc08
4998         pending missing library routines
4999         * .version: increased version number to 2.4.4 - hc08 port now passes
5000         regression tests
5001
5002
5003 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
5004
5005         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
5006         * Makefile.common.in,
5007         * as/Makefile,
5008         * as/hc08/Makefile.in,
5009         * as/mcs51/Makefile.in,
5010         * as/z80/Makefile.in,
5011         * debugger/mcs51/Makefile.in,
5012         * device/include/Makefile.in,
5013         * device/lib/Makefile.in,
5014         * doc/Makefile,
5015         * link/Makefile,
5016         * link/z80/Makefile.in,
5017         * packihx/Makefile.in,
5018         * sim/ucsim/main_in.mk,
5019         * sim/ucsim/avr.src/Makefile.in,
5020         * sim/ucsim/doc/Makefile.in,
5021         * sim/ucsim/gui.src/serio.src/Makefile.in,
5022         * sim/ucsim/hc08.src/Makefile.in,
5023         * sim/ucsim/s51.src/Makefile.in,
5024         * sim/ucsim/xa.src/Makefile.in,
5025         * sim/ucsim/z80.src/Makefile.in,
5026         * src/Makefile.in,
5027         * support/cpp2/Makefile.in,
5028         * support/librarian/Makefile,
5029         * support/makebin/Makefile: added DESTDIR to the install path proposed
5030         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
5031         * doc/sdccman.lyx: added DESTDIR documentation
5032
5033 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
5034
5035         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
5036         instruction for interrupt handlers, use fast returns when returning
5037         from high priority interrupts
5038
5039 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5040
5041         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
5042         code generation
5043         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
5044         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
5045         bugs, ported much of Bernhard's code from mcs51
5046         * src/mcs51/gen.c (genSend),
5047         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
5048         than one when calling a reentrant function
5049         * device/lib/_mullong.c: defined an alternate struct layout for big
5050         endian ports (hc08)
5051
5052 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5053
5054         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
5055         test
5056
5057 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5058
5059         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
5060         are sane and complete before asking the port its prefered parameter
5061         passing method (fixes bug #1017633)
5062         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
5063         and _ret3
5064
5065 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5066
5067         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
5068         problem in bitfields >= 8 bits.
5069
5070 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5071
5072         * src/SDCCsymt.c: undid changes that were not meant to be committed
5073
5074 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5075
5076         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
5077
5078 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5079
5080         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
5081           copied and wrong bit got inverted
5082
5083 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5084
5085         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
5086         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
5087         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
5088         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
5089         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
5090         assignments to bitfields at known addresses
5091         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
5092         reads from bitfields at known addresses
5093         * src/hc08/ralloc.c (packRegisters),
5094         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
5095         genhc08Code): optimize pointer get values used as conditionals
5096         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
5097         and branch
5098
5099 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5100
5101         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
5102         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
5103         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
5104         as conditionals
5105
5106 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5107
5108         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
5109
5110 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5111
5112         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
5113         related problems
5114
5115 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
5116
5117         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
5118
5119 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5120
5121         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
5122         mcs51 port
5123
5124 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
5125
5126         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
5127
5128 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5129
5130         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
5131         cases use more compact code.
5132
5133 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
5134
5135         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
5136
5137 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5138
5139         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
5140
5141 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5142
5143         * src/SDCCsymt.h,
5144         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
5145         parameter of changePointer() from symbol* to sym_link*
5146         * src/SDCCast.c (decorateType): call changePointer() for CAST op
5147         * src/SDCCsymt.c (compareType): void* type is castable to other
5148         pointers, but not necesarily an exact match.
5149         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
5150         is no longer blindly treated as an exact match.
5151         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
5152
5153 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
5154
5155         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
5156
5157 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
5158
5159         * src/pic/gen.c,
5160         * src/pic/pcode.c,
5161         * src/pic/ralloc.h,
5162         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
5163
5164 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
5165
5166         * src/pic/device.c,
5167         * src/pic/device.h,
5168         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
5169
5170 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5171
5172         * src/mcs51/gen.c (emitcode): fixed bug #992819
5173
5174 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
5175
5176         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
5177           there's no need to make it worse
5178
5179 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5180
5181         * src/mcs51/ralloc.c (deassignLR),
5182         * src/ds390/ralloc.c (deassignLR),
5183         * src/hc08/ralloc.c (deassignLR),
5184         * src/z80/ralloc.c (deassignLR),
5185         * src/pic/ralloc.c (deassignLR),
5186         * src/pic16/ralloc.c (deassignLR),
5187         * src/avr/ralloc.c (deassignLR),
5188         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
5189         rlivePoint): fixed another part of bug #971834
5190
5191 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5192
5193         * src/z80/main.c: enabled "critical" keyword
5194         * src/z80/mappings.i,
5195         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
5196         functions (fixes bug #979646)
5197         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
5198
5199 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5200
5201         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
5202           such as c:\mydir.
5203
5204 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
5205
5206         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
5207           doesn't disable too much optimizations
5208
5209 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
5210
5211         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
5212
5213 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
5214
5215         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
5216
5217 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
5218
5219         * src/pic/gen.c tidied up tabs
5220         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
5221         * src/pic/main.c tidied up tabs
5222         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
5223         * src/pic/pcoderegs.c tidied up tabs
5224         * src/pic/ralloc.c tidied up tabs
5225
5226 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
5227
5228         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
5229         to S_FIXED for pic16 port and when symbol is not in level 0,
5230         allocate for S_REGISTER storage class and pic16 port, too,
5231         * src/pic16/device.h: prototype for checkSym,
5232         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
5233         * (pic16_assignConfigWordValue): test the value and the mask to
5234         validate that the value is suitable for the configuration word,
5235         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
5236         collect extern declared symbols, don't emit symbol twice, check
5237         first if symbol is in publics set first,
5238         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
5239         * added command line '--fstack' which enables an experimental
5240         feature for stack access, too buggy to be used yet...
5241         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
5242         * (pic16_allocDirReg): when register has storage class S_REGISTER
5243         allocate in pic16_dynAccessRegs,
5244         * device/include/pic16/pic18f????.h: modified configuration word
5245         naming convention, words started as CONFIG0H but should be CONFIG1H
5246
5247 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
5248
5249         * device/include/mcs51reg.h: fixed bug 970993
5250
5251 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
5252
5253         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
5254         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
5255         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
5256         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
5257         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
5258         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
5259           error/warning numbers,
5260           added function setWarningDisabled()
5261         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
5262         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
5263           _memcmp.c _memmove.c calloc.c realloc.c free.c
5264         * support/regression/tests/malloc.c: added tests for new functionality
5265         * support/regression/tests/zeropad.c: added tests for truncated initializers
5266           and initialized char arrays starting with '\x0'
5267         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
5268
5269 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
5270
5271         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
5272
5273 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5274
5275         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
5276         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
5277         peephole 177.e. Thanks to anonymous
5278
5279 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
5280
5281         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
5282         function isn't used in the source but referenced as a
5283         variable initializer then declare it as extern in .asm file
5284
5285 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
5286
5287         * .version: increased version number to 2.4.3
5288
5289         Adding version extension according to ChangeLog CVS revision
5290         * src/Makefile.in (target all): added dependency 'version.h'
5291         * (rule version.h): added rule to create version.h from ChangeLog,
5292         * (rule dep): added dependency version.h,
5293         * src/version.awk: AWK script to create version.h
5294         * src/SDCCdwarf2.c (dwWriteModule),
5295         * src/SDCCglue.c (initialComments),
5296         * src/SDCCmain.c (printVersionInfo): modified to write after
5297         version string the version extension number,
5298         * src/SDCCutil.c: included "version.h"
5299         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
5300         number,
5301         * src/SDCCutil.h: added prototype for getBuildNumber
5302
5303         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
5304         includeDirsSet, too,
5305         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
5306         const char [] is found in function prototype...
5307
5308         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
5309         moving to WREG with source is already in WREG,
5310         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
5311         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
5312         * (aopForSym): stack'ed symbols are partially supported, added
5313         if-clause to support symbols in FARSPACE,
5314         * (sameRegs): added test for AOP_ACC to see if registers are same,
5315         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
5316         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
5317         * (pic16_popRegFromString): will not allocate a new register if it
5318         doesn't find one by name, bug may have introduced...
5319         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
5320         * (genIpush): revived to use pic16 port's stack,
5321         * (genAddrOf): added incomplete case for stack'ed operand,
5322         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
5323         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
5324         can handle multibyte operands,
5325         * src/pic16/glue.c (pic16_printIval*): some debug info added,
5326         * (pic16initialComments): added message for MPLAB compatibility
5327         mode enabled,
5328         * src/pic16/main.h: prototype for pic16_mplab_comp,
5329         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
5330         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
5331         * (_pic16_linkEdit): NEW, handles link stage, transferred here
5332         because of increased complexity of procedure,
5333         * (_process_pragma): stack pragma changed to format 'stack pos len',
5334         emit symbol '_stack_end' to conform with gplink,
5335         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
5336         to search for register,
5337         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
5338         PO_GPR_REGISTER,
5339         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
5340         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
5341         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5342         case for PO_GPR_REGISTER,
5343         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
5344         dies, the new era is ahead !...
5345         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
5346         pic16_dynInternalRegs,
5347         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
5348         * (pic16_allocDirReg): minor optimizations and bug fixes,
5349         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
5350
5351         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
5352         load stack and frame pointer with address of 'stack_end' symbol
5353
5354 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
5355
5356         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
5357         without source code but only variable initializers
5358
5359 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
5360
5361         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
5362         external are not declared as extern to reduce overhead while linking
5363
5364 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
5365
5366         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
5367
5368 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
5369
5370         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
5371           Yee Keat for the patch
5372         * src/SDCCast.c (decorateType): fixed bug #979599
5373         * src/ds390/gen.h: removed local fReturnSizeDS390
5374         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
5375         * src/ds390/gen.c (genAnd, genOr, genXor),
5376         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
5377
5378 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
5379
5380         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
5381         add relFilesSet to $3, manipulate $2 to handle linking of object
5382         files without source files in command line,
5383         * device/include/pic16 (all headers): added ID location macros,
5384         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
5385         entries for ID location bytes,
5386         * (pic16_assignIdByteValue): NEW,
5387         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
5388         added field dumpcalltree to pic16_options_t,
5389         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
5390         is used instead of pic16_Gstack_base_addr, check if (ifx) before
5391         emitting rFalseIfx label after check_carry label,
5392         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
5393         pic16_emitDIRegs), NEW
5394         * (pic16glue): dump .calltree file when option --calltree found,
5395         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
5396         * (_pic16_genAssemblerPreamble): emit ID locations after
5397         configuration registers,
5398         * (pic16_linkCmd): modifications of the link command,
5399         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
5400         * (pic16_pCodeInitRegisters): don't init stack registers,
5401         * (pic16_findPrevInstruction): fixed bug,
5402         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
5403         bug with immediate registers,
5404         * (buildCallTree): traces stack push and pop,
5405         * (pct2): dump also stack usage for each function,
5406         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
5407         * (pic16_allocDirReg): various modifications,
5408         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
5409         fixed to 1,
5410
5411 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
5412
5413         * src/pic16/pcode.c: removed buggy double colon
5414
5415 2004-07-01 Borut Razem <borut.razem AT siol.net>
5416
5417         * support/scripts/sdcc.nsi: added include/pic16 to setup
5418
5419 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
5420
5421         * device/lib/Makefile.in: fixed bug in target objects-pic16,
5422         * device/lib/pic16/Makefile: prefixed with dash (-) command under
5423         target 'clean',
5424         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
5425         specific command line arguments. Also added sample lkr script
5426         for placing a variable at a specific memory bank.
5427         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
5428         at a specific memory bank,
5429         * (pic16_dump_isection): fixed bug which caused string literals to
5430         be omitted when dumping idata section,
5431         * (pic16_groupRegistersInSection): added code to handle registers
5432         in specific memory banks,
5433         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
5434         public, all references are renamed too,
5435         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
5436         AOP_DPTR2,
5437         * (pic16_storeForReturn): added case to handle when dest is WREG,
5438         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
5439         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
5440         pic16_rel_udata, check to see if that register is marked as being
5441         a member of a specific memory bank,
5442         * (pic16_printIvalCharPtr): added code to add string literals either
5443         to code or the idata sections,
5444         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
5445         also accept the 'udata' pragma,
5446         * src/pic16/main.h: new structure types sectName and sectSym
5447         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
5448         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
5449         * (pic16_findPrevInstruction): fixed, it returned nothing,
5450         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
5451         instruction combinations,
5452         * (pic16_FixRegisterBanking): heavily reorganised,
5453         * (pic16_AnalyzeBanking): if generating banksel directives is
5454         disabled, then don't call FixRegisterBanking at all,
5455         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
5456         completely removed,
5457         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
5458
5459 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
5460
5461         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
5462         Phuah Yee Keat <yk.phuah AT nestac.com>
5463
5464 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5465
5466         * src/pic16/glue.c (pic16createInterruptVect): function now emits
5467         correctly the IVT even if it is relocated to some other location
5468
5469 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5470
5471         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
5472         * device/include/pic16/pic18f2220.h: NEW,
5473         * device/lib/pic16/libdev/pic18f2220.c: NEW,
5474         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
5475         * src/pic16/device.c (struct Pics16): added info for 18f2220,
5476         * src/pic16/device.h (struct pic16_options): added ivt_loc and
5477         nodefaultlibs, ivt_loc is the location of the interrupt vector
5478         table, and nodefaultlibs signs that default libraries should not be
5479         linked in link stage,
5480         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
5481         according to --ivt-loc argument,
5482         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
5483         when pragma stack is found,
5484
5485 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5486
5487         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
5488         256 (range check), 257 (do while), 258.a-f (bit banging
5489         f.e. on 3-wire SPI bus)
5490
5491 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5492
5493         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
5494         variables used exclusively within a loop
5495
5496 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
5497
5498         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
5499
5500 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5501
5502         * src/SDCClrange.c (computeClash): fixed bug #971834
5503
5504 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5505
5506         * src/mcs51/gen.c (genCmp): fixed bug #975903
5507         * src/hc08/gen.c (operandsEqu),
5508         * src/ds390/gen.c (operandsEqu),
5509         * src/z80/gen.c (operandsEqu),
5510         * src/pic/gen.c (operandsEqu),
5511         * src/pic16/gen.c (operandsEqu),
5512         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
5513         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
5514
5515 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5516
5517         * src/SDCCcse.c (cseBBlock): fixed bug #966963
5518
5519 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
5520
5521         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
5522         default case in switch statement,
5523         * glue.c (pic16_initPointer): expr is initialised via decoarteType
5524         to eliminate problem with initialisation of pointers, but problem
5525         still exists,
5526         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
5527         * (emitStaticSegment): removed various lines emitting debug info,
5528         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
5529         added processor registers for utilizing EEPROM,
5530         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
5531         configurable and set 8
5532
5533 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
5534
5535         * .version: increased version number to 2.4.2,
5536
5537         Cumulative patch for pic16 port
5538         * src/pic16/device.c: changed scheme to dump initial values for
5539         variables in idata segment, all print_idata* functions were removed,
5540         now the pic16_printIval* will be called,
5541         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
5542         * _pic16_printPointerType, pic16_printPointerType,
5543         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
5544         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
5545         NEW, similar to the respective functions in SDCCglue.c,
5546         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
5547         way, emitting hex bytes,
5548         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
5549
5550 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5551
5552         * src/avr/ralloc.c (serialRegAssign),
5553         * src/xa51/ralloc.c (serialRegAssign),
5554         * src/pic/ralloc.c (serialRegAssign),
5555         * src/pic16/ralloc.c (serialRegAssign),
5556         * src/hc08/ralloc.c (serialRegAssign),
5557         * src/z80/ralloc.c (serialRegAssign),
5558         * src/ds390/ralloc.c (serialRegAssign),
5559         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
5560
5561 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5562
5563         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
5564         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
5565
5566 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
5567
5568         Cumulative patch for pic16 port:
5569         * src/pic16/device.h (typedef PIC16_device) modified fields for
5570         defining microcontrollers,
5571         * src/pic16/device.c: added new info for all devices in Pics16 array,
5572         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
5573         to be optimised out by the pCode optimiser,
5574         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
5575         specially, bug reported by G.M. Gallant,
5576         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
5577         as force'd so that cannot be optimised out by pCode optimiser,
5578         * src/pic16/pcode.c,
5579         * src/pic16/pcodepeeph.c,
5580         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
5581         they are disabled by default, but can be enabled explicit with
5582         command argument --denable-peeps, for testing,
5583         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
5584         --pomit-ivt in COMPILE_FLAGS
5585
5586 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5587
5588         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
5589           compilation on MSVC
5590
5591 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5592
5593         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
5594
5595 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5596
5597         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
5598         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
5599
5600 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
5601
5602         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
5603         would only assign 0x300001 register.
5604
5605 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
5606
5607         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
5608         in COMPILE_FLAGS. Thanks to G. Gallant for report.
5609
5610 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5611
5612         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
5613         for ds80c400
5614         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
5615         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
5616         added peephole 254 (left shift), 255 (jump table)
5617
5618 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
5619
5620         * device/lib/Makefile.in: removed comment line with model-pic16,
5621         * (target port-specific-objects-pic16): the libraries and objects
5622         are copied to the build directory form the device/lib/pic16/bin
5623         directory
5624
5625         Cumulative patch concerning pic16 port:
5626         * library directory has been re-organized,
5627         * added support for PIC18F1220,
5628         * added headers and library sources for chips 18f1220,18f6520,
5629         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
5630
5631         * configuration registers setting has changed, now each supported
5632         device has a complete description of the registers it uses,
5633         * all initialisations are moved to idata sections, these section
5634         can be absolute or relocatable,
5635         * fixed initialisation of codespace variables,
5636         * fixed warning about PCLATU and gpsim,
5637         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
5638         * (genAssign): use table reads when assigning from variables in codespace,
5639         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
5640         char/int variables placed in codespace,
5641         * (pic16_emitConfigRegs): NEW, emits a list with configuration
5642         registers set in .asm file, no need for --pomit-config-words anymore,
5643         * (pic16glue): some 8051 legacy segments are commented out
5644         (to be removed completely),
5645         * added support for alternative assembler and linker with --asm=
5646         and --link= command line arguments,
5647         * peepholes are disabled automatically in the port, no need to
5648         specify on command line,
5649         * port supports natively char/int/long multiplication, but converts
5650         all divisions to support functions,
5651         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
5652         to the file set in variable $2,
5653         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
5654         strings in ASCII format and not in hex,
5655         * ralloc.c (serialRegAssign): added a triplet of conditional calls
5656         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
5657         allocate proper register if iCodes aren't temporary,
5658
5659 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
5660
5661         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
5662
5663 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
5664
5665         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
5666         is commented out
5667
5668 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5669
5670         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
5671         computed address is reused
5672         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
5673         multi-byte bitfields
5674
5675 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5676
5677         * src/z80/gen.c: (genArrayInit): must check for pointers too
5678
5679 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5680
5681         * support/regression/tests/zeropad.c: never meant to commit the
5682           nestedstruct test: removed, added check for GCC version
5683
5684 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
5685
5686         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
5687         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
5688         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
5689           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
5690           bugs 928906 and 954082 half-empty initializers
5691         * src/SDCCsymt.h,
5692         * src/SDCCsymt.c (getAllocSize): added for above fix
5693         * src/z80/gen.c (genArrayInit): fixed bug 741044
5694         * support/regression/tests/zeropad.c: added tests
5695
5696 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
5697
5698         * src/pic16/device.c (pic16_dump_section): corrected bug which
5699         caused some symbols of the libraries to be misplaced
5700
5701 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
5702
5703         * src/pic16/glue.c,
5704         * src/pic16/ralloc.h,
5705         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
5706         to fix conflict with pic port
5707
5708 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
5709
5710         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
5711         externs configuration variables,
5712         * src/pic16/ralloc.h,
5713         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
5714         prototype in header, commented out some debug messages
5715
5716 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
5717
5718         * src/pic16/glue.c,
5719         * src/pic16/main.c,
5720         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
5721         for gpasm COFF object generation. Thanks to D. Hawkins for
5722         his patch info
5723
5724 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5725
5726         * src/ds390/main.c,
5727         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
5728         Brock for spotting this)
5729         * src/ds390/gen.c (genEndFunction),
5730         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
5731         interrupt handler and critical. Disable push/pop optimizations when
5732         peephole optimizations disabled.
5733
5734 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
5735
5736         Updated pic16 library sources and headers.
5737         * device/lib/pic16/pic18f*/ ,
5738         * device/include/pic16/*.h: modified to handle structured SFR
5739         definitions
5740
5741 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
5742
5743         * src/port.h (PORT structure): added hook initPaths, now each
5744         port can declare its own default search paths,
5745         which can been seen with the --print-search-dirs option,
5746         see pic16 port for example,
5747         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
5748         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
5749         * (doPrintSearchDirs): NEW, replaces in a central manner the
5750         printing of search dirs which was split in set*Paths functions,
5751         * (main): added call to port->initPaths and doPrintSearchDirs,
5752         * src/avr/main.c,
5753         * src/ds390/main.c,
5754         * src/hc08/main.c,
5755         * src/izt/i186.c,
5756         * src/izt/tlcs900h.c,
5757         * src/mcs51/main.c,
5758         * src/pic/main.c,
5759         * src/pic16/main.c: modified port structures to reflect addition of
5760         initPaths hook,
5761
5762         * src/pic16/device.c (regCompare): registers are finally sorted by name,
5763         * (pic16_dump_section): for registers in same address reserve memory once,
5764         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
5765         to no_banksel,
5766         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
5767         result is greater in size than right or left,
5768         * (pic16_genUMult8X8_8): there are some cases where the result can
5769         be 16 bits size, so handle these,
5770         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
5771         * (pic16_outBitC): modified to emit pcodes,
5772         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
5773         or not,
5774         * (genDivOneByte): implemented algorithm to divide 8-bits,
5775         * (genCmp): uncommented goto, but issues still exist,
5776         * (genAnd): fixed a bug with variables >8bits,
5777         * (genPackBits): optimization added that uses BCF/BSF to change a
5778         single bit,
5779         * (genAssign): fixed bug when assigning floating point literals,
5780         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
5781         __sdcc_gsinit_startup label,
5782         * src/pic16/main.c (_pic16_init): removed search directory
5783         initialisations,
5784         * (_pic16_initPaths): NEW, used to initialise search directories,
5785         * (_hasNativeMulFor): support functions for all except char/int
5786         multiplication, and char division,
5787         * (PIC16_port struct): modified entry for native mul support,
5788         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
5789         no_banksel option,
5790         * (buildCallTree): call to register_usage is ifdef'ed out,
5791
5792 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5793
5794         * device/include/string.h: applied Stas Sergeev's patch to make this
5795         header file compatible with the preprocessor -Wundef option
5796         * src/SDCCmain.c (main): abort compilation if preprocessor reports
5797         failure (fixes bug #941458)
5798
5799 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5800
5801         * src/SDCCopt.c (killDeadCode): fixed bug #907733
5802         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
5803         that the variable, not the function, should be static
5804         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
5805         to be consistent with non-literal case
5806
5807 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5808
5809         * src/SDCCast.c (isConformingBody): fixed bug #949967
5810         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
5811         convilong): fixed bug #952086
5812
5813 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5814
5815         * src/SDCCmem.c (allocVariables): fixed bug #955321
5816
5817 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5818
5819         * src/hc08/main.c (_hc08_genAssemblerEnd),
5820         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
5821         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
5822         completely eliminated the use of a temporary file
5823         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
5824         when more than one file linked
5825         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
5826
5827 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5828
5829         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
5830         which fixes bug #543481
5831         * support/regression/tests/bug-751703.c: fixed comments left from a
5832         cut and paste error
5833         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
5834         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
5835         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
5836         scopes
5837         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
5838         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
5839         are now changed to underscores in moduleName
5840
5841 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5842
5843         * as/mcs51/lkmem.c: better fix for bug #954173
5844
5845 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
5846         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5847
5848         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
5849         * device/include/c8051f000.h,
5850         * device/include/c8051f120.h,
5851         * device/include/c8051f300.h,
5852         * device/include/c8051f310.h,
5853         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
5854         PWM16) and detab'ed
5855
5856 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5857
5858         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
5859         and mailing lists, doc'ed --no-peep-comments, removed reference
5860         to knoppix (newest version has no LyX/LaTeX), other minor changes
5861         * src/SDCCglue.c (glue): save 2 bytes stack space with
5862         option --main-return. The ljmp could probably be avoided too
5863
5864 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5865
5866         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
5867
5868 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5869
5870         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
5871         * src/SDCCopt.c (isLocalWithoutDef),
5872         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
5873         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
5874         (credit to Maarten Brock for patch #949363, on which this is based)
5875         * support/regression/tests/bug-751703.c: some test cases of extern used
5876         within inner scopes.
5877
5878 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5879
5880         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
5881         SPEC_STRUCT
5882         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
5883         struct definitions
5884         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
5885         dwWriteLabel): fix to create valid debugger symbols even when
5886         the module name has non-alphanumeric symbols in it
5887         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
5888         when a variable's allocation has been optimized away
5889
5890
5891 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5892
5893         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
5894         * src/hc08/main.c,
5895         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
5896         * src/mcs51/main.c,
5897         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
5898         * src/ds390/main.c,
5899         * src/z80/gen.c (z80_emitDebuggerSymbol),
5900         * src/z80/main.c,
5901         * src/pic/gen.c (pic14_emitDebuggerSymbol),
5902         * src/pic/main.c,
5903         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
5904         * src/pic16/main.c,
5905         * src/avr/gen.c (avr_emitDebuggerSymbol),
5906         * src/avr/main.c,
5907         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
5908         * src/xa51/main.c,
5909         * src/SDCCdebug.c (emitDebuggerSymbol),
5910         * src/SDCCdebug.h,
5911         * src/port.h: added a debugger struct to the port struct. Added a
5912         callback for defining debugger symbols
5913
5914         * src/SDCCast.c (createLabel),
5915         * src/SDCC.y (labeled_statement): mark all compiler generated labels
5916         with isitmp = 1
5917         * src/SDCCicode.h,
5918         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
5919         iCode back to the ast for the function
5920
5921         * src/hc08/ralloc.c (hc08_assignRegisters),
5922         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
5923         unneeded fields from the regs struct.
5924         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
5925         pushReg() & pullReg() functions instead of emitcode()
5926
5927         * src/hc08/gen.c (genLabel, genhc08Code),
5928         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
5929
5930         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
5931         debugger hooks
5932
5933         * src/hc08/gen.c (genEndFunction, genhc08Code),
5934         * src/hc08/gen.h,
5935         * src/mcs51/gen.c (genEndFunction, gen51Code),
5936         * src/mcs51/gen.h,
5937         * src/ds390/gen.c (genEndFunction, gen390Code),
5938         * src/ds390/gen.h,
5939         * src/z80/gen.c (genEndFunction, genZ80Code),
5940         * src/z80/gen.h,
5941         * src/z80/z80.h,
5942         * src/pic/gen.c (genEndFunction, genpic14Code),
5943         * src/pic/gen.h,
5944         * src/pic16/gen.c (genEndFunction, genpic16Code),
5945         * src/pic16/gen.h,
5946         * src/avr/gen.c (genEndFunction, genAVRCode),
5947         * src/avr/gen.h,
5948         * src/xa51/gen.c (genEndFunction, genXA51Code),
5949         * src/xa51/gen.h,
5950         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
5951         specific code to cdbFile.c and out of the backend code generators
5952
5953         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
5954         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
5955         starting address is now 0
5956
5957         * as/hc08/asm.h,
5958         * as/hc08/m08pst.c,
5959         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
5960         assembler directive for DWARF support
5961         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
5962
5963         * src/src.dsp,
5964         * src/Makefile.in,
5965         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
5966
5967 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5968
5969         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
5970         and inappropriate peephole optimization in jump tables
5971
5972 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5973
5974         * as/hc08/m08pst.c,
5975         * src/SDCCglue.c: sdccopt works for the hc08 port now
5976
5977 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
5978
5979         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
5980
5981 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5982
5983         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
5984
5985 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5986
5987         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
5988         rules
5989         * src/SDCCmain.c,
5990         * src/SDCCglobl.h,
5991         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
5992         comments from the peephole optimizer replacement rules
5993         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
5994         symbols
5995         * src/SDCCcse.c (updateSpillLocation),
5996         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
5997         equivalents
5998         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
5999         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
6000         objects far pointers
6001
6002 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6003
6004         * src/SDCCsymt.h: a missing part of my last change
6005         * src/pic/ralloc.c (regTypeNum),
6006         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
6007
6008 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6009
6010         * src/SDCCicode.h,
6011         * src/SDCCicode.c (aggrToPtrDclType),
6012         * src/SDCCptropt.h,
6013         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
6014         ptrPseudoSymConvert),
6015         * src/pic/ralloc.c (regTypeNum),
6016         * src/pic16/ralloc.c (regTypeNum),
6017         * src/hc08/ralloc.c (regTypeNum),
6018         * src/ds390/ralloc.c (regTypeNum),
6019         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
6020         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
6021
6022 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6023
6024         * link/z80/lkmain.c (afile),
6025         * as/hc08/lkmain.c (afile),
6026         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
6027         prevent a pointer problem when a filename has no directory and
6028         no extension specified.
6029
6030 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6031
6032         * link/z80/lkmain.c (afile): allow periods in directory names
6033         * link/z80/lkmain.c (afile),
6034         * as/mcs51/lkmain.c (afile),
6035         * as/hc08/lkmain.c (afile): allow linker script file to have an
6036         extension other than ".lnk"
6037         * link/z80/lklex.c (getfid),
6038         * link/z80/lkmain.c (parse),
6039         * as/mcs51/lklex.c (getfid),
6040         * as/mcs51/lkmain.c (parse),
6041         * as/hc08/lklex.c (getfid),
6042         * as/hc08/lkmain.c (parse): Support comments in the linker script
6043         file on lines by themselves and after filenames
6044
6045 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6046
6047         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
6048
6049 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6050
6051         * src/z80/peeph-z80.def: removed some peephole rules that don't
6052         work with multibyte arithmetic (fixed bug #937126)
6053         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
6054         to registers and not global variables
6055         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
6056         geniCodePreInc, geniCodePostDec, geniCodePreDec,
6057         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
6058         checking for assignments not internally generated (fixed bug #931895)
6059         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
6060         structure member (fixed bug #930072)
6061
6062 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6063
6064         * src/SDCCmain.c (linkEdit),
6065         * src/hc08/main.c (_hc08_parseOptions),
6066         * as/hc08/Makefile.in,
6067         * as/hc08/aslink.h,
6068         * as/hc08/asm.h,
6069         * as/hc08/m08pst.c,
6070         * as/hc08/lkrloc.c (relr, rele),
6071         * as/hc08/lkarea.c (lnkarea)
6072         * as/hc08/lkmain.c (afile, parse),
6073         * as/hc08/lkelf.c: support for ELF output
6074         * as/hc08/lks19.c (s19),
6075         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
6076
6077 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6078
6079         * as/mcs51/lkihx.c: Fixed bug #899105.
6080
6081 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6082
6083         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
6084         .dsp files from Unix to DOS.
6085
6086 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6087
6088         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
6089         function pointers; we have been compliant for several months now.
6090         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
6091         change that was accidently commented out
6092         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
6093         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
6094         bug #922319
6095
6096 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6097
6098         * src/hc08/gen.c: output of all of the internal debugging information
6099         is now controlled by the D() macro; it is disabled by default
6100
6101 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6102
6103         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
6104         harder to keep the same registers during a CAST iCode
6105         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
6106         long via int can be done in a single cast, if the signedness is
6107         correct.
6108         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
6109         putchar() in tinibios.c in ds390's library
6110
6111 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
6112
6113         * src/SDCCast.c (decorateType): fixed bug #898889,
6114         cast result of a literal complement too
6115         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
6116         fixed check for bitfields
6117
6118 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
6119
6120         * src/SDCCicode.c (geniCodeLogic): made it static,
6121         (geniCodeLogicAndOr): added in order to fix bug #905492,
6122         (ast2iCode): fixed bug #905492
6123         * support/regression/tests/bug-905492.c: added
6124         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
6125         (processParms): fixed bug #927659: don't copy parms, this will clear
6126         decorated flag
6127         * support/regression/tests/bug-927659.c: added
6128
6129 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
6130
6131         * src/SDCCast.c (addCast): don't cast float to char
6132         * device/lib/libsdcc.lib: added _memmove
6133
6134 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
6135
6136         * device/lib/large/Makefile: fixed parallel execution by
6137         replacing `make` by `$(MAKE)`
6138
6139 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6140
6141         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
6142         offsets (fixes bug #923936)
6143
6144 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
6145
6146         * device/lib/small/Makefile: fixed parallel execution by
6147         replacing `make` by `$(MAKE)`
6148
6149 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
6150
6151         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
6152
6153 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
6154
6155         * src/pic/gen.c (genCpl): multi-byte complements were not working.
6156         * src/regression/Makefile: Regression test was not running.
6157
6158 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
6159
6160         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
6161         complement if possible
6162         * src/SDCCval.c (valComplement),
6163         * src/SDCCicode.c (operandOperation): fixed complement of literal
6164         * support/regression/tests/onebyte.c (testComplement): added
6165
6166 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
6167
6168         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
6169         return an optimized tree; actually replace actParm with the new tree
6170         * src/SDCCast.h: added some parantheses to remove side effects
6171         * support/regression/tests/bug-920866.c
6172
6173 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
6174         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
6175         Bit operands were not being handled properly in the pic14 port.
6176         (now src/regression/add.c passes again).
6177
6178 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6179
6180         * src/SDCC.y (labeled_statement): case and default no longer require
6181         a following statement (RFE #893037)
6182
6183 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6184
6185         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
6186         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
6187         disabled (fixes bug #916294)
6188         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
6189         "mov a,acc"; patch provided by Lenny Story
6190         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
6191
6192 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6193
6194         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
6195         functions
6196         * src/ds390/gen.c (genFunction, genEndFunction),
6197         * src/ds390/ralloc.c (ds390_assignRegisters),
6198         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
6199         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
6200         pushed if there are parameters passed on the stack. Also, a cleaner
6201         way to decide if r0/r1 should be pushed/popped. (Together they fix
6202         bug #918693)
6203
6204 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6205
6206         * doc/sdccman.lyx,
6207         * device/lib/mcs51/crtpagesfr.asm,
6208         * device/lib/mcs51/crtxinit.asm,
6209         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
6210         to avoid confusion with Si Lab's SFRPAGE register.
6211
6212 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6213
6214         * src/SDCCglue.c (emitMaps): allow public sfr variables
6215         * src/SDCCglue.c (initialComments): include compiler build date
6216         with compiler version and put the timestamp of the generated
6217         assembly file on a serperate line to be less confusing.
6218         * src/port.h: added genInitStartup hook
6219         * src/avr/main.c,
6220         * src/ds390/main.c,
6221         * src/hc08/main.c,
6222         * src/pic/main.c,
6223         * src/pic16/main.c,
6224         * src/xa51/main.c,
6225         * src/z80/main.c: genInitStartup initialize as NULL (default to
6226         historical behaviour)
6227         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
6228         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
6229         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
6230         library instead of hard coding it into the compiler.
6231         * support/regression/ports/mcs51-stack-auto/spec.mk,
6232         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
6233         * device/lib/mcs51/Makefile,
6234         * device/lib/small/Makefile,
6235         * device/lib/large/Makefile,
6236         * device/lib/mcs51/crtpagesfr.asm,
6237         * device/lib/mcs51/crtstart.asm,
6238         * device/lib/mcs51/crtxclear.asm,
6239         * device/lib/mcs51/crtxinit.asm,
6240         * device/lib/mcs51/crtclear.asm,
6241         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
6242         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
6243         and into user configurable files.
6244         * device/lib/clean.mk: clean mcs51 directory too
6245         * support/regression/tests/longlit.c: added static to T1 declaration
6246         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
6247         accesses in the initialization code
6248
6249 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6250
6251         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
6252         OSCTRIMVAL as noted in bug #916008
6253
6254 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6255
6256         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
6257         in loops with multiple exits (reported as incorrect registers
6258         used by Martin Helmling in Sdcc-user list)
6259
6260 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6261
6262         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
6263         made ds390 register extensions look less like error messages
6264
6265 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6266
6267         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
6268         reported by Adam Wozniak in Sdcc-user list
6269
6270 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
6271
6272         * src/SDCCast.c (decorateType): fixed with bug and promotion in
6273         arithmetic optimizations, added debug output
6274
6275 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
6276
6277         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
6278         * sdcc.spec: updated and split sdcc into 3 rpms
6279         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
6280         needed for literals of LEFT_OP and '+'
6281         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
6282         introduced RESULT_TYPE_NOPROM
6283         (geniCodeMultiply): fixed logic for decision if mul is optimized to
6284         left shift
6285         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
6286         limited promotion to int only for '*'
6287         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
6288
6289 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
6290
6291         * src/pic16/gen.c (genSkip),
6292         (genc16bit2lit), (gencjneshort): commented out
6293         (is_LitOp): new helper function, checks operand type
6294         (genCmpEq): rewritten
6295
6296 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
6297
6298         * support/regression/tests/bug-908454.c: added
6299
6300 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
6301
6302         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
6303         * src/SDCCicode.c (usualBinaryConversions): op needs int type
6304         (geniCodeCast): cosmetic, don't preserve bit storage class
6305         (geniCodeLeftShift): added promotion
6306         (geniCodeLogic): fixed regression
6307         * src/SDCCsymt.c (computeTypeOr): accept bits too
6308         (compareType): 2nd part of fix for bug #908454, needed for bitfields
6309
6310 2004-03-07  Borut Razem <borut.razem AT siol.net>
6311
6312         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
6313
6314 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
6315
6316         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
6317         version of pic16_genPackRegisters which does not check if ic is a
6318         CAST operator,
6319         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
6320         function cause string1.c regression test fails
6321
6322 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
6323
6324         * sim/ucsim/configure.in,
6325         * sim/ucsim/configure,
6326         * sim/ucsim/doc/Makefile.in: use docdir
6327         * src/SDCC.y: fixed sbit atrributes
6328         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
6329         * src/SDCCast.c (decorateType): |^& need special promotion handling
6330         * src/SDCCast.h,
6331         * src/SDCCsymt.h: moved definition of RESULT_TYPE
6332         * src/SDCCsymt.h (computeType),
6333         * src/SDCCicode.c: computeType() needs op
6334         * src/SDCCsymt.c (checkTypeSanity),
6335         * doc/sddman.lyx: "plain" bitfields are unsigned
6336         * src/SDCCsymt.c (computeTypeOr): added
6337         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
6338         |^& ops
6339         * src/SDCCval.c (val*): computeType() needs op
6340         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
6341         * support/regression/tests/onebyte.c: added tests for |^&
6342
6343 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
6344
6345         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
6346         for writing icode into asm output.
6347
6348 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
6349
6350         * src/pic16/device.c: added some debug lines enabled
6351         with macro DEBUG_CHECK,
6352         * src/pic16/genarith.c: more debug in genPlus,
6353         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
6354         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
6355         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
6356         * (aopForSym): onStack symbols are re-placed in data memspace,
6357         and onStack flag is cleared,
6358         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
6359         copy temporary pcodeop,
6360         * (genPcall): added warning for not updating PCLATU,
6361         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
6362         always true for pic16 port,
6363         * (genMultOneWord): NEW, supports integer multiplication,
6364         * (genMult): modified to call genMultOneWord,
6365         * (ifxForOp): added warning when return NULL,
6366         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
6367         flag is set before call to operandFromSymbol for implicit
6368         added structures,
6369         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
6370         options.intlong_rent are set by default,
6371         * (_hasNativeMulFor): modified to allow port generation of integer
6372         multiplication,
6373         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
6374         set regtype to REG_SFR for all registers, restricting seting the
6375         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
6376
6377 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6378
6379         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
6380         more than 500 times in the regression tests
6381
6382 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6383
6384         * support/Util/SDCCerr.h,
6385         * support/Util/SDCCerr.c,
6386         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6387         enumerator_list),
6388         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
6389         for symbol conflicts.
6390         * support/valdiags/tests/enum.c,
6391         * support/valdiags/tests/tentdecl.c,
6392         * support/valdiags/tests/struct.c: expect possible error messages
6393         referring to original symbol definitions.
6394         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
6395         * src/SDCCsymt.h,
6396         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
6397
6398 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
6399
6400         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
6401
6402 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
6403
6404         * src/pic16/ralloc.c (newReg): fixed bug #908929
6405
6406 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6407
6408         * src/ds390/gen.c: added missing #include "main.h"
6409
6410 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
6411
6412         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
6413         checking if symbol is already in set,
6414         * src/pic16/device.h: prototype for checkAddSym,
6415         * src/pic16/gen.c: (_G): added entry interruptvector,
6416         * (assignResultValue): removed some commented out lines,
6417         * (genFunction): check for ISR via sym->type, absolute section for
6418         interrupt code is created via a new pBlock, the goto instruction is
6419         placed now correctly at the interrupt vector position, changed all
6420         references from ivec to _G.interruptvector,
6421         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
6422         is the interrupt is a high priority one, same for return from ISR,
6423         * src/pic16/glue.c: changed all calls of addSetHead for publics and
6424         externs to calls of checkAddSym,
6425         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
6426         pic16_pcode_verbose flag is set,
6427         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
6428         * src/pic16/pcoderegs.c: message about how many registers are saved
6429         will only be emitted if pic16_pcode_verbose flag is set,
6430
6431 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6432
6433         * src/ds390/ralloc.h,
6434         * src/ds390/ralloc.c (ds390_regWithIdx),
6435         * src/ds390/gen.c (emitcode),
6436         * src/ds390/main.h,
6437         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
6438         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6439         ds390operandCompare, getRegsRead, getRegsWritten,
6440         initializeAsmLineNode): customized instruction size calculation for
6441         ds390, started basis for some register optimizations
6442         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
6443         corresponding assembly output
6444         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
6445         missing push/pop of r0/r1. Optimized push/pops
6446
6447 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6448
6449         * src/mcs51/main.c (instructionSize): fixed ACALL size
6450         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
6451
6452 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
6453
6454         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
6455         the sorting of rlist with NULL elements
6456         * (print_idataType, print_idata): NEW to create idata sections
6457         * src/pic16/device.h: idataSymSet new variable
6458         * src/pic16/gen.c (genFunction): fixed some bugs in string
6459         comparing, improved the absolute section creation for ISRs,
6460         added FSR0L/FSR0H in registers that are saved in an ISR,
6461         * (genInline): fixed the processing of inline snippets,
6462         now they undergo no process by the peephole optimizer
6463         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
6464         are placed in idataSymSet,
6465         * (pic16emitStaticSeg): extern symbols are added in externs,
6466         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
6467         switching when aboslute variables are placed in access bank memory
6468         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
6469         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
6470         commented out with #if,
6471         * (pic16_packRegisters): reintroduce the check for CAST because some
6472         symbols are not correctly handled,
6473         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
6474         pCodeInstruction instead of pCode,
6475         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
6476         pCodeAsmDir definition,
6477         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
6478         directive, then the argument directive is emitted without the leading
6479         tab, hack for inline labels which must be in the first column,
6480         * (compareLabel,pic16_findNextInstruction),
6481         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
6482         * (insertBankSwitch): modified for the new pCodeAsmDir,
6483
6484 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6485         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
6486
6487         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
6488         instance,
6489         * (pushSide): commented out with #if,
6490         * (assignResultValue): fixed some typos in saving
6491         registers,
6492         * (genPcall): FIXED and sync'ed with genCall,
6493         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
6494         * (genNearPointerGet): fixed to handle some more cases,
6495         implementation scheme via table reads,
6496         * (genConstPointerGet): modified to access code memory correct,
6497         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
6498         and improved to handle some cases
6499         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
6500         instead of "RETLW" for init data
6501         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
6502         not IN_DIRSPACE, work around to reduce bank switching when aboslute
6503         variables are placed in access bank memory (<0x80 and >=0xf80),
6504         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
6505         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
6506         TBLWT_POSTDEC,TBLWT_PREINC
6507         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
6508         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
6509         directives
6510         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
6511         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
6512         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
6513         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
6514
6515 2004-02-29  Borut Razem <borut.razem AT siol.net>
6516
6517         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
6518         support/Util/findme.h, support/Util/system.h: enhance binary relative
6519         search for lib and include by using findProgramPath()
6520
6521 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6522
6523         * src/SDCCpeeph.h,
6524         * src/SDCCpeeph.c (pcDistance),
6525         * src/port.h,
6526         * src/mcs51/ralloc.h,
6527         * src/mcs51/ralloc.c (mcs51_regWithIdx),
6528         * src/mcs51/main.h,
6529         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
6530         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6531         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
6532         size calculation port specific, started basis for some register
6533         optimizations
6534         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
6535         missing push/pop of r0/r1. Optimized push/pops
6536         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
6537         * device/lib/_modsint.c (_modsint),
6538         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
6539         and stack version so regression tests pass
6540
6541 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
6542
6543         * src/Makefile.in (dep): include SLIBOBJS in dependency check
6544         * src/SDCCast.c (decorateType): catch another small optimization
6545         with '?' operator
6546         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
6547         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
6548         modified to finally use computeType() all over SDCC,
6549         see Feature Request #877103
6550         * src/SDCCval.h: cosmetic
6551         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
6552         valCompare(); regression tested in muldiv.c
6553         * support/regression/tests/muldiv.c (testMod): mod sign follows
6554         dividend only
6555
6556 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
6557
6558         * src/SDCCast.c (decorateType): fixed bug #902362
6559         * doc/INSTALL.txt: fixed install instructions for win32
6560
6561 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
6562
6563         * device/include/Makefile.in (install): fixed by replacing spaces
6564         by tabs
6565         * doc/README.txt,
6566         * doc/INSTALL.txt: updated for release
6567         * doc/sdccman.lyx: added warning for --xstack being buggy
6568
6569 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
6570
6571         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
6572         to eliminate build warnings.
6573         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
6574
6575 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
6576            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6577
6578         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
6579         removed -penable-stack, added comment for stack pragma, added
6580         warning for not initializing the stack/frame registers, removed
6581         comment at interrupts section
6582
6583         Stack is made permanent, there is no ability to disable stack usage.
6584         * src/pic16/device.h,
6585         * src/pic16/device.c: removed all references to USE_STACK macro,
6586         * src/pic16/device.c (pic16_dump_section): when no elements in
6587         rlist, free rlist before return,
6588         * (pic16_dump_int_registers): NEW, internal registers are a new set
6589         of general purpose registers reused by each function,
6590         * (checkAddReg): returns 1 if registers is added to set,
6591         * (pic16_groupRegistersInSection): when a registers is of type
6592         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
6593         * src/pic16/device.h: memRange and Assigned Memory are deleted,
6594         SRCASECMP macro is moved here from device.c
6595         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
6596         PO_PCLATU, PO_PRODL, PO_PRODH,
6597         * (pic16_pCodeOpType, genMinus,
6598         changed compares to "a" register, with AOP_ACC,
6599         * (pic16_genPlus): fixed some bugs and indented properly,
6600         * (pic16_addSign): changed size to size+offset in the MOVWF
6601         instruction,
6602         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
6603         multiply 8-bit operand by literal, result is 8-bit,
6604         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
6605         multiply 2 8-bit operand, result is 8-bit,
6606         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
6607         genUMult8X*_16,
6608         * src/pic16/gen.c: changed accUse to contain WREG only,
6609         * (pic16_emitcomment): renamed to pic16_emitpcomment,
6610         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
6611         true, do not use immediate addressing any more unless sym is a
6612         pointer in codespace,
6613         * (aopForRemat): do not use immediate addressing when symbol not in
6614         codespace and when symbol's address is requested,
6615         * (aopOp): for-loop in if(sym->accUse) is modified for the new
6616         accUse size (= 1),
6617         * (aopGet): added case for AOP_ACC and don't return "accumulator
6618         bug" but WREG instead,
6619         * (popGetTempReg): pushes contents of temporary register in stack,
6620         * (popReleaseTempReg): pops contents of temporary register from
6621         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
6622         * (pic16_popGet): separated case AOP_ACC to return register WREG
6623         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
6624         or PO_IMMEDIATE and initializes their instance/offset appropriately,
6625         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
6626         the use of immediate pointers to certain cases only.
6627
6628         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
6629         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
6630         * (assignResultValue, genCall, genRet): modified to use the new
6631         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
6632         genPcall is still broken,
6633         * (genFunction): added code to create 'A' type pBlocks when
6634         interrupt functions are generated, code not extensively tested yet,
6635         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
6636         * (genEndFunction): modified so ISRs pop stored registers from stack,
6637         * (genMultOneByte): cleanup,
6638         * (AccRsh): added flag andmask, to and result with appropriate mask,
6639         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
6640         * (genDataPointerGet): fixed and reenabled its use,
6641         * (genNearDataPointerGet): bugs fixed,
6642         * (genDataPointerSet): bugs fixed,
6643         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
6644         pic16_DumpSymbol, pic16_DumpOp,
6645         * src/pic16/genutils.h: function prototypes for the above functions,
6646         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
6647         pointers,
6648         * (pic16emitRegularMap): many many many improvements, but needs a
6649         major cleanup,
6650         * src/pic16/main.c: enable_stack in pic16_options is removed,
6651         * (_pic16_parseOptions): removed command line options -penable-stack,
6652         * (_process_pragma): emit stack symbol only when stack pragma is
6653         processed,
6654         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
6655         redirected to FSR0L/FSR0H pair,
6656         * (pic16_get_op, pic16_get_op2): modifications and improvements,
6657         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
6658         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
6659         for immediates,
6660         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
6661         * (dumpPicOptype): NEW,
6662         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
6663         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
6664         with movff instruction,
6665         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
6666         added pic16_int_regs, some packRegsFor* functions are commented out,
6667         because produce errors,
6668         * src/pic16/NOTES: minor modifications
6669
6670 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6671
6672         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
6673         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
6674         --pack-iram.
6675         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
6676         * as/mcs51/lkaomf51.c: fixed bug #895763
6677
6678 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
6679
6680         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
6681
6682 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6683
6684         * doc/sdccman.lyx: added details about the HC08 storage classes and
6685         interrupts, fixed the register usage info for z80 & gbz80
6686
6687 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
6688
6689         * doc/sdccman.lyx: added more pic16 port documentation
6690         * device/include/pic16/: added header pic18fregs.h
6691
6692 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
6693
6694         * doc/sdccman.lyx: added Vangelis' contribution
6695
6696 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6697
6698         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
6699         extend to the next CALL or PCALL, not just to the next CALL.
6700
6701 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
6702
6703         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
6704
6705 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6706
6707         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
6708         bug #895752 and a better fix for bug #716790
6709
6710 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6711
6712         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
6713
6714 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6715
6716         * doc/sdccman.lyx: minor changes, minor changed
6717
6718 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
6719
6720         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
6721         which can't handle SDCC_NEWONEBYTEOPS,
6722         (geniCodeMultiply): removed conversion from mult to shift for pic14
6723         and pic16
6724
6725 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6726
6727         * src/hc08/gen.h,
6728         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
6729         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
6730         thus fixing bug #895406
6731
6732 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
6733
6734         * device/lib/_modsint.c,
6735         * device/lib/_modslong.c: sign follows divisor only
6736         * src/hc08/gen.c (genMultOneByte): if result size is 1,
6737         signs or signedness can be ignored
6738         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
6739         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
6740         added optimization for IFX,
6741         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
6742         arguments;
6743         reenabled optimization for IFX, which was removed on 2004-01-11
6744         * src/SDCCast.h: added return type IFX
6745         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
6746         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
6747         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
6748         SDCC_OLDONEBYTEOPS selects the old behaviour
6749         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
6750         changed again and commented promotion rule
6751         * src/SDCCval.c (valDiv): promotion no longer necessary
6752         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
6753         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
6754         rewritten
6755         * support/regression/tests/onebyte.c: added
6756
6757 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
6758
6759         * gen.c (genInline): reverted to old code for assemnling inline
6760         code because of bug reported James Chadd
6761
6762 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
6763
6764         * ralloc.h: missing declarations from previous patch,
6765         seems that patch for ralloc.h was never applied, fixed
6766
6767 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6768            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6769
6770         * pcode.c,
6771         * pcode.h,
6772         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
6773         indirect addressing. Marked FSR0 as deprecated
6774         * gen.c (pointerCode): commented out, not needed now
6775         (pic16_popGet2p): new MOVFF helper function
6776         (genGenPointerGet),
6777         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
6778         (shiftRLong): removed duplicate debugging info
6779
6780 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6781
6782         * src/ds390/gen.c (genNearPointerGet),
6783         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
6784         optimization with bits, but not bitfields.
6785         * src/ds390/ralloc.c (packRegisters),
6786         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
6787
6788 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
6789
6790         * src/SDCCcse.c (algebraicOpts): copy operands before modification
6791
6792 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6793
6794         * src/SDCCsymt.h,
6795         * src/SDCCicode.c (operandFromSymbol),
6796         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
6797         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
6798         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
6799         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
6800         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
6801         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
6802         bug #892038
6803         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
6804         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
6805         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
6806         * src/SDCCsymt.c (newSymbol),
6807         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6808         enumerator_list),
6809         * src/SDCCval.h,
6810         * src/SDCCval.c (newiList): fixed bug #885705
6811
6812 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6813
6814         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
6815         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
6816
6817 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6818
6819         * device/include/c8051f120.h,
6820         * device/include/c8051f300.h,
6821         * device/include/c8051f310.h: added/updated header files for Silicon
6822         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6823         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
6824         in new section Submitting patches
6825
6826 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6827
6828         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
6829         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6830         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6831         genGenPointerSet),
6832         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
6833         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6834         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6835         genGenPointerSet),
6836         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
6837         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6838         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6839         genGenPointerSet),
6840         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
6841         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6842         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6843         genGenPointerSet): fixed bug #892400
6844         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
6845         to eliminate build warnings.
6846         * src/SDCCast.c (processParms),
6847         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
6848         fixed bug 751859
6849         * support/valdiag/valdiag.py: added GCC to the list of defines active
6850         when compiling with gcc
6851
6852 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6853
6854         * support/Util/SDCCerr.h,
6855         * support/Util/SDCCerr.c,
6856         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
6857         with an incomplete type (fixed bug #883734)
6858         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
6859
6860 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6861
6862         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
6863
6864 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6865
6866         * src/SDCCast.c (decorateType),
6867         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
6868         function pointer implementation
6869         * support/regression/tests/funptrs.c: added tests to verify both forms
6870         of function pointers work correctly. Added tests to verify parameters
6871         are passed in the correct order.
6872
6873 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
6874
6875         * device.c (regCompare): registers are sorted by ascending
6876         address and increasing size,
6877         * main.c (_pic16_finaliseOptions): removed the declaration
6878         of compiler macro MCU. Now a macro of the format pic18fxxxx
6879         will be defined from the command line
6880
6881 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6882             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6883
6884         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
6885         PCOP_RLCF was overwritten!
6886         * gen.c (genSkip): commented out calls to pic16_emitcode,
6887         * (genCmpEQ): fixed "long" compares, only high word did get compared,
6888         * (genlshTwo),
6889         * (genRRC): added debugging info,
6890         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
6891         overwritten while shifting,
6892         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
6893         overwritten while shifting,
6894         * (AccLsh),
6895         * (AccRsh),
6896         * (shiftLLeftOrResult),
6897         * (shiftRLeftOrResult),
6898         * (shiftRLong),
6899         * (shiftLLong): Implemented with pic16_emitpcode
6900         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
6901         * (genLeftShift): Fixed bug, operand for shift by variable always
6902         was "and"ed with 0x0f,
6903         * (genLeftShiftLiteral),
6904         * (genrshTwo),
6905         * (genRightShiftLiteral): added debugging info,
6906         * (genrshFour): added comment,
6907         * (genRightShift): determined signedness from operand "left"
6908         instead of "result"
6909
6910 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6911
6912         * src/SDCCicode.c (geniCodeParms),
6913         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
6914         function pointers, fixed function pointer bugs #861242 and #861896
6915
6916 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6917
6918         * device/include/c8051f000.h,
6919         * device/include/c8051f120.h,
6920         * device/include/c8051f300.h: added header files for Silicon
6921         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6922
6923 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
6924
6925         * src/SDCCast.c (processParams): added new type flow and restructured
6926         (gatherAutoInit): added new type flow
6927         (addCast): cosmetic changes
6928         (getLeftResultType): added new type flow for array indices, patch
6929         provided by Stas, see FR #877103
6930         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
6931         array index patch by Stas
6932         * src/SDCCast.h: added prototype getResultTypeFromType()
6933         * src/SDCCval.h,
6934         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
6935         * src/pic/glue.c (pic14emitStaticSeg),
6936         * src/pic16/glue.c (pic16emitStaticSeg),
6937         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
6938         for initialization of symbols
6939         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
6940         * support/Util/SDCCerr.h:
6941         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
6942         * .version: bumped version number to 2.3.8
6943         * device/include/Makefile.in (install),
6944         * doc/Makefile (install): changed to 'rm `find ...`' construct to
6945         avoid warnings
6946
6947 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
6948
6949         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
6950         Slade Rich fixed an optimization bug
6951         * src/pic/pcodepeep.c,
6952         * src/pic/pcoderegs.c
6953         * doc/Makefile (install): added test for directory
6954
6955 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6956
6957         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
6958         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
6959         * src/pic/ralloc.c (getRegPtr, getRegGpr),
6960         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
6961         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
6962         * as/mcs51/asexpr.c (term),
6963         * as/hc08/asexpr.c (term): fixed bug #887146
6964
6965 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6966
6967         * src/z80/gen.c (genMult): handle single byte result product
6968         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
6969         DUMMY_READ_VOLATILE (fixed bug #886367)
6970
6971 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6972
6973         * support/regression/tests/libmullong.c: fixed logic, on little endian
6974         hosts we ended without a mullong_wrapper()
6975
6976 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6977
6978         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
6979         virus/worm forged address usage.
6980
6981 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6982
6983         Fixed promotion, it should be done on AST level:
6984         * src/SDCCast.c (addCast): added promotion to int
6985         (decorateType): updated call to upCast()
6986         * src/SDCCicode.c (geniCodeLeftShift): removed call to
6987         usualUnaryConversions()
6988
6989 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
6990
6991         * support/regression/tests/literalop.c (mulWrapper): Added a
6992         wrapper to remove integer overflow warnings.
6993
6994         * support/regression/tests/float_trans.c: Made work on host.
6995
6996         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
6997         location of sz80.
6998
6999         * support/regression/generate-cases.py (main): Changed from inline
7000         to a main method.
7001
7002         * doc/Makefile (install): Changed to depth first to get rid of
7003         missing directory install warning.
7004
7005         * as/Makefile (install-doc): Made work on Mac.
7006
7007 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
7008
7009         * src/SDCCast.c: added an additional type flow in decorateType() of
7010         opposite direction, see feature request #860006; it's enabled at runtime
7011         by setting the environment variable SDCC_NEWTYPEFLOW
7012         * src/SDCCast.h: changed prototype of decorateType()
7013         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
7014         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
7015         'char' to 'int' can be omitted, if both operands are 'unsigned char';
7016         see feature request #877103
7017         * src/SDCCval.c: updated call of decorateType()
7018         (valBitwise): fixed bug #882876
7019         (valMinus): added promotion
7020         (valLogicAndOr): result is unsigned
7021         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
7022         * src/SDCCsymt.c (computeType),
7023         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
7024         must not cause an unsigned operation
7025         * src/pic/glue (pic14emitRegularMap),
7026         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
7027
7028 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
7029
7030         * src/pic/pcode.c (PCodeID): commented out left over debug code
7031
7032 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
7033
7034         * support/valdiag/tests/overflow.c: added shift tests
7035         * src/pic/device.c,
7036         * src/pic/gen.c,
7037         * src/pic/gen.h,
7038         * src/pic/glue.c,
7039         * src/pic/main.c,
7040         * src/pic/pcode.c,
7041         * src/pic/pcode.h,
7042         * src/pic/pcodepeep.c,
7043         * src/pic/pcoderegs.c,
7044         * src/pic/ralloc.c,
7045         * src/pic/ralloc.h: applied patch from Slade Rich;
7046         added support for multiple code pages and multiple RAM banks on the
7047         PIC 14 port. The ASM files now no longer simply assume all the
7048         code / RAM are in the same page / bank. This means the linker can
7049         safely allocate code/RAM of separate ASM files to different pages/banks.
7050         * doc/sdccman.lyx: added Slade's tips
7051         * src/mcs51/peeph.def: fixed bug #880768
7052
7053 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7054
7055         * src/hc08/ralloc.c (rematStr): fixed bug #879282
7056         * src/SDCCast.c (decorateType): fixed bug #880197
7057
7058 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
7059
7060         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
7061         getopt.h.
7062
7063         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
7064         strtof is not part of C89 and isn't included with Mac OS X.
7065
7066 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7067
7068         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
7069         shiftL2Left2Result): fixed bug #879326
7070         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
7071         (genMultOneByte): fixed bug in signed vs unsigned multiplication
7072         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
7073         address fetch for clr instruction
7074         * device/lib/hc08/_mulint.c: created optimized assembly version
7075         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
7076
7077 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
7078
7079         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
7080         proposed in FR #877103
7081
7082 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
7083
7084         * src/SDCCval.c (cheapestVal): added missing checks
7085         * src/SDCCicode.c (usualBinaryConversions): fixed condition
7086         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
7087
7088 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
7089
7090         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
7091         equal operands
7092
7093 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
7094
7095         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
7096         loaded with the linker search paths (-L arguments) and the libraries
7097         to be linked with the current source (-l arguments). Changes
7098         currently will affect only the pic16 port.
7099         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
7100         include path the port specific paths and port specific libraries,
7101         * gplink command now contains the $3 argument,
7102         * src/pic16/device.h,
7103         * src/pic16/device.c,: structure PIC_device is made public and
7104         renamed to PIC16_device, the same for variable Pics which is renamed
7105         to Pics16. Updated all references to them.
7106         * src/pic16/glue.c (pic16glue): corrected bug with code
7107         initialization which bypassed the variable initializations block.
7108
7109         * device/lib/pic16/Makefile.rules: removed --penable-stack from
7110         COMPILE_FLAGS and added the --nostdinc option
7111
7112 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7113
7114         * device/include/mc68hc908jb8.h: Register defs for another member
7115         of the hc08 family. Contributed by Bjorn Bringert - thanks!
7116
7117 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
7118
7119         Documenting changes from previous commits.
7120         * configure.in (version 1.56),
7121         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
7122         when generating output files to configure the pic16 library,
7123         but now I've commented it out, since gputils aren't installed in the
7124         SF compile farm, so library won't compile
7125
7126         * device/lib/Makefile.in (version 1.56): initially I've added in
7127         target 'all' the prerequestive 'model-pic16' so it compiled the
7128         pic16 library, but now I've commented it out for the same reasons
7129         above,
7130         * added targets 'model-pic16' and 'objects-pic16' to compile the
7131         library
7132         * added target 'port-specific-objects-pic16' to handle the
7133         generated libraries and copy them into the build/ directory
7134         * added target 'clean-intermediate-pic16' to clean intermediate
7135         files into pic16 directory
7136         * in target 'installdirs' added line to create directory pic16 in
7137         the installation path
7138
7139         * device/include/Makefile.in (version 1.11): in target 'install'
7140         added lines to copy all header files to installation path,
7141         * in target 'installdirs' added line create directory for pic16
7142         headers in the installation path
7143
7144 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
7145
7146         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
7147          a function call
7148
7149 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
7150
7151         * configure,
7152         * device/lib/configure.in,
7153         * device/lib/configure: fixed for autoconf 2.57
7154
7155 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7156
7157         * src/z80/main.c (_parseOptions): fixed the portmode= command line
7158         option so that it actually works. Made it specific to the z80, since
7159         the gbz80 doesn't have these kinds of I/O ports.
7160
7161 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7162
7163         * device/include/z180.h,
7164         * device/lib/_memcpy.c,
7165         * device/lib/_memmove.c,
7166         * device/lib/_mulint.c,
7167         * device/lib/ser_ir.c,
7168         * device/lib/ser_ir_cts_rts.c,
7169         * device/lib/_strcmp.c,
7170         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
7171         * src/z80/main.c (_process_pragma): add support for pragmas bank and
7172         portmode; added deprecation warning for bank= and protmode= forms.
7173         Also, guard against buffer overflow.
7174         * src/z80/gen.c (aopGet): generate better code for sfr banked read
7175
7176 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7177
7178         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
7179         changed interrupt vector table generation to only emit declared vectors.
7180         * device/include/Makefile.in: added missing backslash
7181         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
7182
7183 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
7184
7185         Mainly changes to support compilation of the device libraries
7186         * src/pic16/device.c: stack is allocated via symbol and not
7187         via literal number. The symbol is placed in the corresponding
7188         position of the data ram
7189         * (pic16_dump_section): relocatable and absolute uninitialized
7190         data are now emitted in sorted order to reduce section naming,
7191         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
7192         weren't marked as being in the access bank,
7193
7194 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
7195
7196         Added portion of GNU PIC Library under the directory
7197         device/include/pic16 and device/lib/pic16. These files
7198         contain the declarations of SFRs for the PIC18Fxx2 devices.
7199         The directory is initialized via configure from toplevel.
7200
7201 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
7202
7203         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
7204         the spilllocations to be compared correctly
7205
7206 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
7207
7208         * src/SDCCast.c (decorateType): fixed bug introduced today
7209
7210 2004-01-12  Borut Razem <borut.razem AT siol.net>
7211
7212         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
7213         doc/sdccman.lyx: upper case pragmas are deprecated
7214
7215 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
7216
7217         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
7218         in simpler and even better code
7219
7220 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
7221
7222         * src/SDCCicode.c (operandOperation): fixed bug #874819
7223         * src/SDCCast.c (decorateType): fixed
7224         char foo (unsigned long ul) { return ul > 0; }
7225
7226 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7227
7228         * doc/sdccman.lyx: Moved and added some sections, small changes
7229         all over. Telling LaTeX to be less strict with word spacing
7230         to better keep the right margin. Changed some notes about
7231         maintainance of the ports in section 3.2.1 - is it OK like this?
7232
7233 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
7234
7235         SDCC source changes:
7236         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
7237         convilong): modified to inform the pic16 port that builtin functions
7238         are external
7239
7240         PIC16 PORT specific changes:
7241         * src/pic16/device.c pic16_dump_equates() added,
7242         processor registers declared internally by the port are emitted in
7243         the translation as equates,
7244         * src/pic16/gen.c: inline code is passed unprocessed to the
7245         translation,
7246         * (pic16_popGetLit2): fnuction modified to take second operand as
7247         pCodeOp pointer and not as literal,
7248         * (popRegFromIdx): prefixed with pic16_,
7249         * (pic16_popCombine2): modified to receive already allocated pCode
7250         operands,
7251         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
7252         * (genFunction): initializes local stack frame and pushes on stack
7253         all the registers used by this function,
7254         * (genEndFunction): restores all registers from stack and restores
7255         stack frame,
7256         * src/pic16/glue.c (pic16emitRegularMap): various changes and
7257         improvements,
7258         * (pic16glue): changed the program startup sequence,
7259         * added new dbName code 'A' for functions placed in absolute section
7260         * src/pic16/main.c: added function attribute _naked,
7261         * added pragma 'code' to place a fnuction at an absolute address,
7262         * added command line arguments --debug-ralloc and --pcode-verbose,
7263         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
7264         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
7265         * (pic16_newpCodeOpLit2): modified to take the second operand as
7266         pCodeOp pointer,
7267         * (pic16_printpBlock): modified to emit each function in a separate
7268         section,
7269         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
7270         UPPER for immediate operands,
7271         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
7272         instruction,
7273         * src/pic16/peeph.def: all peepholes with movff are commented out,
7274         because there is a problem in the pcode peep optimizer,
7275         * src/pic16/ralloc.c: the register allocator can now reuse local
7276         function symbols for another function. This saves register usage.
7277         * src/pic16/ralloc.h: added flag isLocal in structure regs,
7278
7279         Added file src/pic16/NOTES with information about program writing on
7280         the current port version.
7281
7282 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7283
7284         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
7285         and peephole 252 (array access)
7286
7287 2004-01-09  Borut Razem <borut.razem AT siol.net>
7288
7289         * src/SDCCmain.c : fixed #872250: -l command line defined library
7290           files are scanned before standard library files
7291
7292 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7293
7294         * src/SDCCast.c (decorateType): fixed bug #874046
7295
7296 2004-01-09  Borut Razem <borut.razem AT siol.net>
7297
7298         * support/scripts/sdcc.nsi: remove previous installation
7299
7300 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7301
7302         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
7303         bytes for last interrupt vector (mcs51)
7304         * sdcc.spec: fixed typo
7305
7306 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7307
7308         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
7309         gen51Code): more efficient parameter receive for --model-large
7310         ("bug" #845294)
7311
7312 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7313
7314         * src/ds390/main.c,
7315         * src/z80/main.c: added missed needLinkerScript flags (more than
7316         one port structure defined in these file)
7317         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
7318         bug #795325
7319
7320 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
7321
7322         * src/SDCCmain.c: removed various references to DEFAULT_PORT
7323         * src/port.h: added flag needLinkerScript in port->linker
7324         structure to inform whether to create a .lnk file or not,
7325         * src/avr/main.c,
7326         * src/ds390/main.c,
7327         * src/hc08/main.c,
7328         * src/mcs51/main.c,
7329         * src/pic/main.c,
7330         * src/pic16/main.c,
7331         * src/xa51/main.c,
7332         * src/z80/main.c: changed appropriately to configure
7333         needLinkerScript flag
7334         * src/pic/gen.c,
7335         * src/pic16/gen.c (genAddrOf): fixed bug #863624
7336         * src/pic/glue.c: added variable udata_section_name to
7337         override default uninitialized data segment definition for
7338         devices only with SHAREBANK memory (reported from Erik Epetrich)
7339         * (pic14emitOverlay): modified to emit a commented overlay segment
7340         directive when no overlay data exist
7341         * (picglue): modified to emit uninitialized data segment
7342         according to udata_section_name
7343         * src/pic/main.c (_pic14_parseOptions): added command line
7344         options --udata-section-name=[name] to override default
7345         udata definition name
7346         * modified _linkCmd and _asmCmd to include compiler passed
7347         arguments via -W option
7348         * src/pic16/main.c: added $l in _asmCmd, changed extension for
7349         object file from '.rel' to '.o' in port->linker structure,
7350         changed size of fptr from 2 to 3 in port structure
7351
7352 2004-01-07  Borut Razem <borut.razem AT siol.net>
7353
7354         * support/scripts/sdcc.nsi: update PATH
7355         * support/scripts/sdcc.ico: craeted
7356
7357 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
7358
7359         * device/include/Makefile.in: fix install
7360         * doc/Makefile: fix install
7361
7362 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7363
7364         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
7365         in bug #860505
7366         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
7367         how the function variable allocation summary is displayed; also
7368         include information about variables allocated to the overlay
7369         segment
7370
7371 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7372
7373         * as/mcs51/lkmain.c: Help about -Y option
7374         * as/mcs51/lkarea.c: Fixed gcc warnings
7375
7376 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
7377
7378         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
7379         fixed warning
7380         * support/valdiag/tests/overflow.c: added
7381         * src/SDCCast.c (decorateType),
7382         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
7383         LEFT_OP (left shift)
7384
7385 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7386
7387         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
7388         (default behaviour).
7389
7390 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7391
7392         A python script to validate compiler diagnostic messages. It can be
7393         used to verify that sdcc complains about bad c source code and
7394         gives a good location of the error.
7395         * support/valdiag/Makefile,
7396         * support/valdiag/valdiag.py,
7397         * support/valdiag/tests/*
7398
7399 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7400
7401         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
7402         * src/SDCCsymt.c (newEnumType),
7403         * src/SDCCsymt.h
7404         * support/Util/SDCCerr.c,
7405         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
7406         enum related bugs.
7407         * support/regression/tests/enum.c: added test for enum values that
7408         require at least 2 bytes of storage.
7409
7410 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7411
7412         * src/common.h: added ifndef/define/endif macros
7413         around the header file.
7414         Bug reported from Jesus Calvino-Fraga
7415
7416 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
7417
7418         * sdcc.spec: updated
7419         * device/include/Makefile.in: don't install CVS directories
7420         * device/lib/Makefile.in: added removal of CVS directories after install
7421         * doc/Makefile: fixed install, added local_icons
7422         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
7423         * src/mcs51/gen.c (genRightShift): fixed bug #870788
7424         * src/ds390/gen.c (genRightShift): fixed bug #870788
7425         * src/SDCCast.c (decorateType): fixed bug #870781
7426
7427 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7428
7429         PIC16 port related changes:
7430         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
7431         added variable stackPos,
7432
7433         * gen.c: genCall, assignResultValue: added support for
7434         pushing/retrieving function parameters to/from stack,
7435         genFunction,genEndFunction: setup stack frame for the
7436         generated function,
7437         genAddrOf: will be changed according to bug 863624
7438
7439         * added files genutils.c and genutils.h which contain gen*
7440         debugged and optimised functions extracted from gen.c
7441
7442         * glue.c: added variable 'externs' which holds extern symbols,
7443         pic16emitRegularMap: is modified to properly handle relocatable
7444          symbols under the new scheme,
7445         pic16createInterruptVect: is modified
7446         pic16printPublics: is modified to emit 'global' assembler directives,
7447         added pic16_printExterns to print extern symbols,
7448         pic16glue: initializes stack/frame pointer in the beginning of
7449         the assembly output. Temporary hack, will be corrected later,
7450         because gplink yet does not support stack and SDCC does not
7451         yet support a type of crt0.o object to create the final binary.
7452
7453         * Removed many lines that contain 8051 legacy code.
7454         * The code is finally placed under a 'code' directive.
7455         * Added port specific options.
7456
7457         * _process_pragma: simplified since now we do not need *special*
7458         include file to define SFR registers. But a separate header
7459         will be needed. This will be developed later.
7460         * _pic16_parseOptions: added, parses port specific options:
7461         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
7462         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
7463         --preplace-udata-with=
7464
7465         * _pic16_setDefaultOptions: modified to initialize section names,
7466         but hack is temporarly out of order since it needs improvement.
7467         * _pic16_genAssemblerPreamble: configuration words are emitted by
7468         their address instead of their name. This part is incomplete and
7469         supports only the 18Fxx2 devices. Other devices will emit an error
7470         during assembly since they do not contain the same set of config
7471         registers
7472         * _pic16_genIVT: is modified,
7473
7474         * pcode.c: added definitions for some hardware registers that are needed
7475         for stack support
7476         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
7477         All PCI entries are updated. Now LFSR is supported.
7478         * Removed pic16_pciTRIS is mentioned by mdubuc in source
7479         * added pic16_newpCodeOpLit2 to support instructions with
7480         two literal arguments
7481         * pic16_pCode2str: corrected code that emits assembler instructions
7482         with two literal operands and those that have an access bit modifier
7483         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
7484         this fixes a bug which caused some labels to be lost, when an
7485         assembler directive was added, i.e. banksel,
7486         * pic16_FixRegisterBanking: improved logic that causes the insertion
7487         of bank switching,
7488         * InlineFunction: functions that are called once, are not any more
7489         inlined. This can be a port option in the future,
7490
7491         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
7492
7493         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
7494         hold the corresponding uninitialized symbols,
7495         * pic16_allocProcessorRegister: registers have explicit marked the
7496         accessBank field,
7497         * pic16_allocInternalRegister: registers are explicit marked as
7498         not used,
7499         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
7500         processing list, so bit registers were lost,
7501         *
7502
7503         * ralloc.h: added field 'accessBank' and original symbol operand
7504         in register definition,
7505         * removed the field isMapped from register definition,
7506
7507         ** Several functions have been removed from various sources:
7508         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
7509         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
7510         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
7511         pic16_assignRelocatableRegisters
7512
7513         ** others have been introduced:
7514         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
7515         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
7516
7517 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
7518
7519         * support/scripts/inc2h.pl: changed definition of BIT_AT
7520         to emit 'sbit at' instead of 'bit at'. This was a request.
7521
7522         PIC16 port related preliminary changes:
7523         * gen.c: prefixed function popRegFromString with
7524         pic16_ and all references to it corrected
7525         * pcode.c: all pic16_pc_* hardware registers prefixed
7526         with underscore (_),
7527         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
7528         * ralloc.c: newReg(): when register is REG_SFR then
7529         set address to rIdx,
7530         pic16_allocProcessorRegister(): marks register wasUsed=0
7531         pic16_writeUsedRegs(): added a call to assign processor
7532         registers via pic16_assignFixedRegisters
7533
7534 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7535
7536         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
7537         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
7538         variables in unused register banks.  Also the SSEG is placed
7539         wherever there is enough space for it, and IDATA can be anywhere
7540         in internal RAM.  For now compile using -Wl-Y[stack_size].
7541         The mem file is different for this option as well, since it
7542         makes no sense of talking about DSEG lenght.
7543
7544 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
7545
7546         * src/SDCClrange.c: fixed bug 869095 that caused segfault
7547         in certain cases, e.g. when ROM assignment, patch provided
7548         from Albert den Haan.
7549
7550 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
7551
7552         Many signedness and type propagation fixes:
7553         * src/SDCCicode.c: made geniCodeCast() static
7554         replaced SPEC_ by IS_ (cosmetic)
7555         (operandOperation): fixed div and mod operation
7556         (usualBinaryConversions): added support for promotion of char
7557         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
7558         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
7559         (geniCodeAdd): an array index will stay unsigned, even if promoted
7560         from char to int
7561         (geniCodeArray): ditto
7562         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
7563         * src/SDCCsymt.c (computeType): added more support for char;
7564         promotion of char is selectable by promoteCharToInt, fixed signedness
7565         for all cases
7566         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7567         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7568         * src/SDCCval (val*): replaced signedness calculation by
7569         computeType()
7570         rearranged if-branches (cosmetic)
7571         (valShift): added warning W_SHIFT_CHANGED
7572         (valCompare): fixed problem with different types
7573         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
7574         * support/regression/tests/literalop.c: added many cases
7575         * support/regression/tests/ast_constant_folding.c: changed finally to
7576         'unsigned int'
7577         * .version: new year, new version: 2.3.7
7578         * src/SDCCmain.c (main): applied patch #866468
7579         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
7580         provided by Scott Bronson
7581         * doc/sdccman.lyx: updated documentation for sdcdb
7582         updated and added chapter tips
7583
7584 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7585
7586         * src/SDCCsymt.h: missing from yesterday's commits
7587
7588 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7589
7590         * src/SDCC.y (struct_or_union_specifier),
7591         * support/Util/SDCCerr.c,
7592         * support/Util/SDCCerr.h: verify that struct & union tags are used
7593         as declared.
7594
7595 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7596
7597         * src/SDCCglobl.h: missing from yesterday's commits
7598
7599 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7600
7601         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
7602         sft_attributes, struct_declaration, parameter_declaration,
7603         type_name, start_block, declaration_list),
7604         * src/SDCC.lex (check_type): support redefinition of typedef names
7605
7606 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7607
7608         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
7609         aligned xdata arrays. Erik helped me with the if clause.
7610
7611 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7612
7613         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
7614         warning
7615
7616 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7617
7618         * src/SDCCast.h,
7619         * src/SDCCast.c (newAst_),
7620         * src/SDCCicode.h,
7621         * src/SDCCicode.c (ast2iCode, newiCode),
7622         * src/SDCCglobl.h,
7623         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
7624         expr, statement, expression_statement, selection_statement,
7625         iteration_statement, expr_opt, jump_statement): foundation for tracking
7626         sequence points
7627         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
7628         point code too)
7629
7630 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7631
7632         * support/Util/SDCCerr.c,
7633         * src/SDCCast.h,
7634         * src/SDCCast.c (createCase, createDefault, decorateType),
7635         * src/SDCClabel.c (labelUnreach),
7636         * src/SDCC.y (labeled_statement, jump_statement): More improvements
7637         to error messages.
7638         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
7639         (with thanks to Stas Sergeev)
7640         * device/include/time.h,
7641         * device/lib/time.c (CheckTime): suppress unreachable code warning
7642
7643 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7644
7645         * src/SDCCast.c (createIvalCharPtr),
7646         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
7647         bug #753752)
7648         * support/regression/tests/nullstring.c: tests for these two bugs
7649
7650 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7651
7652         * support/Util/SDCCerr.h,
7653         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
7654         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
7655         about storage class and 'at' used inside struct or union
7656         * src/SDCCBBlock.c (iCodeFromeBBlock),
7657         * src/SDCCcse.c (ifxOptimize),
7658         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
7659         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
7660         printIval, emitStaticSeg, emitOverlay),
7661         * src/SDCClabel.c (deleteIfx),
7662         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
7663         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
7664         gatherAutoInit, processParms),
7665         * support/Util/SDCCerr.h,
7666         * support/Util/SDCCerr.c (werrorfl): Support for better error location
7667         reporting for post-parse errors.
7668
7669 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7670
7671         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
7672         implicit casts via union; they don't work on big endian systems
7673         (possible fix for bug #861138)
7674
7675 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7676
7677         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
7678         * src/mcs51/main.c: fixed the fix for bug #737001
7679
7680 2003-12-15  Borut Razem <borut.razem AT siol.net>
7681
7682         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
7683
7684 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7685
7686         * support/makebin/makebin.c: put output in binary mode
7687
7688 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7689
7690         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
7691         xdata and data memory on startup. Set the environment variable
7692         SDCC_NOGENRAMCLEAR to disable this.
7693         * src/mcs51/peephole.def,
7694         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
7695         (allows non-interrupt and interrupt code to safely compete for a resource
7696         without the non-interrupt code having to disable interrupts)
7697
7698 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7699
7700         * src/SDCCicode.c (geniCodeAdd),
7701         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
7702         with valFromType if type might be a pointer and host is big endian).
7703         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
7704         types, not just integer types.
7705         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
7706         multiply defined with mismatching "at" address.
7707
7708 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7709
7710         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
7711         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
7712         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
7713         with embedded nulls (fixed bug #753752)
7714
7715 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7716
7717         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
7718         Apparently this did not see much testing (endless loop)
7719
7720 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7721
7722         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
7723
7724 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7725
7726         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
7727         gracefully handle NULL memmap pointers
7728
7729 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7730
7731         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
7732         instead of deleting the iCode when an operand is volatile
7733         * src/z80/gen.c (genDummyRead),
7734         * src/mcs51/gen.c (genDummyRead),
7735         * src/ds390/gen.c (genDummyRead),
7736         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
7737         not just IC_RIGHT
7738         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
7739         * src/SDCC.y: fixed bug #850420
7740
7741 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7742
7743         Applied z80 i/o port patch from Peter Townson and fixed some operators
7744         to better handle operands in A register.
7745         * device/include/z180.h
7746         * src/SDCC.y
7747         * src/SDCCglue.c
7748         * src/z80/gen.c
7749         * src/z80/gen.h
7750         * src/z80/main.c
7751         * src/z80/peeph-z80.def
7752         * src/z80/peeph.def
7753         * src/z80/z80.h
7754
7755 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7756
7757         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
7758
7759 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7760
7761         * device/lib/hc08/_mullong.c: Removed extra #endif
7762
7763 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7764
7765         * sim/ucsim/hc08.src/inst.cc,
7766         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
7767         carries from x to h
7768         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
7769         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
7770         * device/include/stdarg.h: fixed varargs for hc08
7771         * device/lib/Makefile.in,
7772         * device/lib/hc08/Makefile,
7773         * device/lib/hc08/_mulint.c,
7774         * device/lib/hc08/_mullong.c: fixed some endian problems
7775
7776 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7777
7778         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
7779         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
7780         * device/lib/_gptrget.c,
7781         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
7782
7783 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7784
7785         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
7786         * src/SDCCast.c (astErrors): fixed bug #846007
7787         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
7788
7789 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7790
7791         * src/SDCCast.c (decorateType): disabled a transformation I added in
7792         revision 1.188 (access to fields of a structure at an absolute address);
7793         it breaks with bitfields, extern declarations, and gcse analysis.
7794         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
7795         could be assigned through a pointer, so don't complain.
7796         * src/SDCCast.c (astErrors),
7797         * src/SDCCast.h,
7798         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
7799
7800 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
7801
7802         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
7803         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
7804         output of __config directives, since gpasm now supports them
7805         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
7806         pre-processor macro, i.e. -DMCU=p18f452
7807         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
7808         and modified to handle 'cast' icode similarly to '=' icode
7809         * src/pic16/device.h (typedef struct PIC_device): added field
7810         'extMIface' to indicate that chip has external memory interface
7811         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
7812         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
7813         18F8720
7814
7815 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7816
7817         * src/SDCC.y (pointer): fixed bug #846006
7818         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
7819         * src/SDCCast.c (decorateType): fixed bug #846009
7820         * src/ds390/peeph.def,
7821         * src/ds390/gen.c (genAnd, genOr),
7822         * src/mcs51/peeph.def,
7823         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
7824
7825 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7826
7827         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
7828         * src/SDCCdflow.c
7829         * src/SDCCcse.c
7830         * src/SDCCcse.h
7831         * src/SDCCBBlock.h
7832         * src/SDCCBBlock.c
7833
7834 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
7835
7836         fixed bug #845089
7837         * src/SDCCbitv.h,
7838         * src/SDCCbitv.c: added function to free a bitvector
7839         * src/SDCClrange.h,
7840         * src/SDCClrange.c: added function to recompute the liveranges
7841         * src/avr/ralloc.c,
7842         * src/ds390/ralloc.c,
7843         * src/hc08/ralloc.c,
7844         * src/mcs51/ralloc.c,
7845         * src/pic/ralloc.c,
7846         * src/pic16/ralloc.c,
7847         * src/xa51/ralloc.c,
7848         * src/z80/ralloc.c: recompute the liveranges after register packing
7849
7850 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
7851
7852         * src/SDCCloop.c (newInduction): fixed bug #845630
7853
7854 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7855
7856         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
7857         inadvertantly left behind from my 2003-11-12 change
7858
7859 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7860
7861         Updated headers I neglected to commit yesterday.
7862         * src/SDCClrange.h,
7863         * src/SDCCicode.h
7864
7865 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7866
7867         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
7868         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
7869         * src/SDCCopt.c (eBBlockFromiCode),
7870         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
7871         the creation of the key hash table from the sequencing so it can be used
7872         earlier (for some GCSE bug fixes still pending)
7873
7874 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7875
7876         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
7877         * support/regression/tests/addsub.c: testing genPlus shortcut
7878
7879 2003-11-15  Borut Razem <borut.razem AT siol.net>
7880
7881         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
7882
7883 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7884
7885         * src/SDCCcse.c (cseBBlock): fixed bug #527779
7886         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
7887         ordering is immaterial.
7888         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
7889
7890 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7891
7892         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
7893         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
7894         (SIGSEV) of bug #840381
7895         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
7896         unlink new file before rename if new and old filenames are the same)
7897
7898 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7899
7900         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
7901         uninitialized variables) for the mcs51. Set environment variable
7902         SDCC_GENRAMCLEAR to test.
7903         xdata initialization slightly shorter
7904
7905 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7906
7907         * src/SDCCsymt.h,
7908         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
7909         #838241 & 780691 (basicly the same bug)
7910         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
7911         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
7912
7913 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
7914
7915         * src/SDCCmain.c (linkEdit): "fix" #834252
7916
7917 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7918
7919         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
7920         * src/SDCCast.h,
7921         * src/SDCC.y: fixed bug #819403
7922
7923 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7924
7925         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
7926         the reentrant attribute.
7927         * src/hc08/gen.c (genPackBits): added missing stack readjustment
7928         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
7929         simulation
7930         * src/SDCCast.c (decorateType): fixed bug with storage class not being
7931         updated during pointer dereference; f.e. ~(((char *)1)*) was being
7932         erroneously reduced to a literal.
7933         * src/hc08/ralloc.c (packRegisters, rematStr),
7934         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
7935         some cases
7936
7937 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7938
7939         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
7940         * doc/sdccman.lyx: changed from 'article' to 'book'
7941         * doc/Makefile: readded test_suite_spec and cdbfileformat
7942
7943 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
7944
7945         * device/include/stdlib.h: include malloc.h to comply with ANSI
7946         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
7947
7948 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7949
7950         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
7951         * doc/clean.mk: also remove *.out files
7952         * doc/sdccman.lyx: some additions, larger top/bottom margins
7953
7954 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7955
7956         * src/SDCC.y: fixed bug #837365
7957         * support/regression/tests/bitopcse.c
7958         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
7959         a symbol (might be valop instead)
7960         * device/lib/Makefile.in: added errno.c to HC08SOURCES
7961         * device/lib/clean.mk: added hc08 to the cleaning list
7962
7963 2003-11-04  Borut Razem <borut.razem AT siol.net>
7964
7965         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
7966           made 2003-11-04
7967         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7968           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
7969           malloc is declared in standard stdlib.h
7970
7971 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7972
7973         * device/lib/hc08/Makefile: need to clean .rel not .o files
7974         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
7975
7976 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7977
7978         * src/port.h,
7979         * src/hc08/main.c,
7980         * src/mcs51/main.c,
7981         * src/ds390/main.c,
7982         * src/z80/main.c,
7983         * src/avr/main.c,
7984         * src/pic/main.c,
7985         * src/pic16/main.c,
7986         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
7987         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
7988         tests (which uses the port's oclsExpense function)
7989         * src/SDCC.y,
7990         * src/SDCCast.c,
7991         * src/SDCCicode.c,
7992         * src/hc08/gen.c,
7993         * src/ds390/gen.c,
7994         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
7995
7996 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7997
7998         * src/SDCCcse.c (ifxOptimize),
7999         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
8000         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
8001         deleting the IFX iCode.
8002         * src/hc08/ralloc.c: reduced unneeded slocs
8003         * src/hc08/gen.c: fixed bug in asmopToBoolean
8004
8005 2003-11-04  Borut Razem <borut.razem AT siol.net>
8006
8007         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
8008           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
8009           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
8010           transferred to configure
8011
8012 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
8013
8014         Use headers defined in the C[++] standards:
8015         * sim/ucsim/gui.src/serio.src/fileio.cc
8016         * sim/ucsim/gui.src/serio.src/frontend.cc
8017         * sim/ucsim/gui.src/serio.src/main.cc
8018         * sim/ucsim/gui.src/serio.src/posix_signal.cc
8019         * support/Util/NewAlloc.c
8020         * as/hc08/lklibr.c
8021         * as/mcs51/lklibr.c
8022         * as/z80/aslist.c
8023         * as/z80/assym.c
8024
8025 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8026
8027         * Added MSVC projects for hc08 assembler and linker:
8028         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
8029         /as/hc08/link_hc08.dsp
8030
8031 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
8032
8033         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
8034
8035 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
8036
8037         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
8038
8039 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8040
8041         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
8042
8043 2003-10-31  Borut Razem <borut.razem AT siol.net>
8044
8045         * support/cpp2/cpplib.h,
8046           support/cpp2/cpplib.c,
8047           support/cpp2/cpplex.c,
8048           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
8049           to switch _asm block preprocessing on / off. Default is
8050           #pragma preproc_asm +
8051
8052 2003-10-31  Borut Razem <borut.razem AT siol.net>
8053
8054         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
8055           when outputting comment blocks (when executed with -C option) and
8056           _asm (SDCPP specific) blocks
8057
8058 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8059
8060         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
8061
8062 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
8063
8064         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
8065
8066 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
8067
8068         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
8069         * src/SDCCast.c (decorateType): fixed bug #832664
8070
8071 2003-10-31  Borut Razem <borut.razem AT siol.net>
8072
8073         * support\cpp2\cpplex.c: fixed for SDCPP:
8074           comments(when executed with -C option) and _asm blocks
8075           were included even if they where in skipped #if block.
8076           Applied solution from GCC cpp 3.3.2
8077
8078 2003-10-31  Borut Razem <borut.razem AT siol.net>
8079
8080         * src/SDCC.lex: sdcc now understands both formats:
8081           '# <line_number> <file_name>' and
8082           '#line <line_number> <file_name>'
8083         * support/cpp2/cppmain.c: sdcpp now generates the standard
8084           '# <line_number> <file_name>' instead of former
8085           '#line <line_number> <file_name>'
8086
8087 2003-10-30  Borut Razem <borut.razem AT siol.net>
8088
8089         * support/cpp2/cpphash.h,
8090         * support/cpp2/cpplib.h
8091         * support/cpp2/cpplex.c,
8092         * support/cpp2/cppmain.c,
8093         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
8094
8095 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8096
8097         Fixed a number of problems revealed by bug #827883.
8098         * src/SDCCloop.c (loopInvariants): Spill location of the
8099         result operand should be recomputed if extracted from
8100         a loop. Also, don't extract assignments of an iTemp
8101         from a literal.
8102         * src/SDCCast.c (isConformingBody): loop reversal should
8103         not occur if the control variable is involved with a
8104         relational operator.
8105
8106 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
8107
8108         * .version: bumped to 2.3.6 to reflect the big improvements
8109         made by Erik and Klaus. Thanks!
8110
8111 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
8112
8113         Replaced the livrange code.
8114         * src/SDCClrange.c: added new LR code
8115         * src/SDCCloop.c,
8116         * src/SDCCBBlock.h: removed remainig parts from old LR code
8117         * src/ds390/ralloc.c,
8118         * src/ds390/gen.c: minor fixes to make it work with new code
8119
8120 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8121
8122         * as/hc08/asm.h,
8123         * as/hc08/lkrloc.c,
8124         * src/hc08/gen.c,
8125         * src/hc08/ralloc.c: Fix various warnings related to the hc08
8126         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
8127         (tweaked fix for bug #818696)
8128
8129 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8130
8131         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
8132
8133 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8134
8135         * src/SDCCmain.c,
8136         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
8137         * src/mcs51/gen.c (gencjneshort),
8138         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
8139         more efficient (per Scott Bronson's suggestion)
8140
8141 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8142
8143         Extended the semantics of the critical keyword to include
8144         individual statements. See RFE #827755 and #799831
8145         * src/SDCC.y
8146         * src/SDCCicode.c
8147         * src/SDCCopt.c
8148         * src/SDCCast.c
8149         * support/Util/SDCCerr.c
8150         * support/Util/SDCCerr.h
8151         * src/mcs51/gen.c
8152         * src/ds390/gen.c
8153         * src/hc08/gen.c
8154
8155 2003-10-19  Borut Razem <borut.razem AT siol.net>
8156
8157         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
8158
8159 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8160
8161         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
8162         Fixed bug #818696
8163         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
8164         and predecrement operand is displayed
8165
8166 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
8167
8168         * src/SDCCval.c (valMinus): fixed bug #826041
8169
8170 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8171
8172         Some hc08 related updates that I missed earlier
8173         * sim/ucsim/stypes.h
8174         * support/regression/ports/hc08/spec.mk
8175
8176 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8177
8178         New target "hc08" for the Motorola 68hc08 family of micros
8179
8180         * configure
8181         * configure.in
8182         * Makefile
8183         * src/hc08/*
8184         * src/SDCCmain.c
8185         * src/port.h
8186         * sim/ucsim/hc08.src/*
8187         * sim/ucsim/configure.in
8188         * src/ucsim/configure
8189         * sim/ucsim/packages_in.mk
8190         * as/hc08/*
8191         * as/Makefile
8192         * device/include/mc68hc908qy.h
8193         * device/lib/hc08/*
8194         * device/lib/Makefile.in
8195         * support/regression/ports/hc08/*
8196         * support/regression/Makefile
8197
8198 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8199
8200         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
8201         regression test
8202         * src/ds390/gen.c (genCast): fixed bug #821957
8203
8204 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
8205
8206         * device/lib/logf.c: "fixed" overlay bug
8207         * support/regression/ports/host/spec.mk: added m library
8208         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
8209         * support/regression/tests/float_trans: added (for Eric)
8210
8211 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
8212
8213         * src/mcs51/gen.c (genCpl): fixed bug
8214         http://sf.net/mailarchive/message.php?msg_id=6263915
8215
8216 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
8217
8218         * src/SDCCast.c (decorateType): added extended constant folding
8219         * src/SDCCsymt.c (computeType): cleanup
8220         * src/SDCCval.c (valShift): minor optimization
8221         * support/regression/tests/ast_constant_folding.c: added
8222
8223 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8224
8225         * src/SDCCmain.c: removed some unintended changes
8226
8227 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8228
8229         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
8230         * src/z80/gen.c: fixed part of bug #817589
8231         * src/SDCCsymt.c (checkFunction): fixed bug #817895
8232
8233 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
8234
8235         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
8236         * src/SDCCcflow.c
8237         * src/SDCCcse.c
8238         * src/SDCCdflow.c
8239         * src/SDCClabel.c
8240         * src/SDCClrange.c
8241         * src/SDCCmem.c
8242         * src/SDCCopt.c
8243         * src/SDCCpeeph.c
8244         * src/SDCCset.c
8245         * src/avr/ralloc.c
8246         * src/ds390/ralloc.c
8247         * src/izt/ralloc.c
8248         * src/mcs51/ralloc.c
8249         * src/pic/ralloc.c
8250         * src/pic16/ralloc.c
8251         * src/xa51/ralloc.c
8252         * src/z80/ralloc.c
8253         * src/z80/gen.c: removed unused label "release:"
8254
8255 2003-10-06  Borut Razem <borut.razem AT siol.net>
8256
8257         * src/SDCC.lex: removed definition of unused variables
8258           save_optimize and save_options
8259
8260 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
8261
8262         * clean.mk: removed '=' in "-maxdepth=1"
8263         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
8264         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
8265
8266 2003-10-06  Borut Razem <borut.razem AT siol.net>
8267
8268         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
8269           my_unput() replaced by unput()
8270
8271 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
8272
8273         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
8274         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
8275         type-punned pointer will break strict-aliasing rules"
8276         Old LR behaviour is again default; Klaus' LR can be choosen by
8277         defining the environment variable LRKLAUS
8278         * src/SDCCBBlock.h
8279         * src/SDCCloop.c
8280         * src/SDCClrange.c
8281         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
8282         * clean.mk: fixed removal of files in bin/CVS/
8283         * device/lib/clean.mk: fixed removal of directories small and large
8284         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
8285         * src/SDCCicode.c,
8286         * src/SDCCval.c: removed superflous test for pedantic
8287
8288 2003-10-05  Borut Razem <borut.razem AT siol.net>
8289
8290         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
8291           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
8292           message "unmatched #pragma SAVE and #pragma RESTORE"
8293
8294 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8295
8296         * doc/sdccman.lyx: various additions and updates (interrupts, inline
8297           assembly, critical functions, atomic, nojtbound)
8298
8299 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
8300
8301         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
8302         * src/SDCCBBlock.h
8303         * src/SDCCloop.c
8304         * src/SDCCloop.h
8305         * src/SDCClrange.c
8306
8307 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8308
8309         * src/z80/gen.h,
8310         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8311         * src/mcs51/gen.h
8312         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8313         * src/ds390/gen.h
8314         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8315         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
8316         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
8317
8318 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8319
8320         * src/z80/gen.c (genRet): fixed bug #524753
8321         * src/z80/gen.c (genCast): fixed internal error on cast from
8322         pointer to long
8323         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
8324         fix for bug #477835 to the z80
8325         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
8326         for tracking iCodes in the peephole optimizer for z80
8327
8328 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8329
8330         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
8331         the other part of bug #814548
8332         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
8333
8334 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
8335
8336         * src/SDCCcse.c: fixed part of bug #814548
8337
8338 2003-09-28  Borut Razem <borut.razem AT siol.net>
8339
8340         * src/asm.c: rewrite of printILine() to use temporary file instead
8341           a pipe
8342         * src/xa51/main.c: commented out declaration of int rewinds
8343
8344 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8345
8346         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
8347
8348 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8349
8350         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
8351         * src/asm.c (printILine): Fixed bug #811015
8352
8353 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8354
8355         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
8356         freeing.
8357
8358 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8359
8360         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
8361         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
8362         to correctly handle general case of AOP_PAIRPTR
8363         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
8364
8365 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8366
8367         * src/mcs51/ralloc.c (fillGaps),
8368         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
8369         register positioning bug)
8370
8371 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
8372
8373         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
8374
8375 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8376
8377         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
8378         genCodePointerGet, genGenPointerGet, genFarPointerSet,
8379         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
8380         (ralloc doesn't intentionally do this now, but perhaps later)
8381         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
8382         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
8383         register positioning bugs (Fixed bug #762602 and #795325)
8384         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
8385         (Fixed bug #808779)
8386         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
8387         lines that --i-code-in-asm generates
8388
8389 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8390
8391         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
8392         trying to fclose a FILE* that was already closed.
8393
8394 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8395
8396         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
8397         of const struct should be treated as if const themselves)
8398
8399 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
8400
8401         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
8402
8403 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8404
8405         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
8406         Unix (/n) and DOS (/r/n) line terminations.
8407
8408 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8409
8410         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
8411         bug #613775
8412
8413 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8414
8415         * src/mcs51/gen.c (genFunction, genEndFunction),
8416         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
8417         and restore of EA so that stack offsets to parameters are
8418         correct when using both critical and reentrant/stack-auto.
8419         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
8420         size (can be triggered in error if sloc is shared between
8421         different sized objects)
8422         * device/include/float.h: fixed macros to explicitly use
8423         unsigned long where needed
8424
8425 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
8426
8427         Feature req. 799831: added code to allow nesting of critical functions
8428         * src/mcs51/gen.c (genFunction, genEndFunction)
8429         * src/ds390/gen.c (genFunction, genEndFunction)
8430
8431 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8432
8433         * src/SDCCsymt.c (sclsFromPtr),
8434         * src/SDCCsymt.h,
8435         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
8436         support for standard C idiom of memory mapped variables; for
8437         example, *((xdata int*)0x1234) = 1 is now internally equivalent
8438         to xdata int at 0x1234 tempvar = 1.
8439         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
8440         provided by Akiya ISHIDA
8441
8442 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
8443
8444         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
8445         * src/SDCCval.c (constVal): added reduction from int to char
8446         * src/SDCCval.c (valMult, valDiv): fixed sign handling
8447         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
8448         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
8449         to ignore the sign
8450         * support/regression/tests/shifts.c: fixed
8451
8452 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8453
8454         * src/z80/gen.c (genXor): Fixed bug #805445
8455
8456 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8457
8458         Fixed bug #621531 (const & volatile confusion in the type chain).
8459         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
8460         refer to the const or volatile state of the pointer itself.
8461
8462         * src/SDCCast.c
8463         * src/SDCCglue.c
8464         * src/SDCCicode.c
8465         * src/SDCCsymt.c
8466         * src/SDCCval.c
8467         * src/SDCC.y
8468         * src/SDCCsymt.h
8469         * src/pic/gen.c
8470         * src/pic/ralloc.c
8471         * src/pic16/gen.c
8472         * src/pic16/ralloc.c
8473         * support/regression/tests/const.c
8474
8475 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8476
8477         When checking for duplicated modules, use absolute paths
8478         instead of relative paths.  Files changed:
8479
8480         * as/mcs51/lklib.c
8481         * link/z80/lklib.c
8482
8483 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8484
8485         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
8486
8487 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8488
8489         * device/include/string.h: added size_t typedef, changed
8490         prototypes to use size_t, eliminated separate reentrant and
8491         non-reentrant declarations, added _memmove declaration
8492         * device/lib/_memcpy.c: changed to use size_t instead of int,
8493         changed /4 to >>2 to avoid division library call
8494         * device/lib/_memcmp.c,
8495         * device/lib/_memset.c,
8496         * device/lib/_strncat.c,
8497         * device/lib/_strncpy.c,
8498         * device/lib/_strncmp.c: changed to use size_t instead of int
8499         * device/lib/_memmove.c: new file (fixed bug #772294)
8500         * device/lib/Makefile.in: added _memmove.c
8501         * device/lib/z80/asm_strings.s: fixed bug #772290
8502         * support/regression/tests/bitfields.c: attempt to fix host assertion
8503         failure on amd64-unknown-linux2.2
8504
8505 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8506
8507         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
8508         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
8509         * as/z80/asmain.c (main): fixed bug #801766
8510
8511 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
8512
8513         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
8514         compilers
8515
8516 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8517
8518         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
8519         reported in bug #800609
8520
8521 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
8522
8523         * Top header beautifications in src/pic16 directory:
8524           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
8525           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
8526           pcoderegs.h, ralloc.c, ralloc.h
8527         * main.c: added top header and GPL license notice
8528         * pcode.c: fixed the if-conditional warning
8529
8530 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
8531
8532         * device/lib/_mullong.c: replaced int by short for gcc
8533
8534 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8535
8536         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
8537         and JUMPTABLE iCodes properly now (worked by accident before)
8538         * src/mcs51/gen.c (leftRightUseAcc),
8539         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
8540         iCode properly now. Use getSize instead of nRegs since a & b
8541         aren't part of the nRegs tally.
8542
8543 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
8544
8545         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
8546         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
8547           before instructions that use the _STATUS register
8548
8549 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
8550
8551         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
8552         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
8553         fetching of the pointer
8554         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
8555         copied from genNearPointerSet()
8556         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
8557         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
8558         If they pop r0/r1 they must be called in the opposite order than aopOp().
8559         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
8560         (resp. --stack-auto), prepared for --xstack
8561
8562 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8563
8564         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
8565
8566 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8567
8568         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
8569         these ports have their own __sdcc_external_start()
8570
8571 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
8572
8573         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8574         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
8575         type for bits was changed. It resulted in bit variables becoming
8576         global, which is not permitted in PIC 14 assembly output.
8577
8578 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8579
8580         * doc/sdccman.lyx: various additions and updates. Rearranged sections
8581
8582 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8583
8584         Z80 and MCS51 linkers complaint if a public symbol is defined
8585         in more than one library module:
8586
8587         * as/mcs51/lklib.c
8588         * link/z80/lklib.c
8589         * as/mcs51/Makefile.in
8590
8591 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8592
8593         A few small changes that speed up the peephole optimizer.
8594
8595         * src/SDCCpeeph.c
8596
8597 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8598
8599         Try to make the peephole optimizer smarter by maintaining
8600         an association between the assembly source code and the
8601         iCodes that originated them. Put this information to use
8602         with a new peephole rule condition "notVolatile" so that
8603         the rules can be aggressive yet still safe.
8604
8605         * src/SDCCpeeph.c
8606         * src/SDCCpeeph.h
8607         * src/mcs51/gen.c
8608         * src/mcs51/peeph.def
8609
8610 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8611
8612         Fixed bug #741761
8613
8614         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
8615         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
8616         if the left or right operand symbols have the accuse flag set.
8617
8618 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8619
8620         Changed the type of the result of the ! (NOT) operator to char;
8621         previously it returned the same type as the source. This allows
8622         us to eliminate all the genFloatNot functions (all of its target
8623         implementations were very buggy) since !float can use the same
8624         code as !long now.
8625
8626         * src/SDCCicode.c (ast2iCode): ! returns char
8627         * src/mcs51/gen.c (genNot, genNotFloat),
8628         * src/ds390/gen.c (genNot, genNotFloat),
8629         * src/z80/gen.c (genNot, genNotFloat),
8630         * src/pic/gen.c (genNot, genNotFloat),
8631         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
8632
8633 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
8634
8635         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8636         1. Interrupt would not compile properly. Ensure PCLATH register is saved
8637            during interrupts. Ensure WSAVE is located at a shared bank address.
8638         2. Fixed page selection in some places
8639         3. Fixed BTFSS/C to where necessary use registers directly and not simply
8640            the registers name strings.
8641         4. Fixed "signed / unsigned compare" compiler warnings.
8642         5. The PIC port manages its own allocation of the general purpose
8643            registers, but makes no attempt to reuse them. As a result when
8644            compiling it soon runs out of general purpose registers. Some
8645            additional code was added to the files pcode.c and device.c to walk
8646            through the function call tree and rename the registers so that they
8647            get reused.
8648
8649         * src/pic/device.c
8650         * src/pic/gen.c
8651         * src/pic/glue.c
8652         * src/pic/pcode.c
8653         * src/pic/pcode.h
8654         * src/pic/ralloc.c
8655         * src/pic/ralloc.h
8656         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
8657         genPlus() & genMinus() when the result is the same as left or right
8658
8659 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8660
8661         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
8662
8663 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8664
8665         Made bitfield a distinct type from bit so that bitfields
8666         convert as per ANSI C and bits retain their traditional
8667         boolean style behaviour. Implemented bitfield support in
8668         the z80 port.
8669
8670         * src/SDCCsymt.h,
8671         * src/SDCCsymt.c,
8672         * src/SDCCast.c,
8673         * src/cdbFile.c,
8674         * src/mcs51/gen.c,
8675         * src/ds390/gen.c: bit v bitfield split
8676         * src/z80/gen.c: New support for bitfields
8677         * support/regression/tests/bitfields.c: reenabled z80,
8678         added more tests
8679
8680 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8681
8682         Rules 246.x, 247.x relate to bitfields, the others speed up
8683         access to xdata mapped I/O devices.
8684
8685         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
8686
8687 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8688
8689         Cleaned up genPackBits and genUnpackBits and added two helper
8690         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
8691         for literal assignments in genPackBits (thanks to Frieder for
8692         reminding me).
8693
8694         * src/mcs51/gen.c
8695         * src/ds390/gen.c
8696
8697 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8698
8699         Fixed bug #748310 (pointer to function type mishandled when the
8700         function name is omitted). Also fixed a SIGSEGV when a function
8701         attribute (reentrant, etc) is used on a non-function or on a
8702         function but misplaced before the parameter list.
8703
8704         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
8705         bug #748310
8706         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
8707         * support/Util/SDCCerr.h,
8708         * support/Util/SDCCerr.c: Added func attr misuse error msg
8709
8710 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
8711
8712         Fixed bug #787649 by anonymous
8713         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
8714         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
8715
8716 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8717
8718         Fixed numerous bitfield problems.
8719
8720         * src/SDCC.y: More bitfield related error checking
8721         * src/SDCCsymt.h,
8722         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
8723         * support/Util/SDCCerr.h,
8724         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
8725         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
8726         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
8727         * support/regression/tests/bitfields.c: tests added
8728
8729 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8730
8731         Made the constant following the "interrupt" keyword optional. If
8732         omitted, the function will not automatically be given an entry
8733         in the interrupt vector table (similar to #pragma NOIV, but
8734         less syntacticly kludgy). The interrupt number is also now
8735         range checked. Also fixed a bug in the high order bit example
8736         in the manual.
8737
8738         * src/SDCC.y
8739         * src/SDCCmem.c
8740         * src/SDCCglue.c
8741         * src/SDCCsymt.h
8742         * support/Util/SDCCerr.c
8743         * support/Util/SDCCerr.h
8744         * doc/sdccman.lyx
8745
8746 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
8747
8748         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
8749         * src/SDCCicode.c (operandOperation): rewritten some ops
8750         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
8751         * src/SDCCsymt.c (computeType): literals are handled the same way as any
8752         other type
8753         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
8754         be re-activated by defining REDUCE_LITERALS)
8755         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
8756         unsigned, but are signed by default
8757         * src/SDCCval.c (constVal): rearranged
8758         * src/SDCCval.c (valMod): preliminary fix
8759         * src/SDCCval.c (valCastLiteral): use TYPE_* types
8760         * support/regression/literalop.c: added, work in progress
8761
8762 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8763
8764         Generate warnings for useless declarations like "char data;"
8765         that don't do what new users expect.
8766
8767         * src/SDCC.y
8768         * support/Util/SDCCerr.h
8769         * support/Util/SDCCerr.c
8770
8771 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
8772
8773         * src/SDCCval.c (valMult): fix overflow detection of negative int
8774
8775 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8776
8777         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
8778
8779         Changes to support big endian targets:
8780
8781         * src/ports.h
8782         * src/SDCCglue.c
8783         * src/avr/main.c
8784         * src/ds390/main.c
8785         * src/izt/i186.c
8786         * src/mcs51/main.c
8787         * src/pic/main.c
8788         * src/pic16/main.c
8789         * src/xa51/main.c
8790         * src/z80/main.c
8791
8792 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
8793
8794         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
8795         * device/lib/time.c: fixed warning "integer overflow in expression"
8796
8797 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
8798
8799         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
8800         * src/SDCCval.c (constVal): changed default to signed; hex and octal
8801         constants are unsigned; added recognition of "u" flag for unsigned
8802         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
8803         * src/SDCCval.c (valDiv, valMod): fixed signdness
8804         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
8805         signedness of modulo, left and right shift
8806         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
8807         * support/Util/SDCCerr.h: added warning W_INT_OVL
8808         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
8809         * src/SDCCast.c (ast_print): improved output of constants
8810
8811 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8812
8813         Fixed some warnings when building with MSVC:
8814
8815         * as\mcs51\asdata.c
8816         * as\z80\asdata.c
8817         * as\mcs51\asm.h
8818         * as\z80\asm.h
8819         * link\z80\aslink.h
8820         * link\z80\lkdata.c
8821         * link\z80\lkeval.c
8822         * link\z80\lkgb.c
8823         * link\z80\lkihx.c
8824         * link\z80\lks19.c
8825         * link\z80\lksym.c
8826         * support\cpp2\cpplib.c
8827         * src\ds390\gen.c
8828         * src\mcs51\gen.c
8829
8830 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
8831
8832         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
8833
8834 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8835
8836         * support\librarian\clean.mk: Do not remove Makefile.
8837         * support\librarian\Makefile: added.
8838
8839 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8840
8841         Added librarian to MSVC build:
8842         * all.dsp
8843         * sdcc.dsw
8844         * support\librarian\librarian.dsp
8845
8846         'configure' not needed for librarian, removed:
8847         * support\librarian\configure
8848         * support\librarian\configure.in
8849         * support\librarian\config_in.h
8850         * support\librarian\Makefile.in
8851
8852         Hopefully these ones built the librarian and the rest of sdcc properly:
8853         * Makefile
8854         * Makefile.common.in
8855
8856         Messed up 'configure', so revert to previous version:
8857         * configure
8858         * configure.in
8859
8860 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
8861
8862         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
8863         there, while the mantissa of a double is "only" 53 bits wide.
8864
8865 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8866
8867         Adding sdcclib to the build.  MSVC project coming soon.
8868         Files added/changed:
8869
8870         * support\librarian\clean.mk
8871         * support\librarian\configure
8872         * support\librarian\configure.in
8873         * support\librarian\config_in.h
8874         * support\librarian\Makefile.bcc
8875         * support\librarian\Makefile.in
8876         * support\librarian\sdcclib.c
8877         * Makefile.bcc
8878         * Makefile
8879         * Makefile.common.in
8880         * configure
8881         * configure.in
8882
8883 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8884
8885         Linker now complaints if linked modules have conflicting options, for
8886         example, one compiled using --model-large and another one compiled with
8887         --model-small.  The following files were modified:
8888
8889         * as\mcs51\asdata.c
8890         * as\mcs51\aslink.h
8891         * as\mcs51\asm.h
8892         * as\mcs51\asmain.c
8893         * as\mcs51\asout.c
8894         * as\mcs51\i51pst.c
8895         * as\mcs51\lkdata.c
8896         * as\mcs51\lklibr.c
8897         * as\mcs51\lkmain.c
8898         * as\z80\asdata.c
8899         * as\z80\asm.h
8900         * as\z80\asmain.c
8901         * as\z80\asout.c
8902         * as\z80\z80pst.c
8903         * link\z80\aslink.h
8904         * link\z80\lkdata.c
8905         * link\z80\lklibr.c
8906         * link\z80\lkmain.c
8907         * src\SDCCglue.c
8908
8909 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8910
8911         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
8912         as/mcs51/lklibr.c: Generate a warning when a library is not found.
8913
8914 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
8915
8916         * src/z80/mappings.i: fix _mul[us][int,long] entries
8917
8918 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8919
8920         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
8921
8922 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8923
8924         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
8925         * support/regression/tests/bitopcse.c: added
8926         fixed warning:
8927         * src/avr/gen.c:
8928         * src/pic/gen.c:
8929         * src/pic16/gen.c:
8930         * src/z80/gen.c:
8931         * src/xa51/gen.c:
8932
8933 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8934
8935         added support for new library format to z80, gbz80 linkers:
8936         *link/z80/aslink.h
8937         *link/z80/lklex.c
8938         *link/z80/lklib.c
8939         *link/z80/lklist.c
8940
8941 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8942
8943         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
8944         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
8945
8946 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
8947
8948         added DUMMY_READ_VOLATILE:
8949         * src/SDCC.y:
8950         * src/avr/gen.c:
8951         * src/xa51/gen.c:
8952         * src/z80/gen.c:
8953         * src/pic/gen.c:
8954         * src/pic16/gen.c:
8955         * src/mcs51/gen.c:
8956         * src/ds390/gen.c:
8957         * src/SDCCcse.c (algebraicOpts): many improvements
8958         * src/SDCCcse.h: removed algebraicOpts()
8959         * src/SDCCicode.c (picDummyRead): added
8960
8961 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8962
8963         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
8964         "Insufficient space in data memory".
8965
8966 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8967
8968         * src/mcs51/gen.c: fixed bug #771358
8969         * src/z80/gen.c: fixed bug #759087
8970
8971 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
8972
8973         * src/pic16/glue.c: minor cleanup by Vangelis
8974
8975 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8976
8977         * device/include/regc515c.h: fixed #758477
8978         * device/lib/_gptrget.c: saving some cycles in generic pointer get
8979         * device/lib/_gptrput.c: saved a few bytes
8980         * my tab spacing is 8, yours too?)
8981         * device/lib/_ser.c: process RX bytes earlier than TX bytes
8982         * device/lib/serial.c: process RX bytes earlier than TX bytes
8983         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
8984
8985 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8986
8987         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
8988
8989 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8990
8991     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
8992
8993 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
8994
8995         * device/lib/Makefile.in: bad fix, reverted to 1.43
8996
8997 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
8998
8999         * device/lib/Makefile.in: added missing z80 object files
9000
9001 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
9002
9003         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
9004         pic16 progress by Vangelis:
9005         * src/SDCCglobl.h:
9006         * src/SDCCmain.c:
9007         * src/pic/Makefile:
9008         * src/pic:
9009         * pic/Makefile:
9010         * pic16/device.c:
9011         * pic16/device.h:
9012         * pic16/gen.c:
9013         * pic16/gen.h:
9014         * pic16/genarith.c:
9015         * pic16/glue.c:
9016         * pic16/main.c:
9017         * pic16/pcode.c:
9018         * pic16/pcode.h:
9019         * pic16/pcodepeep.c:
9020         * pic16/peeph.def:
9021
9022 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9023
9024     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
9025
9026 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9027
9028     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
9029     added gbz80 build to MSVC project.
9030     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
9031     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
9032     from 8051 stuff and setup so it links using a .lnk file.
9033
9034 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9035
9036     * support/librarian/sdcclib.c: sdcc librarian.
9037     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
9038     with sdcclib.
9039
9040 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9041
9042     * as/mcs51/lkmain.c: properly handle extensions in function afile.
9043
9044 2003-07-02  Borut Razem <borut.razem AT siol.net>
9045
9046         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
9047         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
9048         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
9049         src/xa51/main.c, src/z80/main.c:
9050         virtualization of glue() function: each port has it's own glue function,
9051         which is accessed by do_glue function pointer in PORT.general structure
9052
9053 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
9054
9055         * DS800C400 fun, improved ROM interface and tinibios.
9056
9057 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
9058
9059         * More support for DS80C400. Now includes beginning of interface to ROM.
9060
9061 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
9062
9063         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
9064
9065 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9066
9067         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
9068
9069 2003-06-19  Borut Razem <borut.razem AT siol.net>
9070
9071         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
9072
9073 2003-06-19  Borut Razem <borut.razem AT siol.net>
9074
9075         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
9076         fixed Z80 port - crt0.o: cannot open.
9077
9078 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
9079
9080         * support/Util/MySystem.c (merge_command): revert bad fix
9081
9082 2003-06-18  Borut Razem <borut.razem AT siol.net>
9083
9084         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
9085
9086 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9087
9088         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
9089         option --use-stdout sends errors to stdout instead of stderr.
9090
9091 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
9092
9093         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
9094
9095 2003-06-15  Borut Razem <borut.razem AT siol.net>
9096
9097         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
9098         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
9099         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
9100         fixed width array of pointers replaced with sets;
9101         multiple include and lib paths ared transferred to preprocessor and linker
9102         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
9103         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
9104         fixed width array of pointers
9105         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
9106         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
9107         fixupPath(), getPathDifference()
9108         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
9109         fixed width array of pointers
9110
9111 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
9112
9113         * src/pic16/ralloc.c: fix warnings
9114         * src/pic16/pcode.c: fix warning
9115
9116 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
9117
9118          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
9119         know all the details, but essentially this set of changes enable
9120         the pic16 port to generate movff instructions and generate assembler
9121         directives,
9122         * src/SDCCmain.c:
9123         * src/pic16/gen.c:
9124         * src/pic16/glue.c:
9125         * src/pic16/pcode.c:
9126         * src/pic16/device.c:
9127         * src/pic16/main.c:
9128         * src/pic16/pcode.h:
9129         * src/pic16/pcoderegs.c:
9130         * src/pic16/ralloc.c:
9131         * src/pic16/ralloc.h:
9132
9133 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9134
9135         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
9136         added option --vc, so sdcc errors and warnings are compatible with
9137         Microsoft Visual Studio.
9138
9139 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9140
9141         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
9142           device/lib/libfloat.lib: added atof function.
9143
9144 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
9145
9146         * doc/sdccman.lyx: updated to Lyx 1.3
9147         * doc/cdbfileformat.lyx: updated to Lyx 1.3
9148         * doc/test_suite_spec.lyx: updated to Lyx 1.3
9149         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
9150
9151 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
9152
9153         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
9154
9155 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9156
9157         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
9158           additions to the "related tools/documentation" section
9159
9160 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
9161
9162         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
9163
9164 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
9165
9166         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
9167         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
9168
9169 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
9170
9171         * doc/sdccman.lyx: fix double dash and other minor things
9172         * doc/Makefile: fix double dash
9173
9174 2003-05-28  Karl Bongers(patches from Martin Helmling)
9175         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
9176           condition and ignore commands.
9177
9178 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9179
9180         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
9181           is in parts still quite out of date, I did changes as far as I felt makes sense
9182           for a non-native english speaker.
9183           Please feel free to add to the manual or to correct my changes.
9184         * doc/Makefile: undid touching the date of intermediate tex files.
9185
9186 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9187
9188         * doc/sdccman.lyx: Manual has an index now
9189
9190 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
9191
9192         Finalize muluint/mulsint and mululong/mulslong merging:
9193         * device/lib/_mulint.c
9194         * device/lib/_mullong.c
9195         * device/lib/gbz80/mul.s
9196         * device/lib/gbz80/stubs.s
9197         * device/lib/z80/mul.s
9198         * device/lib/z80/stubs.s
9199         * src/SDCCsymt.c (initCSupport)
9200
9201 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9202
9203         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
9204         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
9205           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
9206           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
9207           instead of /Zm500.
9208
9209 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9210
9211         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
9212           the regression tests I'm not brave enough to enable 245.b, 245.c
9213         * doc/sdccman.lyx: added latex preamble for hyperref package.
9214           Using pdflatex this will give you a hyperlinked pdf file with
9215           bookmarks. (prepend '%' before /usepackage if this breaks something)
9216
9217 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9218
9219          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
9220
9221 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
9222
9223         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
9224
9225 2003-05-21    <johan AT balder>
9226
9227         * src/SDCCglue.c (printIval): fixed bug #739934
9228
9229 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
9230
9231         Applied patch from bug 737905 (renamed yylineo to mylineno):
9232         * src/altlex.c
9233         * src/SDCCast.c
9234         * src/SDCglobl.h
9235         * src/SDCC.lex
9236         * src/SDCCsymt.c
9237         * src/SDCCval.c
9238         * src/pic16/pcode.c: Cleaned warnings
9239         * src/pic16/pcodeflow.c: Cleaned warnings
9240         * src/pic16/pcoderegs.c: Cleaned warnings
9241
9242 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
9243
9244         * src/pic16/pcode.c: Cleaned warnings
9245         * src/pic16/pcodepeep.c: Cleaned warnings
9246         * src/pic16/ralloc.c: Cleaned warnings
9247
9248 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
9249
9250         * doc/sdccman.lyx: fixed bug 739745
9251         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
9252
9253 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
9254
9255         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
9256         it can be defined with CFLAGS when running configure
9257         * src/SDCCmain.c: fixed compiling + linking with object files
9258
9259 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
9260
9261         * configure.in: configure for pic16 port,
9262             added --disable-pic16-port
9263         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
9264         * src/SDCCmain.c: linkOptions is changed to set *,
9265             added if/endif conditional macros to remove options help
9266             messages from optionsTable when a port is not configured, added
9267             support for the PIc16 port in the ports table, when executing
9268             the compiler with no port specified on command line, a default
9269             port is selected with the new macro DEFAULT_PORT which is
9270             defined in port.h, in setDefaultOptions() linkOptions is removed
9271             from initialization assignment, since now it is a set,
9272             parseCmdLine uses setParseWithComma for linkOptions, in
9273             linkEdit() linkOptions are accessed with new function indexSet()
9274             which returns the i'th item of a set variable. See SDCCset.c, in
9275             linkEdit() when calling buildCmdLine(), added linkOptions as
9276             last argument. Now users can pass arguments to gplink via the
9277             -Wl option, main() uses pic16glue() to glue up pic16 programs
9278         * src/SDCCpeeph.c: various changes to support pic16
9279         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
9280             return the i'th item of the set
9281         * src/SDCCset.h: added function prototype for indexSet()
9282         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
9283         * src/clean.mk: added pic16 in CLEANALLPORTS variable
9284         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
9285             added macro DEFAULT_PORT
9286         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
9287         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
9288             generated
9289         * src/pic16/glue.c: commented out some error producing lines
9290         * src/pic16/main.c: __config directives are commented out to stop
9291             gpasm complaining and test the linkage with gplink, _linkCmd and
9292             _asmCmd changed to be more gplink and gpasm friendly
9293         * src/pic16/peeph.def: peep rule 3 is commented out, since it
9294             produced an error when parsed, peep rule 12 is added to utilize
9295             movff, but it is commented out since the pCode does not support
9296             yet a command with 2 address arguments
9297
9298 2003-05-18    <johan AT balder>
9299
9300         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
9301         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
9302 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
9303
9304         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
9305   Added feature to script commands from file.
9306
9307 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
9308
9309         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
9310         * src/SDCCutil.c: include ctype.h for win32
9311
9312 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
9313
9314         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
9315
9316 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
9317
9318         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
9319   Fixed so you can set breakpoints prior to run, run does not stop
9320   on entry now.  Add tbreak.  Other enhancements and fixes for use
9321   with ddd.
9322
9323 2003-05-12  Borut Razem <borut.razem AT siol.net>
9324
9325         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
9326
9327 2003-05-11  Borut Razem <borut.razem AT siol.net>
9328
9329         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
9330         the path of bin directory, so that PATH is the only env. variable, which has to be set
9331         in case of standard installation.
9332         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
9333         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
9334         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
9335
9336 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
9337
9338         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
9339         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
9340         temp files are in the port dir; clean the gen/test directory when
9341         generating new test.c
9342         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
9343         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
9344         * support/regression/tests/zeropad.c: added
9345
9346 2003-05-09    <johan AT balder>
9347
9348         * src/SDCCglue.c: fixed bug #597940
9349
9350 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
9351
9352         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
9353   cache sfr, optimize next,step, fix off by one sourceline,
9354   support ddd list function.
9355         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
9356
9357 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
9358
9359         * support/regression/HTMLgen.py: added compare_s2f()
9360         * support/regression/Makefile: redo 1.27
9361         * support/regression/generate-cases.py: redo 1.5
9362
9363 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
9364
9365         * support/regression/tests/float.c: workaround 33 bit hex constant
9366         * support/regression/tests/simplefloat.c: fix division for host
9367
9368 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
9369
9370         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
9371         that tame's the PIC's over-aggressive optimizer.
9372
9373 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9374
9375          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
9376          support for MSVC.
9377
9378 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
9379
9380         Initial support for DS80C400. "Hello world" runs on TINIm400
9381         (with polled I/O).
9382
9383 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
9384
9385          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
9386          * Some notes on ddd usage added in debugger/README
9387          Martin Helmling adding more features and fixes for ddd GUI debugger.
9388          Code added for nexti, stepi, up, down, and other adjustments.
9389
9390 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
9391
9392         * src/pic/pCodepeep.c non-wildcard asmops are now handled
9393         * src/pic/peeph.def Added two rules to optimize carry manipulation
9394         * src/pic/* removed debug printfs
9395
9396 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
9397
9398         * debugger/mcs51/cmd.c: added header newalloc.h
9399
9400 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
9401
9402         * as/Makefile: new EXEEXT
9403         * as/z80/Makefile: remove trailing slash of BUILDIR
9404         * as/z80/clean.mk: new EXEEXT
9405         * Makefile.common.in: add to CFLAGS (and others), don't replace it
9406         * support/cpp2/Makefile.in: new EXEEXT
9407         * src/pic/glue.c (pic14emitRegularMap): fixed warning
9408
9409 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
9410
9411         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
9412         EXEEXT was introduced to fix all related problems with targets
9413         "clean", "install" and "uninstall"; a couple of further flaws
9414         especially with "clean" have been fixed too
9415         * as/mcs51/Makefile.in
9416         * as/mcs51/clean.mk
9417         * as/z80/Makefile
9418         * Makefile
9419         * clean.mk
9420         * debugger/mcs51/Makefile.in
9421         * debugger/mcs51/clean.mk
9422         * link/z80/Makefile
9423         * link/z80/Makefile.in
9424         * link/z80/clean.mk
9425         * link/Makefile
9426         * packihx/Makefile.in
9427         * packihx/clean.mk
9428         * sim/ucsim/Makefile
9429         * sim/ucsim/clean.mk
9430         * sim/ucsim/avr.src/Makefile.in
9431         * sim/ucsim/avr.src/clean.mk
9432         * sim/ucsim/s51.src/Makefile.in
9433         * sim/ucsim/s51.src/clean.mk
9434         * sim/ucsim/xa.src/Makefile.in
9435         * sim/ucsim/xa.src/clean.mk
9436         * sim/ucsim/z80.src/Makefile.in
9437         * sim/ucsim/z80.src/clean.mk
9438         * sim/ucsim/main_in.mk
9439         * sim/ucsim/packages_in.mk
9440         * sim/ucsim/gui.src/Makefile.in
9441         * sim/ucsim/gui.src/serio.src/Makefile.in
9442         * sim/ucsim/gui.src/serio.src/clean.mk
9443         * src/Makefile.in
9444         * src/clean.mk
9445         * support/cpp2/Makefile.in
9446         * support/cpp2/clean.mk
9447         * support/makebin/Makefile
9448         * support/makebin/clean.mk
9449         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
9450         * doc/sdccman.lyx: --program-suffix no longer needed
9451
9452 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
9453
9454          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
9455          Martin Helmling added support for ddd GUI debugger.
9456          Code added to display assembly, set variables, and other commands
9457          to interface to ddd.
9458
9459 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
9460
9461         * as/Makefile: fix target clean
9462         * as/clean.mk: fix target clean
9463         * as/z80/clean.mk: fix target clean
9464
9465 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
9466
9467         * Makefile.common.in: added  AT EXEEXT AT
9468         * configure.in: removed all mingw32 stuff
9469         * configure: rebuilt from configure.in
9470         * doc/sdccman.lyx: updated section "installation"
9471         * support/scripts/sdcc_mingw32: adapted to configure
9472         * support/scripts/sdcc_cygwin_mingw32: added
9473
9474 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
9475
9476         * src/pic Added object file support for the PIC port
9477         * src/pic Applied patch from Craig Franklin (this started the object file support)
9478         * src/regression Updated the PIC regression tests for object files
9479
9480 2003-04-20  Borut Razem <borut.razem AT siol.net>
9481
9482         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
9483           lklex.c: In function `getfid':
9484           lklex.c:203: warning: array subscript has type `char'
9485         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
9486           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
9487         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
9488           stack handling macros
9489
9490 2003-04-19  Borut Razem <borut.razem AT siol.net>
9491
9492         * "handling space characters in file path" task:
9493         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
9494         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
9495         * support/Util/MySystem.h: make it self-sufficient
9496         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
9497           src/z80/main.c, sdcc/as/mcs51/lklex.c:
9498           handling space characters in file path
9499         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
9500           (it will be used by assemblers, which have their own includes, e.g. gpasm)
9501         * support/Util/MySystem.c: handling space characters in executable's path
9502
9503 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
9504
9505         * as/z80/Makefile: fix permanent rebuild of z80
9506         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
9507         * support/regression/tests/bitfields.c: added Johan's bitfields.c
9508
9509 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
9510
9511         * src/SDCCopt.c: add special case optimization to replace modulo by
9512           a power of two with a bitwise AND.
9513
9514 2003-04-18    <johan AT balder>
9515
9516         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
9517
9518 2003-04-17    <johan AT balder>
9519
9520         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
9521         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
9522
9523 2003-04-13  Borut Razem <borut.razem AT siol.net>
9524
9525         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
9526         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
9527           fixed mingw problem in adl_NORMALIZE_PATH
9528
9529 2003-04-12  Borut Razem <borut.razem AT siol.net>
9530
9531         * fixed "#pragma SAVE/RESTORE can not be nested":
9532         * src/SDCC.lex: reworked pragma handling functions
9533         * sdcc/src/SDCCglobl.h: reworked stack handling macros
9534         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
9535
9536 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9537
9538         * src/SDCCutil.c (pathEquivalent): defined but not used
9539         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
9540         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
9541         * configure: rebuilt from configure.in
9542         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9543         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9544         * device/include/Makefile.in: replace sdcc_datadir
9545         * device/lib/Makefile.in: replace sdcc_datadir
9546         * Makefile.common.in: add LDFLAGS from configure
9547         * packihx/Makefile.in: use LDFLAGS
9548         * src/Makefile.in: use LDFLAGS
9549         * support/cpp2/Makefile.in: add LDFLAGS from configure
9550         * support/makebin/Makefile: use LDFLAGS
9551         * .version: bumped version number to 2.3.5
9552
9553 2003-04-12  Borut Razem <borut.razem AT siol.net>
9554
9555         * completed "different paths" task:
9556         * src/SDCCmacro.c: fixed bug in handling quotes
9557         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
9558         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
9559
9560 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9561
9562         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
9563
9564 2003-04-11 kevin Vigor <kevin AT vigor.nu>
9565
9566         * ds390/gen.c ds390/peeph.def: fix bug 706781
9567
9568 2003-04-11  Borut Razem <borut.razem AT siol.net>
9569
9570         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
9571
9572 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
9573
9574         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
9575         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
9576          set - this bit used to not be set...).
9577         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
9578           bad code in PIC Port
9579         * src/regression/and2.c added to test bug 609268
9580         * src/regression/Makefile added and2.c to regression test
9581
9582
9583 2003-04-08    <johan AT CP255758-A>
9584
9585         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
9586         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
9587         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
9588
9589 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
9590
9591         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
9592         fix bug #487815
9593         * support/cpp2/Makefile.in: fix bug #487815
9594         * configure: rebuilt from configure.in
9595         * Makefile.common.in: docdir changed, new path suffixes
9596         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9597         * sdcc_vc_in.h: reflect changes from sdccconf.h
9598         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
9599         * src/SDCCutil.h: remove BINDIR hack
9600         * doc/sdccman.lyx: update new path hierarchy
9601
9602 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9603
9604         * src/SDCCpeeph.c: added okToRemoveSLOC test
9605
9606 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9607
9608         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
9609
9610 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9611
9612         * src/SDCCpeeph.c: added labelIsReturnOnly test
9613         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
9614
9615 2003-04-05    <johan AT balder>
9616
9617         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
9618         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
9619         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
9620         * src/SDCCast.c: fixed a warning
9621         * src/SDCCast.h: fixed a warning
9622         * src/SDCCicode.c (operandFromAst): fixed a warning
9623
9624 2003-04-04    <johan AT balder>
9625
9626         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
9627         * src/SDCCast.c (decorateType): fixed bug #715076
9628         * src/SDCC.y: fixed bug #702907
9629
9630 2003-04-03    <johan AT balder>
9631
9632         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
9633         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
9634         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
9635         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
9636         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
9637
9638 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
9639
9640         * _decdptr.c: fix return values
9641         * _gptrget.c: fix return values
9642         * _gptrgetc.c: fix return values
9643         * _gptrput.c: fix return values
9644         * _mulint.c: fix return values
9645         * as/z80/Makefile: fix 'make -j' problem
9646
9647 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
9648
9649         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
9650         * configure.in: big cleanup, updated to autoconf 2.5x
9651         * configure: rebuilt from configure.in
9652         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9653         * sdcc_vc_in.h: reflect changes from sdccconf.h
9654         * doc/Makefile: fixed a flaw in "make install"
9655
9656 2003-04-02    <johan AT balder>
9657
9658         * src/ds390/gen.c (genCmp): no comments
9659         * src/mcs51/gen.c (genCmp): no comments
9660         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
9661         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
9662
9663 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
9664
9665         * support/regression/generate-cases.py: place generated file in given sub directory
9666         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
9667         * support/regression/Makefile: improvements for 'make -j';
9668         side effect: it's simpler and faster now
9669
9670 2003-03-31  Borut Razem <borut.razem AT siol.net>
9671
9672         * src/z80/main.c: link-{port} and as-{port} defined without path
9673         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
9674
9675 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
9676
9677         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
9678
9679 2003-03-30  Borut Razem <borut.razem AT siol.net>
9680
9681         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
9682           changed type of list parameter to set
9683         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
9684         * src/port.h: changed type of do_assemble() parameter to set
9685         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
9686           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
9687           definition of "cppoutfilename" macro with NULL value in preProcess()
9688         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
9689         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
9690         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
9691           replaced with set *binPathSet
9692         * shash_add() deallocates the item, if allready exsists, before adding the new one
9693         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
9694
9695 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
9696
9697         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
9698           a nested for loop bug in the PIC port
9699         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
9700           for loops
9701
9702 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
9703
9704         * support/Util/dbuf.h: remove C++ stuff to make it portable
9705
9706 2003-03-28  Borut Razem <borut.razem AT siol.net>
9707
9708         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
9709           literal strings in stringLiteral()
9710         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
9711         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
9712           to the project
9713
9714 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
9715
9716         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
9717
9718 2003-03-26    <johan AT balder>
9719
9720         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
9721         * src/ds390/gen.c (saveRegisters): catched symbol abuse
9722         * src/SDCCast.c (decorateType): fixed " -v < 3"
9723
9724 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
9725
9726         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
9727         Added Lenny Story's debug infrastructure changes:
9728         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
9729         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
9730         * src/cdbFile.c: added
9731         * src/SDCCdebug.c: added
9732         * src/SDCCdebug.h: added
9733         * src/SDCCast.c (createFunction)
9734         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
9735         * src/SDCCmain.c (parseCmdLine, main)
9736         * src/SDCCmem.c (redoStackOffsets)
9737         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
9738         * src/SDCCsymt.h
9739         * src/common.h
9740         * src/avr/gen.c (genAVRCode)
9741         * src/ds390/gen.c (gen390Code)
9742         * src/mcs51/gen.c (gen51Code)
9743         * src/pic/gen.c (genpic14Code)
9744         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
9745         * src/xa51/gen.c (genXA51Code)
9746         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
9747
9748 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9749
9750         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
9751         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
9752
9753 2003-03-22    <johan AT balder>
9754
9755         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
9756
9757 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
9758
9759         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
9760         * doc/cdbfileformat.lyx: added, written by Lenny Story
9761         * doc/Makefile: added cdbfileformat.lyx
9762         * doc/clean.mk: added cdbfileformat.lyx
9763
9764 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
9765
9766         * src/mcs51/peeph.def: fix bug #705773
9767
9768 2003-03-20    <johan AT balder>
9769
9770         An sfr/sbit can have an "at #" AND an initializer
9771         * src/SDCCsymt.c (checkSClass):
9772         * src/SDCCmem.c (allocGlobal):
9773         * src/SDCCmem.c (allocLocal):
9774         * src/SDCCast.c (createBlock):
9775
9776 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
9777
9778         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
9779
9780 2003-03-16    <johan AT balder>
9781
9782         Undid the hackup of const and volatile, the problem is much bigger
9783         * src/SDCC.y:1.65
9784         * src/SDCCast.c:1.171
9785         * src/SDCCglue.c:1.138
9786         * src/SDCCicode.c:1.146
9787         * src/SDCCsymt.c:1.150
9788         * src/SDCCval.c:1.65
9789
9790 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
9791
9792         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
9793         * src/ds390/gen.c (genAddrOf): fixed bug #704087
9794
9795 2003-03-13    <johan AT balder>
9796
9797         Hackup const and volatile modifiers in type chains a bit:
9798         * src/SDCC.y:1.63
9799         * src/SDCCast.c:1.169
9800         * src/SDCCglue.c:1.136
9801         * src/SDCCicode.c:1.143
9802         * src/SDCCsymt.c1.146
9803         * src/SDCCsymt.h1.59
9804         * src/SDCCval.c:1.63
9805
9806 2003-03-12    <johan AT balder>
9807
9808         * src/SDCCBBlock.h: more LRH debugging junk
9809         * src/SDCCcflow.h: more LRH debugging junk
9810         * src/SDCCloop.c: more LRH debugging junk
9811         * src/SDCC.y (struct_declaration): fixed bug #697590
9812         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
9813         * src/ds390/gen.c (aopForRemat): fixed bug #700031
9814         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
9815
9816 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9817         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
9818         test function names must now match exactly).
9819         * src/SDCCcse.c: added special case in findCheaperOp to allow
9820         extending a short integer. Makes less awful code for bug 700121 test case.
9821
9822 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9823
9824         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
9825         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
9826
9827 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9828
9829         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
9830         actually called (operandsNotEqual() was called for all
9831         operandsNotEqualX tests).
9832
9833 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9834
9835         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
9836         with shorter literals. Fixes bug 700121.
9837
9838 2003-03-11    <johan AT balder>
9839
9840         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
9841
9842 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
9843
9844         * src/SDCCloop.c (mergeRegions): an evil beast is dead
9845         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
9846
9847 2003-03-10  Borut Razem <borut.razem AT siol.net>
9848
9849         * src/SDCCmain.c: pipe preprocessor's output
9850         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9851         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9852         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9853         which closes all pipes in pipeSet set
9854         * src/SDCCset.c: free deleted item in function deleteSetItem()
9855         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9856         moved from z80 to src subproject
9857         * .version: increased version number to 2.3.4
9858
9859 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
9860
9861         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
9862         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
9863         * support/regression/ports/xa51/spec.mk: fix typo
9864
9865 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
9866
9867         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
9868
9869 2003-03-09  Borut Razem <borut.razem AT siol.net>
9870
9871         * src/SDCCmain.c: pipe preprocessor's output
9872         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9873         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9874         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9875         which closes all pipes in pipeSet set
9876         * src/SDCCset.c: free deleted item in function deleteSetItem()
9877         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9878         moved from z80 to src subproject
9879
9880 2003-03-09  Borut Razem <borut.razem AT siol.net>
9881
9882         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
9883         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
9884         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
9885         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
9886         * src/SDCCglobl.h: unification of WIN32 native definitions
9887
9888 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9889
9890         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
9891
9892 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9893
9894         * src/configure.in:   check for endianess (even while cross-compiling)
9895         * src/configure:      check for endianess (even while cross-compiling)
9896         * src/configure_in.h: check for endianess (even while cross-compiling)
9897         * src/avr/gen.c:        remove old endianess stuff
9898         * src/mcs51/gen.c:      remove old endianess stuff
9899         * src/ds390/gen.c:      remove old endianess stuff
9900         * src/pic/gen.c:        remove old endianess stuff
9901         * src/pic/genarith.c:   remove old endianess stuff
9902         * src/pic/glue.c:       fix endianess check
9903         * src/pic16/gen.c:      remove old endianess stuff
9904         * src/pic16/genarith.c: remove old endianess stuff
9905         * src/pic16/glue.c:     fix endianess check
9906         * src/xa51/gen.c:       remove old endianess stuff
9907         * src/z80/gen.c:        fix endianess check
9908         * src/SDCCglue.c:       fix endianess check
9909         * src/ds390/peeph.def: fix bug 700036
9910
9911 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9912
9913         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
9914         * src/configure: find appropriate data-types on host for SDCC's int and long
9915         * src/configure.in: find appropriate data-types on host for SDCC's int and long
9916         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
9917         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
9918
9919 2003-03-07    <johan AT balder>
9920
9921         Just a big NOOP:
9922                 some minor cleanups before the big shot
9923                 OP_DEFS and OP_USES now use Kevin's protection
9924                 new option --nolabelopt
9925
9926         * src/SDCCBBlock.c:
9927         * src/SDCCast.c,:
9928         * src/SDCCcflow.c:
9929         * src/SDCCcse.c:
9930         * src/SDCCicode.c:
9931         * src/SDCCicode.h:
9932         * src/SDCClabel.c:
9933         * src/SDCCloop.c:
9934         * src/SDCCmain.c:
9935         * src/ds390/ralloc.c:
9936         * src/mcs51/ralloc.c:
9937         * src/pic/ralloc.c:
9938         * src/xa51/ralloc.c:
9939         * src/z80/ralloc.c:
9940
9941 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
9942
9943         * src/pic/pcode.c (get_op): fix 64 bit warnings
9944         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
9945         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
9946         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
9947         * support/regression/tests/malloc.c: fix 64 bit warnings
9948
9949 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
9950
9951         * src/mcs51/gen.c (genMinus): fixed bug 696436
9952
9953 2003-03-02  Borut Razem <borut.razem AT siol.net>
9954
9955         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
9956
9957 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
9958
9959         * configure.in: test for mkstemp
9960         * sdccconf_in.h: add HAVE_MKSTEMP
9961
9962 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
9963
9964         * device/include/ctype.h: removed warning while using --stack-auto
9965         * device/include/malloc.h: removed warning while using --stack-auto
9966         * device/include/string.h: removed warning while using --stack-auto
9967
9968 2003-02-23  Borut Razem <borut.razem AT siol.net>
9969
9970         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
9971         because NDEBUG is defined (see man assert)
9972         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
9973
9974 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9975
9976         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
9977         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
9978
9979 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9980
9981         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
9982         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
9983
9984 2003-02-18    <johan AT balder>
9985
9986         * as/mcs51/asmain.c (asmbl): module can start with a digit
9987         * as/z80/asmain.c (asmbl): module can start with a digit
9988
9989 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
9990
9991         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
9992         * src/asm.c: fix pipe() for Mingw32
9993
9994 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
9995
9996         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
9997         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
9998         make -V work again; --c1mode reads now from stdin
9999         * doc/sdccman.lyx: added --c1mode
10000         * support/Util/SDCCerr.c: new messages for c1 mode
10001         * support/Util/SDCCerr.h: new messages for c1 mode
10002         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
10003
10004 2003-02-15    <johan AT balder>
10005
10006         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
10007
10008 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
10009
10010         * doc/sdccman.lyx: Environment variables, -o and other minor things
10011
10012 2003-02-14    <johan AT balder>
10013
10014         * src/xa51/main.c: before anyone really tries to use it :)
10015
10016         * Install doc's in share/sdcc/doc
10017         * removed some obsolete files
10018         * Do a proper make distclean and uninstall
10019         M Makefile.common.in
10020         R sdccbuild.sh
10021         M as/Makefile
10022         M device/include/Makefile.in
10023         M device/lib/Makefile.in
10024         M doc/sdccman.lyx
10025         M link/Makefile
10026         M sim/ucsim/doc/Makefile.in
10027         M src/clean.mk
10028         R src/avr/peeph.rul
10029         R src/xa51/peeph.rul
10030         M support/cpp2/Makefile.in
10031         M support/makebin/Makefile
10032
10033
10034 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
10035
10036         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
10037
10038 2003-02-10  Borut Razem <borut.razem AT siol.net>
10039
10040         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
10041         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
10042         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
10043         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
10044         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
10045         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
10046         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
10047         src/z80/Makefile.bcc: Borland Makefile cleanup
10048         * as/z80/Makefile.bcc: Added Borland Makefile
10049         * support/cpp2/borland.h: Removed
10050
10051 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
10052
10053         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
10054         * src/SDCC.lex: new pragma NOIV
10055         * src/SDCCglobl.h: new pragma NOIV
10056         * src/SDCCmem.c: new pragma NOIV
10057
10058 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
10059
10060         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
10061
10062 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
10063
10064         * src/SDCCmain.c: signal handling is switched off by --debug
10065         * doc/Makefile: small fix for install; use clean.mk again
10066         * doc/clean.mk: clean *.pdf and *.html too
10067
10068 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
10069
10070         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
10071         * device/lib/printfl.c: fix a ds390 bug by making it portable
10072         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
10073         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
10074         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
10075         * debugger/mcs51/cmd.c: converted multi-line string literals
10076         * sim/ucsim/globals.cc: converted multi-line string literals
10077         * src/SDCCmain.c: introduced signal handler to remove temp files
10078         * doc/Makefile: small tweaks, implement clean
10079         * doc: removed generated files
10080
10081 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10082
10083         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
10084         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
10085         Address Record is not correctly generated for DS390."
10086
10087 2003-02-02  Borut Razem <borut.razem AT siol.net>
10088
10089         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
10090         * as/mcs51/asm.h: fixed compilation with Borland C
10091         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
10092         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
10093         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
10094         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
10095         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
10096         src/z80/Makefile.bcc: delete $(LIB) only if exist
10097         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
10098
10099 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
10100
10101         * device/include/malloc.h: introduced NULL
10102         * device/include/string.h: introduced NULL
10103         * device/include/stdlib.h: introduced NULL
10104         * device/lib/_memcpy.c: removed NULL
10105         * device/lib/_strcat.c: removed NULL
10106         * device/lib/_strchr.c: removed NULL
10107         * device/lib/_strcmp.c: removed NULL
10108         * device/lib/_strcpy.c: removed NULL
10109         * device/lib/_strcspn.c: removed NULL
10110         * device/lib/_strlen.c: removed NULL
10111         * device/lib/_strncat.c: removed NULL
10112         * device/lib/_strncmp.c: removed NULL
10113         * device/lib/_strncpy.c: removed NULL
10114         * device/lib/_strpbrk.c: removed NULL
10115         * device/lib/_strrchr.c: removed NULL
10116         * device/lib/_strspn.c: removed NULL
10117         * device/lib/_strstr.c: removed NULL
10118         * device/lib/_strtok.c: removed NULL
10119         * device/lib/malloc.c: removed NULL, include own header
10120
10121 2003-02-02    <johan AT balder>
10122
10123         * 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
10124         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
10125         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
10126         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
10127         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
10128         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
10129
10130 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10131
10132         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
10133         area 'DATA'"
10134
10135 2003-02-01    <johan AT balder>
10136
10137         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
10138
10139 2003-01-31    <johan AT CP255758-A>
10140
10141         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
10142
10143 2003-01-30    <johan AT balder>
10144
10145         * src/SDCCBBlock.c: automatic bug detection
10146         * src/SDCCicode.c: automatic bug detection
10147
10148 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10149
10150         * src/SDCCglobl.h:   now --xram-size 0 works
10151         * src/SDCCmain.c:    now --xram-size 0 works
10152
10153 2003-01-29    <johan AT balder>
10154
10155         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
10156
10157 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10158
10159         * as/mcs51/aslink.h: Added options --xram-size and --code-size
10160         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
10161         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
10162         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
10163         * src/SDCCglobl.h:   Added options --xram-size and --code-size
10164         * src/SDCCmain.c:    Added options --xram-size and --code-size
10165
10166 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
10167
10168         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
10169         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
10170
10171 2003-01-27    <johan AT balder>
10172
10173         * src/SDCC.y: fixed bug #613764
10174
10175 2003-01-26    <johan AT balder>
10176
10177         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
10178         * src/SDCCsymt.h: fixed bug #673374
10179         * src/SDCCglue.c: fixed bug #661910
10180         * src/SDCCast.c: fixed bug #458099 and 673374
10181
10182 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
10183
10184         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
10185         * as/mcs51/strcmpi.h: added
10186         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
10187         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
10188         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
10189         * as/mcs51/assym.c: strcmpi -> as_strcmpi
10190         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
10191         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
10192         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
10193         * as/mcs51/Makefile.aslink: new module strcmpi
10194         * as/mcs51/Makefile.asx8051: new module strcmpi
10195         * as/mcs51/Makefil.bcc: new module strcmpi
10196         * as/mcs51/Makefile.in: new module strcmpi
10197         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
10198
10199 2003-01-26    <johan AT balder>
10200
10201         * src/SDCCglue.c: reverted back to 1.124
10202         * src/SDCCast.c: reverted back to 1.156
10203         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
10204
10205 2003-01-25    <johan AT balder>
10206
10207         * src/SDCCglue.c: A better fix for bug #661910
10208         * src/SDCCast.c: A better fix for bug #661910
10209         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
10210
10211 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
10212
10213         * src/Makefile.in: remove spawn.o
10214         * src/SDCCmain.c: remove spawn.h
10215         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
10216         * src/spawn.c: removed
10217         * src/spawn.h: removed
10218         * support/regression/ports/ds390/spec.mk: link with -r
10219
10220 2003-01-24    <johan AT CP255758-A>
10221
10222         * src/ds390/gen.c (aopOp): fixed bug #667458
10223         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
10224         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
10225         (createIvalCharPtr): an ival doesn't always have a storage class anymore
10226
10227 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
10228
10229         * src/mcs51/peeph.def: better assembler identation by Frieder
10230         * src/mcs51/gen.c: better assembler identation by Frieder
10231
10232 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
10233
10234         * as/z80/string.h: removed for gcc 3.2
10235         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
10236         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
10237
10238 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
10239
10240         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
10241         * src/SDCCpeeph.c (replaceRule): fix bug #663503
10242         * support/regression/Makefile: separate temp files for ports
10243         * support/regression/generate-cases.py: separate temp files for ports
10244         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
10245         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
10246
10247 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
10248
10249         * moved tinitalk to device/examples/ds390
10250
10251 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
10252
10253         * as/mcs51/lkmem.c: rflag is for DS390
10254         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
10255         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
10256                          (linkEdit): move mem- and map-files the same way as ihx-files
10257         * src/z80/main.c (_setDefaultOptions): removed --generic
10258         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
10259         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
10260         * src/pic/glue.c (picglue): --c1mode works again
10261         * src/pic16/glue.c (pic16glue): --c1mode works again
10262         * src/asm.c (printCLine): fix #660034
10263
10264 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
10265
10266         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
10267         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
10268         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
10269         * as/mcs51/lkmem (summary): better fix for sp problem
10270         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
10271         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
10272         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
10273                                               remove --stack-after-data
10274
10275 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
10276
10277         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
10278         * src/SDCCutil.c (join): ugly bug: missing '\0'
10279         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
10280
10281 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
10282
10283         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
10284         * src/port.h: typo
10285         * src/pic/main.c (_asmCmd): gpasm supports -o
10286         * src/z80/main.c: more general macros
10287         * device/lib/Makefile.in: remove intermediate files
10288
10289 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
10290
10291         * .version: Bumped version number to 2.3.3
10292         * src/SDCCBBlock.c: new option -o
10293         * src/SDCCglobl.h: new option -o
10294         * src/SDCCglue.c: new option -o
10295         * src/SDCCmain.c: new option -o
10296         * src/asm.c: new option -o
10297         * src/ds390/main.c: new option -o
10298         * src/pic/glue.c: new option -o
10299         * src/pic/pcode.c: new option -o
10300         * src/pic/ralloc.c: new option -o
10301         * src/pic16/glue.c: new option -o
10302         * src/pic16/pcode.c: new option -o
10303         * src/pic16/ralloc.c: new option -o
10304         * src/z80/main.c: new option -o
10305         * device/lib/Makefile.in: use -o
10306         * support/regression/ports/ds390/spec.mk: use -o
10307         * support/regression/ports/gbz80/spec.mk: use -o
10308         * support/regression/ports/mcs51/spec.mk: use -o
10309         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
10310         * support/regression/ports/z80/spec.mk: use -o
10311         * support/regression/ports/ucz80/spec.mk: use -o
10312         * support/regression/ports/xa51/spec.mk: use -o
10313         * support/regression/fwk/lib/timeout.c: fix usage string
10314
10315 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
10316         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
10317
10318 2003-01-07    <johan AT balder>
10319
10320         * src/SDCCast.c (decorateType): fixed bug #600035
10321
10322 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
10323         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
10324         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
10325         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
10326         * src/pic/pcode.c: outcommented unused variable to remove warnings
10327         * src/pic/ralloc.c: outcommented unused variable to remove warnings
10328
10329 2003-01-06    <karl AT turbobit.com>
10330         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
10331    regression tests.
10332
10333 2003-01-06    <johan AT balder>
10334
10335         * src/SDCCicode.c: fixed array add
10336
10337 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
10338         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
10339         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
10340
10341 2003-01-04    <johan AT balder>
10342
10343         * src/SDCCval.c (getNelements): fixed the initialized array of structures
10344
10345 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10346         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
10347
10348 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
10349         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
10350         * support/regression/tests/bug-524697.c: fit mem usage into 8032
10351
10352 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
10353         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
10354
10355 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
10356         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
10357
10358 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
10359         * src/mcs51/main.c: removed {bindir}{sep} from aslink
10360
10361 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10362
10363     * in \sdcc\as\mcs51\ changed these files in order to create an
10364     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
10365     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
10366     following files to include the previous two files: aslink.dsp,
10367     Makefile.aslink, Makefile.bcc, and Makefile.in.
10368
10369     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
10370     .adb instead of .cdb
10371
10372 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10373
10374         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
10375         value from option --iram-size.
10376
10377 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10378
10379         * \sdcc\as\mcs51\lklist.c: added boundary check before using
10380         dram[] array.
10381
10382 2002-09-18    <wiml AT hhhh.org>
10383
10384         * SDCClrange.h: exposed setFromRange() and setToRange()
10385         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
10386           packRegsForAccUse() (bug 542397)
10387         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
10388           multiple times and emitting the fetch operations more than once
10389           added aopGetUsesAcc() function to allow binary operators to
10390           fetch their operands in the correct order; made genMinus() emit
10391           compact code for X = LITERAL - Y
10392
10393 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10394         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
10395         sprintf() in line 1267.
10396
10397 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10398         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
10399         like ports.
10400
10401 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10402         Changes to aslink (All the changes are marked with 'JCF'):
10403
10404         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
10405         summary().
10406
10407         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
10408         area BSEG.  Also moves, if possible, the DATA area down into the internal
10409         ram so more space is available.
10410
10411         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
10412         sflag.
10413
10414         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
10415         not bytes.  Function summary() which creates a memory usage summary
10416         file with extension .mem.  Reports of overlaping stack and small stack
10417         size.  If the space for the stack is less than 16 bytes aslink trows a
10418         warning.
10419
10420         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
10421         the 8051.  Option 'y' for memory summary output file.
10422
10423         Changes to sdcc (All the changes are marked with 'JCF'):
10424
10425         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
10426
10427         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
10428         overlaying area for it (uses RegBankUsed[4]).
10429
10430         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
10431         bank zero as used by default.  By default aslink locates the stack
10432         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
10433         the creation of the .mem file.  Delegates the allocation of data area
10434         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
10435         the begining of the stack area to aslink.
10436
10437         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
10438         glue() in SDCCglue.c creates an area for it.
10439
10440 2002-09-03  Borut Razem <borut.razem AT siol.net>
10441         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
10442         sdcc/src/pic/glue.c:
10443         introduced atexit() handler for teporay files removal in case of
10444         errors, assertions, ...
10445
10446 2002-08-29  Borut Razem <borut.razem AT siol.net>
10447         * sdcc/support/cpp2/auto-host_vc_in.h:
10448         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
10449         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
10450         Maybe there is a similar problem with BORLANDC? It should be checked!
10451
10452         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
10453         corrected improper use of assert: the assignment to clr variable was done inside the assert.
10454         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
10455         was not executed, and the compiler (cl) launched a warning:
10456         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
10457
10458 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
10459         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
10460
10461 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
10462         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
10463
10464         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10465           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
10466           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
10467           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10468           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
10469           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
10470           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
10471         - added Release configuration in VS projects
10472         - review of compiler an linker options
10473         - VC .exe files are generated in bin_vc directory, not to interfere
10474           with binaries generated from other projects (cygwin, mingw, bcc ...)
10475
10476         * sdcc/src/yacc.dsp: added
10477
10478         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
10479         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
10480         and insert the version number definitions from .version
10481
10482         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
10483
10484         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
10485         added - genarate auto-host.h using auto-host_vc_in.h as template
10486
10487         * sdcc/sdcc_vc.h,
10488         removed from CVS, generated automatically
10489
10490 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
10491         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
10492
10493 2002-08-11  Borut Razem <borut.razem AT siol.net>
10494         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
10495
10496 2002-08-10  Borut Razem <borut.razem AT siol.net>
10497         * src/SDCCmain.c (main):
10498         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
10499         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
10500         The consequence was that some temporary files were not removed.
10501
10502         * src/SDCCglue.c:
10503         unification of code in functions tempfilename() and tempfile():
10504         function tempnam() is defined in Visual Studio 6.0 and .NET
10505
10506         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
10507
10508         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10509           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
10510         - removed compiler command line option /WX: Treats all warnings as errors
10511         - update a list of source files, included into the project
10512
10513         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10514           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
10515         changed project type to Generic Project so that can be correcly converted to VS.NET project
10516
10517         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
10518
10519         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
10520
10521         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
10522
10523         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
10524         added return 0 statements after assert() to make compiler happy
10525
10526         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
10527         added newline in the def file to keep MSC compiler satisfied
10528
10529         * sdcc/src/z80/gen.c:
10530         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
10531           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
10532         - solved MSC error in function aopDump()
10533
10534         * sdcc_vc.h: define PREFIX as "\\sdcc"
10535
10536 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
10537         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
10538
10539 2002-06-22  Scott Dattalo <scott AT dattalo.com>
10540         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
10541         - Rewrote the register banking algorithm.
10542         - Added pCode live-range analysis to registers (for now, only non-used and
10543         singly-used registers optimized away)
10544
10545         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
10546
10547         * 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.
10548
10549 2002-05-10  Scott Dattalo <scott AT dattalo.com>
10550         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
10551
10552 2002-04-22  Michael Hope  <michaelh AT vroom>
10553
10554         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
10555
10556         * configure.in (DD_COPT): Added include support required for gbdk.
10557
10558         * .version: Bumped version number just to increase it.
10559
10560         * src/SDCCmain.c: Added -nostdinc to the default options.
10561
10562 2002-04-15  Michael Hope  <michaelh AT vroom>
10563
10564         * device/lib/z80/printf.c (sprintf): Added.
10565
10566         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
10567
10568         * src/z80/peeph.def: Added transpose redundent load rule.
10569
10570         * src/z80/main.c: Added force callee saves for jaune.
10571
10572         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
10573
10574         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
10575
10576 2002-03-28  Johan Knol  <johan AT balder>
10577
10578         * src/SDCCval.c: fixed bug #532436
10579
10580 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10581         * /src/port.h:
10582         Added "char *Processor" field to the port structure.
10583
10584         * /src/SDCCmain.c:
10585         Added -p option. Allows port dependent processor to be specified.
10586
10587         * all ports:
10588         Initialized the new field char *Processor field to NULL in all ports
10589
10590         * /src/pic/*:
10591         Compiler generated registers for interrupt context saving
10592         were not getting allocated.
10593
10594 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
10595
10596         * /src/SDCCast.c:
10597         Fixed left shift. Will promote the left side of a left shift
10598         if a) left shifting more than size of operand or b) when assigned
10599         to something size > size of left side
10600
10601 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10602         * src/pic/*
10603         tons of changes. Register allocation has been
10604         rewritten. Added customization for the various PICs. Flow
10605         analysis is restructured. ...
10606
10607         * src/pic/device.h:
10608         Added
10609
10610         * src/pic/device.c:
10611         Added. device.c is a PIC port hack to accomodate variations
10612         in PIC devices.
10613
10614 2002-03-13  Michael Hope  <michaelh AT vroom>
10615
10616         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
10617
10618 2002-03-04  johanknol  <johanknol AT manik>
10619
10620         * /src/SDCCval.c: fixed
10621
10622         const unsigned char arr[][2] = { { 0, 1 } };
10623         t18.c:1: error: Initializer element is not constant
10624
10625 2002-03-04  bela  <bela AT manik>
10626
10627         * /device/include/mcs51reg.h:
10628         ds89c420 register definition update
10629
10630 2002-03-03    <johan AT FRIJA>
10631
10632         * support/Util/SDCCerr.c: did something, but don't no why anymore
10633
10634         * support/regression/tests/bug-524691.c: made it a little less shy
10635
10636         * src/SDCCast.c (decorateType): fixed bug #524697
10637
10638         * src/SDCCast.c: made some lineno improvements
10639
10640         * src/SDCCval.c (getNelements): changed warning to error
10641
10642         * src/SDCCglue.c (printIvalArray): changed warning to error
10643
10644         * src/SDCCicode.c: fixed a warning for mingw
10645
10646         * src/SDCCast.c (decorateType): fixed the << promotion for ops
10647
10648         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
10649
10650 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
10651
10652         * src/ds390/peeph.def:
10653         Added some more peephole rules
10654
10655         * src/ds390/gen.c: Various fixes & enhancements
10656
10657         * src/SDCClrange.c, src/SDCClrange.h:
10658         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
10659
10660         * src/ds390/ralloc.c:
10661         various fixes & enhancements (ds390) specific
10662
10663         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
10664         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
10665         from rallocs.
10666
10667         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
10668
10669 2002-03-02    <johan AT FRIJA>
10670
10671         * src/SDCCast.c (decorateType): fixed bug #524708
10672
10673         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
10674
10675         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
10676
10677 2002-03-01  Michael Hope  <michaelh AT vroom>
10678
10679         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
10680
10681         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
10682
10683 2002-03-01    <johan AT FRIJA>
10684
10685         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
10686
10687         * src/SDCCast.c (decorateType): fixed bug #524209
10688
10689         * src/SDCCval.c (valNot): fixed bug #524195
10690
10691 2002-02-26    <johan AT balder>
10692
10693         * src/xa51/gen.c: fixed a warning
10694
10695         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
10696
10697         * src/SDCCast.c (decorateType): fixed bug #522534
10698
10699 2002-02-23    <johan AT balder>
10700
10701         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
10702
10703 2002-02-22    <johan AT balder>
10704
10705         * src/SDCCast.c: fixed bug #514865
10706
10707         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
10708
10709 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
10710
10711         * sdcc/src/SDCCloop.c:
10712         Previous fix was not good. basic blocks that have "break" or "return" are
10713         not really partof a loop , but live ranges used in these blocks should
10714         be live thru the entire loop, so set partOfLoop but don't add them to
10715         loop region
10716
10717 2002-02-21    <johan AT FRIJA>
10718
10719         * src/SDCCcse.c: fixed bug #514308
10720
10721 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
10722
10723         * src/SDCCloop.c:
10724         Fixed BUG #519583. If a conditional block ended in a return/break
10725         statement inside a loop, it was not being considered part of the loop.
10726
10727         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
10728
10729 2002-02-10  Karl Bongers <karl AT turbobit.com>
10730
10731         * debugger/*:
10732         Fixed up SDCDB debugger somewhat.  Updated debugger/README
10733         with lots of comments and notes.
10734
10735         * device/examples/test2.c:
10736         Fix bug, "red" variable not being initialized(compiler complained).
10737
10738         * device/examples/Makefile, examples/test3.c:
10739         Add Makefile in device/examples folder, compiles test3.c
10740         for use as a multiple module SDCDB test case.
10741
10742         * sim/ucsim/cmd.src/cmdset.cc:
10743         Took out debug printfs in ucsim "next" command.
10744
10745         * sim/ucsim/xa.src:
10746         Karl and Johan start ucsim XA support.  Most dissassembly working,
10747         about 75% emulation done(plenty of work remaining).
10748
10749         * sim/ucsim/z80.src:
10750         Add Z80 support to ucsim, add test-ucz80 regression test,
10751         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
10752         Notice z80 compiler fails on examples/test3.c/crc code.
10753
10754 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
10755
10756         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
10757         Added support for --parms-in-bank1
10758
10759         * src/ds390/peeph.def:
10760         added a few more peephole optimzations
10761
10762         * src/ds390/main.c:
10763         1) added __builtin_inp & __builtin_outp used to read in data of given length
10764            from a memory mapped port
10765         2) added __builtin_memcmp
10766         3) added __builtin_swapw swap bytes of a short
10767
10768         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
10769         1) handle multiple send & receives from register bank1
10770         2) ralloc can now allocate DPTR1 to some liveRanges
10771
10772         * src/SDCCsymt.c, src/SDCCsymt.h:
10773         changes to handle multiple sends & receives
10774
10775         * src/SDCCptropt.h:
10776         added some pointer arithmetic optimization
10777
10778         * src/SDCCptropt.c:
10779         added some pointer arithmetic optimizations but not stable yet so not
10780         called from anywhere (will get this working shortly)
10781
10782         * src/SDCCopt.c: fixed for multiple sends & receives
10783
10784         * src/SDCCmain.c:
10785         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
10786         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
10787            set preprocessor defines (depending on options)
10788
10789         * src/SDCCicode.c, src/SDCCicode.h:
10790         changes made to handle multiple sends & receives
10791
10792         * src/SDCCglobl.h:
10793         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
10794
10795         * src/SDCCcse.c, src/SDCCcse.h:
10796         added function findbackward def (to be used in upcoming optimization)
10797
10798         * src/SDCCcflow.c, src/SDCCcflow.h:
10799         added function returnAtEnd - to determine if a basic block terminates with
10800         a RETURN iCode
10801
10802         * src/SDCCast.c, src/SDCCast.h:
10803         added option parms-in-bank1
10804
10805         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
10806         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
10807         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
10808         adjusted for --parms-in-bank1 option
10809
10810         * device/include/string.h:
10811         donot redefine "reentrant" keyword
10812
10813         * device/include/ds80c390.h: Added some more SFRs
10814
10815 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
10816
10817         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
10818
10819 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
10820
10821         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
10822
10823 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
10824
10825         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
10826
10827 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
10828
10829         * Added --xram-movc option
10830
10831 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
10832
10833         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
10834
10835 2002-01-11  Johan Knol
10836
10837         * Added math lib of Jesus Calvino-Fraga
10838
10839 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
10840
10841         * src/SDCCmain.c (processFile): fix processing of ../../src.c
10842         * support/regression/Makefile: new target test-mcs51-stack-auto
10843         * support/regression/ports/mcs51-stack-auto/spec.mk: added
10844
10845 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10846
10847         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
10848
10849 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10850
10851         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
10852
10853 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
10854
10855         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
10856
10857         * src/SDCCglue.h: add definition for printIvalChar()
10858
10859 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10860
10861         * src/SDCCast.c: fix #498138 by Johan
10862
10863         * src/SDCCglue.c: fix #498138 by Johan
10864
10865 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10866
10867         * support/regression/Makefile: fix clean
10868
10869         * support/regression/ports/ds390/support.c: fix transmission of last character
10870
10871 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
10872
10873         * /sdcc/src/ds390/gen.c:
10874         a) improved computing address of stack variable
10875         b) took out some #if 0 code
10876         c) improved parmBytes adjustment
10877         d) improved genPlusIncr & genMinusIncr
10878         e) genCmp could generate bad code (when left assigned to DPTR)
10879         f) Fixed bug in hasInc
10880
10881         * /sdcc/src/ds390/ralloc.c:
10882         a) packRegsForSupport could mess up live information (Fixed)
10883         b) packRegsDPTRuse could be incorrect for left & right shift
10884
10885         * /sdcc/src/mcs51/ralloc.c:
10886         packRegsForSupport could mess up the live information (Fixed)
10887
10888         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
10889
10890         * /sdcc/src/SDCCast.c:
10891         can reverse a loop even if function call is present as long
10892         as the loop control variable is local & is not passed as parameter
10893
10894 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10895
10896         * /sdcc/ChangeLog: *** empty log message ***
10897
10898         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
10899         More builtin function additions for TININative
10900
10901         * /sdcc/src/ds390/ralloc.c:
10902         Had broken the regression testsuite
10903
10904         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
10905
10906         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
10907         Added funcattr hasStackParms will be set for reentrant functions when there
10908         are paramteres on the stack, this helps in minimizing frame pointer generation
10909         typeFromStr can handle function pointers now
10910
10911         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
10912         *** empty log message ***
10913
10914 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10915
10916         * /src/ds390/gen.c, /src/ds390/main.c:
10917         More builtin function additions for TININative
10918
10919         * /src/ds390/ralloc.c:
10920         Had broken the regression testsuite
10921
10922         * /src/SDCCast.c: Fixed a bug in dumptree
10923
10924         * /src/SDCCsymt.c, /src/SDCCsymt.h:
10925         Added funcattr hasStackParms will be set for reentrant functions when there
10926         are paramteres on the stack, this helps in minimizing frame pointer generation
10927         typeFromStr can handle function pointers now
10928
10929         * /doc/builtins.txt, /doc/TININative.txt:
10930         *** empty log message ***
10931
10932
10933 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10934
10935         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
10936         ALPHA version for -mTININative
10937
10938         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
10939         updated to reflect changes in the port structure
10940
10941         * /src/port.h:
10942         added function do_assemble (similar to do_link) if non-null this function
10943         will be called to do assembly (-mTININative) requires a multi command
10944         assembly
10945         added function genAssemblerEnd will be called to generate assembler Epilogue
10946
10947         * /src/SDCCsymt.c:
10948         added _JavaNative to debug info printing
10949
10950         * /src/SDCCmain.c: added option --tini-libid
10951         added port->do_assemble function (-mTININative) has a multi command assemble
10952
10953         * /src/SDCCglue.c: Disabled "constExpr" check
10954         added port->genAssemblerEnd function
10955
10956         * /src/SDCCglobl.h: Added option --tini-libid value
10957
10958         * /src/SDCCast.h:
10959         tookout optimizeCompare from the header (has no external references)
10960
10961         * /src/SDCCast.c: made one more function "static"
10962
10963 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
10964
10965         * src/z80/mappings.i: Added z80asm support.
10966
10967         * src/z80/main.c: Added z80asm support on --asm=z80asm
10968
10969         * src/z80/gen.c: Fixed asm portability issues.
10970
10971         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
10972
10973         * src/SDCCglue.c (printExterns): Added global/extern split.
10974
10975 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
10976
10977         * support/regression/Makefile: added test for mcs51 model large
10978
10979         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
10980
10981         * support/regression/ports/gbz80/spec.mk: added -mgbz80
10982
10983 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
10984
10985         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
10986
10987 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
10988
10989         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
10990
10991         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
10992
10993 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
10994
10995         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
10996
10997         * support/regression/tests/simplefloat.c: Port to mcs51.
10998
10999 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
11000         * support/regression/tests/bug-485362.c: Added.
11001
11002         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
11003
11004         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
11005
11006         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
11007
11008         * src/z80/gen.c (aopDump): Added a dump function.
11009
11010 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
11011         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
11012
11013         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
11014
11015         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
11016
11017         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
11018
11019         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
11020
11021         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
11022
11023         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
11024
11025         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
11026
11027         * support/regression/ports/ds390/support.c: Use tinibios.
11028
11029         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
11030
11031 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
11032
11033         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
11034         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
11035
11036         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
11037
11038         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
11039
11040 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
11041
11042         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
11043
11044         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
11045         (packRegsForIYUse): Created and optimised.
11046
11047 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
11048
11049         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
11050 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
11051
11052         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
11053
11054         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
11055
11056         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
11057
11058 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11059
11060         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
11061
11062         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
11063
11064 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11065
11066         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
11067
11068         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
11069
11070         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
11071
11072 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
11073
11074         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
11075         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
11076         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
11077
11078         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
11079
11080         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
11081         (genNotFloat): Added.
11082         (genUminusFloat): Added.
11083
11084         * device/lib/z80/Makefile: Added floating pt stubs.
11085
11086         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
11087
11088         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
11089
11090         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
11091
11092 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11093
11094         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
11095
11096         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
11097
11098         * sdcc/support/regression/Makefile: Add port ds390.
11099
11100         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
11101
11102         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
11103
11104         * sdcc/support/regression/ports/ds390/spec.mk: Added.
11105
11106         * sdcc/support/regression/ports/ds390/support.c: Added.
11107
11108         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
11109
11110         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
11111
11112         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
11113
11114 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
11115
11116         * device/include/malloc.h: Added z80 and gbz80 support.
11117
11118         * device/lib/gbz80/heap.s: Added.
11119
11120         * device/lib/z80/heap.s: Added.
11121
11122         * device/lib/malloc.c: Added z80 and gbz80 support.
11123
11124         * support/regression/tests/malloc.c (testMalloc): Added.
11125
11126         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
11127
11128         * support/regression/tests/bug-478094.c: Added.
11129
11130         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
11131
11132 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
11133
11134         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
11135
11136         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
11137
11138         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
11139
11140         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
11141
11142         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
11143
11144 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
11145
11146         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
11147
11148 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
11149
11150         * support/regression/tests/bug-477927.c: Added.
11151
11152         * src/z80/peeph.def: Added minor rules.
11153
11154         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
11155
11156         * src/z80/peeph.def: Added jump optimisation modification.
11157
11158 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
11159
11160         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
11161
11162 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
11163
11164         * support/regression/tests/funptrs.c: Added.
11165
11166 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
11167
11168         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
11169
11170 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
11171
11172         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
11173
11174         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
11175
11176         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
11177         (movLeft2ResultLong): Created.
11178
11179         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
11180         (joinPushes): Added.  Joins two char pushes into a word push.
11181
11182 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
11183
11184         * support/cpp2/Makefile.in (install): Added creation of dest dir.
11185
11186         * support/makebin/Makefile (install): Added creation of dest dir.
11187
11188 2001-10-24 Karl Bongers <karl AT turbobit.com>
11189
11190         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
11191
11192 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
11193
11194         * src/z80/ralloc.c: Turned off faulty pack for one use.
11195
11196         * src/z80/peeph-gbz80.def: Removed redundent restart options.
11197
11198         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
11199
11200 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
11201
11202         * support/regression/Makefile: Improved clean
11203
11204         * support/regression/ports/gbz80/spec.mk: Added clean
11205
11206         * support/regression/ports/host/spec.mk: Added clean
11207
11208         * support/regression/ports/z80/spec.mk: Added clean
11209
11210         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
11211
11212         * support/regression/ports/mcs51/timeout.c: little improvements
11213
11214 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
11215
11216         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
11217
11218         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
11219
11220         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
11221
11222 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
11223
11224         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
11225
11226         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
11227
11228 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
11229         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
11230
11231         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
11232
11233         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
11234
11235         * src/mcs51/main.c (_linkCmd): Added bin path to command.
11236
11237         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
11238
11239         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
11240
11241         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
11242
11243         * support/regression/tests/longor.c: Added.
11244
11245 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
11246
11247         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
11248
11249         * as/mcs51/aslink.h: define PATH_MAX
11250
11251         * as/mcs51/asm.h: define PATH_MAX
11252
11253         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
11254
11255         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
11256
11257         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
11258
11259         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
11260
11261         * src/SDCCglobl.h: define PATH_MAX
11262
11263         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
11264
11265         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
11266
11267 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
11268
11269         * src/z80/gen.c (gencjneshort): Fixed
11270
11271         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
11272
11273 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
11274
11275         * support/regression/tests/bug-469671.c: Added.
11276
11277         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
11278
11279 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
11280
11281         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
11282
11283         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
11284
11285 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
11286
11287         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
11288
11289         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
11290
11291         * src/device/lib/_mullong.c : removed hint: nooverlay bug
11292
11293         * src/device/lib/_divuint.c : removed hint: nooverlay bug
11294
11295         * src/device/lib/_divulong.c: removed hint: nooverlay bug
11296
11297         * src/device/lib/_moduint.c : removed hint: nooverlay bug
11298
11299         * src/device/lib/_modulong.c: removed hint: nooverlay bug
11300
11301 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
11302
11303         * 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.
11304
11305         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
11306
11307         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
11308
11309 2001-10-07    <johan AT FRIJA>
11310
11311         * device/lib/gets.c (gets): fixed the return value.
11312
11313 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
11314         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
11315
11316         * 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.
11317
11318         * 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.
11319
11320         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
11321
11322         * src/pic/gen.c: Removed Safe_strdup.
11323
11324         * configure.in: Added option to enable libgc support.
11325
11326         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
11327         (bitVectUnion): Optimised.
11328         (bitVectIntersect): Optimised.
11329         (bitVectBitsInCommon): Optimised.
11330         (bitVectCplAnd): Optimised.
11331
11332         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
11333
11334 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11335
11336         * src/SDCCmain.c: distinguish between assembler debug and plain options
11337
11338         * src/avr/main.c:   remove standard assembler options
11339
11340         * src/ds390/main.c: remove standard assembler options
11341
11342         * src/mcs51/main.c: remove standard assembler options
11343
11344         * src/port.h: removed "PENDING" comment
11345
11346 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11347
11348         * src/device/lib/_mulint.c  : new, with assember functions
11349
11350         * src/device/lib/_mullong.c : new, with assember functions
11351
11352         * src/device/lib/_divuint.c : with assember functions
11353
11354         * src/device/lib/_divsint.c : with assember functions
11355
11356         * src/device/lib/_divulong.c: with assember functions
11357
11358         * src/device/lib/_divslong.c: with assember functions
11359
11360         * src/device/lib/_moduint.c : with assember functions
11361
11362         * src/device/lib/_modsint.c : with assember functions
11363
11364         * src/device/lib/_modulong.c: with assember functions
11365
11366         * src/device/lib/_modslong.c: with assember functions
11367
11368         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
11369
11370         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
11371
11372         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
11373                                       replaced _mululong.c and _mulslong.c by _mullong.c
11374
11375 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11376
11377         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
11378
11379 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
11380
11381         * src/SDCCglue.c: test, if win32api is available for MINGW
11382
11383 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
11384
11385         * src/SDCCsymt.c: no more _modifier in printTypeChain()
11386         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
11387         * support/regression/ports/gbz80/spec.mk: removed GENERIC
11388         * support/regression/ports/host/spec.mk: removed GENERIC
11389         * support/regression/ports/mcs51/spec.mk: removed GENERIC
11390         * support/regression/ports/z80/spec.mk: removed GENERIC
11391
11392 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
11393
11394         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
11395
11396         * support/regression/tests/bug-467035.c: Created.
11397
11398 2001-10-01    <johan AT FRIJA>
11399
11400         * src/SDCC.y: fixed bug #466586 part 1
11401
11402 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
11403
11404         * SDCCicode.c: z80 has no generic pointers
11405         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
11406
11407 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
11408
11409         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
11410
11411 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
11412
11413         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
11414
11415         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
11416
11417 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
11418
11419         * configure.in: Fixed up so that ucsim is only configured once.
11420
11421         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
11422
11423         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
11424         (getPathDifference): As above.
11425
11426         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
11427
11428         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
11429
11430 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
11431         * .version: Updated to 2.3.1
11432
11433         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
11434         Added copyright header.
11435
11436         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
11437         (assemble): Added support for macro based assembler commands.
11438         (linkEdit): Added support for macro based linker commands.
11439         (preProcess): Changed the pre-processor to use macros.
11440         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
11441         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
11442
11443         * device/lib/z80/crt0.s: Added module name for debugging.
11444
11445 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
11446
11447         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11448
11449         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
11450
11451         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
11452
11453         * src/Makefile.in: Added SDCCmacro and SDCCutil
11454
11455 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
11456
11457         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11458
11459 2001-09-16    <johan AT FRIJA>
11460
11461         * 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.
11462
11463 2001-09-15    <johan AT FRIJA>
11464
11465         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
11466         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
11467
11468 2001-09-11    <johan AT FRIJA>
11469
11470         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
11471
11472 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
11473
11474         * support/regression/tests/bug-460444.c: Added test case.
11475
11476         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
11477         (genCast): Added justification for all of the asserts.
11478
11479 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
11480
11481         * support/regression/support.c: _xdata replaced by xdata
11482
11483         * support/regression/spec.mk: removed _generic
11484
11485 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
11486
11487         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
11488
11489         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
11490         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
11491
11492         * src/z80/peeph.def: Added a rule to optimise shift then compare.
11493
11494         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
11495
11496         * support/regression/tests/bug-460010.c: Added test case.
11497
11498         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
11499
11500 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
11501
11502         * support/regression/Makefile: inter-port-clean adjusted for mcs51
11503
11504         * support/regression/testfwk.c: removed workaround for bug #436344
11505
11506         * support/regression/tests/bp.c: use less memory with mcs51
11507
11508         * support/regression/tests/bug-441448.c: use less memory
11509
11510         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
11511
11512         * support/regression/collate-results.py: typo
11513
11514 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
11515
11516         * support/regression/tests/fetchoverlap.c: Added new test case.
11517
11518         * support/regression/tests/bp.c: Added new test case.
11519
11520         * support/regression/tests/bug-448984.c: Added new test case.
11521
11522         * support/regression/tests/pow2shifts.c: Added new test case.
11523
11524         * src/z80/gen.c: Turned off the noise it normally generates for the release.
11525         (genlshTwo): Fixed right shift for count > 8.
11526
11527         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
11528
11529 2001-09-08    <johan AT FRIJA>
11530
11531         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
11532
11533 2001-09-07    <johan AT FRIJA>
11534
11535         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
11536
11537         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
11538
11539 2001-09-06    <johan AT FRIJA>
11540
11541         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
11542         * bernhard noted me at this: "() equals to (void)" (1.38)
11543
11544 2001-09-05    <johan AT FRIJA>
11545
11546         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
11547
11548 2001-09-04    <johan AT FRIJA>
11549
11550         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
11551
11552
11553 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
11554
11555         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
11556
11557 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
11558
11559         * link/z80/aslink.h: Fixed path for PATH_MAX
11560
11561 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
11562
11563         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
11564
11565         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
11566
11567         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
11568
11569         * 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.
11570
11571 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
11572
11573         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
11574         (genCmp): Fixed up genCmp for the GB with longs.
11575
11576         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
11577
11578         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
11579
11580         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
11581
11582         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
11583
11584 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
11585
11586         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
11587
11588 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
11589
11590         * 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.
11591
11592         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
11593
11594 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
11595
11596         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
11597
11598         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
11599
11600 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
11601
11602   * sim/ucsim/configure:    little improvement of Cygwin-detection
11603   * sim/ucsim/configure.in: little improvement of Cygwin-detection
11604   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
11605   * support/regression/tests/bug-221100.c: small changes for mcs51
11606   * support/regression/tests/bug-221168.c: small changes for mcs51
11607   * support/regression/tests/bug-227710.c: small changes for mcs51
11608   * support/regression/tests/staticinit.c: small changes for mcs51
11609   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
11610   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11611   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11612
11613 $Revision$