91cfe17fb505e843cad5cf50a8eebf6d1cbac3a7
[fw/sdcc] / ChangeLog
1 2006-05-30 Maarten Brock <sourceforge.brock AT dse.nl>
2
3         * src/SDCCmain.c (optionsTable, parseCmdLine): handle --use-stdout
4           immediately when encountered,
5           (printUsage): always use stderr even on windows
6
7 2006-05-30 Bernhard Held <bernhard AT bernhardheld.de>
8
9         * src/SDCCast.c (isLoopCountable): fixed bug #1478316
10         (processParms): fixed bug #1247551
11         * src/SDCCmain.c (printVersionInfo, printOptions, printUsage,
12         parseCmdLine, main): print version to stdout, help to stdout on
13         windows and to stderr on all the rest; exit with EXIT_FAILURE if
14         no arguments given
15
16 2006-05-27 Bernhard Held <bernhard AT bernhardheld.de>
17
18         * src/SDCCcse.c (findPointerSet): fixed bug #1493710
19         * support/regression/tests/bug-1493710.c: added
20
21 2006-05-27 Borut Razem <borut.razem AT siol.net>
22
23         * support/regression/fwk/lib/testfwk.c: define array in _printn() as
24           static instead auto
25         * support/regression/ports/pic16/support.c: increase stack size
26           from default 64 bytes to 128 bytes
27         * support/regression/tests/staticinit.c,
28           support/regression/tests/float.c: regression tests fully enabled
29           for pic16 port by putting the initialized data arrays into the code
30           section
31         * support/regression/ports/pic16/spec.mk: don't link default libraries.
32           This was changed by mistake in the previous version.
33
34 2006-05-28 Vangelis Rokas <vrokas AT users.sourceforge.net>
35
36         * src/pic16/gen.c (genFunction, genEndFunction): some
37         beautifications, fixed bug with falsely restoring FSR2 in large
38         stack model, thanks to Beau E. Cox for reporting the bug
39
40 2006-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
41
42         * debugger/mcs51/break.c,
43         * debugger/mcs51/cmd.c (throughout): removed unused variables and labels,
44           use %p to print pointers, made address variables unsigned
45         * debugger/mcs51/cmd.c (infoSymbols): added missing parameter to printf
46         * debugger/mcs51/symtab.c (parseSymbol): must return something
47         * src/mcs51/gen.c (aopForSym): small optimization,
48            moved declarations mcs51_ptrRegReq and mcs51_nRegs to ralloc.h,
49           (freeAsmop): added missing break,
50           (aopPut): removed parameter bvolatile, determine it inside the function,
51           (saveRegisters, unsaveRegisters): small optimization,
52           (genIpush): removed pointless check,
53           (throughout): replaced Safe_calloc, strcpy with Safe_strdup,
54           replaced sprintf with SNPRINTF,
55           replaced strcpy with strncpyz,
56           updated aopPut calls,
57           replaced D(emitcode("; genXXX", "")) with D(emitcode(";", "genXXX"))
58         * src/mcs51/ralloc.h:  added declarations mcs51_ptrRegReq and mcs51_nRegs
59
60 2006-05-24 Borut Razem <borut.razem AT siol.net>
61
62         * support/regression/tests/bug-221100.c: fixed xdata problem caused by
63           modification of test for the pic16 port, put the array to the code
64           memory for pic16port; thanks to Maarten Brock and Frieder Ferlemann
65
66 2006-05-23 Jesus Calvino-Fraga <jesusc at ece.ubc.ca>
67
68         * src/pic/gen.c: MSC 6 does not have <stdint.h>.  Use pstdint.h instead.
69         * support/Util/pstdint.h: added
70
71 2006-05-22 Borut Razem <borut.razem AT siol.net>
72
73         * src/regression/Makefile: removed bool2.c test, added -q linker option
74         * src/regression/add2.c, src/regression/add3.c, src/regression/bool1.c,
75           src/regression/bool3.c, src/regression/nestfor.c, src/regression/ptrfunc.c,
76           src/regression/compare.c, src/regression/or1.c, src/regression/compare2.c,
77           src/regression/while.c, src/regression/compare3.c, src/regression/compare4.c,
78           src/regression/compare5.c, src/regression/sub2.c, src/regression/rotate1.c,
79           src/regression/rotate2.c, src/regression/rotate3.c, src/regression/rotate4.c,
80           src/regression/switch1.c, src/regression/rotate5.c, src/regression/for.c,
81           src/regression/add.c, src/regression/sub.c, src/regression/call1.c:
82           define SUPPORT_BIT_TYPES 0, removed unused bit variables
83
84 2006-05-22 Raphael Neider <rneider AT web.de>
85
86         * src/pic16/gen.c (pic16_storeForReturn): fragile fix for
87           bug #1492360 (problematic due to generic pointers, see code)
88
89 2006-05-22 Borut Razem <borut.razem AT siol.net>
90
91         * support/regression/ports/pic16/specs.mk: removed stack size linker
92           directive
93         * support/regression/tests/array.c,
94           support/regression/tests/bitopcse.c,
95           support/regression/tests/bug-908454.c,
96           support/regression/tests/malloc.c: modified for pic16 regression test
97         * support/regression/tests/bitfields.c:
98           pic16 - excluded bitfileds of size > 8
99         * support/regression/tests/bp.c: pic16 - reduced data size
100         * support/regression/tests/bug-221100.c: pic16 - reduced data size
101         * support/regression/tests/bug-460010.c:
102           pic16 - used the absolute address the fits in memory
103         * support/regression/tests/bug-716242.c:
104           bug [ 1443651 ] pic 16: redefining symbol that cannot be redefined.
105         * support/regression/tests/float.c:
106           pic16 - excluded - data size too big
107         * support/regression/tests/onebyte.c:
108           pic16 - bug [ 1444425 ] onebyte.c regression tes fails on pic16
109         * support/regression/tests/shifts.c:
110           pic16 - function names probably have to differ in first X characters
111           (gpasm limitation?)
112         * support/regression/tests/staticinit.c:
113           pic16 - excluded some tests due error: no target memory available for
114           section ".idata"
115
116 2006-05-22 Borut Razem <borut.razem AT siol.net>
117
118         * support/Util/dbuf.c: fixed bug #1489008 fix dbuf_c_str(),
119           second try. Thanks Stas Sergeev once more.
120
121 2006-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
122
123         * src/hc08/gen.c (transferAopAop): aop forced to stack was not restored,
124           (genLeftShift, genRightShift): fixed bug 1491627
125         * src/hc08/peeph.def (rules 7, 8.x): added
126         * support/regression/tests/shifts.c (ShiftLeftByParam,
127           ShiftRightByParam, testShiftByParam): added to test variable shifting
128
129 2006-05-20 Raphael Neider <rneider AT web.de>
130
131         * src/pic/gen.c (bitpatternFromVal): fixed for 64-bit machines
132         * src/pic16/ralloc.c (newReg): use correct name in hashtable,
133           (allocReg): add only new registers to dynAllocRegs,
134           (pic16_assignRegisters): do not reset dynrIdx, fixes bugs
135             #1489055, #1445850, and probably #1483693
136
137 2006-05-19 Vangelis Rokas <vrokas AT users.sourceforge.net>
138
139         * src/pic16/glue.c (pic16_emitConfigRegs, pic16_emitIDRegs): fixed
140         bug in for-loop that didn't emit the last of CONFIG and ID registers
141
142 2006-05-18 Maarten Brock <sourceforge.brock AT dse.nl>
143
144         * src/mcs51/gen.c (genCodePointerGet): inc dptr instead of loading acc
145           with offset
146         * src/mcs51/peeph.def (186.x): updated and reenabled to fix bugs
147           1489016, 1434401 and 1490124
148         * src/ds390/peeph.def (186.x, 227.x): updated and reenabled to fix bugs
149           1489016, 1434401 and 1490124
150
151 2006-05-17 Borut Razem <borut.razem AT siol.net>
152
153         * support/Util/dbuf.c: fixed bug #1489008 fix dbuf_c_str(),
154           thanks Stas Sergeev
155
156 2006-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
157
158         * device/include/mcs51/P89c51RD2.h,
159         * device/include/mcs51/P89LPC901.h,
160         * device/include/mcs51/P89LPC922.h,
161         * device/include/mcs51/P89LPC932.h: added, thanks Omar Espinosa
162
163 2006-05-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
164
165         * device/lib/pic16/libsdcc/stack/{stack.S, Makefile.in}: add workaround
166         to fix missing stack pragma in compiled binary object file,
167
168 2006-05-14 Bernhard Held <bernhard AT bernhardheld.de>
169
170         * support/packihx/configure.in,
171         * support/packihx/configure: removed warning, autoconf >= 2.5x can
172         determine sizeof basic types even while cross compiling
173
174 2006-05-13 Bernhard Held <bernhard AT bernhardheld.de>
175
176         * src/avr/gen.c (aopop),
177         * src/ds390/gen.c (aopOp),
178         * src/hc08/gen.c (aopOp),
179         * src/mcs51/gen.c (aopop),
180         * src/pic16/gen.c (pic16_aopOp),
181         * src/pic/gen.c (aopOp),
182         * src/z80/gen.c (aopop): fix for bug #1479882; use new, exclusive asmop
183         if size of operand is smaller than spill location
184
185 2006-05-12 Borut Razem <borut.razem AT siol.net>
186
187         * *.dsw, *.dsp: changed property svn:eol-style to CRLF since they
188           have to have CR/LF line endings even if they are checked out on *nix
189           or on WIN32 in cygwin binmode
190
191 2006-05-12 Maarten Brock <sourceforge.brock AT dse.nl>
192
193         * doc/sdccman.lyx: documented numeric ranges, WEBDOC #1442369
194         * device/include/ds80c390.h: added sfr16 definitions
195         * src/ds390/gen.c,
196         * src/ds390/gen.h,
197         * src/ds390/main.c,
198         * src/ds390/ralloc.c,
199         * src/ds390/ralloc.h: changes all over the place to sync with mcs51
200           fixing several bugs and adding sfr16/sfr32, reentrant bit params,
201           bit returning functions
202         * support/regression/tests/sfr16.c: enabled test on ds390
203
204 2006-05-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
205
206         * src/hc08/gen.c (asmopToBool, genIfx): fix for bug #1429722
207         * src/hc08/gen.c (storeRegToAop): fix for bug #1439894
208
209 2006-05-11 Maarten Brock <sourceforge.brock AT dse.nl>
210
211         * sim/ucsim/sim.src/memcl.h: added get_decoder() to cl_address_space
212         * sim/ucsim/sim.src/mem.cc: implemented cl_address_space::get_decoder,
213           (cl_address_space constructor): removed expensive initialization,
214           (cl_address_space::get_cell): extended for late initialization,
215           (cl_address_space::*): use late initialization,
216           (cl_address_decoder::activate): removed expensive initialization,
217           This reduced regression test running time by 25%
218
219 2006-05-11 Bernhard Held <bernhard AT bernhardheld.de>
220
221         * packihx/,
222         * configure.in,
223         * configure,
224         * sdcc.dsw,
225         * Makefile.bcc,
226         * Makefile.in,
227         * support/packihx/Makefile.in,
228         * support/packihx/clean.mk,
229         * support/packihx/Makefile.bcc,
230         * support/packihx/PackIhx.dsp: moved packihx to support/packihx
231
232 2006-05-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
233
234         * src/SDCCval.c (valNot): fix for regression test failure
235           of not.c on big endian hosts
236
237 2006-05-10 Maarten Brock <sourceforge.brock AT dse.nl>
238
239         * device/inlcude/mcs51/msc1210.h: new, added, thanks Philippe Latu
240
241 2006-05-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
242
243         * device/lib/mcs51/Makefile.in: changed string comparison operator
244           to = for POSIX compliance; == is bash extension
245
246 2006-05-10 Maarten Brock <sourceforge.brock AT dse.nl>
247
248         * device/lib/hc08/_mulint.c: applied patch 1485428, thanks
249           kosmonaut_pirx
250
251 2006-05-09 Vangelis Rokas <vrokas AT users.sourceforge.net>
252
253         * src/pic16/gen.c (pic16_freeAsmop): release any temp registers
254         allocated by aopForSym thus fixing bug #1478657 about failed testfwk.c
255         * src/pic16/main.c (_pic16_keywords): added 'sfr16' keyword,
256         * src/pic16/ralloc.c (pic16_allocWithIdx): also a fix for bug exposed by
257         bug report #1478657,
258
259 2006-05-05 Borut Razem <borut.razem AT siol.net>
260
261         * doc/Makefile.in: remove of WARNINGS and labels.pl immediately after
262           making the html
263
264 2006-05-02 Borut Razem <borut.razem AT siol.net>
265
266         * doc/Makefile.in: removed *.ind dependency since there is no rule to
267           create *.ind, which made make to fail if invoked with -j 2
268
269 2006-05-01 Maarten Brock <sourceforge.brock AT dse.nl>
270
271         * src/SDCCglue.c (emitRegularMap): partial fix for bug 1477149, thanks
272           Hubert Sack for patch 1479782
273
274 2006-05-01 Vangelis Rokas <vrokas AT users.sourceforge.net>
275
276         * src/pic16/glue.c (pic16_printIvalStruct): fixed bug #1445929
277
278 2006-05-01 Raphael Neider <rneider AT web.de>
279
280         * src/pic/device.c (sanitise_processor_name): only remove p(ic) prefix,
281           (create_pic): store only prefix-free device name,
282           (init_pic): check for device names with "16" prefix,
283           (list_valid_pics),
284         * src/pic/device.h (struct PIC_device),
285         * src/pic/main.c (_pic14_genAssemblerPreamble): adapted to single
286             stored device name,
287         * device/include/pic/pic12f{635,675,629,683}.h,
288         * device/lib/pic/libdev/pic12f{635,675,629,683}.c: NEW device libraries
289         * device/lib/pic/libdev/Makefile.in: allow pic12* devices,
290         * device/include/pic/pic16f505.h,
291         * device/lib/pic/libdev/pic16f505.c: removed
292         * device/include/pic/pic14devices.txt: added support for pic12f
293             devices, removed unsupported non 16-bit devices
294             [above changes provided by patch from Zik Saleeba]
295         * src/pic/*, src/pic16/*, device/include/pic16/*,
296           device/lib/pic/**, device/lib/pic16/**: obfuscated email address
297
298 2006-05-01 Borut Razem <borut.razem AT siol.net>
299
300         * configure.in, configure, doc/Makefile.in:
301           sync with nightly build makefile - latex, dvipdf and dvips
302           not needed any more
303
304 2006-04-30 Bernhard Held <bernhard AT bernhardheld.de>
305
306         * support/scripts/sdcc.nsi: removed all Readmes and Makefiles
307         in the library source
308
309 2006-04-30 Maarten Brock <sourceforge.brock AT dse.nl>
310
311         * support/regression/ports/hc08/spec.mk: fixed bug 1478892
312
313 2006-04-28 Raphael Neider <rneider AT web.de>
314
315         * src/pic16/pcode.c (pic16_newpCodeOpLit12),
316         * src/pic16/gen.c (pic16_popGetLit12): NEW, create 12 bit literal,
317           (pic16_loadFSR0): handle 12 bit literals correctly, fixes #1440527
318         * src/pic16/pcode.h: added prototype for pic16_newpCodeOpLit12()
319
320 2006-04-28 Bernhard Held <bernhard AT bernhardheld.de>
321
322         * device/lib/pic/libdev/Makefile.in,
323         * device/lib/hc08/Makefile.in,
324         * device/lib/gbz80/Makefile.in,
325         * device/lib/z80/Makefile.in,
326         * device/lib/ds390/Makefile.in,
327         * device/lib/ds400/Makefile.in: added srcdir to include search path,
328         thanks to Borut for the bug report
329         * configure.in,
330         * configure: always create doc/Makefile independent from --enable-doc
331         * Makefile.in: always install from directory doc independent from
332         --enable-doc
333         * device/lib/pic/Makefile.in: added libdev again, it was erroneously
334         removed
335         * device/lib/pic/libdev/Makefile.in: fixed VPATH build
336         * doc/Makefile.in: install *.txt if present
337         * device/include/Makefile.in (install): added installation of pic/*.inc
338         and pic/*.txt files again, they were erroneously removed
339
340 2006-04-28 Raphael Neider <rneider AT web.de>
341
342         * src/pic/{gen.c,main.h,pcode.c},
343         * src/pic16/{gen.c,pcode.c}: quietened compiler warnings
344             concerning signedness with casts
345
346 2006-04-28 Raphael Neider <rneider AT web.de>
347
348         * src/pic/gen.c (genFunction): set global pic14_hasInterrupt on
349             definition of an interrupt handler,
350         * src/pic/glue.c (pic14_emitInterruptHandler): moved output of
351             interrupt handler stuff from picglue() to separate routine,
352           (picglue): enabled definition of intr handlers in files w/o main()
353
354 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
355
356         * support/librarian/sdcclib.c: moved include <limits.h> up to enable
357           compilation with MSVC 2005 Express Edition (VC8)
358
359 2006-04-26 Bernhard Held <bernhard AT bernhardheld.de>
360
361         * device/lib/Makefile: fixed build of gbz80 lib
362
363 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
364
365         * support/regression/tests/bug-460010.c,
366         * support/regression/tests/bug-524691.c,
367         * support/regression/tests/bug-716242.c: removed conditional defines
368           that are already in testfwk.h
369
370 2006-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
371
372         * src/ds390/gen.c (AccAXRrl1, AccAXLrl1): changed to real rotate by 1,
373           (AccAXRsh1): added, shift right by 1,
374           (AccAXLsh, AccAXRsh, AccAXRshS): updated for AccAXRrl1, AccAXRsh1 and
375            AccAXLrl1
376         * support/regression/tests/rotate.c: use <stdint.h> and enabled ds390
377
378 2006-04-25 Bernhard Held <bernhard AT bernhardheld.de>
379
380         * src/SDCCast.c (decorateType): partial fix for RFE 1475769,
381         remove cast to same type
382         * src/SDCCast.c (decorateType): fix for RFE 1475742,
383         optimize 'ifx (op == 0)' resp. 'ifx (op != 0)'
384         * as/z80/Makefile,
385         * link/z80/Makefile: removed, they have moved to
386         Makefile.in files
387         * configure,
388         * configure.in: replaced duplicate message about ucsim by missing sdcpp
389         * install-sh: fix bug #1204398 by setting umask 0022
390         * device/lib/Makefile: separate build of z80 and gbz80 lib
391
392 2006-04-24 Bernhard Held <bernhard AT bernhardheld.de>
393
394         Enabled VPATH feature: changed nearly all Makefiles (149 files).
395         See sdccman.lyx '2.4.10 VPATH feature' about how to use it.
396
397         One basic decision: e.g. src/clean.mk includes further files. In order
398         to make this work there are two solutions:
399         - rename another dozen clean.mk to clean_in.mk, add srcdir to them and
400           run configure on them. This way they can use
401           'include $(srcdir)/port-clean.mk'
402         - always include clean.mk by the Makefile at the same level. To avoid
403           that `make clean` tries to include and build Makefile.dep the
404           MAKECMDGOALS are examined (see e.g. src/Makefile.in). This has been
405           implemented, because now even `make uninstall` doesn't create
406           Makefile.in. clean.mk could be eliminated by pasting it in
407           Makefile.in.
408
409         * debugger/mcs51/Makefile.in: build own objects from library sources
410         (SLIB, SDCC) in current directory
411
412         * configure, configure.in: renamed --disable-device-lib-build in
413         --disable-device-lib; added --enable-doc, the required tools are
414         searched by configure; added result message; the toolchain for the
415         belonging ports are now only built, if the port is enabled.
416
417         * support/regression/*: all output is written in directory gen, because
418         the fwk and ports directories don't livet in the build tree using vpath
419
420         * doc/sdccman.lyx: renamed --disable-device-lib-build to
421         --disable-device-lib, added --enable-doc, added section VPATH
422
423         * sim/ucsim/configure.in,
424         * sim/ucsim/configure.in: hc08 couldn't be disabled, now hc08 and
425         z80 are enabled by default
426
427 2006-04-24 Raphael Neider <rneider AT web.de>
428
429         * src/pic/device.c (pic14_assignConfigWordValue): remember assignments
430             to config word, "pic14_"-prefixed some extern functions
431           (pic14_emitConfigWord): emit __config directive(s) if assignment to
432             config word has been found
433         * src/pic/device.h: added prototypes
434         * src/pic/pcode.c: added "pic14_"-prefix where needed
435         * src/pic/ralloc.c (IS_CONFIG_ADDRESS,pic14_assignRegisters): cosmetic
436             fixup
437         * src/pic/glue.c (pic14_constructAbsMap): handle assignments to config
438             words,
439           (pic14emitRegularMap): ignore config words,
440           (pic14createInterruptVect): moved generating __config directives away
441           (picglue): have __config directives emitted
442
443 2006-04-24 Borut Razem <borut.razem AT siol.net>
444
445         * doc/Makefile: sync with nightly build makefile
446
447 2006-04-24 Raphael Neider <rneider AT web.de>
448
449         * src/pic/pcoderegs.c (OptimizeRegUsage): do not optimize
450             registers that have not been assigned proper liveranges,
451             fixes #1469504 and #1474602,
452           (pCodeRegOptimizeRegUsage): fixed typo in comment
453
454 2006-04-24 Borut Razem <borut.razem AT siol.net>
455
456         * device/examples/main8051.c: deleted - it was removed from CVS
457           24.mar.2000 and after that modified 18.feb.2001, so it reappered
458           after the transition to Subversion
459         * src/SDCCalloc.h: deleted - it was removed  from CVS
460           3.feb.2001 and after that modified 18.feb.2001, so it reappered
461           after the transition to Subversion
462         * sim/ucsim/cpu.gif, sim/ucsim/interrupt.gif, sim/ucsim/new.gif,
463           sim/ucsim/serial1.gif, sim/ucsim/serial2.gif,
464           sim/ucsim/term_cpuopt.gif, sim/ucsim/timers.gif, sim/ucsim/wins.gif,
465           sim/ucsim/post.jpg, sim/ucsim/UCsim.jpg: corrected
466
467 2006-04-22 Maarten Brock <sourceforge.brock AT dse.nl>
468
469         * as/asx8051.dsp: added mcs51/strcmpi.h
470         * as/hc08/as_hc08.dsp: added asm.h, m6808.h, strcmpi.h
471         * as/hc08/aslink.h: updated lnksect prototype
472         * as/hc08/asm.h,
473         * as/mcs51/asm.h: added a_addr to struct area and s_org to struct sym
474         * as/hc08/asmain.c,
475         * as/mcs51/asmain.c (asmbl): init dot.s_org for S_ORG,
476           (newdot): handle A_ABS
477         * as/hc08/asout.c,
478         * as/mcs51/asout.c (outarea): output address
479         * as/hc08/lkaomf51.c,
480         * as/mcs51/lkaomf51.c: disabled unused array UsageType
481         * as/hc08/m08pst.c,
482         * as/mcs51/i51pst.c,
483         * as/z80/z80pst.c: "ABS" is not A_OVR
484         * as/hc08/lkarea.c (newarea): read a_addr,
485           (lnkarea): added codemap array, sort absolute areas to the front,
486            combine all GSINITx/GSFINAL,
487           (find_empty_space, allocate_space): new functions,
488           (lnksect): return next address, handle absolute sections
489         * as/mcs51/lkarea.c (newarea): read a_addr,
490           lnksect2 prototype changed,
491           (lnkarea2): define codemap unsigned, combine all GSINITx/GSFINAL,
492           (find_empty_space, allocate_space): new, factored out of lnksect2,
493           (lnksect2): return next address, handle absolute sections
494         * as/hc08/lkhead.c,
495         * as/mcs51/lkhead.c (newhead): head is absolute but not overlay
496         * as/hc08/lklibr.c (addfile, fndsym),
497         * as/mcs51/lklibr.c (addfile, buildlibraryindex, fndsym): prevent
498           index out of range and detect both '\' and '/'
499         * device/include/mcs51/c8051f200.h: added _XPAGE, removed bad comment
500         * device/include/stdbool.h: removed SDCC_ds390 from check to pass
501           regression tests (ds390 cannot return bool yet)
502         * doc/sdccman.lyx: changed version number, document changed --no-peep,
503           document critical interrupts on z80, document changed SDCC define
504         * src/asm.c (_asxxxx_mapping): fixed .org directive,
505           (_a390_mapping): added .org directive
506         * src/hc08/gen.c (transferAopAop): made bytemask log to fix warning,
507           (genMultOneByte): fixed warnings
508         * src/hc08/hc08.dsp: lowered warning level to 2 to suppress pedantic
509           ones
510         * src/pic16/device.c: removed newReg prototype, removed BYTE_IN_LONG
511         * src/pic16/gen.c (pic16_popGetLabel): made parameter key signed,
512           (pic16_genLeftShiftLiteral, genRightShiftLiteral): fixed warnings
513         * src/pic16/gen.h: changed prototype for pic16_popGetLabel
514         * src/pic16/main.c: removed newReg prototype
515         * src/pic16/pcode.c,
516         * src/pic16/pcode.h (pic16_emitDB): changed parameter c to int to fix
517           warnings
518         * src/pic16/pic16.dsp: lowered warning level to 2 to suppress pedantic
519           ones
520         * src/pic16/ralloc.c
521         * src/pic16/ralloc.h (newReg): changed type to int and size to unsigned
522           to fix warnings
523         * src/pic/pcode.c (allocInternalRegister): changed parameter optype
524           from short to PIC_OPTYPE
525         * src/pic/pic.dsp: lowered warning level to 2 to suppress pedantic ones
526         * src/pic/ralloc.c (newReg, allocInternalRegister): changed parameter
527           optype from short to PIC_OPTYPE
528         * src/port.h: made int_size unsigned to fix warnings
529         * src/SDCC.y: fixed warning on MSVC
530         * src/SDCCicode.c (getArraySizePtr): return unsigned int
531         * src/SDCCopt.c (convertToFcall): fixed warnings
532         * src/SDCCsymt.h: removed double prototype for genSymName
533         * src/xa51/ralloc.c (allocReg): made size unsigned int, type int and
534           offset int to fix warnings
535
536 2006-04-22 Borut Razem <borut.razem AT siol.net>
537
538         * doc/sdccman.lyx, */Makefile, */Makefile.in:
539           references to CVS replaced with Subversion
540
541 2006-04-21 Borut Razem <borut.razem AT siol.net>
542
543         * doc/sdccman.lyx, */Makefile, */Makefile.in:
544           references to CVS replaced with Subversion
545
546 2006-04-19 Borut Razem <borut.razem AT siol.net>
547
548         * src/version.awk: adapted for svn
549         * /asxxxx/asxhtml/*.gif: set property svn:mime-type to image/gif
550           sim/ucsim/doc/*.gif: set property svn:mime-type to image/gif
551           sim/ucsim/doc/*.jpg: set property svn:mime-type to image/jpeg
552           /binutils-avr/etc/*.vi, *.jin: removed all properties
553           support/scripts/sdcc.ico: set property svn:mime-type to image/x-icon
554
555 2006-04-19 Borut Razem <borut.razem AT siol.net>
556
557         * CVS to Subversion migration completed
558
559 2006-04-18 Borut Razem <borut.razem AT siol.net>
560
561         * support/scripts/sdcc.nsi: removed unexisting ${DEV_ROOT}\lib\pic\*.o,
562           ${DEV_ROOT}\lib\src\pic\libdev\*.S, ${DEV_ROOT}\lib\src\pic\libdev\*.inc
563
564 2006-04-17 Borut Razem <borut.razem AT siol.net>
565
566         * device/include/Makefile.in: added pic/*.inc to the installation
567
568 2006-04-15 Bernhard Held <bernhard AT bernhardheld.de>
569
570         * support/regression/collate-results.py: fixed output in case of
571         a valdiag error
572         * support/regression/generate-cases.py: fixed splitting of pathnames
573         with dots
574         * as/hc08/lklibr.c (addfile),
575         * as/mcs51/lklibr.c (addfile): fixed off-by-one bug
576
577 2006-04-11 Raphael Neider <rneider AT web.de>
578
579         * src/pic16/gen.c (getFreePtr, pic16_popRegFromString),
580         * src/pic16/ralloc.c (pic16_allocregWithName): removed debug output
581         * src/pic16/pcode.c (assignValnums): fixed #1460578
582
583 2006-04-11 Raphael Neider <rneider AT web.de>
584
585         * device/lib/pic/libdev/*.c,
586         * device/include/pic/*.h: replaced sfr and data with __sfr and __data,
587           fixes #1468739, enables compilation in --std-c99 mode
588         * support/scripts/inc2h.pl: emit __sfr/__data instead of sfr/data
589
590 2006-04-11 Raphael Neider <rneider AT web.de>
591
592         * src/pic/device.c (find_device): removed debug output
593           (list_valid_pics): enabled verbose listing of supported devices
594         * device/include/stdbool.h: define bool as char for pic14/16 as well
595
596 2006-04-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
597
598         * src/SDCC.y: allow using brackets here: "__interrupt (1) __using (1)"
599
600 2006-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
601
602         * .version: bumped version to 2.5.6
603         * src/pic/ralloc.c (newReg): MSVC doesn't support __builtin_return_address
604
605 2006-04-06 Raphael Neider <rneider AT web.de>
606
607         * .version: bumped version to 2.5.6 (pic14 ABI changed)
608         * src/SDCCmain.c: add -DSDCC_PROCESSOR=<id> for pic14 port
609         * src/pic/glue.c (emitSymbolToFile,pic14_constructAbsMap,
610           pic14emitRegularMap,pic14emitMaps): moved output for absolute symbols to
611             pic14_constructAbsMap
612           (pic14printPublics): declare absolute global symbols as global
613           (pic14createInterruptVect),
614         * src/pic/ralloc.c (IS_CONFIG_ADDRESS): support second config word,
615           (newReg): assume new registers unused, use correct name in
616             hashtable (reg->name instead of name), more debugLog output
617         * src/pic/device.h (PIC_device): added fields for verbose output
618         * src/pic/device.c: moved device definition to pic14devices.txt,
619             added routines for runtime parsing of pic14devices.txt,
620             added support for second config word
621         * src/pic/main.c (_process_pragma): removed #pragma maxram,
622           (_pic14_keywords): no longer accept "bit" and "sbit" keywords
623           (_pic14_initPaths): add search paths with "pic" suffix (not "pic14")
624           (_pic14_parseOptions): moved pCodeInitRegisters here
625           (_pic14_do_link): add "pic$(ARCH).lib" to linker arguments
626         * src/pic/pcode.c (AnalyzeBanking): bail out on unset processor,
627           (pCodeInitRegisters): rewrapped comments, perpared new approach to
628             handling the pseudo stack
629         * device/lib/Makefile.in: ignore failures in objects-pic16,
630         * device/lib/pic/{configure,configure.in,Makefile}: added libdev/
631         * device/lib/pic/NEWS: document new dependency on picXXX.lib
632         * device/lib/pic/Makefile.subdir,
633         * device/lib/pic16/Makefile.subdir: improved clean rules
634         * device/lib/pic/libdev/: NEW, pic14 device libraries
635         * device/lib/pic/libsdcc/_gptr{get,put}{1,2,3,4}.S: use _X not X
636         * device/lib/pic/libsdcc/macros.inc: use _X not X, declare default SFRs
637         * device/include/Makefile.in: create subdir and install pic14 headers
638         * device/include/pic/p16f_common.inc: removed unused declarations
639         * device/include/pic/pic16*.h: added header files for 100+ 14 bit
640             PICs from inc2h.pl v1.6,
641             replaced BIT_AT macros with struct declarations
642         * device/include/pic/pic14devices.txt: definition of supported devices,
643             all above improvements contributed by Zik Saleeba, thanks
644         * support/scripts/inc2h.pl: removed BIT_AT, replaced with structs
645         * support/scripts/sdcc.nsi: also install pic14 device libraries and
646             headers
647
648 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
649
650         * device/include/mcs51/c8051f410.h: added interrupt numbers,
651         * device/include/mcs51/c8051f200.h: old SiLabs mcu completes the list,
652           thanks to Charles Olds
653
654 2006-04-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
655
656         * debugger/mcs51/cmd.c (infoRegisters): show return address on stack
657
658 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
659
660         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug 1464657
661         * src/mcs51/gen.c (genJumpTab): fixed bug in medium model
662         * support/regression/bug1464657.c: added, new test
663
664 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
665
666         * src/SDCCmain.c (preProcess): implemented RFE 1449908, define SDCC as the
667           version number
668
669 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
670
671         * src/SDCCpeeph.c (initPeepHole): implemented RFE 1460196, when both
672           --no-peep and --peep-file <file> are used don't use default rules but
673           do use the <file>
674
675 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
676
677         * src/mcs51/gen.c (genCall): fixed bug 1457608
678
679 2006-03-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
680
681         * doc/sdccman.lyx: reverted to version 1.129 of december as my latest
682         changes seem to cause (trigger?) problems with the build system.
683
684 2006-03-29 Maarten Brock <sourceforge.brock AT dse.nl>
685
686         * src/SDCCpeeph.c (operandsLiteral): new, added,
687           (callFuncByName): inserted operandsLiteral
688         * src/mcs51/peeph.def: reenabled 132.e, added extra check to 132.x
689
690 2006-03-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
691
692         * doc/sdccman.lyx: added paragraph "Use of SDCC in Education"
693         * src/mcs51/peeph.def: disabled rule 132.e fixing bug #1453093
694
695 2006-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
696
697         * src/z80/gen.c (genFunction, genEndFunction): fixed bug 1160666,
698           implemented patch 1120823 Thanks to Willy De la Court (normal
699           interrupts need an interrupt number now if they are made critical),
700           and enabled nesting of critical functions though not for gbz80
701           (genCritical, genEndCritical): added functions
702           (genZ80Code): added cases for CRITICAL and ENDCRITICAL
703         * src/z80/mappings.i: added "ei" to all mappings
704
705 2006-03-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
706
707         * sim/ucsim/cmd.src/newcmdcl.h: applied patch fixing GCC 4.1 build
708         submitted by the Debian SDCC maintainer Aurelien Jarno:
709         "Credits goes to Martin Michlmayr, who rebuilt the whole Debian
710         archive with gcc 4.1 on mips and wrote the patch"
711
712 2006-03-16 Raphael Neider <rneider AT web.de>
713
714         * src/pic16/genarith.c (genAddLit): simplified and fixed case where
715           the left operand is shorter than the result (c* = lit-c* + int),
716           fixes bug #1450796
717         * src/pic16/gen.c (genRightShift): check IS_SYMOP before accessing
718           OP_SYMBOL
719
720 2006-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
721
722         * src/.version: increased version number to 2.5.5
723         * src/SDCCmain.c (linkEdit): do not test for PIC16 target since, PIC16
724         linking is done manually in pic16 port's _linkEdit,
725         * src/SDCCsymt.c (compStructSize): for target PIC16 and shell variable
726         PIC16_PACKED_BITFIELDS, compact bitfield structures as much as possible,
727         * src/pic16/gen.c (aopForSym): when direct register name is WREG then
728         allocate asmop as AOP_ACC,
729         (aopForRemat): added parameter 'bool result' in function declaration,
730         (pic16_aopGet): return AOP_ACC when accessing WREG,
731         (pic16_popGetTempReg): minor modification,
732         (pic16_popRegFromIdx): first try with 'pic16_regWithIdx' then with
733         'pic16_allocWithIdx',
734         (genPcall): removed ftype, usage of OP_SYM_TYPE asserted error when
735         calling function in absolute addresses,
736         (genAssign): take into account AOP_ACC asmop,
737         * src/pic16/pcode.c (pic16_newpCodeOpReg): minor modifications,
738         * src/pic16/pcoderegs.c: some debug functions and lines added,
739         * src/pic16/ralloc.c (decodeRegType): added but commented out,
740         * (pic16_typeRegWithIdx): search 'pic16_dynInternalRegs' for given
741         register too,
742         * (pic16_findFreeReg, pic16_findFreeRegNext): allocate new register via
743         call to allocReg, not by manually allocating a new one,
744         (pic16_assignRegisters): now before going through the register
745         allocating functions mark all registers as free. This eliminates some
746         side effects resulting from peephole parser done earlier in the backbone
747
748 2006-03-13 Maarten Brock <sourceforge.brock AT dse.nl>
749
750         * src/SDCCicode.c (geniCodeLogic),
751         * src/SDCCast.c (decorateType): applied patch by Bernhard for rfe 1422617
752
753 2006-03-10 Maarten Brock <sourceforge.brock AT dse.nl>
754
755         * src/mcs51/gen.c (sameReg): new, checks if two aop regs are the same,
756           (genSend): bugfix, do not allocate and free twice,
757           (shiftRLong): handle partially overlapping aops
758         * support/regression/tests/bitopcse.c: fixed warning redefined idata
759
760 2006-03-08 Borut Razem <borut.razem AT siol.net>
761
762         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata
763           for pic16
764
765 2006-03-08 Maarten Brock <sourceforge.brock AT dse.nl>
766
767         * support/regression/tests/bug1409955.c: new, added
768         * src/mcs51/gen.h: changed asmop.freed:1 to asmop.allocated for tracking
769         * src/mcs51/gen.c (newAsmop): set asmop.allocated to 1,
770           (aopForSym, aopOp): increment asmop.allocated if reused,
771           (freeAsmop): decrement asmop.allocated and check for zero instead of
772           using asmop.freed,
773           (freeForBranchAsmop): use asmop.allocated instead of asmop.freed,
774           (genNot, genCpl, genUminus, genMinus, genMult, genDiv, genMod, genCmpGt,
775            genCmpLt, genAndOp, genOrOp, genAnd, genOr, genXor, genRRC, genRLC,
776            genGetHbit, genGetAbit, genGetByte, genGetWord, genSwap,
777            genLeftShiftLiteral, genLeftShift, genRightShiftLiteral,
778            genSignedRightShift, genRightShift, genDataPointerGet,
779            genPagedPointerGet, genFarPointerGet, genCodePointerGet,
780            genGenPointerGet, genDataPointerSet, genAssign, genCast): free asmop's
781             in reverse order from allocation,
782           (genPlus, genCmpEq): free asmop's in reverse order from allocation and
783             added swappedLR to keep track
784         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata,
785           pdata & code for GCC, z80, gbz80 & hc08
786         * support/regression/tests/zeropad.c: moved defines to testfwk.h
787
788 2006-03-08 Raphael Neider <rneider AT web.de>
789
790         * src/pic16/main.c (_hasNativeMulFor): fixed bug #1444425
791
792 2006-03-07 Maarten Brock <sourceforge.brock AT dse.nl>
793
794         * device/include/mcs51/c8051f410.h: new SiLabs mcu
795         * src/ds390/peeph.def: disabled 186.d and 227.a as fix for #1434401
796         * support/regression/tests/array.c: added parenthesis, made arrays unsigned
797
798 2006-03-06 Borut Razem <borut.razem AT siol.net>
799
800         * support/regression/ports/pic16/spec.mk: link with libm18f.lib,
801           made the linker quiet
802
803 2006-03-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
804
805         * src/pic16/gen.c (genPcall): fixed bug #1443644
806         * src/pic16/device.h (struct pic16_options_t): added 'int CATregs' flag
807         which dumps before the function entry point a data byte which represents
808         the number of the local variables used by the specified function, added
809         'xinst' for initial support for Extended Instruction Support,
810         * src/pic16/gen.c (aopForSym, pic16_aopGet): beautifications,
811         (pic16_testStackOverflow): do not prefix GSTACK_TEST_NAME with
812         port->fun_prefix anymore (may change later),
813         (genFunction, genEndFunction): do not store/restore local registers for
814         _main (this should take care the --main-return command line option in
815         the future),
816         (genOr): removed some legacy pic-port instructions,
817         * src/pic16/genarith.c (genAddLit): re-enabled old code because
818         performing operations with SFR's causes data to be written more than
819         once to each SFR. Perhaps SFRs should be handled in special cases...
820         * src/pic16/glue.c: macros BIG_ENDIAN and BYTE_IN_LONG are moved to
821         pcode.h
822         * src/pic16/main.c (_process_pragma): stack bound checking did not take
823         into account for stack starting position,
824         (struct OPTIONS pic16_optionsTable): added command line argument
825         --extended or -y for Extended Instruction Support,
826         * src/pic16/ralloc.c (pic16_decodeOp): added case for FUNCTION,
827         (deassignLRs): *** perhaps the most important change, old 'for' code
828         (commented out for reference), didn't account for some registers which
829         were left marked 'not free' after a pointer operation. The change
830         reduces register usage a lot in some cases
831
832 2006-03-04 Borut Razem <borut.razem AT siol.net>
833
834         * support/regression/ports/hc08/spec.mk: remove *.asm in traget
835           _clean
836         * support/regression/tests/bug-524697.c: decreased array size for
837           mcs51 to fit into the internal RAM
838         * support/regression/Makefile.in: a little bit more verbose
839
840 2006-03-03 Borut Razem <borut.razem AT siol.net>
841
842         * support/regression/fwk/lib/testfwk.c,
843           support/regression/fwk/include/testfwk.h: introduced function
844           _prints(), nonrecursive _printn(), call _initEmu() from main()
845         * support/regression/ports/gbz80/support.asm,
846           support/regression/ports/ucz80/support.asm,
847           support/regression/ports/z80/support.asm,
848           support/regression/ports/ds390/support.c,
849           support/regression/ports/hc08/support.c,
850           support/regression/ports/host/support.c,
851           support/regression/ports/mcs51/support.c,
852           support/regression/ports/xa51/support.c: added empty _initEmu()
853           function
854         * support/regression/ports/pic16/gpsim.cmd,
855           support/regression/ports/pic16/spec.mk,
856           support/regression/ports/pic16/support.c,
857           support/regression/Makefile.in: added pic16 regression test
858
859 2006-03-01 Raphael Neider <rneider AT web.de>
860
861         * src/pic16/gen.c (genPcall,pic16_derefPtr,genGenPointerGet,
862           genConstPointerGet): use safe way of generating MOVFF to cover
863             literals as well as registers, fixes bug #1440527
864         * src/pic16/glue.c (pic16_printIvalBitFields): prevent NULL pointer
865             dereference
866           (pic16_printIvalUnion,pic16_isUnion): NEW, handle initialized unions
867             more correctly, fixes bug #1232186
868           (pic16_printIval): use pic16_printIvalUnion() for initialized unions
869         * src/pic16/main.c (_pic16_linkEdit): reorder linker arguments to make
870             gplink guess the correct processor in more cases, applied patch
871             from Till Riedel attached to and fixing bug #1436552
872
873 2006-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
874
875         * support/regression/tests/array.c: added, contains check for #1434401
876         * src/mcs51/peeph.def: disabled 186.d as temporary fix for #1434401
877
878 2006-02-16 Maarten Brock <sourceforge.brock AT dse.nl>
879
880         * device/include/mcs51/at89s8253.h: new, thanks to Krzysztof Polomka
881         * device/include/mcs51/at89S8252.h: fixed, thanks to Krzysztof Polomka
882         * device/include/mcs51/c8051f326.h,
883         * device/include/mcs51/c8051f340.h: new SiLabs mcu's
884         * device/include/mcs51/c8051f000.h,
885         * device/include/mcs51/c8051f018.h,
886         * device/include/mcs51/c8051f020.h: used () with __at, renamed IDLE,STOP to
887           PCON_IDLE,PCON_STOP and added sfr16 definitions
888
889 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
890
891         * src/mcs51/gen.c (genPlus, genMinus, genMult, genGetAbit, genGetByte,
892           genGetWord): fixed bug 1409955
893
894 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
895
896         * device/include/hc08/mc68hc908gp32.h,
897         * device/include/hc08/mc68hc908jb8.h: removed AWUL, added PTA6 & PTA7
898
899 2006-02-13 Maarten Brock <sourceforge.brock AT dse.nl>
900
901         * src/SDCCast.c (constExprValue): return NULL if not a value
902         * src/SDCCglue.c (printIvalArray): fixed bug 1225568
903         * src/hc08/gen.c(genUnpackBits, genUnpackBitsImmed): fixed bug 1019480
904         * support/regression/tests/bitfields.c: enabled signed bitfield for all
905
906 2006-02-13 Borut Razem <borut.razem AT siol.net>
907
908         * src/regression/ptrarg.c: added, fails due to bug #1430967
909         * src/regression/Makefile: ptrarg.c added, ...
910
911 2006-02-12 Maarten Brock <sourceforge.brock AT dse.nl>
912
913         * src/z80/gen.c (genUnpackBits): fixed bug 1019480
914         * support/regression/tests/bitfields.c: enabled signed bitfield for z80
915
916 2006-02-11 Borut Razem <borut.razem AT siol.net>
917
918         * src/SDCCmain.c: Added "sdcc: Calling linker..." if --verbose,
919           print "Processor: xxx" message to stdout only if --verbose
920
921 2006-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
922
923         * src/SDCCglue.c (printIvalStruct): fixed bug 1426356 union initializer
924         * support/regression/tests/bug1426356.c: added
925         * support/regression/tests/bitfields.c: removed 2 tests
926
927 2006-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
928
929         * device/include/mcs51/at89c51snd1c.h: updated comments, see patch 1428901
930         * device/include/mcs51/c8051f330.h,
931         * device/include/mcs51/c8051f350.h: used () with __at, renamed IDLE,STOP to
932           PCON_IDLE,PCON_STOP and added sfr16 definitions
933         * device/lib/_divsint.c,
934         * device/lib/_divuint.c,
935         * device/lib/_divulong.c,
936         * device/lib/_divulong.c: renamed a,b to x,y to avoid confusion, fixed
937           register bank bug for small stackauto
938
939 2006-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
940
941         * support/regression/fwk/lib/timeout.c: include <stdlib.h> for exit()
942
943 2006-02-08 Maarten Brock <sourceforge.brock AT dse.nl>
944
945         * support/regression/ports/mcs51-xstack-auto/spec.mk: forgot -I(...)/mcs51
946         * all.dsp: corrected several bin paths
947         * device/include/mcs51/c8051f120.h,
948         * device/include/mcs51/c8051f300.h,
949         * device/include/mcs51/c8051f310.h: used () with __at and renamed IDLE,STOP
950           to PCON_IDLE,PCON_STOP
951         * device/include/mcs51/c8051f320.h: see above, also added sfr16 definitions
952         * device/lib/printf_large.c (output_float): fixed bug 1388703
953         * support/regression/tests/bug1057979.c: added test for bug 1388703
954
955 2006-02-08 Raphael Neider <rneider AT web.de>
956
957         * src/pic/pcode.c (pciTRIS): fixed typo,
958           (BuildFlow,LinkFlow_pCode): added (disabled) debug output,
959           (LinkFlow): fixed handling of flows that end in a call,
960           (ReuseReg): perform safety check earlier
961         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed
962             to work with flows at the beginning of a pBlock,
963             fixes #1426557 (Symbol not previously defined),
964           (pic14_ReMapLiveRanges): NEW, destroy and rebuild register
965             usage information
966           (RemoveUnusedRegisters): update register usage info
967         * src/pic/ralloc.c (newReg): prevent duplicate registers from being
968             created, reuse existing ones instead
969         * src/pic/gen.c (genPcall): fixed #1424719
970
971 2006-02-07 Bernhard Held <bernhard AT bernhardheld.de>
972
973         * link/z80/lkmain.c,
974         * link/z80/lklex.c,
975         * link/z80/lkdata.c,
976         * link/z80/aslink.h: fixed build on current cygwin:
977         replaced getline() by lk_getline()
978
979 2006-02-01 Borut Razem <borut.razem AT siol.net>
980
981         * src/regression/add.c, src/regression/add2.c, src/regression/add3.c,
982           src/regression/add4.c, src/regression/and1.c, src/regression/and2.c,
983           src/regression/arrays.c, src/regression/b.c, src/regression/bank1.c,
984           src/regression/bool1.c, src/regression/bool2.c,
985           src/regression/bool3.c, src/regression/call1.c,
986           src/regression/compare.c, src/regression/compare10.c,
987           src/regression/compare2.c, src/regression/compare3.c,
988           src/regression/compare4.c, src/regression/compare5.c,
989           src/regression/compare6.c, src/regression/compare7.c,
990           src/regression/compare8.c, src/regression/compare9.c,
991           src/regression/configword.c, src/regression/for.c,
992           src/regression/inline.c, src/regression/mult1.c,
993           src/regression/nestfor.c, src/regression/or1.c,
994           src/regression/pointer1.c, src/regression/ptrfunc.c,
995           src/regression/rotate1.c, src/regression/rotate2.c,
996           src/regression/rotate3.c, src/regression/rotate4.c,
997           src/regression/rotate5.c, src/regression/rotate6.c,
998           src/regression/rotate7.c, src/regression/string1.c,
999           src/regression/struct1.c, src/regression/sub.c,
1000           src/regression/sub2.c, src/regression/switch1.c,
1001           src/regression/while.c, src/regression/xor.c,
1002           src/regression/create_stc, src/regression/simulate,
1003           src/regression/rt.sh, src/regression/Makefile: reenabled Scott's PIC14
1004           regression tests
1005         * src/regression/gpsim_assert.h: added
1006
1007 2006-01-28 Bernhard Held <bernhard AT bernhardheld.de>
1008
1009         * src/ds390/gen.c (unsaveRegisters): fixed literal function pointer
1010         ((void (code *) (void)) 0) ();
1011         * as/hc08/aslex.c,
1012         * as/hc08/aslink.h,
1013         * as/hc08/asm.h,
1014         * as/hc08/asmain.c,
1015         * as/hc08/lkdata.c,
1016         * as/hc08/lklex.c,
1017         * as/hc08/lkmain.c,
1018         * as/mcs51/aslex.c,
1019         * as/mcs51/aslink.h,
1020         * as/mcs51/asm.h,
1021         * as/mcs51/asmain.c,
1022         * as/mcs51/lkdata.c,
1023         * as/mcs51/lklex.c,
1024         * as/mcs51/lkmain.c,
1025         * as/z80/aslex.c,
1026         * as/z80/asm.h,
1027         * as/z80/asmain.c: fixed build on current cygwin:
1028         replaced getline() by as_getline()
1029
1030 2006-01-27 Bernhard Held <bernhard AT bernhardheld.de>
1031
1032         * src/SDCC.y: fixed bug #716242, exchanged pointer and function
1033         declarator in the symbol chain
1034         * src/SDCCsymt.h,
1035         * src/SDCCsymt.c (processFuncPtrArgs): added, removes "(void)"
1036         parameter list for function pointers
1037         * src/SDCCast.c (decorateType): added call of processFuncPtrArgs()
1038         * support/regression/tests/bug-716242.c: added
1039
1040 2006-01-20 Bernhard Held <bernhard AT bernhardheld.de>
1041
1042         * src/SDCCicode.c (geniCodeAdd, geniCodeArray): use char for array
1043         offset if possible
1044         * src/SDCCast.c (getLeftResultType): 255 fits in char, not 256
1045
1046 2006-01-18 Bernhard Held <bernhard AT bernhardheld.de>
1047
1048         * src/SDCCast.c (backPatchLabels): fixed bug #1408066: made it
1049         inifinitely recurseable, added static
1050         * support/regression/tests/bug-1408066.c: added
1051
1052 2006-01-17 Bernhard Held <bernhard AT bernhardheld.de>
1053
1054         * src/SDCCicode.h,
1055         * src/SDCCicode.c (newiTempPreheaderLabel, newiTempLoopHeaderLabel):
1056         renamed, added possibility to create "postLoopLbl"-labels
1057         * src/SDCCBBlock.c (iCodeBreakDown): renamed newiTempPreheaderLabel to
1058         newiTempLoopHeaderLabel
1059         * src/SDCCloop.c (newInduction, newRegion, backEdges, insertIntoLoop,
1060         isNotInBlocks, addToExitsMarkDepth, createLoop, dominatedBy,
1061         addDefInExprs, assignmentsToSym, isOperandInvariant, pointerAssigned,
1062         hasNonPtrUse, loopInvariants, addressTaken, findInduction,
1063         findDefInRegion, mergeRegions, ifMerged, mergeInnerLoops): made static,
1064         (pinduction, pregion, hasIncomingDefs, findLoopEndSeq): disabled,
1065         (basicInduction): fixed bug #136564, made static,
1066         (loopInduction): changed parameter of basicInduction, made static,
1067         (addPostLoopBlock): added
1068         * src/SDCCloop.h: removed backEdges, pregion, pinduction,
1069         loopOptimizations, addressTaken, findDefInRegion, hasIncomingDefs,
1070         findLoopEndSeq
1071         * support/regression/tests/bug-136564.c: added
1072         * support/regression/ports/mcs51-xstack-auto/spec.mk: added
1073         --std-sdcc99 to LIBSDCCFLAGS
1074
1075 2006-01-16 Bernhard Held <bernhard AT bernhardheld.de>
1076
1077         * src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false
1078         while loop
1079         * support/regression/tests/bug-1406131.c: added
1080
1081 2005-12-31 Bernhard Held <bernhard AT bernhardheld.de>
1082
1083         * src/SDCCast.c (decorateType): fix promotion of unary minus
1084         * src/SDCCsymt.c (computeType): beautified
1085         * src/SDCCval.c (cheapestVal): beautified, old non-Ansi version removed,
1086         (valUnaryPM, valComplement): fix sign and promotion,
1087         (valNot): ANSI: result type is int (SDCC: unsigned char)
1088         * support/regression/tests/uminus.c: speedup by removing superflous
1089         test case 'int'
1090         * support/regression/tests/onebyte.c: added promotion and signedness
1091         tests for unary minus
1092         * support/regressions/tests/bug-477927.c: disable warning about
1093         uninitialized variables
1094         * support/regression/tests/not.c: added
1095
1096 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
1097
1098         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
1099         * src/mcs51/gen.c (gen51Code): show final register usage after
1100         fillGaps in asm with --i-code-in-asm
1101         * src/SDCClrange.c (sequenceiCode, setLiveFrom, setLiveTo,
1102         markLiveRanges, markAlive, findNextUseSym, findNextUse, unvisitBlocks,
1103         incUsed, rliveClear, adjustIChain): made static,
1104         (setFromRange): excluded because it's unused,
1105         (findPrevUseSym, markWholeLoop): added,
1106         (findPrevUse): rewritten; fixes bug 895992; now a complete search
1107         through all branches of predecessors enables sdcc to emit the warning
1108         W_LOCAL_NOINIT, marking of outermost loop was incomplete,
1109         (rlivePoint): made static, added parameter emitWarnings which is only
1110         true during the first run out of two,
1111         (findRecursiveSucc, findRecursivePred): removed,
1112         (computeLiveRanges): made static, added parameter emitWarnings,
1113         (dumpIcRlive): added for debugging only
1114         * src/SDCClrange.h: added boolean parameter to computeLiveRanges(),
1115         removed prototype of setFromRange()
1116         * src/SDCCopt.c (eBBlockFromiCode): added new parameter emitWarnings
1117         in call of computeLiveRanges()
1118         * support/regression/tests/bug-895992.c: added
1119         * support/regression/tests/bug-971834.c: added
1120         * support/valdiag/tests/bug-895992.c: added
1121         * support/valdiag/tests/bug-971834.c: added
1122
1123 2005-12-18 Raphael Neider <rneider AT web.de>
1124
1125         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
1126           (genUnpackBits): improved code for direct operands,
1127           (genPackBits): improved code for literal assignment to bitfields
1128             and for direct destination operands (no FSR indirection),
1129             prevented redundant AND, fixes #1362800,
1130           (AccLsh): added parameter to disable masking of the result
1131         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
1132           skip instructions with side-effects (like incfsz),
1133           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
1134         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
1135         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
1136           fixes #1375263
1137
1138 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
1139
1140         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
1141         volatile variables as spill location
1142
1143 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
1144
1145         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
1146         replacing literals
1147         * support/regression/tests/bug-1376320.c: added
1148
1149 2005-12-08 Raphael Neider <rneider AT web.de>
1150
1151         * src/pic/device.c: renamed is_shared to pic14_is_shared
1152         * src/pic/gen.c (genIfx): re-enabled handling of sbits
1153         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
1154           (is_valid_identifier): added for above workaround
1155
1156 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
1157
1158         * device/lib/Makefile.in: fixed to enable port-specific-objects
1159         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
1160           char, thanks Hubert Sack
1161         * doc/sdccman.lyx: documented --xstack-loc,
1162           elaborated a bit more on interrupts and pitfalls,
1163           removed "setjmp/longjmp unsupported",
1164           documented some unsupported C99 features
1165         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
1166         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
1167           if, thanks Hubert Sack
1168         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
1169         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
1170           make make_library
1171         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
1172           regression tests can report resource usage (rfe 700441)
1173         * support/regression/collate-results.py: report resource usage
1174         * support/regression/ports/ds390/spec.mk,
1175         * support/regression/ports/hc08/spec.mk,
1176         * support/regression/ports/mcs51/spec.mk,
1177         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
1178         * support/regression/ports/ds390/uCsim.cmd,
1179         * support/regression/ports/hc08/uCsim.cmd,
1180         * support/regression/ports/mcs51/uCsim.cmd,
1181         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
1182         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
1183           library, use the default one
1184         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
1185           building the library
1186
1187 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
1188
1189         * config.dsp: added dependency on .version and configure_vc.awk
1190         * device/include/setjmp.h: updated for --stack-auto and --xstack
1191         * device/include/mcs51/at89c51snd1c.h: corrected line endings
1192         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
1193         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
1194         * device/lib/libsdcc.lib: added _setjmp
1195         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
1196           (decorateType): fixed bug 1372851,
1197           (optimizeGetHbit): fixed warning
1198         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
1199           array initialisation
1200         * support/regression/tests/bug1057979.c: added test for bug 1358192
1201         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
1202
1203 2005-12-03 Borut Razem <borut.razem AT siol.net>
1204
1205         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
1206           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
1207
1208 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
1209
1210         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
1211         createIval): implement symbol independant "flexible array member",
1212         (createIvalCharPtr): implemented flexible array initialisation with a
1213         string
1214         * src/SDCCsymt.c (copyStruct): removed,
1215         (getSize): fixed misleading comment,
1216         (getAllocSize): removed, the additional allocation size is now in
1217         sym->flexArrayLength,
1218         (checkStructFlexArray): new, syntax checks for flexible array members,
1219         (compStructSize): added syntax checks for "flexible array members"
1220         (copyStruct): removed,
1221         (copyLinkChain): removed inefficient fix for bug 770487
1222         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
1223         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
1224         symbol->flexArrayLength
1225         * src/SDCCerr.c,
1226         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
1227         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
1228         * support/regression/tests/structflexarray.c: added
1229         * support/valdiag/tests/structflexiblearray.c: added
1230
1231 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
1232
1233         * src/SDCCast.c (decorateType): fixed bug 1368489
1234         * support/Util/SDCCerr.c,
1235         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
1236
1237 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1238
1239         * device/include/mcs51/at89c51snd1c.h: added file submitted by
1240           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
1241
1242 2005-11-27 Borut Razem <borut.razem AT siol.net>
1243
1244         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
1245           support/cpp2/mkdeps.h: added command line option
1246           -obj-ext=<extension> to SDCPP to define object file externion, used
1247           for generation of make dependencies (-M)
1248         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
1249
1250 2005-11-26 Borut Razem <borut.razem AT siol.net>
1251
1252         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
1253           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
1254           added pic and pic16 libraries
1255
1256 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1257
1258         * device/include/float.h: Corrected typo in prototype of __fsgt
1259
1260 2005-11-25 Borut Razem <borut.razem AT siol.net>
1261
1262         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
1263           added creation of model-mcs51-stack-auto libraries
1264
1265 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
1266
1267         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
1268         and fields-list too
1269         * src/SDCCast.c (createIvalArray): removed obsolete comment
1270
1271 2005-11-24 Borut Razem <borut.razem AT siol.net>
1272
1273         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
1274           added missing device/lib/mcs51/crt*.asm sources
1275
1276 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
1277
1278         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
1279
1280 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
1281
1282         * device/lib/_fs2schar.c,
1283         * device/lib/_fs2sint.c,
1284         * device/lib/_fs2slong.c: optimized inline asm
1285
1286 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1287
1288         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
1289           Better handling of floats between -1.0 and 0.0.
1290
1291 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1292
1293         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
1294           (the missing "if"s prohibited removal of redundant labels)
1295
1296 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1297
1298         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
1299           Properly convert floats between -1.0 and 0.0 to long, int, and char
1300           types (max integer value of negative floats tends to zero).
1301         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1302           Removed changes made so to work properly with floats between
1303           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
1304           and _fs2char.c
1305
1306 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1307
1308         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
1309         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
1310         (genCast) cosmetic change
1311         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
1312         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
1313         from mcs51
1314         * support/regression/tests/bitfields (testSignedBitfields): added
1315
1316 2005-11-18 Borut Razem <borut.razem AT siol.net>
1317
1318         * sdcc/device/lib/Makefile.in: remove all unnecessary files
1319         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
1320           introduced SILENT option to make building of pic16 libraries less
1321
1322 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1323
1324         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1325           Now they work properly with floats between -1.0 and 0.0
1326         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
1327
1328 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
1329
1330         * src/SDCCicode.c (printOperand): added missing else
1331
1332 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1333
1334         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
1335         reformatted for better readability
1336         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
1337         signed bitfields
1338
1339 2005-11-17 Borut Razem <borut.razem AT siol.net>
1340
1341         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
1342           introduced SILENT option to make building of pic16 libraries less
1343           verbose - used for nightly snapshot build
1344         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
1345           available on Win32 platforms.
1346         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
1347           medium, large, pic and pic16
1348
1349 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1350
1351         * device/lib/printf_large.c: Temporary patch for bug 1358192:
1352           printf("%f"...) sets fraction to zero.
1353
1354 2005-11-16 Raphael Neider <rneider AT web.de>
1355
1356         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
1357           fixes #1357221
1358         * src/pic/gen.c (genIfx): implemented for CARRY bit
1359         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
1360           to generic pointers, fixes #1357332,
1361           (pic16_movLit2f): NEW,
1362           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
1363
1364 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
1365
1366         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
1367
1368 2005-11-11 Raphael Neider <rneider AT web.de>
1369
1370         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
1371         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
1372           compute pointer's type from operand,
1373           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
1374           improved single bit reads, fixes bug #1353379
1375
1376 2005-11-09 Borut Razem <borut.razem AT siol.net>
1377
1378         * support/scripts/sdcc.nsi: added lib/pic to the package
1379
1380 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
1381
1382         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
1383
1384 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
1385
1386         * support/regression/tests/bug1348008.c: added
1387         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
1388         * support/regression/tests/bug1337835.c: updated comment
1389
1390 2005-11-06 Borut Razem <borut.razem AT siol.net>
1391
1392         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1393           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1394           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1395           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1396           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
1397           dynamic construction of cl_error_class and derivates - 2.nd try
1398
1399 2005-11-05 Borut Razem <borut.razem AT siol.net>
1400
1401         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
1402           bug, which caused Bus Errors on sparc solaris
1403
1404 2005-11-04 Borut Razem <borut.razem AT siol.net>
1405
1406         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1407           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1408           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1409           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1410           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
1411           and derivates to resolve the initialization problem on OSX
1412
1413 2005-11-02 Borut Razem <borut.razem AT siol.net>
1414
1415         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1416           corrected typo - #include <winsock2.h>
1417
1418 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
1419
1420         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
1421           (_asxxxx_mapping): added org directive for future enhancements
1422
1423 2005-11-01 Borut Razem <borut.razem AT siol.net>
1424
1425         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1426           enabled sockets on WIN32
1427         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
1428
1429 2005-10-31 Borut Razem <borut.razem AT siol.net>
1430
1431         * support/regression/generate-cases.py: escape backslashes in {testcase}:
1432           WIN32 backslash path delimiters should be escaped when used in C strings
1433         * support/regression/tests/bitfields.c: exclude failing assertions for
1434           __CYGWIN32__ and __MINGW32__ hosts
1435
1436 2005-10-30 Borut Razem <borut.razem AT siol.net>
1437
1438         * src/SDCCutil.c: corrected double comparison typo
1439
1440 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
1441
1442         * device/lib/medium/Makefile: added for new memory model medium
1443         * device/include/asm/mcs51/features.h: updated for medium/pdata
1444         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
1445           added Multiply & Accumulate sbit's and MAC0_PAGE define
1446         * device/include/mcs51/c8051f300.h: added sfr16 definitions
1447         * device/include/mcs51/c8051f310.h: added sfr16 definitions
1448         * device/lib/_mullong.c: update for medium model
1449         * device/lib/incl.mk: added medium model
1450         * doc/sdccman.lyx: documented medium model
1451         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
1452         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
1453         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
1454         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
1455           (allocParms): set SCLS and OCLS to pdata for medium model
1456         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
1457           for pdata,
1458           (powof2): return <0 if not power of 2
1459         * src/avr/gen.c (genBitWise): use updated powof2
1460         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
1461           (shiftR2Left2Result): small optimization in setup, save acc when storing,
1462           (shiftLLeftOrResult): use B if necessary
1463         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
1464         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
1465         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
1466         * support/regression/Makefile.in: added test-mcs51-medium
1467         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
1468
1469 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
1470
1471         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
1472         specifier unsigned
1473         * device/lib/time.c (mktime): fixed bug 1334315
1474
1475 2005-10-28 Raphael Neider <rneider AT web.de>
1476
1477         * device/include/pic/p16f_common.inc: added common declarations
1478         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
1479
1480 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1481
1482         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
1483           (aopPutUsesAcc): added to predict accumulator use,
1484           (assignResultValue): save acc if necessary,
1485           (genMinusDec): store result if indirectly addressed,
1486           (genDivOneByte):  save acc if necessary,
1487           (movLeft2Result): bugfix if left already in acc,
1488           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
1489             attention to accumulator use (esp. pdata),
1490           (genReceive): receive pdata correctly
1491         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
1492         * src/SDCCicode.h: added isOperandInPagedSpace prototype
1493
1494 2005-10-27 Raphael Neider <rneider AT web.de>
1495
1496         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
1497
1498 2005-10-27 Raphael Neider <rneider AT web.de>
1499
1500         * .version: changed version to 2.5.4
1501         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
1502         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
1503           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
1504             arithmetics support routines
1505         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
1506         * device/lib/Makefile.in: also create installdir for pic
1507
1508         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
1509           pic14 port as well
1510         * src/pic/device.c (dump_sfr): rewritten to delegate register
1511           placement to the linker (use `extern sym' rather than sym EQU addr),
1512           (validAddress): fixed to check last specified address
1513         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
1514           (popGetLit): truncate literal value to 8 bit,
1515           (popGet): moved assert to more appropriate place
1516           (popGetExternal): create pCode operand from and mark the according
1517             symbol as being `extern'
1518           (popGetAddr): added sanity check on immediate's offset, provide
1519             GPOINTER tag on demand
1520           (aopPut): fixed for immediates,
1521           (mov2w_op): move operand's address or contents to WREG (depending on
1522             operand type), safer variant of mov2w,
1523           (movwf,call_libraryfunc): NEW, handy abbreviations,
1524           (get_argument_pcop,get_return_val_pcop,pass_argument,
1525           get_returnvalue): interface for accessing function parameters and
1526             return values,
1527           (assignResultValuei,genRet): use new parameter/return value interface
1528           (pic14_getDataSize): back to old version handling generic pointers,
1529           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
1530             provided implementation and/or fixed old one,
1531           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
1532             calls, removed legacy 8051 reference code
1533           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
1534           (loadSignToC): NEW, move the operands sign bit to CARRY,
1535           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
1536             genRightShiftSigned, accepts negative shift counts,
1537           (setup_fsr): load FSR and adjust IRP (indirect memory access),
1538           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
1539             generic pointers, __data pointers and __code pointers,
1540           (genUnpackBits,genPackBits): rewritten to work with generic pointers
1541             and signed bitfields, limit bitfields to 8 bit,
1542           (genDataPointerGet): fixed number of bytes read,
1543           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
1544           (genPointerGet,genPointerSet): fixed handling of __code pointers,
1545             pointers to constant data are no longer assumed to point to __code
1546             space, removed invalid pointer types,
1547           (bitpatternFromVal): retrieve the PICs representation of an integer
1548             or float literal,
1549           (genDataPointerSet): fixed assigning to po_immediate operands,
1550           (genGenPointerSet): implemented as library call,
1551           (genIfx): fixed incorrect condition,
1552           (genAddrOf): limit generic pointers' addresses to 2 bytes,
1553             provide GPOINTER tag according to destination's storage class,
1554           (genCast): added code to handle casting to generic pointers, added
1555             sign-/zero extension of the result
1556           (aop_isLitLike,op_isLitLike): fixed handling of immediates
1557         * src/pic/gen.h: added macros to access IRP bit in STATUS register
1558         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
1559           extend the result
1560         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
1561           address/register resides in the shared banks
1562           (emitSymbolToFile): improved to handle global and `pinned' symbols,
1563             put all variables into separate sections (have the linker arrange
1564             them)
1565           (picglue): put init code and interrupt handlers in separate sections
1566         * src/pic/main.c: added port specific options table, modified to PORT
1567           structure to make GPOINTERs 3 byte, added pic14_options
1568           (_pic14_do_link): private linking routine (update paths to libraries,
1569             add libsdcc.lib by default)
1570         * src/pic/main.h: declare pic14_options
1571         * src/pic/pcode.c: fixed instructions i/o relations,
1572           (RegCond): reverted to correct version,
1573           (newpCodeOpLit): truncate literals to 8 bit,
1574           (genericPrint): added debug output,
1575           (getRegFromInstruction): fixed for various operand types, simplified
1576           (BuildFlow): fixed broken handling of isntructions with labels
1577           (LinkFlow): start at last instruction in flow (skip trailing comments),
1578             pass the flow on to the next instruction after CALL
1579           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
1580           (insertPCodeInstruction): fixed inserting after a skip instruction,
1581           (DoBankSelect): fixed for labeled instructions
1582           (OptimizepBlock): honor --nopeep switch
1583           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
1584         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
1585         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
1586           (pCodeOptime2pCodes): allow disabling this optimization via
1587             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
1588             but is still buggy), started implementation of a dataflow based
1589             pCode optimization (CSE + dead code elimination)
1590           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
1591         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
1592           names are independant of the stack location and therefore portable across
1593           devices
1594
1595 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1596
1597         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
1598           (selectSpil): fixed bug 1337835 by not spilling bit variables
1599         * support/regression/tests/bug1337835.c: added test for this bug
1600         * src/mcs51/peeph.def: restart after rule 3.c,
1601           addded rules 263.x to optimize loading constants
1602
1603 2005-10-26 Raphael Neider <rneider AT web.de>
1604
1605         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
1606         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
1607           (genAssign): emit warning when casting literals to generic pointer
1608             type, also applies when taking the address of a fixed variable,
1609           (genCast): improved casting to generic pointers
1610         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
1611           extern variables, added verbose error message
1612         * device/include/pic16/{string.h,errno.h}: added #pragma library c
1613
1614 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
1615
1616         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
1617         carry must be complemented too
1618         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
1619         could be emitted by genMinus
1620         * src/SDCCval.c (constVal): fixed bug 1305065
1621
1622 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
1623
1624         * src/SDCCast.c (addCast): added promotion for bit variables
1625         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
1626         promotion casts + optimisation
1627         (optimizeGetWord): fix warning 'i' might be used uninitialized
1628         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
1629         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
1630
1631 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
1632
1633         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
1634         all chars are promoted to int; promotion should be handled in SDCCast.c
1635
1636 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1637
1638         * device/lib/_strcmp.c: Fixed bug 1326457
1639
1640 2005-10-11 Raphael Neider <rneider AT web.de>
1641
1642         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
1643         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
1644
1645 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
1646
1647         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
1648         * support/regression/tests/sfr16.c: added test for the sfr32 bug
1649
1650 2005-10-04 Raphael Neider <rneider AT web.de>
1651
1652         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
1653           device/lib/pic16/pics.all: added pic18f1320
1654         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
1655
1656 2005-09-30 Raphael Neider <rneider AT web.de>
1657
1658         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
1659         * src/pic16/devices.inc: NEW, provides device descriptions
1660         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
1661
1662 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
1663
1664         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
1665           GETHBIT
1666
1667 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
1668
1669         * doc/sdccman.lyx: updated Highest Order Bit documentation,
1670           documented Any Order Bit, Higher Order Byte and Higher Order Word
1671         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
1672         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
1673           (optimizeGetAbit): new, to get any bit, not only the high bit,
1674           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
1675           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
1676           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
1677           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
1678             RIGHT_OP: also try GETBYTE, GETWORD optimization,
1679             GETABIT, GETBYTE, GETWORD: decorate them,
1680           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
1681           (ast_print): added GETABIT, GETBYTE, GETWORD
1682         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
1683         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
1684           (geniCodeBinary): new generic binary icode,
1685           (ast2iCode): added GETABIT, GETBYTE, GETWORD
1686         * src/port.h: updated comment for PORT.hasExtBitOp
1687         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
1688           (genGetByte): new, to get a single byte,
1689           (genGetWord): new, to get a word from a long,
1690           (gen51Code): added GETABIT, GETBYTE, GETWORD
1691         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
1692
1693 2005-09-23 Raphael Neider <rneider AT web.de>
1694
1695         * configure.in, configure: have device/lib/pic configured
1696         * device/lib/Makefile.in: added model-pic14
1697         * device/lib/clean.mk: added pic/ to clean rule
1698         * device/lib/pic: added rudimentary pic14 library providing support
1699           functions for multiplication/division/generic pointer access
1700         * src/SDCCopt.c (convilong): mark support functions as extern
1701           for pic14 port as well
1702         * src/pic/gen.c (genMult): added assertions,
1703           (genpic14Code): emit warning on unhandled iCodes
1704         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
1705         * src/pic/pcode.c (pCodeOpCopy),
1706         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
1707           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
1708           SFR_REGISTER}), made safe for future extensions
1709         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
1710           instructions even if preceeded by SKIP instructions (also remove
1711           them); removed unused code
1712         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
1713           prevents leaving parts of the structure uninitialized after copying
1714
1715 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
1716
1717         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
1718           ago by me
1719         * support/regression/tests/addsub.c: added test for the bug
1720
1721 2005-09-21 Raphael Neider <rneider AT web.de>
1722
1723         * device/include/pic16/pic18f1220.h,
1724           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
1725         * device/lib/pic16/Makefile.rules: added missing opening paren
1726         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
1727           are provided in genutils.c,
1728           (genUminusFloat,genUminus,genCmpEq): added asserts on different
1729           operand/result sizes,
1730           (genCmp): assert on NULL pointers first, then check deref'ed values
1731         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
1732           result size
1733
1734 2005-09-18 Raphael Neider <rneider AT web.de>
1735
1736         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
1737           as these are now unused,
1738           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
1739         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
1740           local, avoids uninitialized pointer dereference on r->name
1741         * src/pic16/ralloc.c (newReg): fixed indentation
1742
1743 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
1744
1745         * src/SDCCval.c (constVal): fixed bug 730366
1746         * support/Util/SDCCerr.c,
1747         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
1748
1749 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
1750
1751         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
1752
1753 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
1754
1755         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
1756
1757 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
1758
1759         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
1760           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1761         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
1762           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1763         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
1764         * packihx/packihx.c (hexDigit): made c unsigned char
1765         * as/mcs51/lklibr.c (fndsym),
1766         * link/z80/lkgb.c (gb),
1767         * link/z80/lklibr.c (fndsym),
1768         * link/z80/lkrloc.c (relr),
1769         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
1770         * src/SDCC.lex (checkCurrFile, process_pragma),
1771         * src/SDCCglue.c (spacesToUnderscores),
1772         * src/SDCCmain.c (setParseWithComma, processFile),
1773         * src/asm.c (tvsprintf, printCLine),
1774         * src/avr/gen.c (emitcode, aopPut),
1775         * src/ds390/gen.c (emitcode),
1776         * src/hc08/gen.c (emitcode, emitinline),
1777         * src/mcs51/gen.c (emitcode, genInline),
1778         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1779           tokenizeLineNode),
1780         * src/pic/ralloc.c (debugLog),
1781         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1782           tokenizeLineNode),
1783         * src/pic16/ralloc.c (debugLog),
1784         * src/z80/main.c (_process_pragma):
1785            made all ctype.h function calls safe
1786         * src/SDCCopt.c: include math.h for fabs
1787         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
1788           and used them throughout the code to make ctype.h function calls safe
1789         * src/ds390/main.c (asmLineNodeFromLineNode),
1790         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
1791         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
1792            unsigned char*
1793         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
1794           (newpCodeAsmDir): made ctype.h function calls safe
1795         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
1796           pic16_emitcode):  made lbp unsigned char*
1797         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
1798           (pic16_newpCodeAsmDir): made ctype.h function calls safe
1799         * src/xa51/gen.c (emitcode),
1800         * src/z80/gen.c (_emit2): made lbp unsigned char*
1801         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
1802            char*
1803
1804 2005-09-05 Raphael Neider <rneider AT web.de>
1805
1806         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
1807           access bank splitpoint
1808
1809 2005-09-05 Raphael Neider <rneider AT web.de>
1810
1811         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
1812
1813 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
1814
1815         * .version: changed to version 2.5.3
1816         * doc/sdccman.lyx: changed version to 2.5.3,
1817           documented --codeseg and --constseg and pragma codeseg and constseg,
1818           documented bit parameters (reentrant) and bit returning
1819         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
1820            currFunc->recvSize, but is this ok for all ports?
1821           (ast2iCode): result of ~ on unsigned char must be cast to int for
1822            bool to work
1823         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
1824           function pointers in bit space
1825         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
1826           (processFuncArgs): call port.reg_parm() with reentrancy info
1827         * src/port.h,
1828         * src/avr/main.c,
1829         * src/ds390/main.c,
1830         * src/hc08/main.c,
1831         * src/pic/main.c,
1832         * src/pic16/main.c,
1833         * src/xa51/main.c,
1834         * src/z80/main.c: port.reg_parm prototype extended with
1835           "bool reentrant" parameter
1836         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
1837           options.stackAuto for allocating bit register parameters
1838         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
1839           (genSend): set BitBankUsed if it is,
1840           (selectRegBank): factored out of genCall for use in genPcall,
1841           (genCall): removed redundant dtype assignmen, use selectRegBank,
1842           (genPcall): handle returning in Carry properly, save in F0 if needed,
1843           (genReceive): handle bit register parameters
1844         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
1845           (mcs51_assignRegisters): enable bit registers for all reentrant
1846            functions and don't set BitBankUsed unconditionally
1847         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
1848         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
1849         * support/regression/tests/funptrs.c: added tests for BOOL and for return
1850
1851 2005-08-27 Borut Razem <borut.razem AT siol.net>
1852
1853         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
1854         ppc-osx (Darwin) does not support -u option. It seems that it is
1855         supported only on Linux - GNU cp
1856
1857 2005-08-25 Borut Razem <borut.razem AT siol.net>
1858
1859         * sim/ucsim/gui.src/serio.src/Makefile.in,
1860           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
1861           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1862           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
1863           install and strip, since the strip at /usr/ccs/bin should be used
1864           on solaris
1865
1866 2005-08-24 Borut Razem <borut.razem AT siol.net>
1867
1868         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
1869
1870 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
1871
1872         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
1873         ffffffffu
1874
1875 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
1876
1877         * as/mcs51/aslink.h: completed lkrloc.c prototypes
1878         * as/mcs51/lkmain.c (link_main): fixed warning
1879         * device/include/stdbool.h: ds390 has no advanced bit support yet
1880         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
1881         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
1882         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
1883           and updated their macros
1884         * src/SDCCval.c (constVal): updated comment for renamed b_long
1885
1886 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
1887
1888         * as/mcs51/asdata.c: changed ctype['['] to BINOP
1889         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
1890           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
1891           (oprio): set priority for '['
1892         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
1893            and adb_24_bit
1894         * as/mcs51/asm.h: added defines R_BIT and S_BIT
1895         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
1896         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
1897         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
1898           added overlayable BIT_BANK area
1899         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
1900           (summary2): explain 'T' in legenda
1901         * as/mcs51/lkrloc.c: replaced old K&R style,
1902           (relr): added R_BIT processing,
1903           (errmsg): added "Bit-addressable relocation error",
1904           (adb_bit): added for converting from byte- to bit-addressable space,
1905           (adb_24_bit): added for converting from byte- to bit-addressable space
1906         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
1907            used in reentrant functions now even as return value
1908         * device/lib/_gptrput.c (_gptrput): removed obsolete code
1909         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
1910           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
1911         * src/SDCCglobl.h: added indicator BitBankUsed
1912         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
1913            the bit registers b0-b7
1914         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
1915           (geniCodeCast): fixed bug 1263853,
1916           (geniCodeLogicAndOr): put result in bool or char,
1917           (geniCodeReceive): added parameter func for accessing the return type,
1918           (geniCodeFunctionBody): pass func to geniCodeReceive
1919         * src/SDCCmain.c: added indicator BitBankUsed
1920         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
1921         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
1922           (checkSClass): don't put automatic bool/bit on stack,
1923           (checkFunction): removed check on function cannot return bit
1924         * src/SDCCsymt.h: added newBoolLink prototype
1925         * src/mcs51/gen.c (rb1regs): added bit registers,
1926           (movc): created for assigning to carry,
1927           (pushReg, popReg): created for pushing registers,
1928           (sameRegs): check both AOP_REG and AOP_CRY types,
1929           (aopOp): handle bit registers,
1930           (aopPut): optimization no self-assign,
1931           (saveRegisters): push reg->base (bits) only once for bit registers,
1932            and use pushReg,
1933           (unsaveRegisters): pop reg->base only once and use popReg,
1934           (assignResultValue): added parameter func and return in carry for bits,
1935           (genIpush): optimization no reload in A if not changed,
1936           (genSend): bit parameters in reentrant functions are passed in bit
1937            registers by first assigning to bits in B, then save registers and
1938            copy B to bits,
1939           (genCall): handle returning in Carry properly, save it in F0 if needed,
1940           (genPcall): updated assignResultValue call, this is not safe yet for bit
1941            returning function !!!
1942           (genFunction): don't generate equ's for bit registers and use pushReg,
1943           (genEndFunction): take care of bit returning functions and use popReg,
1944           (genRet): return bit in Carry,
1945           (genIfx): optimize bit registers and other directly addressable bits,
1946           (genReceive): updated assignResultValue call
1947         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
1948           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
1949            registers when using stack-auto
1950         * src/mcs51/ralloc.c (_G): added allBitregs,
1951           (regs8051): added the bit registers,
1952           (createStackSpil): use macro IS_BIT,
1953           (getRegBit): added to allocate a bit register, else spill,
1954           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
1955           (updateRegUsage): factored out to ease stepping while debugging,
1956           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
1957            also allocate bit registers,
1958           (fillGaps): handle bit registers,
1959           (findAllBitregs): added to create bit vector with all bit registers,
1960           (mcs51_allBitregs): returns this bit vector,
1961           (mcs51_assignRegisters): when using stack-auto use bit registers for
1962            passing parameters and creating local variables
1963         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
1964
1965 2005-08-22 Borut Razem <borut.razem AT siol.net>
1966
1967         * device/lib/Makefile.in: replaced find option -or with -o
1968           to make it run on solaris
1969
1970 2005-08-22 Raphael Neider <rneider AT web.de>
1971
1972         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
1973           fixes #1265442 (crash on Solaris)
1974
1975 2005-08-20 Borut Razem <borut.razem AT siol.net>
1976
1977         * configure, configure.in: added tests for libsocket and libnsl libraries,
1978           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
1979           from support/regression/Makefile.in
1980         * support/regression/Makefile.in: added
1981         * device/lib/pic16/Makefile.common.in: force make to use bash shell
1982         * sim/ucsim/libtool: regenerated on sparc-solaris
1983         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1984           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
1985           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
1986           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
1987           sparc-solaris, which doesn't use GNU ld linker
1988         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
1989         * as/Makefile: find on sparc-solaris does not support -maxdepth option
1990
1991 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
1992
1993         * src/mcs51/peeph.def: updated comments
1994
1995 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1996
1997         * device/lib/_gptrget.c,
1998         * device/lib/_gptrput.c: slightly shorter
1999         * doc/sdccman.lyx: incremented version
2000         * src/mcs51/peeph.def: moved peephole comments to the line of first
2001           change to better keep line correlation, reanimated 186.e
2002         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
2003
2004 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
2005
2006         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
2007           David Saxton with quotes around file name.
2008
2009 2005-08-15 Borut Razem <borut.razem AT siol.net>
2010
2011         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
2012           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
2013           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
2014           make tests run on x86_64 platform
2015
2016 2005-08-13 Raphael Neider <rneider AT web.de>
2017
2018         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
2019           as it might be executed DURING a build (parallel make is wonderful)
2020
2021 2005-08-13 Raphael Neider <rneider AT web.de>
2022
2023         * device/lib/Makefile.in (port-specific-objects-pic16):
2024           revert to cp $(PORT)/bin/*.* $(PORTDIR)
2025         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
2026           dependency
2027         * device/lib/pic16/Makefile.rules: build subdirs before creating
2028           the library, removed builddir rule, create $(builddir) early in
2029           recurse rule, use empty recurse rule for leaf directories
2030         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
2031           mkdir errors (race condition), removed duplicate suffix "hex"
2032           from clean rules
2033         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
2034         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
2035           prevents mkdir -p from aborting on Alpha
2036
2037 2005-08-12 Raphael Neider <rneider AT web.de>
2038
2039         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
2040           db-statements in order to allow for arrays of pointers in code
2041           sections to be placed without interspersed 0-padding, fixes
2042           bug #1256215
2043         * (emitStatistics): fixed division by zero for pic18f1220
2044         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
2045           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
2046         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
2047         * (pic16_pCodeConstString): keep track of already emitted string
2048           literals to prevent "duplicate definitions of symbol _str_NR"
2049         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
2050           debug message
2051         * device/lib/Makefile.in: ignore failing PIC16 library builds
2052         * device/lib/pic16/Makefile: do not build if gputils are missing
2053         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
2054
2055 2005-08-10 Raphael Neider <rneider AT web.de>
2056
2057         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
2058           my last commit)
2059
2060 2005-08-10 Raphael Neider <rneider AT web.de>
2061
2062         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
2063           Rokas' patch to add the new fixed point type "__fixed16x16"
2064         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
2065           functions for __fixed16x16 arithmetics
2066         * device/lib/pic16: reimplemented the build system to support
2067           a separate build directory, better handling of libio (create
2068           the library in a separate subdir for each architecture) and
2069           easier configuration (centralized in Makefile.common)
2070
2071 2005-08-07 Raphael Neider <rneider AT web.de>
2072
2073         * src/pic16/gen.c (genrshTwo): fixed sign extension
2074         * src/pic16/device.c: added pic18f2320, 4220 and 4320
2075         * device/include/pic16/pic18f2220.h: changed some bit definitions,
2076           added T0CONbits
2077         * device/include/pic16/pic18f4220.h: NEW, header for
2078           pic18f4220 and pic18f4320
2079         * device/include/pic16/pic18fregs.h: added new devices,
2080           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
2081         * device/include/pic16/signal.h: resolved name clashes
2082           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
2083           to also allow testing for interrupt enable bits, added
2084           comments on how to use the macros
2085         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
2086         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
2087           register definitions for the devices
2088         * device/lib/pic16/pics.all: added new devices
2089         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
2090           allocated memory
2091         * device/lib/pic16/libc/stdlib/memfree: do not count
2092           the block header as free memory
2093         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
2094           simplified and added missing end-of-blocklist-marker
2095           (reported by Peter Onion, fixes #1252814)
2096         * (_mergeHeapBlock): fixed loop condition
2097         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
2098           len==0, restructured code
2099         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
2100           up a bit, reduced bitfield accesses, prevent endless loops
2101           in case of heap corruption
2102         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
2103           "unreferenced arguments/must return a value" warnings
2104         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
2105           replaced BAUDREG with SPBRG
2106         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
2107           device/lib/pic16/debug/gstack/gstack.c: replaced
2108           _naked, _asm, _endasm with __naked, __asm, __endasm
2109
2110 2005-08-05 Raphael Neider <rneider AT web.de>
2111
2112         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
2113           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
2114
2115 2005-08-05 Borut Razem <borut.razem AT siol.net>
2116
2117         * device/lib/Makefile.in: added missing ';'
2118         * configure: removed ^M characters
2119
2120 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2121
2122         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
2123           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
2124           License
2125
2126 2005-08-04 Borut Razem <borut.razem AT siol.net>
2127
2128         * configure.in: pic16 libraries build 2nd try - enable running
2129           configure in device/lib/pic16
2130         * configure: regenerated from configure.in
2131         * device/lib/Makefile.in: create $(PORT)/bin directory
2132
2133 2005-08-03 Raphael Neider <rneider AT web.de>
2134
2135         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
2136           to get/set values via pointers
2137         * (genUnpackBits,genPackBits): changed detection of
2138           ptr->bitfield vs. sym.bitfield, fixed access via generic
2139           pointers, removed dead (wrong) code for multibyte bitfields
2140         * (genNearPointerGet, genGenPointerGet): removed useless code,
2141           fixed bitfield detection, fixes #1250594
2142         * (genNearPointerSet): removed useless code
2143         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
2144           and introduced macro pic16_emitpcode that conditionally emits
2145           the origin of the following pCode (useful for debugging SDCC)
2146         * src/pic16/pcode.c: changed (and disabled) some debug outputs
2147         * (createDefmap): fixed handling of LFSR for --optimize-df
2148
2149 2005-08-02 Borut Razem <borut.razem AT siol.net>
2150
2151         * device/lib/Makefile.in: pic16 libraries build enabled since
2152           gputils-0.13.2 are now localy installed at sourceforge's compile farm
2153
2154 2005-08-02 Raphael Neider <rneider AT web.de>
2155
2156         * src/pic16/gen.c (genPackBits): removed deprecated warning
2157         * (genGenPointerSet): fixed bitfield detection
2158
2159 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2160
2161         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
2162
2163 2005-07-31 Raphael Neider <rneider AT web.de>
2164
2165         * device/lib/pic16/libdev/pic18f458.c,
2166           device/include/pic16/pic18f458.h: added missing T0CONbits
2167
2168 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
2169
2170         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
2171
2172 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
2173
2174         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
2175
2176 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2177
2178         * device/include/mcs51/at89c51ed2.h: added.
2179
2180 2005-07-23 Raphael Neider <rneider AT web.de>
2181
2182         * src/pic/gen.h: added emitpcode macro for debugging
2183         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
2184           and replace by macro adding debug information on demand
2185         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
2186         * (gencjne): tried to fix; replaced with correct (slower) code
2187         * (gen{Unp,P}ackBits): fixed single bit access
2188         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
2189         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
2190           previous instruction
2191         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
2192           register has to be handled with care (forbidding movement
2193           of assignments/uses, removing assignments completely, ...)
2194         * (pCodeOptime2pCodes): make use of regIsSpecial
2195         * added lots of debugging output (commented out)
2196         * src/pic/rallloc.c (deassignLRs): prevent operand registers
2197           from being reused as result UNLESS it is known to work
2198
2199 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
2200
2201         * support/Util/dbuf.h: include <stddef.h> for size_t
2202         * .version: changed to version 2.5.2
2203
2204 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2205
2206         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
2207
2208 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2209
2210         * src/hc08/gen.c (genMinus): fixed bug #1241835,
2211           (genModOneByte): removed needless psha/pula
2212
2213 2005-07-22 Raphael Neider <rneider AT web.de>
2214
2215         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
2216           have PIC14 handled like PIC16, fixes broken pic14 linker calls
2217         * src/pic/gen.c (resolveIfx): do not "invent" labels
2218         * (genSkipc): changed to positive logic
2219         * (genSkipCond): removed as no longer needed
2220         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
2221           backport from PIC16
2222         * (genLeftShift): check operands are in different registers
2223         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
2224           INCF does not update CARRY...
2225         * src/pic/main.c: fixed _linkCmd
2226         * src/pic/pcode.c (unlinkpCode): added inactive code
2227         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
2228           alive (do not assign result and operand overlapping registers)
2229
2230 2005-07-22 Raphael Neider <rneider AT web.de>
2231
2232         * src/pic/device.c (dump_sfr): replaced register declaration with
2233           call to emitSymbolToFile() to avoid duplicate symbols
2234         * (assignRelocatableRegisters): do not declare external symbols
2235         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
2236           right (take size of type, not etype)
2237         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
2238         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
2239         * (packRegsForAccUse): disabled assignment of WREG as
2240           the result reg to prevent occurence of just fixed #1235003,
2241           fixes #1242954
2242         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
2243           symbols (avoids duplicate symbols in .asm file)
2244         * (pic14emitRegularMap): use emitSymbolToFile()
2245         * src/pic/gen.c (aopOp): fixed spillLocation handling
2246         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
2247         * (genDataPointerSet): removed unneccessary variables/output
2248
2249 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
2250
2251         * as/mcs51/lkarea.c: enlarged codemap for banked memory
2252         * device/lib/mcs51/crtbank.asm: added # to 0x0F
2253
2254 2005-07-21 Raphael Neider <rneider AT web.de>
2255
2256         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
2257           architecture cannot handle them efficiently, fixes bug #1235003
2258         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
2259           check for empty sets before using them (fixes bug #1232190)
2260
2261 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
2262
2263         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
2264           (lnksect2): generate warnings for memory overlap
2265         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
2266           constseg to set the name of these segments so you can instruct the linker
2267           to place them in banks
2268         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
2269         * src/SDCCglobl.h: added MODEL_HUGE to enum,
2270           added code_seg and const_seg to options
2271         * src/SDCCglue.c (emitMaps): use options.const_seg,
2272           (createInterruptVect): put interrupt vectors in segment HOME,
2273           (glue): put HOME before static segment and put the main glue in HOME,
2274           (glue): use options.code_seg
2275         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
2276         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
2277           these segments so you can instruct the linker to place them in banks
2278           (linkEdit): use code_loc for HOME segment which should be the first
2279           segment in code memory now
2280         * src/SDCCmem.c: fixed more stuff like bug 1238386
2281         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
2282           (changePointer): don't change function pointers to code pointers for
2283           banked functions,
2284           (compareType): added exceptional check for banked function pointers
2285         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
2286         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
2287           after static in code memory
2288         * src/mcs51/gen.c: added aopLiteralLong prototype,
2289           (aopForSym): use getSize for functions,
2290           (genCall): generate banked calls over one trampoline __sdcc_banked_call
2291           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
2292           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
2293           the segment,
2294           (genPcall): use call for literal function pointers and generate banked
2295           calls over the one trampoline so there's only one place for the user to
2296           modify according to his/hers hardware,
2297           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
2298           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
2299         * src/mcs51/main.c: added keyword banked,
2300           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
2301         * support/Util/SDCCerr.c,
2302         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
2303           needed for passing the bank and address to the trampoline
2304         * device/lib/mcs51/crtbank.asm: added for bankswitching
2305         * device/lib/mcs51/Makefile: added crtbank
2306
2307 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2308
2309         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
2310           for fields at offset 0 of a struct or union as reported
2311           on 2005-07-07 in the developer mailing list.
2312
2313 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
2314
2315         * src/SDCCmem.c: fixed bug 1238386
2316
2317 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2318
2319         * src/mcs51/peeph.def: added labelrefcounting for peepholes
2320           (patch #1144962), added peephole 300, enabled 259.x
2321         * doc/sdccman.lyx: removed screenshot and provided link instead
2322
2323 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2324
2325         * doc/sdccman.lyx: added section about debugging with ddd
2326         * doc/figures/ddd_example.eps: screenshot of debugging session
2327
2328 2005-07-04 Raphael Neider <rneider AT web.de>
2329
2330         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
2331           like CODE pointers, fixes #1115683
2332         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
2333           call, fixes bugs #1232211, #1228110,
2334           fixed wrong casts to pCodeFlow from pCodeInstructions
2335
2336 2005-07-04 Raphael Neider <rneider AT web.de>
2337
2338         * src/pic/gen.c (popGet): changed assert to allow for
2339           bit operands
2340         * (popGetAddr): changed signature to provide
2341           an additional index, patched all call sites
2342         * (genCmpEq): handle literal-like operands correctly
2343         * (genAddrOf): added sanity checks on __code/__data pointers
2344         * (genAssign): added handling of symbols from __code section
2345         * (gencjne): do not generate code for comparisons whose result
2346           is neither stored nor used, fixes bug #1171114
2347         * (AccLsh, AccRsh): operate on operand instead of WREG
2348         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
2349           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
2350           by known count
2351         * rewrote complete shift-by-literal logic, commented unused
2352           functions out
2353         * (genConstPointerGet): get multiple bytes (if result size > 1),
2354           fixed handling of non-immediate addresses
2355         * (genPointerGet): handle CODE pointers like CONST pointers
2356         * (genpic14Code): insert C-SRC lines as Cource-pCodes
2357         * ({aop,op}_isLitLike): NEW, single place to decide whether an
2358           operand is to be treated as a literal or not
2359         * (mov2w,genPcall,genCmpEq),
2360           src/pic/genarith.c: use aop_isLitLike() to decide between
2361           literal/register contents
2362         * (addSign): added missing offset
2363         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
2364           only emit comment in debug-mode,
2365           use {aop,op}_isLitLike throughout the file
2366         * src/pic/glue.c: fix initializers for pointers (work in progress)
2367         * src/pic/pcode.c (get_op): honor index on _const symbols
2368         * ({reset,dump}pCodeStatistics): NEW, estimate code size
2369         * (dumppBlock): added pCode size estimation
2370         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
2371           check for IS_SYMOP before OP_SYMBOL'ing
2372         * fixed indentation, compacted switch-statements
2373         * (allocReg): find free register and allocate it instead of
2374           allocating new registers all the time
2375         * (deassignLRs): prevent POINTER_GET's from being assigned the same
2376           registers as its operands (necessary only for multibyte GETs)
2377
2378 2005-07-01 Raphael Neider <rneider AT web.de>
2379
2380         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
2381           debugging .asm-output macros FENTRY + FEXIT
2382         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
2383           way... I wonder...
2384         * (emitpComment): NEW, printf to pCode
2385         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
2386           offset handling
2387         * (popGetAddr): NEW, variant of popGet to access an immediates
2388           high(er) bytes instead of the n'th byte of memory they reference,
2389           replaced popGet with popGetAddr where neccessary
2390         * (genDataPointerGet): reactivated and fixed implementation
2391         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
2392           accesses
2393         * (genDataPointerSet): fixed multibyte assignments
2394         * (genpic14Code): fixed --i-code-in-asm handling
2395         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
2396         * (genPlus): fixed index-out-of-bounds error
2397         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
2398         * src/pic/ralloc.c: added debugging output macro FENTRY2
2399         * (spillThis): fixed indentation, enbraced for-body for clarity
2400         * (rematStr): commented out as now unused
2401         * (regTypeNum): commented out special spill case (overwrites
2402           arbitrary values)
2403         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
2404
2405 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
2406
2407         * doc/sdccman.lyx: documented sfr16/sfr32,
2408           added example for using storage class with function pointers
2409         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
2410
2411 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
2412
2413         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
2414         * device/lib/_itoa.c,
2415         * device/lib/_ltoa.c: optimized codesize
2416         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
2417           but don't know how to suppress the double warning.
2418         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
2419         * support/Util/SDCCerr.c,
2420         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
2421
2422 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
2423
2424         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
2425           fixed old K&R prototypes
2426         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
2427         * device/lib/_gptrget.c,
2428         * device/lib/_gptrgetc.c,
2429         * device/lib/_gptrput.c: changed versions for new memory indicator values,
2430           also new versions for small generic pointers and banked generic pointers
2431         * src/port.h: added const_name
2432         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
2433         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
2434         * src/SDCCcse.c (findPrevIc): check all associative operators
2435         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
2436         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
2437         * src/SDCCmem.c: updated comments,
2438           set far-space to 0 for pdata, results in optimized code
2439         * src/SDCCmem.h: added macro CONST_NAME
2440         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
2441           moving the info into the highest bits, see also gptrget/gptrput
2442         * src/src.dsp: added sdcc.ico to project files
2443         * src/avr/gen.c (genCast): fixed bug 0x%d
2444         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
2445         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
2446           relation between ptr_type and DCL_TYPE,
2447           (genCast): fixed bug 0x%d
2448         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
2449           (CODE)" for const_name
2450         * src/hc08/gen.c (genCast): fixed bug 0x%d
2451         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
2452           (hc08_port): added "CONST (CODE)" for const_name
2453         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
2454           (aopForRemat, adjustArithmeticResult): disconnected direct relation
2455           between ptr_type and DCL_TYPE,
2456           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
2457           operand* and took AOP() inside function so sfr-ness can be checked,
2458           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
2459           new prototype,
2460           (genFunction, genEndFunction): optimized stack setup,
2461           (genMinus): optimized for literals with ending zeroes (in bytes),
2462           (genCast): fixed bug 0x%d
2463         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
2464           (mcs51_port): added "CONST (CODE)" for const_name
2465         * src/mcs51/peeph.def: made rule 226 more generic
2466         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
2467         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
2468         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
2469         * src/z80/main.c (z80_port): added NULL for const_name,
2470           (gbz80_port): added NULL for const_name
2471         * support/regression/tests/bug663539.c,
2472         * support/regression/tests/sfr16.c: new tests
2473
2474 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2475
2476         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
2477
2478 2005-06-24 Raphael Neider <rneider AT web.de>
2479
2480         * device/lib/pic16/libdev/pic18f[68][567]20.c:
2481           corrected typos...
2482         * device/include/pic16/signal.h: added USBIF
2483           and SIG_USB
2484
2485 2005-06-24 Raphael Neider <rneider AT web.de>
2486
2487         * device/lib/pic16/libdev/pic18f2455.c,
2488           device/include/pic16/pic18f2455.h: NEW
2489         * device/include/pic16/pic18fregs.h,
2490           device/lib/pic16/pics.all,
2491           src/pic16/device.c: added 18f2455
2492         * device/lib/pic16/libdev/pic18f[68][567]20.c,
2493           device/include/pic16/{pic18f[68][567].h,usart.h}:
2494           replaced MULTIPLE_USARTS define with more relaible
2495           compatibility sfrs (for USART access)
2496
2497 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
2498
2499         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
2500           and the output asm file line is printed on two lines.
2501
2502 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2503
2504         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
2505           BGT, BLE, BHI, and BLS instructions
2506         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
2507           genCmpEq): removed
2508         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
2509           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
2510           fixes bug #1216342
2511         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
2512
2513 2005-06-15 Raphael Neider <rneider AT web.de>
2514
2515         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
2516         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
2517         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
2518           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
2519           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
2520
2521 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2522
2523         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
2524           Marcel Telka in bug #1215704
2525
2526 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
2527
2528         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
2529           located in shared memory bank.
2530
2531 2005-05-31 Raphael Neider <rneider AT web.de>
2532
2533         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
2534           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
2535           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
2536
2537 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
2538
2539         * device/lib/_strncpy.c: fixed the fix
2540
2541 2005-05-26 Raphael Neider <rneider AT web.de>
2542
2543         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
2544           initializers with \0, bug #1208187
2545         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
2546           intializers with \0, bug #1208187
2547
2548 2005-05-26 Raphael Neider <rneider AT web.de>
2549
2550         * src/pic16/glue.c (pic16_printIvalChar): fixed string
2551           initializers with \0, bug #1208187
2552         * src/pic16/main.c (_process_pragma): added sanity checks
2553           for stack position and size, emit warnings when appropriate
2554
2555 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
2556
2557         * device/lib/_strncpy.c: fixed not filling with \0
2558
2559 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2560
2561         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
2562           createFunction),
2563         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
2564           compound_statement),
2565         * src/SDCCsymt.h,
2566         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
2567
2568 2005-05-24 Raphael Neider <rneider AT web.de>
2569
2570         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
2571
2572 2005-05-24 Raphael Neider <rneider AT web.de>
2573
2574         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
2575           TRISE definitions, closes bug #1162453
2576
2577 2005-05-22 Raphael Neider <rneider AT web.de>
2578
2579         * src/pic16/main.c (_process_pragma): check for missing
2580           arguments to pragmas code and udata
2581         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
2582           consistency fixes to match other headers (thanks to Jim Paris)
2583         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
2584
2585 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
2586
2587         * src/SDCCicode.c (isOperandEqual): fixed missing ;
2588
2589 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
2590
2591         * support/regression/tests/bug1198642.c: new test
2592         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
2593         * src/SDCCcse.c (findPrevIc): added comment, please have a look
2594         * support/scripts/resource.h,
2595         * support/scripts/resource.rc,
2596         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
2597         * support/scripts/sdcc.ico: added 32x32 icon
2598
2599 2005-05-18 Raphael Neider <rneider AT web.de>
2600
2601         * device/lib/pic16/libdev/pic18f*.c,
2602         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
2603           keywords to "__sfr" and "__at (X)"
2604         * device/include/pic16/pic18fregs.h: added pic18f4520
2605         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
2606           #1203088 (MPLAB compatibility)
2607
2608 2005-05-17 Raphael Neider <rneider AT web.de>
2609
2610         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
2611         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
2612         * device/lib/pic16/pics.all: added new devices
2613         * src/pic16/device.c: added support for pic18f4520
2614
2615 2005-05-16 Raphael Neider <rneider AT web.de>
2616         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
2617         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
2618         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
2619           convenience function for bit access
2620
2621 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
2622
2623         * device/lib/printf_large.c: fixed bug 1193299
2624         * support/regression/tests/bug1057979.c: added test %3.3s
2625
2626 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2627
2628         * device/include/mcs51/8051.h,
2629         * device/include/mcs51/8052.h: made parseable with lint
2630         * device/include/mcs51/lint.h: added include file for (sp)lint
2631         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
2632         * doc/cdbfileformat.lyx,
2633         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
2634
2635 2005-05-14 Raphael Neider <rneider AT web.de>
2636
2637         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
2638         * device/lib/pic16/libc/stdlib/itoa.c (new)
2639         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
2640         * device/lib/pic16/libio/Makefile: exclude subdir according to
2641           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
2642         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
2643         * src/pic16/gen.c (genFunction): prevent annoying warning
2644         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
2645           nameclashes on BeOS
2646         * support/cpp2/cppmain.c (cpp_output_string): new
2647         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
2648           fixes bug 1116802
2649
2650 2005-05-13 Borut Razem <borut.razem AT siol.net>
2651
2652         * src/SDCCmain.c (linkEdit): fixed bug 1195202
2653
2654 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2655
2656         * .version: changed to version 2.5.1; back to bleeding edge development
2657
2658 2005-05-11 Borut Razem <borut.razem AT siol.net>
2659
2660         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
2661           generate PDF version 1.3 documents
2662
2663 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2664
2665         * .version: changed to version 2.5.0
2666
2667 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2668
2669         * doc/sdccman.lyx: updated weblinks, index and smaller updates
2670
2671 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2672
2673         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
2674         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
2675         well as many smaller updates.
2676         * .version: changed to version 2.5.0-pre1
2677
2678 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2679
2680         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
2681
2682 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
2683
2684         * support/regression/tests/bug1185672.c: added
2685         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
2686           bug 1185672
2687         * src/mcs51/gen.c (genCall): added comments, made it look safer
2688         * src/mcs51/gen.c (genEndFunction): simplified
2689
2690 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
2691
2692         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
2693
2694 2005-04-14 Borut Razem <borut.razem AT siol.net>
2695
2696         * fixed bug 1045046 - SIGSEGV with really simple code?:
2697           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
2698           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
2699
2700 2005-04-14 Borut Razem <borut.razem AT siol.net>
2701
2702         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
2703           src/pic16/device.h: temporarily disabled experimental #inline pragma
2704           for 2.5.0 release
2705
2706 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
2707
2708         * device/include/z80/stdio.h,
2709         * device/include/z80/string.h: removed these highly incomplete files so
2710           SDCC can use the default ones in device/include/
2711
2712 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2713
2714         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
2715         gcc warning.
2716         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
2717         fix sdcpp warnings.
2718
2719 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2720
2721         * device/include/malloc.h: removed redundant __reentrant prototypes
2722         * device/lib/_mullong.c: added working xstack variant in asm (C version
2723           doesn't pass regression tests)
2724         * device/lib/bpx.c: used __data and made bpx char for mcs51
2725         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
2726           (createFunction): fixed bug with xstackPtr
2727         * src/SDCCcse.c: corrected comments
2728         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
2729           (killDeadCode, eBBlockFromiCode): removed unused code
2730         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
2731           corrected comments
2732         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
2733           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
2734           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
2735           (genModOneByte): fixed warning in MSVC
2736         * src/mcs51/main.c (): added comments
2737         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
2738
2739 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2740
2741         * src/SDCCmain.c (linkEdit): oops, changed one line too many
2742
2743 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
2744
2745         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
2746
2747 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
2748
2749         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
2750         characters arrays of larger size than the declared one.
2751
2752 2005-04-10 Borut Razem <borut.razem AT siol.net>
2753
2754         * src/pic/gen.c (genInline),
2755           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
2756           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
2757           (findNextInstruction), (findPrevInstruction),
2758           (findInstructionUsingLabel),
2759           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
2760         * src/pic/pcode.c (findLabel): added missing '\n'
2761         * src/src.dsp: added SDCCdwarf2.c to the project
2762
2763 2005-04-09 Borut Razem <borut.razem AT siol.net>
2764
2765         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
2766
2767 2005-04-08 Raphael Neider <rneider AT web.de>
2768
2769         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
2770           into the chain after a given one) and mergeDefmapSymbols (combine
2771           defmap entries for each symbol per pcode)
2772         * (createDefmap): have defmap entries merged in the end
2773         * (defmapReplaceSymRef): split defmap entries covering two accesses to
2774           a symbol before replacing one access type's symbol, merge symbols in
2775           the end (replacement symbol might already have an entry)
2776         * (assignValnums): keep reference to written WREG intact
2777
2778 2005-04-08 Raphael Neider <rneider AT web.de>
2779
2780         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
2781           Alpha)
2782
2783 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
2784
2785         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
2786         bytes
2787
2788 2005-04-07 Raphael Neider <rneider AT web.de>
2789
2790         * device/include/pic16/usart.h: added compatibility defines for
2791           devices with more than one USART
2792         * device/include/pic16/pic18f[68][567]20.h: activated above defines
2793
2794 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2795
2796         * device/lib/Makefile.in: updated for port specific include
2797
2798 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2799
2800         * support/regression/ports/mcs51/spec.mk: added mcs51 include
2801
2802 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2803
2804         * device/include/8051.h,
2805         * device/include/8052.h,
2806         * device/include/at89S8252.h,
2807         * device/include/at89c55.h,
2808         * device/include/at89x051.h,
2809         * device/include/at89x51.h,
2810         * device/include/at89x52.h,
2811         * device/include/mcs51reg.h,
2812         * device/include/reg51.h,
2813         * device/include/reg764.h,
2814         * device/include/regc515c.h,
2815         * device/include/sab80515.h: (re)moved these 12 files
2816         * device/include/mcs51/8051.h,
2817         * device/include/mcs51/8052.h,
2818         * device/include/mcs51/at89S8252.h,
2819         * device/include/mcs51/at89c55.h,
2820         * device/include/mcs51/at89x051.h,
2821         * device/include/mcs51/at89x51.h,
2822         * device/include/mcs51/at89x52.h,
2823         * device/include/mcs51/mcs51reg.h,
2824         * device/include/mcs51/reg51.h,
2825         * device/include/mcs51/reg764.h,
2826         * device/include/mcs51/regc515c.h,
2827         * device/include/mcs51/sab80515.h: and added them here
2828
2829 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
2830
2831         * device/include/stdarg.h: changed SDCC specific keywords to double
2832           underlined form.
2833         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
2834           mcs51 and ds390.
2835         * device/include/hc08/mc68hc908gp32.h,
2836         * device/include/hc08/mc68hc908jb8.h,
2837         * device/include/hc08/mc68hc908jkjl.h,
2838         * device/include/hc08/mc68hc908qy.h: fixed comments
2839         * device/include/mcs51/README: updated
2840         * device/include/mcs51/c8051f120.h: added PINRSF
2841         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
2842         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
2843           amidst code. Also inline is not supported.
2844
2845 2005-04-06 Raphael Neider <rneider AT web.de>
2846
2847         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
2848         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
2849           callers stack/frame pointers
2850
2851 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
2852
2853         * device/include/pic16/usart.h: added, missing in previous commit,
2854         * device/include/pic16/adc.h: fixed typo,
2855         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
2856         commit,
2857         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
2858         <p18fxxx.inc>
2859         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
2860         uninitialized because a bug appears with gplink
2861         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
2862         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
2863         complains for unrecognised option
2864
2865 2005-04-05 Raphael Neider <rneider AT web.de>
2866
2867         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
2868           structs as well (using memcpy)
2869         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
2870           on ISRs (GOTO has no label)
2871         * src/pic16/device.h: added OF_OPTIMIZE_DF
2872         * src/pic16/main.c: added compiler switch --optimize-df to enable the
2873           new data flow analysis/optimization
2874         * src/pic16/pcode.c: added (prototypes for and implementation of)
2875           dataflow analysis functions, fixed pCodeInstructions' inCond and
2876           outCond values, made RCALL a branch instruction
2877         * (pic16_unlinkpCode): keep C line if possible
2878         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
2879           C line moved if possible
2880         * (pic16_getRegFrompCodeOp): NEW, improved version of...
2881         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
2882           to use new pic16_getRegFrompCodeOp (works for more SFRs)
2883         * (pic16_BuildFlow): fixed skip instructions with label (did not start
2884           new flow)
2885         * (pic16_getJumptabpCode): NEW, needed in...
2886         * (LinkFlow): fixed handling of jumptables, calls and conditional
2887           branches
2888         * (pic16_InsertCommentAfter): NEW
2889         * (pic16_pCodeReplace): made verbose and flow preserving
2890         * (AnalyzeFlow): added call to data flow analysis
2891         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
2892         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
2893         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
2894
2895 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2896
2897         * src/SDCCast.c (decorateType): fixed bug #1105626
2898
2899 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
2900
2901         * device/include/asm/pic16/features.h,
2902         * pic18f*.h headers,
2903         * device/include/pic16/adc.h,
2904         * device/include/pic16/delay.h,
2905         * device/include/pic16/i2c.h,
2906         * device/include/pic16/malloc.h,
2907         * device/include/pic16/stdio.h,
2908         * device/include/pic16/stdlib.h,
2909         * device/include/pic16/string.h,
2910         * device/lib/pic16/libc/stdio/printf_tiny.c,
2911         * device/lib/pic16/libc/stdio/printf_small.c,
2912         * device/lib/pic16/libc/stdio/strmgpsim.c,
2913         * device/lib/pic16/libc/stdio/strmmssp.c,
2914         * device/lib/pic16/libc/stdio/strmusart.c,
2915         * device/lib/pic16/libc/stdio/vfprintf.c,
2916         * device/lib/pic16/libc/stdlib/ltoa.c,
2917         * device/lib/pic16/libc/stdlib/putchar.c,
2918         * device/lib/pic16/libc/stdlib/x_ftoa.c,
2919         * device/lib/pic16/libc/stdlib/memchrpgm.c,
2920         * device/lib/pic16/libc/stdlib/memchrram.c,
2921         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
2922         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
2923         * device/lib/pic16/libio/adc/adcbusy.c,
2924         * device/lib/pic16/libio/adc/adcread.c,
2925         * device/lib/pic16/libio/adc/adcsetch.c,
2926         * device/lib/pic16/libio/usart/ubaud.c,
2927         * device/lib/pic16/libio/usart/ubusy.c,
2928         * device/lib/pic16/libio/usart/udrdy.c,
2929         * device/lib/pic16/libio/usart/uopen.c,
2930         * device/lib/pic16/libio/usart/uputc.c,
2931         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
2932         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
2933         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
2934         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
2935         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
2936         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
2937         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
2938         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
2939         specific keywords to double underlined form,
2940         * device/lib/pic16/libc/Makefile.rules,
2941         * device/lib/pic16/libsdcc/Makefile.rules,
2942         * device/lib/pic16/libm/Makefile,
2943         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
2944         to compile with C standard set in Makefile.common
2945         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
2946         rand.c and crc.c in compilation process,
2947         * device/lib/pic16/libsdcc/int/divuint.c,
2948         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
2949         `c' from signed to unsigned,
2950         * device/lib/pic16/startup/crt0.c,
2951         * device/lib/pic16/startup/crt0i.c,
2952         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
2953         keywords to double underlined form, bug fixes in _do_cinit function
2954         which prevented the correct initialization of the .idata segment,
2955         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
2956         core to enter a infinite loop
2957         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
2958
2959 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2960
2961         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
2962
2963 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2964
2965         * device/include/Makefile.in: add support for hc08 subdirectory
2966         * device/include/hc08/: new subdirectory
2967         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
2968         Lucas Loizaga, thanks!
2969         * device/include/hc08/mc68hc908qy.h,
2970         * device/include/hc08/mc68hc908gp32.h,
2971         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
2972         their own directory. Changed internal macro names to use the compiler
2973         reserved namespace. Changed SDCC specific keywords to double
2974         underlined form.
2975         * device/include/math.h,
2976         * device/include/malloc.h,
2977         * device/include/stdarg.h,
2978         * device/include/stdbool.h
2979         * device/include/string.h,
2980         * device/include/tinibios.h,
2981         * device/include/ds400rom.h,
2982         * device/include/8051.h,
2983         * device/include/8052.h,
2984         * device/include/80c51xa.h,
2985         * device/include/at89c55.h,
2986         * device/include/at89S8252.h,
2987         * device/include/at89x51.h,
2988         * device/include/at89x52.h,
2989         * device/include/ds80c390.h,
2990         * device/include/reg764.h,
2991         * device/include/regc515c.h,
2992         * device/include/sab80515.h,
2993         * device/include/mcs51/c8051f000.h,
2994         * device/include/mcs51/c8051f018.h,
2995         * device/include/mcs51/c8051f020.h,
2996         * device/include/mcs51/c8051f040.h,
2997         * device/include/mcs51/c8051f060.h,
2998         * device/include/mcs51/c8051f120.h,
2999         * device/include/mcs51/c8051f300.h,
3000         * device/include/mcs51/c8051f310.h,
3001         * device/include/mcs51/c8051f320.h,
3002         * device/include/mcs51/c8051f330.h,
3003         * device/include/mcs51/c8051f350.h,
3004         * device/include/z180.h: Changed SDCC specific keywords to double
3005         underlined form.
3006
3007 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
3008
3009         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
3010         18F4455,
3011         * (pic16_assignConfigWordValue): disable testing of configuration
3012         register value with config mask,
3013         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
3014         function with port->fun_prefix,
3015         * (genFunction): when generating a naked interrupt function never
3016         create an absolute segment placed in interrupt vector address, place
3017         the actual interrupt function at IVA instead, when an interrupt
3018         function is generated with unspecified interrupt then do not create
3019         the absolute section,
3020         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
3021         code for generating a call to generic pointer get/put function with
3022         a call to function pic16_callGenericPointer(),
3023         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
3024         the call to the generic pointer get/put functions with prefixing the
3025         function name with port->fun_prefix,
3026         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
3027         * src/pic16/main.c (_process_pragma): prefix function with
3028         port->fun_prefix,
3029         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
3030         calling assembler, old 18Fxxxx macro is deprecated,
3031         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
3032         PC_ASMDIR in while condition,
3033         * (findInstruction): add PC_ASMDIR in while condition,
3034         * (buildCallTree): prefix main with port->fun_prefix,
3035         * (pic16_pCode2str): fixed bug that didn't emit the memory access
3036         identifier for variable with banked access in instructions BTFSS,
3037         BTFSC, BCF, BSF, BTG
3038         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
3039         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
3040         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
3041         perform optimization when enviroment variable NO_REG_OPT is set,
3042         * (insideLRBlock): NEW, return 1 if register is inside an
3043         INF_LOCALREGS block,
3044         * (RemoveRegFromLRBlock): remove a register that is completely
3045         eliminated by register optimization, but it is still left in local
3046         register store/restore in/from stack block,
3047         * (Remove2pcodes): after removing register, check to see if it
3048         should be removed from local register store/restore in/from stack
3049         block,
3050         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
3051         DUMMY_READ_VOLATILE,
3052
3053         * device/include/pic16/adc.h: minor prototype modifications and
3054         update,
3055         * device/include/pic16/malloc.h: added GPL notice various
3056         modifications,
3057         * device/include/pic16/stdint.h: NEW, standard header for ints
3058         * device/include/pic16/delay.h: NEW, header for delay functions,
3059         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
3060         delay1mtcy,
3061         * device/include/pic16/signal.h: NEW, header providing helper macros
3062         for implementing signal handlers,
3063         * device/include/pic16/stdio.h: added prototypes for functions,
3064         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
3065         prototypes for stdin and stdout, added macro PUTCHAR to
3066         automatically implement putchar function prototype,
3067         * device/include/pic16/usart.h: modified and updated USART library,
3068         * device/lib/pic16/libio/adc/,
3069         * device/lib/pic16/libio/i2c: some modifications to improve library
3070         performance,
3071         * device/lib/pic16/libc/stdio/: modifications for the new printf*
3072         family of functions,
3073         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
3074         family of functions and other sources,
3075         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
3076         of the PIC18Fxx[28] devices,
3077         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
3078         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
3079         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
3080         _do_cinit function, because the previous failed when local variables
3081         where not placed in the same memory bank,
3082         * device/lib/pic16/libsdcc/char/: various modifications to improve
3083         library performance,
3084         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
3085         information on the new functions of the c library and more...
3086
3087 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3088
3089         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
3090
3091 2005-03-26 Raphael Neider <rneider AT web.de>
3092
3093         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
3094           if condition == CARRY)
3095         * (genCmp): adapted to new genSkipc semantics
3096         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
3097           on rIfx (genCmp was broken)
3098
3099 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3100
3101         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
3102         * src/z80/main.c (_keywords[]),
3103         * src/SDCCglobal.h (struct options),
3104         * src/SDCC.y,
3105         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
3106         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
3107         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
3108         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
3109         always available in leading double underscore form. The C99 support is
3110         mostly missing, but it's a start.
3111         * support/regression/tests/bug-227710.c: fixed nonconforming use of
3112         reserved identifier "__data".
3113
3114 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
3115
3116         * src/mcs51/peeph.def: fixed bug 1170013
3117
3118 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
3119
3120         * device/include/mcs51reg.h: fixed bug 842007
3121
3122 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3123
3124         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
3125         last time.
3126
3127 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3128
3129         * src/port.h (struct PORT),
3130         * src/avr/ralloc.c (avr_assignRegisters),
3131         * src/avr/main.c,
3132         * src/ds390/ralloc.c (ds390_assignRegisters),
3133         * src/ds390/main.c,
3134         * src/hc08/ralloc.c (hc08_assignRegisters),
3135         * src/hc08/main.c,
3136         * src/mcs51/ralloc.c (mcs51_assignRegisters),
3137         * src/mcs51/main.c,
3138         * src/pic/ralloc.c (pic14_assignRegisters),
3139         * src/pic/main.c,
3140         * src/pic16/ralloc.c (pic16_assignRegisters),
3141         * src/pic16/main.c,
3142         * src/xa51/ralloc.c (xa51_assignRegisters),
3143         * src/xa51/main.c,
3144         * src/z80/ralloc.c (z80_assignRegisters),
3145         * src/z80/ralloc.h,
3146         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
3147         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
3148         * src/SDCCcse.h,
3149         * src/SDCCdflow.c (computeDataFlow),
3150         * src/SDCCdflow.h,
3151         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
3152         * src/SDCCloop.h,
3153         * src/SDCCcflow.c (*),
3154         * src/SDCCcflow.h,
3155         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
3156         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
3157         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
3158         immedDom() returning wrong block; probably fixes bug #1160833)
3159
3160 2005-03-20 Borut Razem <borut.razem AT siol.net>
3161
3162         * support/scripts/inc2h.pl: WIN32 port
3163
3164 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
3165
3166         * device/lib/makefile.in: added abs.c and labs.c
3167
3168 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
3169
3170         * device/include/stdint.h: added
3171         * device/lib/abs.c: added
3172         * device/lib/labs.c: added
3173         * device/include/stdlib.h: added abs() and labs() prototypes
3174         * device/lib/libsdcc.lib: added abs and labs
3175         * device/include/float.h,
3176         * device/lib/_fsmul.c,
3177         * device/lib/printf_fast.c,
3178         * device/lib/printf_tiny.c: updated comments
3179
3180 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3181
3182         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
3183         bug #1164313
3184
3185 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3186
3187         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
3188         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
3189
3190 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
3191
3192         * device/lib/printf_large.c: removed inline assembly for portability and
3193           readability. Use printf_fast if speed or size are more important.
3194         * src/pic16/gen.c: removed conditions around use of DEBUGpc
3195         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
3196
3197 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
3198
3199         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
3200         prevent compiler warning
3201
3202 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
3203
3204         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
3205         moved to level 0 and declared as static. Also they are explicit
3206         placed in access bank. This was necessery because some times they
3207         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
3208         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
3209         optimizations. Currently only compare to unsigned char is implemented,
3210         * src/pic16/gen.c: added fReturnIdx array,
3211         * (struct resolvedIfx) is moved to gen.h and made public,
3212         * (struct _G): added sregsAlloc and sregsAllocSet fields,
3213         * (aopForSym): added an optimization to directly store in stack of
3214         the operand of a SEND iCode,
3215         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
3216         but as registers instead (AOP_REG) using the fReturnIdx array,
3217         * (pic16_freeAsmop): remove the freed register from the
3218         _G.sregsAlloc field,
3219         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
3220         a compare of 'WREG',
3221         * (pic16_popGetTempRegCond): changed function prototype, now
3222         function takes also a bitVector argument v which holds the current
3223         set of registers that are allocated for stack access by aopForSym,
3224         registers allocated in aopForSym for accessing stack symbols are not
3225         any more part of the functions usedRegs field,
3226         * (genCall): some times aopOp is called for a stack variable to be
3227         send, aopForSym might perform the push, if this is true make sure
3228         that genCall doesn't push the variable twice by testing _G.resDirect,
3229         * (genFunction): changed testing for unspecified interrupt number
3230         from 256 to INTNO_UNSPEC,
3231         * modified selection scheme of frame pointer generation. Previously
3232         if function did use local registers a frame pointer was generated,
3233         now a frame pointer is generated only if function has arguments
3234         (that need PLUSW2 register access), or has stack arguments, or the
3235         compiler is not instructed to omit the frame pointer,
3236         * (genEndFunction): before restoring local registers that were saved
3237         in the function preamble, also restore the registers that *might*
3238         have been allocated for stack access,
3239         * (genRet): removed some old comments,
3240         * (genCmp, the active (RN's) version): added a call to the
3241         pic16_genCmp_special function to perform the compare with a more
3242         robust and optimized way,
3243         * (genInline): a feature has been added in inline code generation,
3244         which allows a wildcard variable substitution when writing inline
3245         assembly. Code is incomplete and experimental therefore undocumented,
3246         * (genCast): changed order of aopOp for result and right to allow
3247         aopForSym to directly load the result if possible,
3248         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
3249         perform an optimized compare on some selected special occasions,
3250         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
3251         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
3252         generate an IVT any more,
3253         * src/pic16/main.c (pic16_optionsTable): added command line option
3254         --optimize-cmp,
3255         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
3256         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
3257         macros,
3258         * src/pic16/NOTES: Raphael Neider added in list of active developers
3259         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
3260         jumptable_end to prevent bug #,
3261         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
3262         inCond and outCond fields,
3263         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
3264         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
3265         turn off register spilling,
3266         * (packRegsForOneUse): synced with other ports' versions although it
3267         is not used currently,
3268         * (pic16_packRegisters): added an optimization while reading
3269         structure bitfields, some registers may be saved (malloc code is
3270         decreased by 80 bytes)
3271
3272 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
3273
3274         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
3275         left is a bitfield, if yes, then don't optimize assignment. Perhaps
3276         this can be optimized more?
3277
3278 2005-03-10 Raphael Neider <rneider AT web.de>
3279
3280         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
3281           genNearPointerGet): (hopefully) fixed access to bitfields via
3282           pointers (p->bitN = x; and x = p->bitN; failed)
3283
3284 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
3285
3286         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
3287
3288 2005-03-09 Raphael Neider <rneider AT web.de>
3289
3290         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
3291
3292 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
3293
3294         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
3295         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
3296           (regTypeNum): set REG_BIT type if necessary
3297         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
3298         * support/regression/tests/critical.c: check bug 1144613
3299
3300 2005-03-02 Raphael Neider <rneider AT web.de>
3301
3302         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
3303
3304 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3305
3306         * src/avr/ralloc.c (serialRegAssign),
3307         * src/ds390/ralloc.c (serialRegAssign),
3308         * src/hc08/ralloc.c (serialRegAssign),
3309         * src/mcs51/ralloc.c (serialRegAssign),
3310         * src/pic/ralloc.c (serialRegAssign),
3311         * src/pic16/ralloc.c (serialRegAssign),
3312         * src/xa51/ralloc.c (serialRegAssign),
3313         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
3314
3315 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
3316
3317         * src/SDCCast.c (decorateType): fixed bug 1124787
3318
3319 2005-02-20 Hubert Sack <sack AT digiplan.de>
3320         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3321
3322         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
3323         patch #1121755
3324
3325 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3326
3327         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
3328         to keep the correct label reference count when adding/removing references
3329         to labels. A peephole file using this is appended to patch #1144962.
3330
3331 2005-02-14 Raphael Neider <rneider AT web.de>
3332
3333         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
3334         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
3335         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
3336           retrievals of result operand's value on assignment
3337
3338 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
3339
3340         * device/include/pic16/string.h: modified prototype for memccpy()
3341         to memccpy(void *, void *, char, size_t)
3342         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
3343         check whether to omit frame pointer or not,
3344         * (genInline): convert all occurences of "\n" to LF in inline
3345         assembler blocks, this helps formatting the inline text,
3346         * (pic16_loadFSR0): modified prototype,
3347         * (genNearPointerGet, genNearPointerSet): reorganization of code,
3348         removed some 8051 legacy code,
3349         * (genPackBits): enabled handling bitfields exceeding one byte in size,
3350         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
3351         before allocating temporary registers in functions,
3352
3353 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
3354
3355         * support/regression/tests/bitvars.c: corrected the "fix"
3356
3357 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
3358
3359         * support/regression/tests/bitvars.c,
3360         * support/regression/tests/bitwise.c,
3361         * support/regression/tests/rotate.c: "fixed" problems on Alpha
3362
3363 2005-02-10 Raphael Neider <rneider AT web.de>
3364
3365         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
3366           different size for Alpha
3367         * src/pic16/gen.c (genCmpEq) : improved compare with 0
3368
3369 2005-02-09 Raphael Neider <rneider AT web.de>
3370
3371         * src/SDCC.lex(doPragma) : save and restore warning options as well
3372           (also added new stack plus clone- and copyAndFreeSDCCERRG())
3373         * have #pragma less_pedantic set the errorlevel to WARNING
3374           (fixes #1117001)
3375         * (cloneOptimize) : fixed wrong malloc's size
3376         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
3377           facilitate correct handling of #pragma (save|restore)
3378
3379 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
3380
3381         * src/mcs51/gen.c: removed non-standard C nameless struct/union
3382
3383 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
3384
3385         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
3386
3387 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
3388
3389         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
3390
3391 2005-02-02 Raphael Neider <rneider AT web.de>
3392
3393         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
3394         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
3395         * (pic16_storeForReturn): fixed to allow returning function pointers
3396         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
3397         * device/include/pic16/{stddef.h,stdbool.h}: added
3398
3399 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
3400
3401         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
3402
3403 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
3404
3405         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
3406         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
3407          appeared to be required
3408
3409 2005-01-31 Borut Razem <borut.razem AT siol.net>
3410
3411         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
3412           include/mcs51 and include/z80 directories to the package
3413
3414 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3415
3416         * src/hc08/gen.c (genFunction): fixed bug #1112752
3417
3418 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3419
3420         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
3421
3422 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3423
3424         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
3425
3426 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
3427
3428         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
3429
3430 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
3431
3432         * device/include/c8051fxxx.h: removed these 6 files
3433         * device/include/mcs51/c8051fxxx.h: added these 11 new files
3434
3435 2005-01-26 Raphael Neider <rneider AT web.de>
3436
3437         * src/pic16/gen.c (genAssign): fixed assignment from longs
3438           in codespace (were cut to three bytes)
3439         * (genDummyRead): implemented (except for CODESPACE...),
3440           fixed bug #1108575
3441         * src/pic16/glue.c (emitStatistics): beautified
3442         * device/lib/pic16/libm/Makefile: added include path
3443
3444 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3445
3446         * src/z80/gen.c (aopPut): fixed bug #1103902
3447
3448 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3449
3450         * device/lib/expf.c: fixed bug #1095792
3451
3452 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
3453
3454         * device/lib/pic16/libm: added Math library sources
3455
3456 2005-01-24 Raphael Neider <rneider AT web.de>
3457
3458         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
3459           to enable upcast to pCodeOpReg2 (there is no type tag to
3460           differenciate the two and pic16_popGet2p cast into PCOR2)
3461         * src/pic16/main.c (_process_pragma): fixed another malloc bug
3462           (sizeof(sectNames) changed to sizeof(sectName))
3463           Both patches fix segfaults under MinGW.
3464
3465 2005-01-23 Raphael Neider <rneider AT web.de>
3466
3467         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
3468           Safe_[mc]?alloc()'ed variables
3469         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
3470           of (byte sized) temporaries (assign them to WREG for now)
3471         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
3472           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
3473           this might fix SIGSEGVs on MinGW...
3474         * src/SDCCopt.c (killDeadCode): restored original behaviour
3475           (volatile operands might get thrown away though)
3476
3477 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
3478
3479         * src/pic16/gen.c: fixed bug #1106975,
3480         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
3481         pointer update, INTCON is saved, global interrupts are disabled and
3482         restored after updateing TOS.
3483         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
3484         * added function attribute 'shadowregs' to take advantage of shadow
3485         registers,
3486         * added function attribute 'wparam' as an alternative to the wparam
3487         pragma,
3488         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
3489         user declares a non-ISR function as 'shadowregs',
3490         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
3491
3492 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
3493
3494         * .version: bumped version number to 2.4.8
3495         * device/lib/pic16/pics.all: list of PIC18F devices supported by
3496         pic16 port,
3497         * device/lib/pic16/libio/i2c/: I2C module support library,
3498         * device/include/pic16/i2c.h: I2C support library header,
3499         * device/lib/pic16/libc/stdio/: standard IO support sources,
3500         * (printf_small.c): printf_small() source, supports float print,
3501         * (printf_tiny.c): printf_tiny() source, does not support floats,
3502         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
3503         enable global optimizations for entire library source, other
3504         Makefiles in the source tree are also modified to reflect this,
3505         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
3506         function,
3507         * doc/sdccman.lyx: updated to reflect new changes,
3508         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
3509         sym->onStack if-case,
3510         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
3511         sbit, idata, _idata, xdata, _xdata,
3512         * added pragma library, to link an external library, (see doc),
3513         * removed command line options, --pomit-config-words, --pomit-ivt,
3514         --pleave-reset-vector,
3515         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
3516         when calling assembler to reflect memory model used, also define
3517         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
3518         reflect stack model used,
3519         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
3520         on stack return NULL,
3521
3522 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3523
3524         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
3525           of the operands is volatile. Fixes #1020220
3526
3527 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3528
3529         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
3530         * (OptimizeRegUsage): make sure that there is really no other flow where
3531           the first pCode is used
3532
3533 2005-01-22 Raphael Neider <rneider AT web.de>
3534
3535         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
3536           to fix #1106967 (pCode->seq are not set up correctly)
3537
3538 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3539
3540         * src/SDCCglue.c (glue): make sure code area is declared before the
3541         static initialization area.
3542
3543 2005-01-21 Raphael Neider <rneider AT web.de>
3544
3545         * device/lib/Makefile.in: fixed test for pic16 install dir
3546         * device/lib/pic16/*/Makefile*: modified compile flags to enable
3547           optimizations
3548         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
3549           added --optimize-goto compiler switch and pragma wparam documentation
3550         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
3551         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
3552           and PRODH closing bug #1071770 (peephole optimizer)
3553
3554 2005-01-19 Raphael Neider <rneider AT web.de>
3555
3556         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
3557           cmdLine buffers (used when calling sdcpp...) are large enough
3558           (MAX_PATH=256 truncates arguments leading to system halts when
3559           used in MinGW...)
3560         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
3561         * (genUminus): rewritten to for efficiency
3562         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
3563           used uninitialized in some cases)
3564         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
3565           copy the third byte from the int -- now assumes 0x80 (data memory)
3566         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
3567           operands (genAddLit expects the iCode's operands to swapped as
3568           well), fixed leftover bytes (crashed for short left operands)
3569         * (pic16_genMinusDec): performance improvements, removed false
3570           PIC14 emitSKPNCs
3571         * (pic16_genMinus): fixed to cope with differently sized operands
3572         * src/pic16/glue.c (pic16_glue): added new banksel optimization
3573           for --obanksel > 1
3574         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
3575         * src/pic16/graph.[ch]: implementation of directed graphs, used by
3576           new banksel optimization
3577         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
3578           analysis for temporary registers (segfaults...)
3579         * src/pic16/peeph.def: added rule
3580
3581 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
3582
3583         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
3584         which converts a float number to its ASCII representation
3585         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
3586         functions to convert the fractional and integer part of a float to ASCII,
3587         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
3588         realloc.c): added _MALLOC_SPEC to explicit place variables in data
3589         ram
3590         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
3591         _STATMEM macros,
3592         * device/include/pic16/adc.h: added GPL info,
3593         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
3594         a pCodeOp as tested operand,
3595         * (genNearPointerGet): optimized bit testing, does not use
3596         intermediate register for bit value, test directly instead with
3597         BTFSS, BTFSC, works only for single bits,
3598         * (genpic16Code): dump the name of the iCode in the asm,
3599         * src/pic16/ralloc.c (decodeOp): removed static declaration and
3600         renamed to pic16_decodeOp,
3601         * (serialRegAssign): do not allocate a temporary register for iCode
3602         sequences that test a single bit for 1/0
3603
3604 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
3605
3606         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
3607         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
3608         access stack and frame pointers. They are initially assigned to
3609         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
3610         accessing SFRs. Updated all occurences of modification of stack or
3611         frame pointer in gen.c and pcode.c,
3612         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
3613         assigning of a literal value to pointers,
3614         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
3615         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
3616         selected
3617
3618 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
3619
3620         * doc/sdccman.lyx: update documentation about stack pragma, added
3621         some info for stack memory models
3622
3623 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3624
3625         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
3626
3627 2005-01-08 Raphael Neider <rneider AT web.de>
3628
3629         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
3630           udata sections to fix bug #1097823
3631
3632 2005-01-05 Raphael Neider <rneider AT web.de>
3633
3634         * src/pic16/gen.c (genGenericShift): added handling of differently
3635           sized left operand and result
3636
3637 2005-01-04 Raphael Neider <rneider AT web.de>
3638
3639         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
3640         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
3641           to hold the condition bit)
3642         * added new version of genCmp (old code available via #define)
3643         * added new version of genShiftLeft/genShiftRight in a generic
3644           way, now supports shifting by negative values
3645         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
3646           shiftCount (expected by genGenericShift)
3647         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
3648         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
3649           dump
3650         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
3651           is an invalid literal too...)
3652
3653 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
3654
3655         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
3656         from Raphael Neider,
3657         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
3658         for 8-bit literals. This fixes some literal operands which are sign
3659         extended to 16-bits ints when instruction needs only 8-bits.
3660
3661 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
3662
3663         * device/lib/logf.c: added mcs51 assembly version
3664         * device/lib/expf.c: added mcs51 assembly version
3665         * device/lib/_logexpf.c: new shared asm code for expf and logf
3666         * device/include/math.h: add defines for assembly math library
3667         * device/lib/Makefile.in: build new _logexpf.c
3668         * device/lib/libfloat.lib: use new _logexpf.c
3669
3670 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3671
3672         * src/pic/device.c
3673         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
3674           device types which have less than 0x7f registers.
3675
3676 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3677
3678         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
3679
3680 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3681
3682         * device/lib/printf_fast.c: only build on supported arch.
3683         * device/lib/printf_tiny.c: only build on supported arch.
3684         * device/lib/printf_fast_f.c: only build if asm float lib
3685         * device/lib/_fsget1arg.c: only build if asm float lib
3686         * device/lib/_fsget2args.c: only build if asm float lib
3687         * device/lib/_fsnormalize.c: only build if asm float lib
3688         * device/lib/_fsreturnval.c: only build if asm float lib
3689         * device/lib/_fsrshift.c: only build if asm float lib
3690         * device/lib/_fsswapargs.c: only build if asm float lib
3691         * device/include/stdio.h: don't provide print_fast,
3692           print_fast_f, print_tiny prototypes if --xstack used
3693
3694 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
3695
3696         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
3697         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
3698           to the SOURCES
3699
3700 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3701
3702         * device/lib/printf_fast_f.c: same as printf_fast, but
3703           with floating point enabled
3704         * device/lib/printf_fast.c: minor tweaks
3705         * device/include/stdio.h: add printf_fast_f
3706
3707 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3708
3709         * src/SDCCmain.c: make --float-reent default for mcs51
3710         * device/lib/_fsadd.c: added mcs51 assembly version
3711         * device/lib/_fssub.c: added mcs51 assembly version
3712         * device/lib/_fsmul.c: added mcs51 assembly version
3713         * device/lib/_fsdiv.c: added mcs51 assembly version
3714         * device/lib/_fseq.c: added mcs51 assembly version
3715         * device/lib/_fsneq.c: added mcs51 assembly version
3716         * device/lib/_fsgt.c: added mcs51 assembly version
3717         * device/lib/_fslt.c: added mcs51 assembly version
3718         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
3719         * device/lib/Makefile.in: add _fscmp to build
3720         * device/lib/libfloat.lib: add _fscmp to build
3721
3722 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3723
3724         * device/lib/_fs2slong.c: added mcs51 assembly version
3725         * device/lib/_fs2sint.c: added mcs51 assembly version
3726         * device/lib/_fs2schar.c: added mcs51 assembly version
3727         * device/lib/_fs2ulong.c: added mcs51 assembly version
3728         * device/lib/_fs2uint.c: added mcs51 assembly version
3729         * device/lib/_fs2uchar.c: added mcs51 assembly version
3730         * device/lib/_slong2fs.c: added mcs51 assembly version
3731         * device/lib/_sint2fs.c: added mcs51 assembly version
3732         * device/lib/_schar2fs.c: added mcs51 assembly version
3733         * device/lib/_ulong2fs.c: added mcs51 assembly version
3734         * device/lib/_uint2fs.c: added mcs51 assembly version
3735         * device/lib/_uchar2fs.c: added mcs51 assembly version
3736         * device/include/float.h: added #define to select asm vs c
3737
3738 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
3739
3740         * device/lib/printf_fast.c: improvements to float output
3741         * device/include/float.h: add defines for assembly float library
3742         * device/lib/_fsget1arg.c: receive 1 float arg
3743         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
3744         * device/lib/_fsnormalize.c: normalize a float
3745         * device/lib/_fsreturnval.c: return float, various helper routines
3746         * device/lib/_fsrshift.c: right shift a float's mantissa
3747         * device/lib/_fsswapargs.c: swap 2 floats
3748         * device/lib/Makefile.in: build these 6 new files for mcs51
3749         * device/lib/libfloat.lib: add these 6 files to the library
3750
3751 2004-12-26 Borut Razem <borut.razem AT siol.net>
3752
3753         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
3754           built by gcc 3.4.2
3755
3756 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
3757
3758         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
3759           and fully reentrant and register bank neutral.
3760         * device/lib/printf_fast.c: added float (not enabled by default),
3761           added compact/slower integer (also not enabled by default),
3762           improved size/speed of fast integer code, other minor changes
3763         * device/include/stdio.h, device/lib/Makefile.in,
3764           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
3765
3766 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
3767
3768         * src/pic16/pcode.c: declaring variables other than at the start of a
3769           block is not supported in C by VC6.
3770
3771 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
3772
3773         * applied a previous patch from Raphael Neider that wasn't included
3774         in the previous commits, which fixes infinite loops within jumptable
3775         improvements,
3776         * made some fixes that previous patches introduced
3777
3778 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
3779
3780         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
3781         that fixes an issue with AOP_PCODE asmop's offset,
3782         * (pic16_popCopyReg): update instance field too,
3783         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
3784         function of pic port,
3785         * (genCmp, genAnd, genAssign),
3786         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
3787
3788 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
3789
3790         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
3791         variables initial values to idata section,
3792         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
3793         variables in some functions. This utilizes parmBytes field of iCode
3794         structure to hold the offset of the variable in stack. (might be
3795         able to use the stack field too?)
3796         * applied patch from Raphael Neider # ### , # ###
3797         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
3798         variable initial values in idata section,
3799         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
3800         for static variables with initial value
3801         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
3802         applied fix in while loop from Raphael Neider.
3803
3804 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
3805
3806         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
3807         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
3808         * src/ds390/ralloc.c (serialRegAssign): spill bits
3809         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
3810         * support/Util/SDCCerr.c,
3811         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
3812         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
3813         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
3814
3815 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
3816
3817         * device/include/sdcc-lib.h: inserted LGPL, added includes
3818           asm/ds390/features.h and asm/mcs51/features.h
3819         * device/include/asm/default/features.h,
3820         * device/include/asm/gbz80/features.h,
3821         * device/include/asm/z80/features.h: added empty _AUTOMEM
3822           and _STATMEM
3823         * device/include/asm/ds390/features.h,
3824         * device/include/asm/mcs51/features.h: added files with defines for
3825           _AUTOMEM and _STATMEM indicating automatic and static storage class
3826         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
3827         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
3828         * src/SDCCicode.c (geniCodeCast),
3829         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
3830         * src/SDCCloop.c (loopInduction): removed unused variable lr
3831         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
3832           to convertToFcall to include char modulo (RFE 1065037), added check
3833           if left operand is unsigned and use abs of literal value
3834         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
3835           as it doesn't work after conversion from peephole.def to peephole.rul
3836         * src/mcs51/gen.c (toBoolean): added check for size,
3837           (genModOneByte): optimized code for signed char modulo a literal
3838           power of 2 (thanks to Hubert Sack),
3839           (genRRC): removed unnecessary "clr c",
3840           (genRLC): replaced "add a,acc" with cheaper "rlc a"
3841         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
3842           jump optimization,
3843           swapped rules 256.c and 256.d,
3844           extended 256.d by using new multiple checks (thanks Erik),
3845           added rules 256.e and 256.f,
3846           updated rule 261.a and 261.b to new generated code
3847         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
3848
3849 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3850
3851         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
3852           induction related bugs, including first part of bug #1074377
3853
3854 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
3855
3856         * applied patch from bug-report #1076292,
3857         * applied patches for genAnd and Goto-optimizations for Raphael
3858         Neider,
3859         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
3860         dump a less iCode information,
3861         * src/pic16/device.h (pic16_options_t): added field debgen,
3862         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
3863         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
3864         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
3865         puclic,
3866         * (various functions): added macros FENTRY and FENTRY2 to functions,
3867         to emit function prologue,
3868         * (various functions): fixed indentation,
3869         * (genNearPointerGet): fixed loading of FSR0,
3870         * (genPackBits): applied patch from Raphael Neider to fix updating
3871         of FSR0 and touching only the modified bits,
3872         * src/pic16/genarith.c (various functions): added macros FENTRY to
3873         emit function prologue in comments,
3874         * src/pic16/pcode.h: added functions debugf2, debugf3,
3875         * src/pic16/ralloc.c: partial fix for packForPush caused
3876         segmentation fault,
3877
3878 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3879
3880         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
3881           <stsp AT users.sourceforge.net> with reversed byte order
3882         * support/regression/tests/rotate.c: added (ds390 skips some tests)
3883
3884 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3885
3886         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
3887           bug #1074377
3888         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
3889         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
3890
3891 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3892
3893         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
3894
3895 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3896
3897         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
3898           conditions,
3899           (setFromConditionArgs): friendly operand parser for peephole rules,
3900           (operandBaseName, operandsNotRelated): new peephole condition
3901           "operandsNotRelated" -- similar to "operandsNotSame", but takes
3902           architecture specific register naming into account, handles n-way
3903           comparisons, and supports quoted literals
3904         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
3905
3906 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3907
3908         * src/mcs51/peeph.def: fixed bug #1076940
3909
3910 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3911
3912         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
3913
3914 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3915
3916         Adding support for replacing ljmps with sjmps in jumptables
3917         generated for switch statements. For now you need to set the
3918         environment variable SDCC_SJMP_JUMPTABLE to enable this.
3919         Now 4 algorithms for mcs51 jumptable generation are used:
3920         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
3921         addresses loaded pc-relative for up to 112 cases and stack-pushing
3922         target addresses loaded with offset from dptr for up to 256 cases.
3923
3924         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
3925         * src/mcs51/main.c: adapted constants for switch table generation
3926         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
3927
3928 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
3929
3930         * device/lib/printf_large.c (_print_format): fixed bug 1073386
3931         * support/regression/tests/bug1057979.c: added test for bug 1073386
3932
3933 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3934
3935         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
3936         compilers
3937
3938 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3939
3940         * src/pic16/device.h,
3941         * src/pic16/genarith.c,
3942         * src/pic16/glue.c,
3943         * src/pic16/main.c,
3944         * src/pic16/pcode.c: applied patches #1068154 and #1070213
3945
3946 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
3947
3948         Large cummulative patch for pic16 port.
3949         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
3950         to call when a stack overflow occurs,
3951         * (malloc.h): added CVS Id tag,
3952         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
3953         variable,
3954         * added libc directory. The current version of LibC contains string
3955         functions, ctype functions and macros and some functions of the
3956         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
3957         be extensively tested in the future. Standard disclaimer here.
3958         Library is not automatically build yet. But one can build it by
3959         invoking 'make' inside the libc directory.
3960         * added ADC library under libio. Preliminary version yet.
3961
3962         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
3963         * src/pic16/gen.c (aopForRemat): asmop size is filled by
3964         aopForRemat() now and not by pic16_aopOp(),
3965         * (pic16_popGetTempReg): removed warning messgae when allocating
3966         temporary registers, its a buggy feature and will be removed,
3967         * (pic16_popGet): set register instance field in AOP_CRY,
3968         * (pic16_outBitC): fixed for results in size greater than 1,
3969         * (genUminusFloat): fixed for pic16, ported code from mcs51,
3970         * (pic16_storeForReturn): optimized return of 0,
3971         * (genCmp): experimental code for new genCmp which uses PIC18's
3972         special compare&skip instructions. Initial tests fail some times
3973         with variables grater than 1 byte in size, so new code is disabled,
3974         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
3975         a single bit,
3976         * (genCast): began a fix to optimize the casting of a bit to another
3977         bit, now assigning a bitfield to another bitfield will fail, sorry,
3978         * src/pic16/main.c: disabled the use of lr-support feature,
3979         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
3980         * added some function prototypes, added function _debugf prototype,
3981         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
3982         bits with offset (case PO_GPR_BIT),
3983         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
3984         command line,
3985         * (isBankInstruction): modified to return 0 for no banking instruction,
3986         and 1 for banking instruction,
3987         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
3988         caused stop processing pCodes after a inline assembly block,
3989         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
3990         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
3991         registers when it shouldn't,
3992         * src/pic16/ralloc.c (allocReg): add preliminary support for
3993         supporting a limited set of temporary registers,
3994
3995 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3996
3997         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
3998           genDataPointerSet): ensure assignments always copy in MSB to LSB
3999           order,
4000           (loadRegFromAop): recognize CLRH optimization,
4001           (genFunction): optimize RECEIVE iCodes in reentrant functions
4002
4003 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4004
4005         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
4006           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
4007           selected.
4008         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
4009         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
4010           contiguous with data
4011
4012 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4013
4014         * device/lib/_gptrget.c (_gptrget),
4015         * device/lib/_gptrgetc.c (_gptrgetc),
4016         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
4017           instead of sjmp to ret
4018         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
4019           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
4020
4021 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
4022
4023         * .version: bumped version to 2.4.7
4024         * device/lib/_gptrget.c (_gptrget): is now _naked
4025         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
4026         * device/lib/_gptrput.c (_gptrput): is now _naked
4027         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
4028           (createFunction): fixed xstack
4029         * src/SDCCglue.c (emitMaps): set allocation required for bit area
4030         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
4031           or bit either,
4032           (geniCodeCritical): store original interrupt state in an iTemp bit
4033           var unless stack-auto
4034         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
4035         * src/SDCCmain.c (setIncludePath): added include/target to search path
4036         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
4037         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
4038           prototype,
4039           (processFuncArgs): put bit vars in bit area
4040         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
4041           unsaveRBank): fixed xstack,
4042           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
4043           (genFunction, genEndFunction): fixed xstack,
4044           (genAssign): optimization don't walk backwards through mem
4045         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
4046         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
4047         * support/regression/Makefile: also make library (for stack-auto) when
4048           making "all" and added "test-mcs51-xstack-auto"
4049         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
4050         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
4051         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
4052         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
4053         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
4054           make-library by MAKE_LIBRARY
4055         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
4056           regression tests for xstack
4057         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
4058         * support/regression/tests/critical.c: test for critical on mcs51
4059
4060 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4061
4062         * support/regression/ports/ucz80/spec.mk: use include and lib files from
4063           built version of sdcc instead of installed version
4064
4065 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
4066
4067         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
4068         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
4069           vprintf.c now
4070         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
4071         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
4072           WARNING: remove device/lib/build/z80/printf.o by hand when
4073           updating from previous build!
4074         * device/lib/z80/printf.c: updated comment
4075         * support/regression/tests/bug1057979.c: test all ports now
4076         * support/regression/tests/bug1065458.c: file added
4077
4078 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4079
4080         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
4081           *_start and *_end symbols for static functions
4082
4083 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
4084
4085         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
4086           and search crt0.o in all library paths,
4087           (setIncludePath): proper handling of --nostdinc,
4088           (setLibPath): proper handling of --nostdlib
4089         * support/regression/Makefile,
4090         * support/regression/ports/ds390/spec.mk,
4091         * support/regression/ports/gbz80/spec.mk,
4092         * support/regression/ports/hc08/spec.mk,
4093         * support/regression/ports/mcs51/spec.mk,
4094         * support/regression/ports/mcs51-large/spec.mk,
4095         * support/regression/ports/mcs51-stack-auto/spec.mk,
4096         * support/regression/ports/z80/spec.mk: use include and lib files from
4097           built version of sdcc instead of installed version
4098         * doc/sdccman.lyx: fixed typo in --nostdinc
4099
4100 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
4101
4102         * src/pic/pcode.c,
4103         * src/pic/device.c,
4104         * src/pic/ralloc.c,
4105         * src/pic/gen.c : added support to generate code for struct bit fields.
4106
4107 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
4108
4109         * as/xa51/xa_version.h,
4110         * device/include/errno.h,
4111         * device/include/regc515c.h,
4112         * device/lib/_itoa.c,
4113         * device/lib/_ltoa.c,
4114         * device/lib/ser_ir_cts_rts.c,
4115         * sim/ucsim/xa.src/glob.cc,
4116         * sim/ucsim/xa.src/inst_gen.cc,
4117         * sim/ucsim/xa.src/xa_bit.cc,
4118         * sim/ucsim/xa.src/xa_sfr.cc,
4119         * sim/ucsim/z80.src/inst_dd.cc,
4120         * sim/ucsim/z80.src/inst_fdcb.cc,
4121         * support/scripts/keil2sdcc.pl,
4122         * src/pic16/pic16.dsp,
4123         * src/pic16/pic16a.dsp: corrected cvs line endings
4124         * device/lib/printf_large.c: fixed bug 1057979
4125         * src/pic16/gen.c: fixed non-C standard code
4126         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
4127         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
4128         * support/regression/ports/mcs51/support.c: reload T1 asap
4129         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
4130           pdata use and clear idata startup behaviour
4131         * support/regression/tests/bug1057979.c: added
4132
4133 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
4134
4135         * device/examples/ds390/ow390/ad26.h,
4136         * device/examples/ds390/ow390/cnt1d.h,
4137         * device/examples/ds390/ow390/crcutil.c,
4138         * device/examples/ds390/ow390/ownet.h,
4139         * device/examples/ds390/ow390/owsesu.c,
4140         * device/examples/ds390/ow390/swt12.h,
4141         * device/examples/ds390/ow390/swtoper.c,
4142         * device/examples/ds390/ow390/temp10.h,
4143         * device/examples/ds390/ow390/thermodl.c,
4144         * device/examples/ds390/tinitalk/tinitalk.dsp,
4145         * device/examples/ds390/tinitalk/tinitalk.dsw,
4146         * device/examples/mcs51/clock/hw.h,
4147         * device/examples/mcs51/simple2/go.bat,
4148         * device/examples/serialcomm/windows/serial.h,
4149         * device/examples/xa51/dummy.c,
4150         * device/examples/xa51/hello.c,
4151         * device/include/80c51xa.h,
4152         * device/include/at89x051.h: corrected cvs line endings
4153
4154 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
4155
4156         * src/pic16/main.c (options): added command line --gstack, to trace
4157         stack over/under flows,
4158         * added pragma 'wparam' to allow passing first byte of function
4159         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
4160         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
4161         call to __gstack_test function and sets up the symbol as extern,
4162         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
4163         * popaop): added call to pic16_testStackOverflow,
4164         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
4165         wparamList list,
4166         * (genCall, genPcall): now all parameters are passed via stack
4167         except in functions that are pass to wparam pragma in which WREG is
4168         used too,
4169         * (genPcall): REENTRANT flag is checked to see if variable prototype
4170         contains reentrant keyword, don't call a non-reentrant function, via
4171         a reentrant function pointer or vice versa, functions are never
4172         passed via WREG,
4173         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
4174         D.Winkler,
4175         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
4176         SIGSEGV when accessing a NULL register stucture,
4177         * (pic16_printGPointerType): modified to handle UPPER modifier for
4178         function initializers, changed prototype of function to simpler one,
4179         * (pic16_printIvalFuncPtr): check to see if function is already
4180         added in externs list,
4181         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
4182         optimized a move from W to SFR with a move to the same register
4183         later after a CALL,
4184         * device/lib/pic16/debug: NEW directory, contains debug features
4185         which are enabled when linking with libdebug.lib, currently command
4186         line option --gstack enables stack pointer tracing for over/under
4187         flow, corresponding sources are in debug/gstack
4188
4189 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
4190
4191         * doc/sdccman.lyx: updated SDCC version,
4192         * (PIC16 port): update list of command line options,
4193         * src/pic16/device.h (structure pic16_options_t): added field gstack
4194         to enable stack overflow tracing on push/pops,
4195         * src/pic16/device.c (statistics structure): added statistics
4196         structure,
4197         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
4198         pic16_dump_int_registers): increase statistics counters for each
4199         * variable which is encountered
4200         * (pic16_dump_usection): emit each .udata variable to its own udata
4201         section,
4202         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
4203         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
4204         parameters via stack, otherwise use old scheme,
4205         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
4206         assembler output file,
4207         * src/pic16/main.c: added command line options --gstack to enable
4208         push/pop tracing for stack overflow,
4209         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
4210         instructions): added size of each instruction,
4211         * (pic16_countInstruction): estimate size of instructions in
4212         the_pFile list, inline assembly blocks are not counted,
4213         * (pic16_FixRegisterBanking): trace previous register usage, when
4214         banksel optimizations is greater than 0, don't emit a redudant
4215         banksel directive,
4216
4217 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
4218
4219         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
4220         * src/pic16/ralloc.c : applied same fix for pic16.
4221         * src/pic/gen.c : tidied it up a little.
4222
4223 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4224
4225         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
4226         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
4227
4228 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4229
4230         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
4231
4232 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4233
4234         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
4235         non-reentrant function __modsint in the interrupt function (thus
4236         corrupting math operations during serial I/O)
4237         * device/lib/ser_ir.c: as above, changed buffersize
4238         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
4239         256.c,d for zeroing
4240         * doc/Makefile: added option -t for rsync
4241
4242 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4243
4244         * src/SDCCast.h (struct ast),
4245         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
4246
4247 2004-10-20 Borut Razem <borut.razem AT siol.net>
4248
4249         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
4250         package
4251
4252 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
4253
4254         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
4255         makefile targets,
4256         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
4257         support functions to replace long sequences of MOVFF's from access
4258         bank registers to stack and vice versa,
4259         * src/pic16/device.h: added new field opt_flags, where optimization
4260         flags can be set to enable certain features,
4261         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
4262         * pBlock, (genFunction, genEndFunction): surroung loop for
4263         saving/loading used registers in stack with PC_INFO pCodes,
4264         INF_LREGS. Code in between can then be optimized by pCode optimizer
4265         to support function calls,
4266         * (genDataPointerSet): fixed bug which loaded float fields in
4267         structures with corrupt data,
4268         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
4269         in a standard way debug info on stderr. Feature used for developing
4270         and debugging only,
4271         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
4272         obsolete chunks of code,
4273         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
4274         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
4275         * pic16/src/pcode.c (pic16_newpCodeInfo,
4276         * (pic16_newpCodeOpLocalRegs),
4277         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
4278         feature,
4279         * (pic16_pCodeConstString): printing of the initial value of a
4280         symbol as a comment is inhibited since parsing was already done by
4281         copyStr and output is corrupt,
4282         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
4283
4284 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4285
4286         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
4287
4288 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
4289
4290         * as/mcs51/lkarea.c: removed old K&R style,
4291           (lnksect): changed check on boundary error,
4292           (lnksect2): changed check on boundary error,
4293           (lnksect2): extend XSTK to end of page if size = 1
4294         * as/mcs51/lkmain.c: removed old K&R style,
4295           (Areas51): create l_IRAM symbol
4296         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
4297         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
4298           model-mcs51-stack-auto, added model-mcs51-xstack-auto
4299         * device/lib/_mullong.c: added version to be compiled with xstack
4300         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
4301         * device/lib/mcs51/crtxclear.asm: clear pdata as well
4302         * device/lib/mcs51/crtxstack.asm: fixed comment
4303         * src/SDCCglue.c: maxInterrupts defaults to 0,
4304           (emitMaps): added pdata,
4305           (createInterruptVect): (re)moved default,
4306           (glue): added pdata,
4307           (glue): moved __start__xstack to XSTK with default size 1
4308         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
4309           and options.float_rent when options.stackAuto is set,
4310           (linkEdit): only write XDATA_NAME if provided on command line
4311         * src/SDCCmem.h,
4312         * src/SDCCmem.c: added pdata
4313         * src/port.h: added pdata_name to PORT
4314         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
4315           (saveRegisters, unsaveRegisters): removed usage of B,
4316           (genMinus): fixed accumulator clash,
4317           (genJumpTab): added comment, this needs another look
4318         * src/mcs51/gen.c: added check for "B in use" paranoia,
4319           added pushB() and popB()
4320         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
4321           chance
4322         * src/avr/main.c,
4323         * src/ds390/main.c,
4324         * src/hc08/main.c,
4325         * src/mcs51/main.c,
4326         * src/pic/main.c,
4327         * src/pic16/main.c,
4328         * src/xa51/main.c,
4329         * src/z80/main.c: (reset_regparms) made void parameter explicit and
4330           added PSEG (PAG,XDATA) or NULL to port specifier
4331         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
4332         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
4333           (_mcs51_genInitStartup): removed __start__xstack equ,
4334           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
4335         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
4336         * src/z80/gen.c (_rleAppend): fixed warnings
4337         * support/regression/tests/zeropad.c: added pdata test
4338         * .version: bumped to 2.4.6
4339
4340 2004-10-17 Borut Razem <borut.razem AT siol.net>
4341
4342         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
4343         as a part of nightly build
4344
4345 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
4346
4347         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
4348         WREG holds the first byte function parameters,
4349         * (aopForSym): take special case for symbols which are in FARSPACE
4350         but in CODESPACE too,
4351         * (assignResultValue): modified to take into account _G.useWreg,
4352         * (genCall): don't use wreg for parameter passing when function is
4353         declared as reentrant, too, added optimization INCF to stack
4354         pointer when stack parameter count is 1,
4355         * (genFunction, genEndFunction): refurnished and fixed to not using
4356         wreg for passing parameters when function has varargs or is
4357         reentrant, fixed bug with symbol name compare for generating
4358         functions in absolute address,
4359         * (pic16_storeForReturn): refurnished,
4360         * (genCmp): began writing a new version of the function, not ready
4361         yet, therefore it is disabled,
4362         * (genAssign): do not read code memory when assigning a function to
4363         a pointer function,
4364         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
4365         array of characters, not pointer,
4366         * (pic16initialComments): in debug mode emit an .ident directive for
4367         the assembler,
4368         * (_process_pragma): emit a new warning type (internal to pic16)
4369         when setting stack to default length, emit a similar warning when
4370         placing a function at absolute address and address is not word aligned
4371         * (_pic16_parseOptions): added 'return TRUE' statement,
4372         * (_pic16_linkEdit): if compiling a source, then add the source's
4373         file object, first in the list of objects to link,
4374
4375 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
4376
4377         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
4378         * src/pic/main.c : removed VC warning.
4379         * src/pic/gen.c : changed comment.
4380
4381 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
4382
4383         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
4384         reference to a deprecated symbol _GPTRREG was causing failure to
4385         link. Thanks G. M. Gallant for the info.
4386
4387 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
4388
4389         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
4390         comments for Bugs item #954788.
4391
4392 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
4393
4394         * src/pic16/device.c (pic16_dump_gsection,
4395         * pic16_groupRegistersInSection): handle symbols declared to be in
4396         access bank differently,
4397         * src/pic16/gen.c (struct _G): added field resDirect,
4398         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
4399         send values read from stack directly to result and don't allocate
4400         temporary values,
4401         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
4402         same registers,
4403         * (pic16_sameRegsOfs): NEW,
4404         * (freeAsmop): if _G.resDirect is set then do not mark registers as
4405         free because they were not allocated from temporary pool,
4406         * pic16_popRegFromString): workaround to fix a problem with
4407         allocating variables twice or never,
4408         * (genGenPointerGet): using PRODL instead of FSR0H,
4409         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
4410         instead of FSR0H,
4411         * (genAssign): take advantage of the _G.resDirect flag,
4412         * (genCast): around line 11844, use mov2f instead of directly
4413         MOVFF'ing between operands to account for literal values,
4414         * src/pic16/genutils.c: some new debug functions for gpsim have been
4415         added,
4416         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
4417         float with integer part only,
4418         * src/pic16/main.c (_process_pragma): handle pragma udata access to
4419         place variables in access bank
4420         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
4421         updated sources to reflect recent changes in gen.c
4422
4423 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
4424
4425         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
4426         sources that searched for headers in installation path, now the
4427         device/include/pic16 is used,
4428         * src/pic16/glue.c (pic16glue),
4429         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
4430         .line directives if not in debug mode, this suppresses assembler's
4431         warnings for ignored directives
4432
4433 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
4434
4435         * src/port.h: made reset_regparms prototype void parameter explicit.
4436         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
4437         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
4438         * doc/sdccman.lyx: documented warning disabling and how to use
4439           printf_large to make it print floats.
4440         * device/include/stdbool.h: NEW
4441         * device/lib/_atof.c,
4442         * device/lib/_divuint.c,
4443         * device/lib/_divulong.c,
4444         * device/lib/expf.c,
4445         * device/lib/printf_large.c,
4446         * device/lib/sincosf.c,
4447         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
4448         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
4449           a completely reentrant lib.
4450
4451 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
4452
4453         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
4454         * device/include/pic16/stdio.h: fixed bug with colon
4455
4456 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
4457
4458         * device/include/pic16/stdio.h,
4459         * device/include/pic16/stdlib.h,
4460         * device/include/pic16/math.h: NEW
4461         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
4462         declared as _naked to reduce overhead
4463         * device/lib/Makefile.in (target port-specific-objects-pic16):
4464         changed * to *.* so to ignore the CVS directory,
4465         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
4466         stacked variables back in stack,
4467         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
4468         corruption
4469
4470 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
4471
4472         * .version: bumped version number to 2.4.5
4473         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
4474         * support/Util/SDCCerr.c (messages structure): added entry for
4475         W_POSSBUG2
4476
4477         Large cumulative patch for pic16 port and libraries.
4478         * device/include/pic16/sdcc-lib.h,
4479         * device/include/pic16/stdarg.h,
4480         * device/include/asm/pic16/features.h,
4481         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
4482         * device/include/pic16/float.h: changes reentrant keyword with
4483         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
4484         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
4485         updated target build-libraries to include objects from gptr,
4486         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
4487         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
4488         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
4489         all function headings,
4490         * src/SDCCmain.c: added global parameter userIncDirsSet,
4491         * (parseCmdLine): when option -I is encountered add directory to
4492         userIncDirsSet too,
4493         * src/version.awk: added space between control and long,
4494         * src/pic16/NOTES: added some notes for the port,
4495         * src/pic16/gen.c: added prototype for mov2fp function,
4496         * (fReturnpic16[]): properly named return value registers,
4497         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
4498         * (aopForSym): added code to handle symbols with onStack flag set,
4499         symbols onStack are allocated PTRSIZE bytes,
4500         * (aopFreeAsmop): handles special case where asmops are stack objects,
4501         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
4502         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
4503         added argument lock to trace flaws in allocating temporary registers
4504         when developing port,
4505         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
4506         * (pic16_popRegFromString): reenabled allocating a direct register
4507         from string,
4508         * (assignResultValue): various beautifications,
4509         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
4510         referenced function argument,
4511         * (genIpush): reenabled to allow stacked arguments, handles only
4512         ic->parmPush iCodes,
4513         * (genCall, genPcall): major changes to allow for variable argument
4514         functions, fixed a bug with falsely restoring stack pointer after
4515         returning from call,
4516         * (genFunction): pending code for critical function,
4517         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
4518         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
4519         * (genNearPointerGet): fixed bug with indirect reading, was always
4520         reading from INDF0
4521         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
4522         pointers,
4523         * (genAddrOf): rewrote code to take address of a stacked function parameter
4524         * (genCast): fixed casting to generic pointer type,
4525         * src/pic16/gen.h: added AOP_STA,
4526         * (struct asmop): added field stk,
4527         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
4528         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
4529         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
4530         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
4531         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
4532         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
4533         generic pointers,
4534         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
4535         and library paths,
4536         * (pic16_port structure): generic pointer size is set to 3,
4537         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
4538         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
4539         compiler warning,
4540         * src/pic16/ralloc.c (allocReg): prevent allocating register when
4541         operand is an iTemp,
4542
4543 2004-09-24 Martin Helmling <mh AT octo-soft.de>
4544
4545         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
4546         * debugger/mcs51/simi.c: addapt new syntax of s51
4547
4548 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
4549
4550         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
4551         * src/pic16/pcode.c: commented out some calls to free() in order to
4552         fix bug #989576,
4553
4554 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4555
4556         * src/SDCCicode.h,
4557         * src/SDCCicode.c (isiCodeInFunctionCall),
4558         * src/avr/ralloc.c (selectSpil),
4559         * src/pic/ralloc.c (selectSpil),
4560         * src/pic16/ralloc.c (selectSpil),
4561         * src/ds390/ralloc.c (selectSpil),
4562         * src/hc08/ralloc.c (selectSpil),
4563         * src/xa51/ralloc.c (selectSpil),
4564         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
4565         stack in the middle of a function call sequence (fixes bug #1020268)
4566         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
4567         costs associated with the minimum switch case.
4568
4569 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4570
4571         * src/SDCC.lex: fixed bug #1030549
4572
4573 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4574
4575         * src/SDCCcse.h (struct cseDef),
4576         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
4577         over a function call if the CSE is derived from a symbol whose
4578         address has been taken (fixes bug #1029883)
4579         * support/regression/tests/bug-1029883: a new regression test for
4580         this bug
4581
4582 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4583
4584         * src/hc08/gen.c (emitinline): fixed bug #1029778
4585         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
4586         to a cast object is no longer a syntax error ("fixes" bug #1030006,
4587         and starts toward RFE #905167)
4588
4589 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
4590
4591         * src/pic16/gen.c (mov2f): New function to move an operand to
4592         another without considering if it is a literal or a register,
4593         * (pic16_sameRegs): don't check if they are both AOP_REG,
4594         * (AccRsh): removed andmask=0 lines,
4595         * (genLeftShift): duplicated to be improved in future versions,
4596         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
4597         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
4598         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
4599         * (pic16initMnemonics): added initialization for POC_INFSNZW,
4600         * (insertBankSwitch): fixed inserting banksel directives algorithm
4601         for instructions that follow a skip instruction, this fixes a report
4602         for broken subtraction code generation,
4603         * src/pic16/ralloc.c (deassignLRs): do not free register if current
4604         iCode is a left op, just in case result and right share the same
4605         registers
4606
4607 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4608
4609         * src/hc08/main.c,
4610         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
4611         preservation of HX
4612         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
4613         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
4614         on 2004-09-12; it was buggy
4615
4616 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
4617
4618         * src/SDCCsymt.h: removed RESULT_CHECK
4619         * src/SDCCast.c,
4620         * src/SDCCglue.c,
4621         * src/SDCCval.c,
4622         * src/pic/glue.c,
4623         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
4624
4625 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
4626
4627         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
4628         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
4629         configuration values no more rejected by compiler, they are assigned
4630         to configuration registers with a warning message instead,
4631         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
4632         the for-loop so last conf register is emitted too,
4633         * (_pic16_initPaths): link library libsdcc.lib by default,
4634         * (_hasNativeMulFor): modified test for multiplication according to
4635         Raphael Neider's remarks. Integer multiplication is also done with
4636         support functions,
4637         * device/include/pic16/pic18fregs.h: corrected type error in while
4638         testing and including 18f6720 header file
4639
4640 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
4641
4642         * src/pic16/device.h (pic16_options): removed field use_crt,
4643         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
4644         until an optimization to handle single bits is added,
4645         * (pic16_loadFSR0): moved before genUnpackBits,
4646         * (genAnd): some white lines removed,
4647         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
4648         leave_reset flags in pic16_options when using crt modules,
4649
4650 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
4651
4652         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
4653           for bugs 898889 & 979599. Also used some safer print instructions.
4654
4655 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
4656
4657         * src/pic16/device.h (pic16_options_t): added field use_crt,
4658         crt_name, no_crt,
4659         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
4660         catch a probable future bug,
4661         * src/pic16/gen.c: aopIdx function commented out,
4662         * (genAssign): commented out old code which used aopIdx,
4663         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
4664         code, added if conditionals to take into account the --use-crt
4665         command line options,
4666         * src/pic16/main.c (pic16_optionsTable): added new command line
4667         options, --use-crt= and --no-crt,
4668         * (_pic16_linkEdit): now the proper crt object is added in the
4669         linker command line except than when --no-crt is specified,
4670         * src/pic16/pcode.c,
4671         * src/pic16/pcode.h: added some structures and functions for a new
4672         optimization scheme to compansate for instruction overhead between
4673         same iCodes, this scheme is currently under development and is not
4674         working in any way,
4675         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
4676         to && operator,
4677         * device/lib/pic16/startup/crt0i.c,
4678         * device/lib/pic16/startup/crt0iz.c: added global char variable
4679         __uflags to force the generation of an idata section
4680
4681 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
4682
4683         * doc/Makefile,
4684         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
4685         * doc/sdccman.lyx: updated sdcc version to 2.4.4
4686
4687 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4688
4689         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
4690         Frieder) and clarified the default code optimization mode
4691
4692 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4693
4694         * src/SDCC.lex (doPragma, process_pragma),
4695         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
4696         "opt_code_size", and "opt_code_balanced"
4697         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
4698         regrouped options by category, added support for category headers
4699         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
4700         and "--opt-code-size"
4701         * doc/sdccman.lyx: documented these new options and pragmas
4702         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
4703         preference into account
4704
4705 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4706
4707         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
4708           geniCodePreDec): Fixed bug 904237 by generating a warning
4709         * src/SDCCerr.h,
4710         * src/SDCCerr.c: added warning W_SIZEOF_VOID
4711
4712 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
4713
4714         * src/pic/device.c : When no max ram set validate full memory range.
4715         * src/pic/pcode.c,
4716         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
4717
4718 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4719
4720         * device/lib/_gptrget.c,
4721         * device/lib/_gptrput.c: updated comment
4722         * device/lib/calloc.c,
4723         * device/lib/free.c,
4724         * device/lib/malloc.c,
4725         * device/lib/realloc.c: added LGPL, made them reentrant-safe
4726         * src/SDCCcse.c (cseBBlock),
4727         * src/SDCCicode.c (printOperand, geniCodeArray),
4728         * src/SDCCicode.h (struct operand): fixed bug 868103
4729         * support/regression/tests/bug-868103.c: added
4730         * src/SDCCast.c (searchLitOp),
4731         * src/SDCCcse.h (struct cseDef),
4732         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
4733         * src/SDCCicode.h (struct operand),
4734         * src/SDCCsymt.h (struct sym_link),
4735         * src/avr/gen.c (hasInc),
4736         * src/ds390/gen.c (hasInc),
4737         * src/hc08/gen.c (genPlusIncr, hasInc),
4738         * src/mcs51/gen.c (hasInc),
4739         * src/pic16/glue.c (pic16_printIvalChar),
4740         * src/pic16/ralloc.c (regWithIdx),
4741         * src/xa51/gen.c (hasInc) : removed warnings
4742         * src/SDCCast.c (createBlock): added comment ???
4743         * src/hc08/ralloc.c: updated comments
4744
4745 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4746
4747         * doc/sdccman.lyx: updated section on switch statements, added
4748         section about semaphore locking
4749         * doc/Makefile: added option -info for latex2html
4750         * device/lib/_gptrget.c,
4751         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
4752
4753 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4754
4755         * src/pic/device.h,
4756         * src/pic/device.c,
4757         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
4758          maxram is less than 0x100.
4759
4760 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4761
4762         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
4763
4764 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4765
4766         * src/port.h,
4767         * src/mcs51/main.c,
4768         * src/ds390/main.c,
4769         * src/z80/main.c,
4770         * src/hc08/main.c,
4771         * src/pic/main.c,
4772         * src/pic16/main.c,
4773         * src/avr/main.c,
4774         * src/xa51/main.c
4775         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
4776         a jump table is the best form for a switch statement, including
4777         automatic insertion of missing cases to make the case range
4778         continuous. Developed in collaboration with Frieder Ferlemann.
4779
4780 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4781
4782         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
4783         accumulator result if it needs sign extension
4784
4785 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4786
4787         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
4788
4789 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4790
4791         * device/lib/gbz80/printf.c,
4792         * device/lib/z80/printf.c: removed define for NULL
4793
4794 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4795
4796         * as/xa51/xa_link.c,
4797         * device/examples/ds390/ow390/ad26.c,
4798         * device/examples/ds390/ow390/cnt1d.c,
4799         * device/examples/ds390/ow390/counter.c,
4800         * device/examples/ds390/ow390/ds2480.h,
4801         * device/examples/ds390/ow390/ds2480ut.c,
4802         * device/examples/ds390/ow390/findtype.c,
4803         * device/examples/ds390/ow390/gethumd.c,
4804         * device/examples/ds390/ow390/owllu.c,
4805         * device/examples/ds390/ow390/ownetu.c,
4806         * device/examples/ds390/ow390/swt12.c,
4807         * device/examples/ds390/ow390/swtloop.c,
4808         * device/examples/ds390/ow390/temp.c,
4809         * device/examples/ds390/ow390/temp10.c,
4810         * device/examples/ds390/ow390/thermo21.c,
4811         * device/examples/ds390/ow390/tinilnk.c,
4812         * device/examples/ds390/ow390/tstfind.c,
4813         * device/examples/serialcomm/windows/serial.cpp,
4814         * device/examples/serialcomm/windows/test_serialcomm.cpp,
4815         * device/include/reg51.h: fixed line endings for cvs
4816
4817 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4818
4819         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
4820         packRegsForAccUse, packRegisters): new accumulator register
4821         packing algorithm
4822         * support/regression/ports/hc08/support.c (_putchar): suppress
4823         warning of unused variable
4824         * src/SDCCicode.c: added SWAP entry to codeTable
4825
4826 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
4827
4828         * device/lib/sprintf.c: forgot to add this file before previous commit
4829
4830 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
4831
4832         * src/pic16/gen.c (genPackBits): added operand right in function
4833         parameters, load result directly if p_type is POINTER (that is
4834         called by genNearPointerSet)
4835         * (genUnPackBits): added operand left in function parameters,
4836         * (genNearPointerGet, genNearPointerSet): prevent the loading of
4837         FSR0 if accessing bitfields,
4838
4839 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
4840
4841         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
4842           _print_format; updated printf, sprintf, vsprintf
4843         * device/include/asm/default/features.h: corrected comment/define
4844         * device/lib/Makefile.in: added sprintf.c
4845         * device/lib/libsdcc.lib: added sprintf module
4846         * device/lib/printf_large.c,
4847         * device/lib/vprintf.c,
4848         * device/lib/sprintf.c: totally refactored printf_large and vprintf
4849           into these 3 files
4850         * support/regression/Makefile: changed ALL_PORTS into a usefull default
4851         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
4852         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
4853           hc08 test
4854         * support/regression/tests/zeropad.c: define idata as data for hc08
4855
4856 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4857
4858         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
4859         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
4860         labels are referenced at least once (even if a reference is not found)
4861         * src/hc08/gen.c (emitcode): set isComment flag for comments
4862         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
4863         loads), rules 6a..6b (optimize jumps to return)
4864
4865 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4866
4867         * device/lib/acosf.c (acosf),
4868         * device/lib/asinf.c (asinf),
4869         * device/lib/atanf.c (atanf),
4870         * device/lib/ceilf.c (ceilf),
4871         * device/lib/cosf.c (cosf),
4872         * device/lib/coshf.c (coshf),
4873         * device/lib/cotf.c (cotf),
4874         * device/lib/fabsf.c (fabsf),
4875         * device/lib/floorf.c (floorf),
4876         * device/lib/log10f.c (log10f),
4877         * device/lib/logf.c (logf),
4878         * device/lib/sinf.c (sinf),
4879         * device/lib/sinhf.c (sinhf),
4880         * device/lib/sqrtf.c (sqrtf),
4881         * device/lib/tanf.c (tanf),
4882         * device/lib/tanhf.c (tanhf),
4883         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
4884         replaced all instances of "reentrant" in the library functions
4885         defined in math.h with this macro.
4886         * support/regression/tests/float_trans.c: reenabled test for hc08
4887
4888 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
4889
4890         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
4891         erroneously deleted
4892
4893 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4894
4895         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
4896         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
4897         multi-byte volatile operands are used
4898         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
4899         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
4900         initialization to area GSINIT0 so that it would always precede
4901         any static initializers in GSINIT
4902         * support/regression/tests/zeropad.c: fixed idata define for hc08
4903         * support/regression/tests/bug-927659.c,
4904         * support/regression/tests/float_trans.c: disabled tests for hc08
4905         pending missing library routines
4906         * .version: increased version number to 2.4.4 - hc08 port now passes
4907         regression tests
4908
4909
4910 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
4911
4912         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
4913         * Makefile.common.in,
4914         * as/Makefile,
4915         * as/hc08/Makefile.in,
4916         * as/mcs51/Makefile.in,
4917         * as/z80/Makefile.in,
4918         * debugger/mcs51/Makefile.in,
4919         * device/include/Makefile.in,
4920         * device/lib/Makefile.in,
4921         * doc/Makefile,
4922         * link/Makefile,
4923         * link/z80/Makefile.in,
4924         * packihx/Makefile.in,
4925         * sim/ucsim/main_in.mk,
4926         * sim/ucsim/avr.src/Makefile.in,
4927         * sim/ucsim/doc/Makefile.in,
4928         * sim/ucsim/gui.src/serio.src/Makefile.in,
4929         * sim/ucsim/hc08.src/Makefile.in,
4930         * sim/ucsim/s51.src/Makefile.in,
4931         * sim/ucsim/xa.src/Makefile.in,
4932         * sim/ucsim/z80.src/Makefile.in,
4933         * src/Makefile.in,
4934         * support/cpp2/Makefile.in,
4935         * support/librarian/Makefile,
4936         * support/makebin/Makefile: added DESTDIR to the install path proposed
4937         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
4938         * doc/sdccman.lyx: added DESTDIR documentation
4939
4940 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
4941
4942         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
4943         instruction for interrupt handlers, use fast returns when returning
4944         from high priority interrupts
4945
4946 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4947
4948         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
4949         code generation
4950         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
4951         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
4952         bugs, ported much of Bernhard's code from mcs51
4953         * src/mcs51/gen.c (genSend),
4954         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
4955         than one when calling a reentrant function
4956         * device/lib/_mullong.c: defined an alternate struct layout for big
4957         endian ports (hc08)
4958
4959 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4960
4961         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
4962         test
4963
4964 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4965
4966         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
4967         are sane and complete before asking the port its prefered parameter
4968         passing method (fixes bug #1017633)
4969         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
4970         and _ret3
4971
4972 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4973
4974         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
4975         problem in bitfields >= 8 bits.
4976
4977 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4978
4979         * src/SDCCsymt.c: undid changes that were not meant to be committed
4980
4981 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4982
4983         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
4984
4985 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4986
4987         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
4988           copied and wrong bit got inverted
4989
4990 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4991
4992         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
4993         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
4994         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
4995         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
4996         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
4997         assignments to bitfields at known addresses
4998         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
4999         reads from bitfields at known addresses
5000         * src/hc08/ralloc.c (packRegisters),
5001         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
5002         genhc08Code): optimize pointer get values used as conditionals
5003         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
5004         and branch
5005
5006 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5007
5008         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
5009         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
5010         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
5011         as conditionals
5012
5013 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5014
5015         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
5016
5017 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5018
5019         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
5020         related problems
5021
5022 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
5023
5024         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
5025
5026 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5027
5028         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
5029         mcs51 port
5030
5031 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
5032
5033         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
5034
5035 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5036
5037         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
5038         cases use more compact code.
5039
5040 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
5041
5042         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
5043
5044 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5045
5046         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
5047
5048 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5049
5050         * src/SDCCsymt.h,
5051         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
5052         parameter of changePointer() from symbol* to sym_link*
5053         * src/SDCCast.c (decorateType): call changePointer() for CAST op
5054         * src/SDCCsymt.c (compareType): void* type is castable to other
5055         pointers, but not necesarily an exact match.
5056         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
5057         is no longer blindly treated as an exact match.
5058         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
5059
5060 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
5061
5062         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
5063
5064 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
5065
5066         * src/pic/gen.c,
5067         * src/pic/pcode.c,
5068         * src/pic/ralloc.h,
5069         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
5070
5071 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
5072
5073         * src/pic/device.c,
5074         * src/pic/device.h,
5075         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
5076
5077 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5078
5079         * src/mcs51/gen.c (emitcode): fixed bug #992819
5080
5081 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
5082
5083         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
5084           there's no need to make it worse
5085
5086 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5087
5088         * src/mcs51/ralloc.c (deassignLR),
5089         * src/ds390/ralloc.c (deassignLR),
5090         * src/hc08/ralloc.c (deassignLR),
5091         * src/z80/ralloc.c (deassignLR),
5092         * src/pic/ralloc.c (deassignLR),
5093         * src/pic16/ralloc.c (deassignLR),
5094         * src/avr/ralloc.c (deassignLR),
5095         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
5096         rlivePoint): fixed another part of bug #971834
5097
5098 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5099
5100         * src/z80/main.c: enabled "critical" keyword
5101         * src/z80/mappings.i,
5102         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
5103         functions (fixes bug #979646)
5104         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
5105
5106 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5107
5108         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
5109           such as c:\mydir.
5110
5111 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
5112
5113         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
5114           doesn't disable too much optimizations
5115
5116 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
5117
5118         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
5119
5120 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
5121
5122         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
5123
5124 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
5125
5126         * src/pic/gen.c tidied up tabs
5127         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
5128         * src/pic/main.c tidied up tabs
5129         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
5130         * src/pic/pcoderegs.c tidied up tabs
5131         * src/pic/ralloc.c tidied up tabs
5132
5133 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
5134
5135         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
5136         to S_FIXED for pic16 port and when symbol is not in level 0,
5137         allocate for S_REGISTER storage class and pic16 port, too,
5138         * src/pic16/device.h: prototype for checkSym,
5139         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
5140         * (pic16_assignConfigWordValue): test the value and the mask to
5141         validate that the value is suitable for the configuration word,
5142         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
5143         collect extern declared symbols, don't emit symbol twice, check
5144         first if symbol is in publics set first,
5145         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
5146         * added command line '--fstack' which enables an experimental
5147         feature for stack access, too buggy to be used yet...
5148         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
5149         * (pic16_allocDirReg): when register has storage class S_REGISTER
5150         allocate in pic16_dynAccessRegs,
5151         * device/include/pic16/pic18f????.h: modified configuration word
5152         naming convention, words started as CONFIG0H but should be CONFIG1H
5153
5154 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
5155
5156         * device/include/mcs51reg.h: fixed bug 970993
5157
5158 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
5159
5160         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
5161         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
5162         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
5163         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
5164         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
5165         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
5166           error/warning numbers,
5167           added function setWarningDisabled()
5168         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
5169         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
5170           _memcmp.c _memmove.c calloc.c realloc.c free.c
5171         * support/regression/tests/malloc.c: added tests for new functionality
5172         * support/regression/tests/zeropad.c: added tests for truncated initializers
5173           and initialized char arrays starting with '\x0'
5174         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
5175
5176 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
5177
5178         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
5179
5180 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5181
5182         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
5183         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
5184         peephole 177.e. Thanks to anonymous
5185
5186 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
5187
5188         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
5189         function isn't used in the source but referenced as a
5190         variable initializer then declare it as extern in .asm file
5191
5192 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
5193
5194         * .version: increased version number to 2.4.3
5195
5196         Adding version extension according to ChangeLog CVS revision
5197         * src/Makefile.in (target all): added dependency 'version.h'
5198         * (rule version.h): added rule to create version.h from ChangeLog,
5199         * (rule dep): added dependency version.h,
5200         * src/version.awk: AWK script to create version.h
5201         * src/SDCCdwarf2.c (dwWriteModule),
5202         * src/SDCCglue.c (initialComments),
5203         * src/SDCCmain.c (printVersionInfo): modified to write after
5204         version string the version extension number,
5205         * src/SDCCutil.c: included "version.h"
5206         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
5207         number,
5208         * src/SDCCutil.h: added prototype for getBuildNumber
5209
5210         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
5211         includeDirsSet, too,
5212         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
5213         const char [] is found in function prototype...
5214
5215         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
5216         moving to WREG with source is already in WREG,
5217         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
5218         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
5219         * (aopForSym): stack'ed symbols are partially supported, added
5220         if-clause to support symbols in FARSPACE,
5221         * (sameRegs): added test for AOP_ACC to see if registers are same,
5222         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
5223         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
5224         * (pic16_popRegFromString): will not allocate a new register if it
5225         doesn't find one by name, bug may have introduced...
5226         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
5227         * (genIpush): revived to use pic16 port's stack,
5228         * (genAddrOf): added incomplete case for stack'ed operand,
5229         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
5230         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
5231         can handle multibyte operands,
5232         * src/pic16/glue.c (pic16_printIval*): some debug info added,
5233         * (pic16initialComments): added message for MPLAB compatibility
5234         mode enabled,
5235         * src/pic16/main.h: prototype for pic16_mplab_comp,
5236         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
5237         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
5238         * (_pic16_linkEdit): NEW, handles link stage, transferred here
5239         because of increased complexity of procedure,
5240         * (_process_pragma): stack pragma changed to format 'stack pos len',
5241         emit symbol '_stack_end' to conform with gplink,
5242         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
5243         to search for register,
5244         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
5245         PO_GPR_REGISTER,
5246         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
5247         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
5248         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5249         case for PO_GPR_REGISTER,
5250         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
5251         dies, the new era is ahead !...
5252         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
5253         pic16_dynInternalRegs,
5254         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
5255         * (pic16_allocDirReg): minor optimizations and bug fixes,
5256         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
5257
5258         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
5259         load stack and frame pointer with address of 'stack_end' symbol
5260
5261 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
5262
5263         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
5264         without source code but only variable initializers
5265
5266 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
5267
5268         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
5269         external are not declared as extern to reduce overhead while linking
5270
5271 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
5272
5273         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
5274
5275 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
5276
5277         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
5278           Yee Keat for the patch
5279         * src/SDCCast.c (decorateType): fixed bug #979599
5280         * src/ds390/gen.h: removed local fReturnSizeDS390
5281         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
5282         * src/ds390/gen.c (genAnd, genOr, genXor),
5283         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
5284
5285 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
5286
5287         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
5288         add relFilesSet to $3, manipulate $2 to handle linking of object
5289         files without source files in command line,
5290         * device/include/pic16 (all headers): added ID location macros,
5291         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
5292         entries for ID location bytes,
5293         * (pic16_assignIdByteValue): NEW,
5294         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
5295         added field dumpcalltree to pic16_options_t,
5296         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
5297         is used instead of pic16_Gstack_base_addr, check if (ifx) before
5298         emitting rFalseIfx label after check_carry label,
5299         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
5300         pic16_emitDIRegs), NEW
5301         * (pic16glue): dump .calltree file when option --calltree found,
5302         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
5303         * (_pic16_genAssemblerPreamble): emit ID locations after
5304         configuration registers,
5305         * (pic16_linkCmd): modifications of the link command,
5306         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
5307         * (pic16_pCodeInitRegisters): don't init stack registers,
5308         * (pic16_findPrevInstruction): fixed bug,
5309         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
5310         bug with immediate registers,
5311         * (buildCallTree): traces stack push and pop,
5312         * (pct2): dump also stack usage for each function,
5313         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
5314         * (pic16_allocDirReg): various modifications,
5315         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
5316         fixed to 1,
5317
5318 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
5319
5320         * src/pic16/pcode.c: removed buggy double colon
5321
5322 2004-07-01 Borut Razem <borut.razem AT siol.net>
5323
5324         * support/scripts/sdcc.nsi: added include/pic16 to setup
5325
5326 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
5327
5328         * device/lib/Makefile.in: fixed bug in target objects-pic16,
5329         * device/lib/pic16/Makefile: prefixed with dash (-) command under
5330         target 'clean',
5331         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
5332         specific command line arguments. Also added sample lkr script
5333         for placing a variable at a specific memory bank.
5334         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
5335         at a specific memory bank,
5336         * (pic16_dump_isection): fixed bug which caused string literals to
5337         be omitted when dumping idata section,
5338         * (pic16_groupRegistersInSection): added code to handle registers
5339         in specific memory banks,
5340         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
5341         public, all references are renamed too,
5342         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
5343         AOP_DPTR2,
5344         * (pic16_storeForReturn): added case to handle when dest is WREG,
5345         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
5346         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
5347         pic16_rel_udata, check to see if that register is marked as being
5348         a member of a specific memory bank,
5349         * (pic16_printIvalCharPtr): added code to add string literals either
5350         to code or the idata sections,
5351         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
5352         also accept the 'udata' pragma,
5353         * src/pic16/main.h: new structure types sectName and sectSym
5354         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
5355         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
5356         * (pic16_findPrevInstruction): fixed, it returned nothing,
5357         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
5358         instruction combinations,
5359         * (pic16_FixRegisterBanking): heavily reorganised,
5360         * (pic16_AnalyzeBanking): if generating banksel directives is
5361         disabled, then don't call FixRegisterBanking at all,
5362         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
5363         completely removed,
5364         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
5365
5366 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
5367
5368         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
5369         Phuah Yee Keat <yk.phuah AT nestac.com>
5370
5371 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5372
5373         * src/pic16/glue.c (pic16createInterruptVect): function now emits
5374         correctly the IVT even if it is relocated to some other location
5375
5376 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5377
5378         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
5379         * device/include/pic16/pic18f2220.h: NEW,
5380         * device/lib/pic16/libdev/pic18f2220.c: NEW,
5381         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
5382         * src/pic16/device.c (struct Pics16): added info for 18f2220,
5383         * src/pic16/device.h (struct pic16_options): added ivt_loc and
5384         nodefaultlibs, ivt_loc is the location of the interrupt vector
5385         table, and nodefaultlibs signs that default libraries should not be
5386         linked in link stage,
5387         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
5388         according to --ivt-loc argument,
5389         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
5390         when pragma stack is found,
5391
5392 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5393
5394         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
5395         256 (range check), 257 (do while), 258.a-f (bit banging
5396         f.e. on 3-wire SPI bus)
5397
5398 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5399
5400         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
5401         variables used exclusively within a loop
5402
5403 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
5404
5405         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
5406
5407 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5408
5409         * src/SDCClrange.c (computeClash): fixed bug #971834
5410
5411 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5412
5413         * src/mcs51/gen.c (genCmp): fixed bug #975903
5414         * src/hc08/gen.c (operandsEqu),
5415         * src/ds390/gen.c (operandsEqu),
5416         * src/z80/gen.c (operandsEqu),
5417         * src/pic/gen.c (operandsEqu),
5418         * src/pic16/gen.c (operandsEqu),
5419         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
5420         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
5421
5422 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5423
5424         * src/SDCCcse.c (cseBBlock): fixed bug #966963
5425
5426 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
5427
5428         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
5429         default case in switch statement,
5430         * glue.c (pic16_initPointer): expr is initialised via decoarteType
5431         to eliminate problem with initialisation of pointers, but problem
5432         still exists,
5433         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
5434         * (emitStaticSegment): removed various lines emitting debug info,
5435         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
5436         added processor registers for utilizing EEPROM,
5437         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
5438         configurable and set 8
5439
5440 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
5441
5442         * .version: increased version number to 2.4.2,
5443
5444         Cumulative patch for pic16 port
5445         * src/pic16/device.c: changed scheme to dump initial values for
5446         variables in idata segment, all print_idata* functions were removed,
5447         now the pic16_printIval* will be called,
5448         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
5449         * _pic16_printPointerType, pic16_printPointerType,
5450         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
5451         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
5452         NEW, similar to the respective functions in SDCCglue.c,
5453         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
5454         way, emitting hex bytes,
5455         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
5456
5457 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5458
5459         * src/avr/ralloc.c (serialRegAssign),
5460         * src/xa51/ralloc.c (serialRegAssign),
5461         * src/pic/ralloc.c (serialRegAssign),
5462         * src/pic16/ralloc.c (serialRegAssign),
5463         * src/hc08/ralloc.c (serialRegAssign),
5464         * src/z80/ralloc.c (serialRegAssign),
5465         * src/ds390/ralloc.c (serialRegAssign),
5466         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
5467
5468 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5469
5470         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
5471         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
5472
5473 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
5474
5475         Cumulative patch for pic16 port:
5476         * src/pic16/device.h (typedef PIC16_device) modified fields for
5477         defining microcontrollers,
5478         * src/pic16/device.c: added new info for all devices in Pics16 array,
5479         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
5480         to be optimised out by the pCode optimiser,
5481         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
5482         specially, bug reported by G.M. Gallant,
5483         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
5484         as force'd so that cannot be optimised out by pCode optimiser,
5485         * src/pic16/pcode.c,
5486         * src/pic16/pcodepeeph.c,
5487         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
5488         they are disabled by default, but can be enabled explicit with
5489         command argument --denable-peeps, for testing,
5490         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
5491         --pomit-ivt in COMPILE_FLAGS
5492
5493 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5494
5495         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
5496           compilation on MSVC
5497
5498 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5499
5500         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
5501
5502 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5503
5504         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
5505         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
5506
5507 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
5508
5509         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
5510         would only assign 0x300001 register.
5511
5512 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
5513
5514         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
5515         in COMPILE_FLAGS. Thanks to G. Gallant for report.
5516
5517 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5518
5519         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
5520         for ds80c400
5521         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
5522         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
5523         added peephole 254 (left shift), 255 (jump table)
5524
5525 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
5526
5527         * device/lib/Makefile.in: removed comment line with model-pic16,
5528         * (target port-specific-objects-pic16): the libraries and objects
5529         are copied to the build directory form the device/lib/pic16/bin
5530         directory
5531
5532         Cumulative patch concerning pic16 port:
5533         * library directory has been re-organized,
5534         * added support for PIC18F1220,
5535         * added headers and library sources for chips 18f1220,18f6520,
5536         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
5537
5538         * configuration registers setting has changed, now each supported
5539         device has a complete description of the registers it uses,
5540         * all initialisations are moved to idata sections, these section
5541         can be absolute or relocatable,
5542         * fixed initialisation of codespace variables,
5543         * fixed warning about PCLATU and gpsim,
5544         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
5545         * (genAssign): use table reads when assigning from variables in codespace,
5546         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
5547         char/int variables placed in codespace,
5548         * (pic16_emitConfigRegs): NEW, emits a list with configuration
5549         registers set in .asm file, no need for --pomit-config-words anymore,
5550         * (pic16glue): some 8051 legacy segments are commented out
5551         (to be removed completely),
5552         * added support for alternative assembler and linker with --asm=
5553         and --link= command line arguments,
5554         * peepholes are disabled automatically in the port, no need to
5555         specify on command line,
5556         * port supports natively char/int/long multiplication, but converts
5557         all divisions to support functions,
5558         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
5559         to the file set in variable $2,
5560         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
5561         strings in ASCII format and not in hex,
5562         * ralloc.c (serialRegAssign): added a triplet of conditional calls
5563         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
5564         allocate proper register if iCodes aren't temporary,
5565
5566 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
5567
5568         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
5569
5570 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
5571
5572         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
5573         is commented out
5574
5575 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5576
5577         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
5578         computed address is reused
5579         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
5580         multi-byte bitfields
5581
5582 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5583
5584         * src/z80/gen.c: (genArrayInit): must check for pointers too
5585
5586 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5587
5588         * support/regression/tests/zeropad.c: never meant to commit the
5589           nestedstruct test: removed, added check for GCC version
5590
5591 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
5592
5593         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
5594         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
5595         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
5596           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
5597           bugs 928906 and 954082 half-empty initializers
5598         * src/SDCCsymt.h,
5599         * src/SDCCsymt.c (getAllocSize): added for above fix
5600         * src/z80/gen.c (genArrayInit): fixed bug 741044
5601         * support/regression/tests/zeropad.c: added tests
5602
5603 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
5604
5605         * src/pic16/device.c (pic16_dump_section): corrected bug which
5606         caused some symbols of the libraries to be misplaced
5607
5608 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
5609
5610         * src/pic16/glue.c,
5611         * src/pic16/ralloc.h,
5612         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
5613         to fix conflict with pic port
5614
5615 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
5616
5617         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
5618         externs configuration variables,
5619         * src/pic16/ralloc.h,
5620         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
5621         prototype in header, commented out some debug messages
5622
5623 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
5624
5625         * src/pic16/glue.c,
5626         * src/pic16/main.c,
5627         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
5628         for gpasm COFF object generation. Thanks to D. Hawkins for
5629         his patch info
5630
5631 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5632
5633         * src/ds390/main.c,
5634         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
5635         Brock for spotting this)
5636         * src/ds390/gen.c (genEndFunction),
5637         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
5638         interrupt handler and critical. Disable push/pop optimizations when
5639         peephole optimizations disabled.
5640
5641 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
5642
5643         Updated pic16 library sources and headers.
5644         * device/lib/pic16/pic18f*/ ,
5645         * device/include/pic16/*.h: modified to handle structured SFR
5646         definitions
5647
5648 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
5649
5650         * src/port.h (PORT structure): added hook initPaths, now each
5651         port can declare its own default search paths,
5652         which can been seen with the --print-search-dirs option,
5653         see pic16 port for example,
5654         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
5655         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
5656         * (doPrintSearchDirs): NEW, replaces in a central manner the
5657         printing of search dirs which was split in set*Paths functions,
5658         * (main): added call to port->initPaths and doPrintSearchDirs,
5659         * src/avr/main.c,
5660         * src/ds390/main.c,
5661         * src/hc08/main.c,
5662         * src/izt/i186.c,
5663         * src/izt/tlcs900h.c,
5664         * src/mcs51/main.c,
5665         * src/pic/main.c,
5666         * src/pic16/main.c: modified port structures to reflect addition of
5667         initPaths hook,
5668
5669         * src/pic16/device.c (regCompare): registers are finally sorted by name,
5670         * (pic16_dump_section): for registers in same address reserve memory once,
5671         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
5672         to no_banksel,
5673         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
5674         result is greater in size than right or left,
5675         * (pic16_genUMult8X8_8): there are some cases where the result can
5676         be 16 bits size, so handle these,
5677         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
5678         * (pic16_outBitC): modified to emit pcodes,
5679         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
5680         or not,
5681         * (genDivOneByte): implemented algorithm to divide 8-bits,
5682         * (genCmp): uncommented goto, but issues still exist,
5683         * (genAnd): fixed a bug with variables >8bits,
5684         * (genPackBits): optimization added that uses BCF/BSF to change a
5685         single bit,
5686         * (genAssign): fixed bug when assigning floating point literals,
5687         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
5688         __sdcc_gsinit_startup label,
5689         * src/pic16/main.c (_pic16_init): removed search directory
5690         initialisations,
5691         * (_pic16_initPaths): NEW, used to initialise search directories,
5692         * (_hasNativeMulFor): support functions for all except char/int
5693         multiplication, and char division,
5694         * (PIC16_port struct): modified entry for native mul support,
5695         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
5696         no_banksel option,
5697         * (buildCallTree): call to register_usage is ifdef'ed out,
5698
5699 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5700
5701         * device/include/string.h: applied Stas Sergeev's patch to make this
5702         header file compatible with the preprocessor -Wundef option
5703         * src/SDCCmain.c (main): abort compilation if preprocessor reports
5704         failure (fixes bug #941458)
5705
5706 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5707
5708         * src/SDCCopt.c (killDeadCode): fixed bug #907733
5709         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
5710         that the variable, not the function, should be static
5711         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
5712         to be consistent with non-literal case
5713
5714 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5715
5716         * src/SDCCast.c (isConformingBody): fixed bug #949967
5717         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
5718         convilong): fixed bug #952086
5719
5720 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5721
5722         * src/SDCCmem.c (allocVariables): fixed bug #955321
5723
5724 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5725
5726         * src/hc08/main.c (_hc08_genAssemblerEnd),
5727         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
5728         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
5729         completely eliminated the use of a temporary file
5730         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
5731         when more than one file linked
5732         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
5733
5734 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5735
5736         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
5737         which fixes bug #543481
5738         * support/regression/tests/bug-751703.c: fixed comments left from a
5739         cut and paste error
5740         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
5741         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
5742         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
5743         scopes
5744         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
5745         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
5746         are now changed to underscores in moduleName
5747
5748 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5749
5750         * as/mcs51/lkmem.c: better fix for bug #954173
5751
5752 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
5753         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5754
5755         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
5756         * device/include/c8051f000.h,
5757         * device/include/c8051f120.h,
5758         * device/include/c8051f300.h,
5759         * device/include/c8051f310.h,
5760         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
5761         PWM16) and detab'ed
5762
5763 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5764
5765         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
5766         and mailing lists, doc'ed --no-peep-comments, removed reference
5767         to knoppix (newest version has no LyX/LaTeX), other minor changes
5768         * src/SDCCglue.c (glue): save 2 bytes stack space with
5769         option --main-return. The ljmp could probably be avoided too
5770
5771 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5772
5773         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
5774
5775 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5776
5777         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
5778         * src/SDCCopt.c (isLocalWithoutDef),
5779         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
5780         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
5781         (credit to Maarten Brock for patch #949363, on which this is based)
5782         * support/regression/tests/bug-751703.c: some test cases of extern used
5783         within inner scopes.
5784
5785 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5786
5787         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
5788         SPEC_STRUCT
5789         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
5790         struct definitions
5791         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
5792         dwWriteLabel): fix to create valid debugger symbols even when
5793         the module name has non-alphanumeric symbols in it
5794         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
5795         when a variable's allocation has been optimized away
5796
5797
5798 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5799
5800         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
5801         * src/hc08/main.c,
5802         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
5803         * src/mcs51/main.c,
5804         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
5805         * src/ds390/main.c,
5806         * src/z80/gen.c (z80_emitDebuggerSymbol),
5807         * src/z80/main.c,
5808         * src/pic/gen.c (pic14_emitDebuggerSymbol),
5809         * src/pic/main.c,
5810         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
5811         * src/pic16/main.c,
5812         * src/avr/gen.c (avr_emitDebuggerSymbol),
5813         * src/avr/main.c,
5814         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
5815         * src/xa51/main.c,
5816         * src/SDCCdebug.c (emitDebuggerSymbol),
5817         * src/SDCCdebug.h,
5818         * src/port.h: added a debugger struct to the port struct. Added a
5819         callback for defining debugger symbols
5820
5821         * src/SDCCast.c (createLabel),
5822         * src/SDCC.y (labeled_statement): mark all compiler generated labels
5823         with isitmp = 1
5824         * src/SDCCicode.h,
5825         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
5826         iCode back to the ast for the function
5827
5828         * src/hc08/ralloc.c (hc08_assignRegisters),
5829         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
5830         unneeded fields from the regs struct.
5831         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
5832         pushReg() & pullReg() functions instead of emitcode()
5833
5834         * src/hc08/gen.c (genLabel, genhc08Code),
5835         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
5836
5837         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
5838         debugger hooks
5839
5840         * src/hc08/gen.c (genEndFunction, genhc08Code),
5841         * src/hc08/gen.h,
5842         * src/mcs51/gen.c (genEndFunction, gen51Code),
5843         * src/mcs51/gen.h,
5844         * src/ds390/gen.c (genEndFunction, gen390Code),
5845         * src/ds390/gen.h,
5846         * src/z80/gen.c (genEndFunction, genZ80Code),
5847         * src/z80/gen.h,
5848         * src/z80/z80.h,
5849         * src/pic/gen.c (genEndFunction, genpic14Code),
5850         * src/pic/gen.h,
5851         * src/pic16/gen.c (genEndFunction, genpic16Code),
5852         * src/pic16/gen.h,
5853         * src/avr/gen.c (genEndFunction, genAVRCode),
5854         * src/avr/gen.h,
5855         * src/xa51/gen.c (genEndFunction, genXA51Code),
5856         * src/xa51/gen.h,
5857         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
5858         specific code to cdbFile.c and out of the backend code generators
5859
5860         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
5861         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
5862         starting address is now 0
5863
5864         * as/hc08/asm.h,
5865         * as/hc08/m08pst.c,
5866         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
5867         assembler directive for DWARF support
5868         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
5869
5870         * src/src.dsp,
5871         * src/Makefile.in,
5872         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
5873
5874 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5875
5876         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
5877         and inappropriate peephole optimization in jump tables
5878
5879 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5880
5881         * as/hc08/m08pst.c,
5882         * src/SDCCglue.c: sdccopt works for the hc08 port now
5883
5884 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
5885
5886         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
5887
5888 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5889
5890         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
5891
5892 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5893
5894         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
5895         rules
5896         * src/SDCCmain.c,
5897         * src/SDCCglobl.h,
5898         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
5899         comments from the peephole optimizer replacement rules
5900         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
5901         symbols
5902         * src/SDCCcse.c (updateSpillLocation),
5903         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
5904         equivalents
5905         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
5906         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
5907         objects far pointers
5908
5909 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5910
5911         * src/SDCCsymt.h: a missing part of my last change
5912         * src/pic/ralloc.c (regTypeNum),
5913         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
5914
5915 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5916
5917         * src/SDCCicode.h,
5918         * src/SDCCicode.c (aggrToPtrDclType),
5919         * src/SDCCptropt.h,
5920         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
5921         ptrPseudoSymConvert),
5922         * src/pic/ralloc.c (regTypeNum),
5923         * src/pic16/ralloc.c (regTypeNum),
5924         * src/hc08/ralloc.c (regTypeNum),
5925         * src/ds390/ralloc.c (regTypeNum),
5926         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
5927         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
5928
5929 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5930
5931         * link/z80/lkmain.c (afile),
5932         * as/hc08/lkmain.c (afile),
5933         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
5934         prevent a pointer problem when a filename has no directory and
5935         no extension specified.
5936
5937 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5938
5939         * link/z80/lkmain.c (afile): allow periods in directory names
5940         * link/z80/lkmain.c (afile),
5941         * as/mcs51/lkmain.c (afile),
5942         * as/hc08/lkmain.c (afile): allow linker script file to have an
5943         extension other than ".lnk"
5944         * link/z80/lklex.c (getfid),
5945         * link/z80/lkmain.c (parse),
5946         * as/mcs51/lklex.c (getfid),
5947         * as/mcs51/lkmain.c (parse),
5948         * as/hc08/lklex.c (getfid),
5949         * as/hc08/lkmain.c (parse): Support comments in the linker script
5950         file on lines by themselves and after filenames
5951
5952 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5953
5954         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
5955
5956 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5957
5958         * src/z80/peeph-z80.def: removed some peephole rules that don't
5959         work with multibyte arithmetic (fixed bug #937126)
5960         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
5961         to registers and not global variables
5962         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
5963         geniCodePreInc, geniCodePostDec, geniCodePreDec,
5964         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
5965         checking for assignments not internally generated (fixed bug #931895)
5966         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
5967         structure member (fixed bug #930072)
5968
5969 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5970
5971         * src/SDCCmain.c (linkEdit),
5972         * src/hc08/main.c (_hc08_parseOptions),
5973         * as/hc08/Makefile.in,
5974         * as/hc08/aslink.h,
5975         * as/hc08/asm.h,
5976         * as/hc08/m08pst.c,
5977         * as/hc08/lkrloc.c (relr, rele),
5978         * as/hc08/lkarea.c (lnkarea)
5979         * as/hc08/lkmain.c (afile, parse),
5980         * as/hc08/lkelf.c: support for ELF output
5981         * as/hc08/lks19.c (s19),
5982         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
5983
5984 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5985
5986         * as/mcs51/lkihx.c: Fixed bug #899105.
5987
5988 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5989
5990         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
5991         .dsp files from Unix to DOS.
5992
5993 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5994
5995         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
5996         function pointers; we have been compliant for several months now.
5997         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
5998         change that was accidently commented out
5999         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
6000         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
6001         bug #922319
6002
6003 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6004
6005         * src/hc08/gen.c: output of all of the internal debugging information
6006         is now controlled by the D() macro; it is disabled by default
6007
6008 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6009
6010         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
6011         harder to keep the same registers during a CAST iCode
6012         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
6013         long via int can be done in a single cast, if the signedness is
6014         correct.
6015         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
6016         putchar() in tinibios.c in ds390's library
6017
6018 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
6019
6020         * src/SDCCast.c (decorateType): fixed bug #898889,
6021         cast result of a literal complement too
6022         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
6023         fixed check for bitfields
6024
6025 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
6026
6027         * src/SDCCicode.c (geniCodeLogic): made it static,
6028         (geniCodeLogicAndOr): added in order to fix bug #905492,
6029         (ast2iCode): fixed bug #905492
6030         * support/regression/tests/bug-905492.c: added
6031         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
6032         (processParms): fixed bug #927659: don't copy parms, this will clear
6033         decorated flag
6034         * support/regression/tests/bug-927659.c: added
6035
6036 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
6037
6038         * src/SDCCast.c (addCast): don't cast float to char
6039         * device/lib/libsdcc.lib: added _memmove
6040
6041 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
6042
6043         * device/lib/large/Makefile: fixed parallel execution by
6044         replacing `make` by `$(MAKE)`
6045
6046 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6047
6048         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
6049         offsets (fixes bug #923936)
6050
6051 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
6052
6053         * device/lib/small/Makefile: fixed parallel execution by
6054         replacing `make` by `$(MAKE)`
6055
6056 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
6057
6058         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
6059
6060 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
6061
6062         * src/pic/gen.c (genCpl): multi-byte complements were not working.
6063         * src/regression/Makefile: Regression test was not running.
6064
6065 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
6066
6067         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
6068         complement if possible
6069         * src/SDCCval.c (valComplement),
6070         * src/SDCCicode.c (operandOperation): fixed complement of literal
6071         * support/regression/tests/onebyte.c (testComplement): added
6072
6073 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
6074
6075         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
6076         return an optimized tree; actually replace actParm with the new tree
6077         * src/SDCCast.h: added some parantheses to remove side effects
6078         * support/regression/tests/bug-920866.c
6079
6080 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
6081         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
6082         Bit operands were not being handled properly in the pic14 port.
6083         (now src/regression/add.c passes again).
6084
6085 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6086
6087         * src/SDCC.y (labeled_statement): case and default no longer require
6088         a following statement (RFE #893037)
6089
6090 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6091
6092         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
6093         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
6094         disabled (fixes bug #916294)
6095         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
6096         "mov a,acc"; patch provided by Lenny Story
6097         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
6098
6099 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6100
6101         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
6102         functions
6103         * src/ds390/gen.c (genFunction, genEndFunction),
6104         * src/ds390/ralloc.c (ds390_assignRegisters),
6105         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
6106         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
6107         pushed if there are parameters passed on the stack. Also, a cleaner
6108         way to decide if r0/r1 should be pushed/popped. (Together they fix
6109         bug #918693)
6110
6111 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6112
6113         * doc/sdccman.lyx,
6114         * device/lib/mcs51/crtpagesfr.asm,
6115         * device/lib/mcs51/crtxinit.asm,
6116         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
6117         to avoid confusion with Si Lab's SFRPAGE register.
6118
6119 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6120
6121         * src/SDCCglue.c (emitMaps): allow public sfr variables
6122         * src/SDCCglue.c (initialComments): include compiler build date
6123         with compiler version and put the timestamp of the generated
6124         assembly file on a serperate line to be less confusing.
6125         * src/port.h: added genInitStartup hook
6126         * src/avr/main.c,
6127         * src/ds390/main.c,
6128         * src/hc08/main.c,
6129         * src/pic/main.c,
6130         * src/pic16/main.c,
6131         * src/xa51/main.c,
6132         * src/z80/main.c: genInitStartup initialize as NULL (default to
6133         historical behaviour)
6134         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
6135         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
6136         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
6137         library instead of hard coding it into the compiler.
6138         * support/regression/ports/mcs51-stack-auto/spec.mk,
6139         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
6140         * device/lib/mcs51/Makefile,
6141         * device/lib/small/Makefile,
6142         * device/lib/large/Makefile,
6143         * device/lib/mcs51/crtpagesfr.asm,
6144         * device/lib/mcs51/crtstart.asm,
6145         * device/lib/mcs51/crtxclear.asm,
6146         * device/lib/mcs51/crtxinit.asm,
6147         * device/lib/mcs51/crtclear.asm,
6148         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
6149         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
6150         and into user configurable files.
6151         * device/lib/clean.mk: clean mcs51 directory too
6152         * support/regression/tests/longlit.c: added static to T1 declaration
6153         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
6154         accesses in the initialization code
6155
6156 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6157
6158         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
6159         OSCTRIMVAL as noted in bug #916008
6160
6161 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6162
6163         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
6164         in loops with multiple exits (reported as incorrect registers
6165         used by Martin Helmling in Sdcc-user list)
6166
6167 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6168
6169         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
6170         made ds390 register extensions look less like error messages
6171
6172 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6173
6174         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
6175         reported by Adam Wozniak in Sdcc-user list
6176
6177 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
6178
6179         * src/SDCCast.c (decorateType): fixed with bug and promotion in
6180         arithmetic optimizations, added debug output
6181
6182 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
6183
6184         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
6185         * sdcc.spec: updated and split sdcc into 3 rpms
6186         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
6187         needed for literals of LEFT_OP and '+'
6188         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
6189         introduced RESULT_TYPE_NOPROM
6190         (geniCodeMultiply): fixed logic for decision if mul is optimized to
6191         left shift
6192         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
6193         limited promotion to int only for '*'
6194         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
6195
6196 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
6197
6198         * src/pic16/gen.c (genSkip),
6199         (genc16bit2lit), (gencjneshort): commented out
6200         (is_LitOp): new helper function, checks operand type
6201         (genCmpEq): rewritten
6202
6203 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
6204
6205         * support/regression/tests/bug-908454.c: added
6206
6207 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
6208
6209         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
6210         * src/SDCCicode.c (usualBinaryConversions): op needs int type
6211         (geniCodeCast): cosmetic, don't preserve bit storage class
6212         (geniCodeLeftShift): added promotion
6213         (geniCodeLogic): fixed regression
6214         * src/SDCCsymt.c (computeTypeOr): accept bits too
6215         (compareType): 2nd part of fix for bug #908454, needed for bitfields
6216
6217 2004-03-07  Borut Razem <borut.razem AT siol.net>
6218
6219         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
6220
6221 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
6222
6223         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
6224         version of pic16_genPackRegisters which does not check if ic is a
6225         CAST operator,
6226         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
6227         function cause string1.c regression test fails
6228
6229 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
6230
6231         * sim/ucsim/configure.in,
6232         * sim/ucsim/configure,
6233         * sim/ucsim/doc/Makefile.in: use docdir
6234         * src/SDCC.y: fixed sbit atrributes
6235         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
6236         * src/SDCCast.c (decorateType): |^& need special promotion handling
6237         * src/SDCCast.h,
6238         * src/SDCCsymt.h: moved definition of RESULT_TYPE
6239         * src/SDCCsymt.h (computeType),
6240         * src/SDCCicode.c: computeType() needs op
6241         * src/SDCCsymt.c (checkTypeSanity),
6242         * doc/sddman.lyx: "plain" bitfields are unsigned
6243         * src/SDCCsymt.c (computeTypeOr): added
6244         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
6245         |^& ops
6246         * src/SDCCval.c (val*): computeType() needs op
6247         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
6248         * support/regression/tests/onebyte.c: added tests for |^&
6249
6250 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
6251
6252         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
6253         for writing icode into asm output.
6254
6255 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
6256
6257         * src/pic16/device.c: added some debug lines enabled
6258         with macro DEBUG_CHECK,
6259         * src/pic16/genarith.c: more debug in genPlus,
6260         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
6261         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
6262         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
6263         * (aopForSym): onStack symbols are re-placed in data memspace,
6264         and onStack flag is cleared,
6265         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
6266         copy temporary pcodeop,
6267         * (genPcall): added warning for not updating PCLATU,
6268         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
6269         always true for pic16 port,
6270         * (genMultOneWord): NEW, supports integer multiplication,
6271         * (genMult): modified to call genMultOneWord,
6272         * (ifxForOp): added warning when return NULL,
6273         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
6274         flag is set before call to operandFromSymbol for implicit
6275         added structures,
6276         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
6277         options.intlong_rent are set by default,
6278         * (_hasNativeMulFor): modified to allow port generation of integer
6279         multiplication,
6280         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
6281         set regtype to REG_SFR for all registers, restricting seting the
6282         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
6283
6284 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6285
6286         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
6287         more than 500 times in the regression tests
6288
6289 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6290
6291         * support/Util/SDCCerr.h,
6292         * support/Util/SDCCerr.c,
6293         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6294         enumerator_list),
6295         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
6296         for symbol conflicts.
6297         * support/valdiags/tests/enum.c,
6298         * support/valdiags/tests/tentdecl.c,
6299         * support/valdiags/tests/struct.c: expect possible error messages
6300         referring to original symbol definitions.
6301         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
6302         * src/SDCCsymt.h,
6303         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
6304
6305 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
6306
6307         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
6308
6309 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
6310
6311         * src/pic16/ralloc.c (newReg): fixed bug #908929
6312
6313 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6314
6315         * src/ds390/gen.c: added missing #include "main.h"
6316
6317 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
6318
6319         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
6320         checking if symbol is already in set,
6321         * src/pic16/device.h: prototype for checkAddSym,
6322         * src/pic16/gen.c: (_G): added entry interruptvector,
6323         * (assignResultValue): removed some commented out lines,
6324         * (genFunction): check for ISR via sym->type, absolute section for
6325         interrupt code is created via a new pBlock, the goto instruction is
6326         placed now correctly at the interrupt vector position, changed all
6327         references from ivec to _G.interruptvector,
6328         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
6329         is the interrupt is a high priority one, same for return from ISR,
6330         * src/pic16/glue.c: changed all calls of addSetHead for publics and
6331         externs to calls of checkAddSym,
6332         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
6333         pic16_pcode_verbose flag is set,
6334         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
6335         * src/pic16/pcoderegs.c: message about how many registers are saved
6336         will only be emitted if pic16_pcode_verbose flag is set,
6337
6338 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6339
6340         * src/ds390/ralloc.h,
6341         * src/ds390/ralloc.c (ds390_regWithIdx),
6342         * src/ds390/gen.c (emitcode),
6343         * src/ds390/main.h,
6344         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
6345         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6346         ds390operandCompare, getRegsRead, getRegsWritten,
6347         initializeAsmLineNode): customized instruction size calculation for
6348         ds390, started basis for some register optimizations
6349         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
6350         corresponding assembly output
6351         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
6352         missing push/pop of r0/r1. Optimized push/pops
6353
6354 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6355
6356         * src/mcs51/main.c (instructionSize): fixed ACALL size
6357         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
6358
6359 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
6360
6361         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
6362         the sorting of rlist with NULL elements
6363         * (print_idataType, print_idata): NEW to create idata sections
6364         * src/pic16/device.h: idataSymSet new variable
6365         * src/pic16/gen.c (genFunction): fixed some bugs in string
6366         comparing, improved the absolute section creation for ISRs,
6367         added FSR0L/FSR0H in registers that are saved in an ISR,
6368         * (genInline): fixed the processing of inline snippets,
6369         now they undergo no process by the peephole optimizer
6370         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
6371         are placed in idataSymSet,
6372         * (pic16emitStaticSeg): extern symbols are added in externs,
6373         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
6374         switching when aboslute variables are placed in access bank memory
6375         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
6376         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
6377         commented out with #if,
6378         * (pic16_packRegisters): reintroduce the check for CAST because some
6379         symbols are not correctly handled,
6380         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
6381         pCodeInstruction instead of pCode,
6382         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
6383         pCodeAsmDir definition,
6384         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
6385         directive, then the argument directive is emitted without the leading
6386         tab, hack for inline labels which must be in the first column,
6387         * (compareLabel,pic16_findNextInstruction),
6388         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
6389         * (insertBankSwitch): modified for the new pCodeAsmDir,
6390
6391 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6392         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
6393
6394         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
6395         instance,
6396         * (pushSide): commented out with #if,
6397         * (assignResultValue): fixed some typos in saving
6398         registers,
6399         * (genPcall): FIXED and sync'ed with genCall,
6400         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
6401         * (genNearPointerGet): fixed to handle some more cases,
6402         implementation scheme via table reads,
6403         * (genConstPointerGet): modified to access code memory correct,
6404         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
6405         and improved to handle some cases
6406         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
6407         instead of "RETLW" for init data
6408         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
6409         not IN_DIRSPACE, work around to reduce bank switching when aboslute
6410         variables are placed in access bank memory (<0x80 and >=0xf80),
6411         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
6412         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
6413         TBLWT_POSTDEC,TBLWT_PREINC
6414         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
6415         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
6416         directives
6417         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
6418         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
6419         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
6420         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
6421
6422 2004-02-29  Borut Razem <borut.razem AT siol.net>
6423
6424         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
6425         support/Util/findme.h, support/Util/system.h: enhance binary relative
6426         search for lib and include by using findProgramPath()
6427
6428 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6429
6430         * src/SDCCpeeph.h,
6431         * src/SDCCpeeph.c (pcDistance),
6432         * src/port.h,
6433         * src/mcs51/ralloc.h,
6434         * src/mcs51/ralloc.c (mcs51_regWithIdx),
6435         * src/mcs51/main.h,
6436         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
6437         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6438         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
6439         size calculation port specific, started basis for some register
6440         optimizations
6441         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
6442         missing push/pop of r0/r1. Optimized push/pops
6443         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
6444         * device/lib/_modsint.c (_modsint),
6445         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
6446         and stack version so regression tests pass
6447
6448 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
6449
6450         * src/Makefile.in (dep): include SLIBOBJS in dependency check
6451         * src/SDCCast.c (decorateType): catch another small optimization
6452         with '?' operator
6453         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
6454         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
6455         modified to finally use computeType() all over SDCC,
6456         see Feature Request #877103
6457         * src/SDCCval.h: cosmetic
6458         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
6459         valCompare(); regression tested in muldiv.c
6460         * support/regression/tests/muldiv.c (testMod): mod sign follows
6461         dividend only
6462
6463 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
6464
6465         * src/SDCCast.c (decorateType): fixed bug #902362
6466         * doc/INSTALL.txt: fixed install instructions for win32
6467
6468 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
6469
6470         * device/include/Makefile.in (install): fixed by replacing spaces
6471         by tabs
6472         * doc/README.txt,
6473         * doc/INSTALL.txt: updated for release
6474         * doc/sdccman.lyx: added warning for --xstack being buggy
6475
6476 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
6477
6478         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
6479         to eliminate build warnings.
6480         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
6481
6482 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
6483            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6484
6485         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
6486         removed -penable-stack, added comment for stack pragma, added
6487         warning for not initializing the stack/frame registers, removed
6488         comment at interrupts section
6489
6490         Stack is made permanent, there is no ability to disable stack usage.
6491         * src/pic16/device.h,
6492         * src/pic16/device.c: removed all references to USE_STACK macro,
6493         * src/pic16/device.c (pic16_dump_section): when no elements in
6494         rlist, free rlist before return,
6495         * (pic16_dump_int_registers): NEW, internal registers are a new set
6496         of general purpose registers reused by each function,
6497         * (checkAddReg): returns 1 if registers is added to set,
6498         * (pic16_groupRegistersInSection): when a registers is of type
6499         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
6500         * src/pic16/device.h: memRange and Assigned Memory are deleted,
6501         SRCASECMP macro is moved here from device.c
6502         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
6503         PO_PCLATU, PO_PRODL, PO_PRODH,
6504         * (pic16_pCodeOpType, genMinus,
6505         changed compares to "a" register, with AOP_ACC,
6506         * (pic16_genPlus): fixed some bugs and indented properly,
6507         * (pic16_addSign): changed size to size+offset in the MOVWF
6508         instruction,
6509         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
6510         multiply 8-bit operand by literal, result is 8-bit,
6511         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
6512         multiply 2 8-bit operand, result is 8-bit,
6513         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
6514         genUMult8X*_16,
6515         * src/pic16/gen.c: changed accUse to contain WREG only,
6516         * (pic16_emitcomment): renamed to pic16_emitpcomment,
6517         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
6518         true, do not use immediate addressing any more unless sym is a
6519         pointer in codespace,
6520         * (aopForRemat): do not use immediate addressing when symbol not in
6521         codespace and when symbol's address is requested,
6522         * (aopOp): for-loop in if(sym->accUse) is modified for the new
6523         accUse size (= 1),
6524         * (aopGet): added case for AOP_ACC and don't return "accumulator
6525         bug" but WREG instead,
6526         * (popGetTempReg): pushes contents of temporary register in stack,
6527         * (popReleaseTempReg): pops contents of temporary register from
6528         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
6529         * (pic16_popGet): separated case AOP_ACC to return register WREG
6530         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
6531         or PO_IMMEDIATE and initializes their instance/offset appropriately,
6532         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
6533         the use of immediate pointers to certain cases only.
6534
6535         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
6536         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
6537         * (assignResultValue, genCall, genRet): modified to use the new
6538         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
6539         genPcall is still broken,
6540         * (genFunction): added code to create 'A' type pBlocks when
6541         interrupt functions are generated, code not extensively tested yet,
6542         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
6543         * (genEndFunction): modified so ISRs pop stored registers from stack,
6544         * (genMultOneByte): cleanup,
6545         * (AccRsh): added flag andmask, to and result with appropriate mask,
6546         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
6547         * (genDataPointerGet): fixed and reenabled its use,
6548         * (genNearDataPointerGet): bugs fixed,
6549         * (genDataPointerSet): bugs fixed,
6550         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
6551         pic16_DumpSymbol, pic16_DumpOp,
6552         * src/pic16/genutils.h: function prototypes for the above functions,
6553         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
6554         pointers,
6555         * (pic16emitRegularMap): many many many improvements, but needs a
6556         major cleanup,
6557         * src/pic16/main.c: enable_stack in pic16_options is removed,
6558         * (_pic16_parseOptions): removed command line options -penable-stack,
6559         * (_process_pragma): emit stack symbol only when stack pragma is
6560         processed,
6561         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
6562         redirected to FSR0L/FSR0H pair,
6563         * (pic16_get_op, pic16_get_op2): modifications and improvements,
6564         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
6565         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
6566         for immediates,
6567         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
6568         * (dumpPicOptype): NEW,
6569         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
6570         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
6571         with movff instruction,
6572         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
6573         added pic16_int_regs, some packRegsFor* functions are commented out,
6574         because produce errors,
6575         * src/pic16/NOTES: minor modifications
6576
6577 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6578
6579         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
6580         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
6581         --pack-iram.
6582         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
6583         * as/mcs51/lkaomf51.c: fixed bug #895763
6584
6585 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
6586
6587         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
6588
6589 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6590
6591         * doc/sdccman.lyx: added details about the HC08 storage classes and
6592         interrupts, fixed the register usage info for z80 & gbz80
6593
6594 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
6595
6596         * doc/sdccman.lyx: added more pic16 port documentation
6597         * device/include/pic16/: added header pic18fregs.h
6598
6599 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
6600
6601         * doc/sdccman.lyx: added Vangelis' contribution
6602
6603 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6604
6605         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
6606         extend to the next CALL or PCALL, not just to the next CALL.
6607
6608 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
6609
6610         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
6611
6612 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6613
6614         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
6615         bug #895752 and a better fix for bug #716790
6616
6617 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6618
6619         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
6620
6621 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6622
6623         * doc/sdccman.lyx: minor changes, minor changed
6624
6625 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
6626
6627         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
6628         which can't handle SDCC_NEWONEBYTEOPS,
6629         (geniCodeMultiply): removed conversion from mult to shift for pic14
6630         and pic16
6631
6632 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6633
6634         * src/hc08/gen.h,
6635         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
6636         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
6637         thus fixing bug #895406
6638
6639 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
6640
6641         * device/lib/_modsint.c,
6642         * device/lib/_modslong.c: sign follows divisor only
6643         * src/hc08/gen.c (genMultOneByte): if result size is 1,
6644         signs or signedness can be ignored
6645         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
6646         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
6647         added optimization for IFX,
6648         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
6649         arguments;
6650         reenabled optimization for IFX, which was removed on 2004-01-11
6651         * src/SDCCast.h: added return type IFX
6652         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
6653         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
6654         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
6655         SDCC_OLDONEBYTEOPS selects the old behaviour
6656         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
6657         changed again and commented promotion rule
6658         * src/SDCCval.c (valDiv): promotion no longer necessary
6659         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
6660         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
6661         rewritten
6662         * support/regression/tests/onebyte.c: added
6663
6664 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
6665
6666         * gen.c (genInline): reverted to old code for assemnling inline
6667         code because of bug reported James Chadd
6668
6669 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
6670
6671         * ralloc.h: missing declarations from previous patch,
6672         seems that patch for ralloc.h was never applied, fixed
6673
6674 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6675            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6676
6677         * pcode.c,
6678         * pcode.h,
6679         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
6680         indirect addressing. Marked FSR0 as deprecated
6681         * gen.c (pointerCode): commented out, not needed now
6682         (pic16_popGet2p): new MOVFF helper function
6683         (genGenPointerGet),
6684         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
6685         (shiftRLong): removed duplicate debugging info
6686
6687 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6688
6689         * src/ds390/gen.c (genNearPointerGet),
6690         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
6691         optimization with bits, but not bitfields.
6692         * src/ds390/ralloc.c (packRegisters),
6693         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
6694
6695 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
6696
6697         * src/SDCCcse.c (algebraicOpts): copy operands before modification
6698
6699 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6700
6701         * src/SDCCsymt.h,
6702         * src/SDCCicode.c (operandFromSymbol),
6703         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
6704         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
6705         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
6706         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
6707         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
6708         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
6709         bug #892038
6710         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
6711         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
6712         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
6713         * src/SDCCsymt.c (newSymbol),
6714         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6715         enumerator_list),
6716         * src/SDCCval.h,
6717         * src/SDCCval.c (newiList): fixed bug #885705
6718
6719 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6720
6721         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
6722         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
6723
6724 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6725
6726         * device/include/c8051f120.h,
6727         * device/include/c8051f300.h,
6728         * device/include/c8051f310.h: added/updated header files for Silicon
6729         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6730         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
6731         in new section Submitting patches
6732
6733 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6734
6735         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
6736         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6737         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6738         genGenPointerSet),
6739         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
6740         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6741         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6742         genGenPointerSet),
6743         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
6744         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6745         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6746         genGenPointerSet),
6747         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
6748         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6749         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6750         genGenPointerSet): fixed bug #892400
6751         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
6752         to eliminate build warnings.
6753         * src/SDCCast.c (processParms),
6754         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
6755         fixed bug 751859
6756         * support/valdiag/valdiag.py: added GCC to the list of defines active
6757         when compiling with gcc
6758
6759 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6760
6761         * support/Util/SDCCerr.h,
6762         * support/Util/SDCCerr.c,
6763         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
6764         with an incomplete type (fixed bug #883734)
6765         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
6766
6767 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6768
6769         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
6770
6771 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6772
6773         * src/SDCCast.c (decorateType),
6774         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
6775         function pointer implementation
6776         * support/regression/tests/funptrs.c: added tests to verify both forms
6777         of function pointers work correctly. Added tests to verify parameters
6778         are passed in the correct order.
6779
6780 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
6781
6782         * device.c (regCompare): registers are sorted by ascending
6783         address and increasing size,
6784         * main.c (_pic16_finaliseOptions): removed the declaration
6785         of compiler macro MCU. Now a macro of the format pic18fxxxx
6786         will be defined from the command line
6787
6788 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6789             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6790
6791         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
6792         PCOP_RLCF was overwritten!
6793         * gen.c (genSkip): commented out calls to pic16_emitcode,
6794         * (genCmpEQ): fixed "long" compares, only high word did get compared,
6795         * (genlshTwo),
6796         * (genRRC): added debugging info,
6797         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
6798         overwritten while shifting,
6799         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
6800         overwritten while shifting,
6801         * (AccLsh),
6802         * (AccRsh),
6803         * (shiftLLeftOrResult),
6804         * (shiftRLeftOrResult),
6805         * (shiftRLong),
6806         * (shiftLLong): Implemented with pic16_emitpcode
6807         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
6808         * (genLeftShift): Fixed bug, operand for shift by variable always
6809         was "and"ed with 0x0f,
6810         * (genLeftShiftLiteral),
6811         * (genrshTwo),
6812         * (genRightShiftLiteral): added debugging info,
6813         * (genrshFour): added comment,
6814         * (genRightShift): determined signedness from operand "left"
6815         instead of "result"
6816
6817 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6818
6819         * src/SDCCicode.c (geniCodeParms),
6820         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
6821         function pointers, fixed function pointer bugs #861242 and #861896
6822
6823 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6824
6825         * device/include/c8051f000.h,
6826         * device/include/c8051f120.h,
6827         * device/include/c8051f300.h: added header files for Silicon
6828         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6829
6830 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
6831
6832         * src/SDCCast.c (processParams): added new type flow and restructured
6833         (gatherAutoInit): added new type flow
6834         (addCast): cosmetic changes
6835         (getLeftResultType): added new type flow for array indices, patch
6836         provided by Stas, see FR #877103
6837         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
6838         array index patch by Stas
6839         * src/SDCCast.h: added prototype getResultTypeFromType()
6840         * src/SDCCval.h,
6841         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
6842         * src/pic/glue.c (pic14emitStaticSeg),
6843         * src/pic16/glue.c (pic16emitStaticSeg),
6844         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
6845         for initialization of symbols
6846         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
6847         * support/Util/SDCCerr.h:
6848         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
6849         * .version: bumped version number to 2.3.8
6850         * device/include/Makefile.in (install),
6851         * doc/Makefile (install): changed to 'rm `find ...`' construct to
6852         avoid warnings
6853
6854 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
6855
6856         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
6857         Slade Rich fixed an optimization bug
6858         * src/pic/pcodepeep.c,
6859         * src/pic/pcoderegs.c
6860         * doc/Makefile (install): added test for directory
6861
6862 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6863
6864         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
6865         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
6866         * src/pic/ralloc.c (getRegPtr, getRegGpr),
6867         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
6868         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
6869         * as/mcs51/asexpr.c (term),
6870         * as/hc08/asexpr.c (term): fixed bug #887146
6871
6872 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6873
6874         * src/z80/gen.c (genMult): handle single byte result product
6875         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
6876         DUMMY_READ_VOLATILE (fixed bug #886367)
6877
6878 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6879
6880         * support/regression/tests/libmullong.c: fixed logic, on little endian
6881         hosts we ended without a mullong_wrapper()
6882
6883 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6884
6885         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
6886         virus/worm forged address usage.
6887
6888 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6889
6890         Fixed promotion, it should be done on AST level:
6891         * src/SDCCast.c (addCast): added promotion to int
6892         (decorateType): updated call to upCast()
6893         * src/SDCCicode.c (geniCodeLeftShift): removed call to
6894         usualUnaryConversions()
6895
6896 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
6897
6898         * support/regression/tests/literalop.c (mulWrapper): Added a
6899         wrapper to remove integer overflow warnings.
6900
6901         * support/regression/tests/float_trans.c: Made work on host.
6902
6903         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
6904         location of sz80.
6905
6906         * support/regression/generate-cases.py (main): Changed from inline
6907         to a main method.
6908
6909         * doc/Makefile (install): Changed to depth first to get rid of
6910         missing directory install warning.
6911
6912         * as/Makefile (install-doc): Made work on Mac.
6913
6914 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
6915
6916         * src/SDCCast.c: added an additional type flow in decorateType() of
6917         opposite direction, see feature request #860006; it's enabled at runtime
6918         by setting the environment variable SDCC_NEWTYPEFLOW
6919         * src/SDCCast.h: changed prototype of decorateType()
6920         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
6921         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
6922         'char' to 'int' can be omitted, if both operands are 'unsigned char';
6923         see feature request #877103
6924         * src/SDCCval.c: updated call of decorateType()
6925         (valBitwise): fixed bug #882876
6926         (valMinus): added promotion
6927         (valLogicAndOr): result is unsigned
6928         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
6929         * src/SDCCsymt.c (computeType),
6930         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
6931         must not cause an unsigned operation
6932         * src/pic/glue (pic14emitRegularMap),
6933         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
6934
6935 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
6936
6937         * src/pic/pcode.c (PCodeID): commented out left over debug code
6938
6939 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
6940
6941         * support/valdiag/tests/overflow.c: added shift tests
6942         * src/pic/device.c,
6943         * src/pic/gen.c,
6944         * src/pic/gen.h,
6945         * src/pic/glue.c,
6946         * src/pic/main.c,
6947         * src/pic/pcode.c,
6948         * src/pic/pcode.h,
6949         * src/pic/pcodepeep.c,
6950         * src/pic/pcoderegs.c,
6951         * src/pic/ralloc.c,
6952         * src/pic/ralloc.h: applied patch from Slade Rich;
6953         added support for multiple code pages and multiple RAM banks on the
6954         PIC 14 port. The ASM files now no longer simply assume all the
6955         code / RAM are in the same page / bank. This means the linker can
6956         safely allocate code/RAM of separate ASM files to different pages/banks.
6957         * doc/sdccman.lyx: added Slade's tips
6958         * src/mcs51/peeph.def: fixed bug #880768
6959
6960 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6961
6962         * src/hc08/ralloc.c (rematStr): fixed bug #879282
6963         * src/SDCCast.c (decorateType): fixed bug #880197
6964
6965 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
6966
6967         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
6968         getopt.h.
6969
6970         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
6971         strtof is not part of C89 and isn't included with Mac OS X.
6972
6973 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6974
6975         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
6976         shiftL2Left2Result): fixed bug #879326
6977         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
6978         (genMultOneByte): fixed bug in signed vs unsigned multiplication
6979         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
6980         address fetch for clr instruction
6981         * device/lib/hc08/_mulint.c: created optimized assembly version
6982         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
6983
6984 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
6985
6986         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
6987         proposed in FR #877103
6988
6989 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
6990
6991         * src/SDCCval.c (cheapestVal): added missing checks
6992         * src/SDCCicode.c (usualBinaryConversions): fixed condition
6993         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
6994
6995 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
6996
6997         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
6998         equal operands
6999
7000 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
7001
7002         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
7003         loaded with the linker search paths (-L arguments) and the libraries
7004         to be linked with the current source (-l arguments). Changes
7005         currently will affect only the pic16 port.
7006         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
7007         include path the port specific paths and port specific libraries,
7008         * gplink command now contains the $3 argument,
7009         * src/pic16/device.h,
7010         * src/pic16/device.c,: structure PIC_device is made public and
7011         renamed to PIC16_device, the same for variable Pics which is renamed
7012         to Pics16. Updated all references to them.
7013         * src/pic16/glue.c (pic16glue): corrected bug with code
7014         initialization which bypassed the variable initializations block.
7015
7016         * device/lib/pic16/Makefile.rules: removed --penable-stack from
7017         COMPILE_FLAGS and added the --nostdinc option
7018
7019 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7020
7021         * device/include/mc68hc908jb8.h: Register defs for another member
7022         of the hc08 family. Contributed by Bjorn Bringert - thanks!
7023
7024 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
7025
7026         Documenting changes from previous commits.
7027         * configure.in (version 1.56),
7028         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
7029         when generating output files to configure the pic16 library,
7030         but now I've commented it out, since gputils aren't installed in the
7031         SF compile farm, so library won't compile
7032
7033         * device/lib/Makefile.in (version 1.56): initially I've added in
7034         target 'all' the prerequestive 'model-pic16' so it compiled the
7035         pic16 library, but now I've commented it out for the same reasons
7036         above,
7037         * added targets 'model-pic16' and 'objects-pic16' to compile the
7038         library
7039         * added target 'port-specific-objects-pic16' to handle the
7040         generated libraries and copy them into the build/ directory
7041         * added target 'clean-intermediate-pic16' to clean intermediate
7042         files into pic16 directory
7043         * in target 'installdirs' added line to create directory pic16 in
7044         the installation path
7045
7046         * device/include/Makefile.in (version 1.11): in target 'install'
7047         added lines to copy all header files to installation path,
7048         * in target 'installdirs' added line create directory for pic16
7049         headers in the installation path
7050
7051 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
7052
7053         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
7054          a function call
7055
7056 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
7057
7058         * configure,
7059         * device/lib/configure.in,
7060         * device/lib/configure: fixed for autoconf 2.57
7061
7062 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7063
7064         * src/z80/main.c (_parseOptions): fixed the portmode= command line
7065         option so that it actually works. Made it specific to the z80, since
7066         the gbz80 doesn't have these kinds of I/O ports.
7067
7068 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7069
7070         * device/include/z180.h,
7071         * device/lib/_memcpy.c,
7072         * device/lib/_memmove.c,
7073         * device/lib/_mulint.c,
7074         * device/lib/ser_ir.c,
7075         * device/lib/ser_ir_cts_rts.c,
7076         * device/lib/_strcmp.c,
7077         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
7078         * src/z80/main.c (_process_pragma): add support for pragmas bank and
7079         portmode; added deprecation warning for bank= and protmode= forms.
7080         Also, guard against buffer overflow.
7081         * src/z80/gen.c (aopGet): generate better code for sfr banked read
7082
7083 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7084
7085         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
7086         changed interrupt vector table generation to only emit declared vectors.
7087         * device/include/Makefile.in: added missing backslash
7088         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
7089
7090 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
7091
7092         Mainly changes to support compilation of the device libraries
7093         * src/pic16/device.c: stack is allocated via symbol and not
7094         via literal number. The symbol is placed in the corresponding
7095         position of the data ram
7096         * (pic16_dump_section): relocatable and absolute uninitialized
7097         data are now emitted in sorted order to reduce section naming,
7098         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
7099         weren't marked as being in the access bank,
7100
7101 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
7102
7103         Added portion of GNU PIC Library under the directory
7104         device/include/pic16 and device/lib/pic16. These files
7105         contain the declarations of SFRs for the PIC18Fxx2 devices.
7106         The directory is initialized via configure from toplevel.
7107
7108 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
7109
7110         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
7111         the spilllocations to be compared correctly
7112
7113 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
7114
7115         * src/SDCCast.c (decorateType): fixed bug introduced today
7116
7117 2004-01-12  Borut Razem <borut.razem AT siol.net>
7118
7119         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
7120         doc/sdccman.lyx: upper case pragmas are deprecated
7121
7122 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
7123
7124         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
7125         in simpler and even better code
7126
7127 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
7128
7129         * src/SDCCicode.c (operandOperation): fixed bug #874819
7130         * src/SDCCast.c (decorateType): fixed
7131         char foo (unsigned long ul) { return ul > 0; }
7132
7133 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7134
7135         * doc/sdccman.lyx: Moved and added some sections, small changes
7136         all over. Telling LaTeX to be less strict with word spacing
7137         to better keep the right margin. Changed some notes about
7138         maintainance of the ports in section 3.2.1 - is it OK like this?
7139
7140 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
7141
7142         SDCC source changes:
7143         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
7144         convilong): modified to inform the pic16 port that builtin functions
7145         are external
7146
7147         PIC16 PORT specific changes:
7148         * src/pic16/device.c pic16_dump_equates() added,
7149         processor registers declared internally by the port are emitted in
7150         the translation as equates,
7151         * src/pic16/gen.c: inline code is passed unprocessed to the
7152         translation,
7153         * (pic16_popGetLit2): fnuction modified to take second operand as
7154         pCodeOp pointer and not as literal,
7155         * (popRegFromIdx): prefixed with pic16_,
7156         * (pic16_popCombine2): modified to receive already allocated pCode
7157         operands,
7158         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
7159         * (genFunction): initializes local stack frame and pushes on stack
7160         all the registers used by this function,
7161         * (genEndFunction): restores all registers from stack and restores
7162         stack frame,
7163         * src/pic16/glue.c (pic16emitRegularMap): various changes and
7164         improvements,
7165         * (pic16glue): changed the program startup sequence,
7166         * added new dbName code 'A' for functions placed in absolute section
7167         * src/pic16/main.c: added function attribute _naked,
7168         * added pragma 'code' to place a fnuction at an absolute address,
7169         * added command line arguments --debug-ralloc and --pcode-verbose,
7170         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
7171         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
7172         * (pic16_newpCodeOpLit2): modified to take the second operand as
7173         pCodeOp pointer,
7174         * (pic16_printpBlock): modified to emit each function in a separate
7175         section,
7176         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
7177         UPPER for immediate operands,
7178         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
7179         instruction,
7180         * src/pic16/peeph.def: all peepholes with movff are commented out,
7181         because there is a problem in the pcode peep optimizer,
7182         * src/pic16/ralloc.c: the register allocator can now reuse local
7183         function symbols for another function. This saves register usage.
7184         * src/pic16/ralloc.h: added flag isLocal in structure regs,
7185
7186         Added file src/pic16/NOTES with information about program writing on
7187         the current port version.
7188
7189 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7190
7191         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
7192         and peephole 252 (array access)
7193
7194 2004-01-09  Borut Razem <borut.razem AT siol.net>
7195
7196         * src/SDCCmain.c : fixed #872250: -l command line defined library
7197           files are scanned before standard library files
7198
7199 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7200
7201         * src/SDCCast.c (decorateType): fixed bug #874046
7202
7203 2004-01-09  Borut Razem <borut.razem AT siol.net>
7204
7205         * support/scripts/sdcc.nsi: remove previous installation
7206
7207 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7208
7209         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
7210         bytes for last interrupt vector (mcs51)
7211         * sdcc.spec: fixed typo
7212
7213 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7214
7215         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
7216         gen51Code): more efficient parameter receive for --model-large
7217         ("bug" #845294)
7218
7219 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7220
7221         * src/ds390/main.c,
7222         * src/z80/main.c: added missed needLinkerScript flags (more than
7223         one port structure defined in these file)
7224         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
7225         bug #795325
7226
7227 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
7228
7229         * src/SDCCmain.c: removed various references to DEFAULT_PORT
7230         * src/port.h: added flag needLinkerScript in port->linker
7231         structure to inform whether to create a .lnk file or not,
7232         * src/avr/main.c,
7233         * src/ds390/main.c,
7234         * src/hc08/main.c,
7235         * src/mcs51/main.c,
7236         * src/pic/main.c,
7237         * src/pic16/main.c,
7238         * src/xa51/main.c,
7239         * src/z80/main.c: changed appropriately to configure
7240         needLinkerScript flag
7241         * src/pic/gen.c,
7242         * src/pic16/gen.c (genAddrOf): fixed bug #863624
7243         * src/pic/glue.c: added variable udata_section_name to
7244         override default uninitialized data segment definition for
7245         devices only with SHAREBANK memory (reported from Erik Epetrich)
7246         * (pic14emitOverlay): modified to emit a commented overlay segment
7247         directive when no overlay data exist
7248         * (picglue): modified to emit uninitialized data segment
7249         according to udata_section_name
7250         * src/pic/main.c (_pic14_parseOptions): added command line
7251         options --udata-section-name=[name] to override default
7252         udata definition name
7253         * modified _linkCmd and _asmCmd to include compiler passed
7254         arguments via -W option
7255         * src/pic16/main.c: added $l in _asmCmd, changed extension for
7256         object file from '.rel' to '.o' in port->linker structure,
7257         changed size of fptr from 2 to 3 in port structure
7258
7259 2004-01-07  Borut Razem <borut.razem AT siol.net>
7260
7261         * support/scripts/sdcc.nsi: update PATH
7262         * support/scripts/sdcc.ico: craeted
7263
7264 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
7265
7266         * device/include/Makefile.in: fix install
7267         * doc/Makefile: fix install
7268
7269 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7270
7271         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
7272         in bug #860505
7273         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
7274         how the function variable allocation summary is displayed; also
7275         include information about variables allocated to the overlay
7276         segment
7277
7278 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7279
7280         * as/mcs51/lkmain.c: Help about -Y option
7281         * as/mcs51/lkarea.c: Fixed gcc warnings
7282
7283 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
7284
7285         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
7286         fixed warning
7287         * support/valdiag/tests/overflow.c: added
7288         * src/SDCCast.c (decorateType),
7289         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
7290         LEFT_OP (left shift)
7291
7292 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7293
7294         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
7295         (default behaviour).
7296
7297 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7298
7299         A python script to validate compiler diagnostic messages. It can be
7300         used to verify that sdcc complains about bad c source code and
7301         gives a good location of the error.
7302         * support/valdiag/Makefile,
7303         * support/valdiag/valdiag.py,
7304         * support/valdiag/tests/*
7305
7306 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7307
7308         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
7309         * src/SDCCsymt.c (newEnumType),
7310         * src/SDCCsymt.h
7311         * support/Util/SDCCerr.c,
7312         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
7313         enum related bugs.
7314         * support/regression/tests/enum.c: added test for enum values that
7315         require at least 2 bytes of storage.
7316
7317 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7318
7319         * src/common.h: added ifndef/define/endif macros
7320         around the header file.
7321         Bug reported from Jesus Calvino-Fraga
7322
7323 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
7324
7325         * sdcc.spec: updated
7326         * device/include/Makefile.in: don't install CVS directories
7327         * device/lib/Makefile.in: added removal of CVS directories after install
7328         * doc/Makefile: fixed install, added local_icons
7329         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
7330         * src/mcs51/gen.c (genRightShift): fixed bug #870788
7331         * src/ds390/gen.c (genRightShift): fixed bug #870788
7332         * src/SDCCast.c (decorateType): fixed bug #870781
7333
7334 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7335
7336         PIC16 port related changes:
7337         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
7338         added variable stackPos,
7339
7340         * gen.c: genCall, assignResultValue: added support for
7341         pushing/retrieving function parameters to/from stack,
7342         genFunction,genEndFunction: setup stack frame for the
7343         generated function,
7344         genAddrOf: will be changed according to bug 863624
7345
7346         * added files genutils.c and genutils.h which contain gen*
7347         debugged and optimised functions extracted from gen.c
7348
7349         * glue.c: added variable 'externs' which holds extern symbols,
7350         pic16emitRegularMap: is modified to properly handle relocatable
7351          symbols under the new scheme,
7352         pic16createInterruptVect: is modified
7353         pic16printPublics: is modified to emit 'global' assembler directives,
7354         added pic16_printExterns to print extern symbols,
7355         pic16glue: initializes stack/frame pointer in the beginning of
7356         the assembly output. Temporary hack, will be corrected later,
7357         because gplink yet does not support stack and SDCC does not
7358         yet support a type of crt0.o object to create the final binary.
7359
7360         * Removed many lines that contain 8051 legacy code.
7361         * The code is finally placed under a 'code' directive.
7362         * Added port specific options.
7363
7364         * _process_pragma: simplified since now we do not need *special*
7365         include file to define SFR registers. But a separate header
7366         will be needed. This will be developed later.
7367         * _pic16_parseOptions: added, parses port specific options:
7368         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
7369         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
7370         --preplace-udata-with=
7371
7372         * _pic16_setDefaultOptions: modified to initialize section names,
7373         but hack is temporarly out of order since it needs improvement.
7374         * _pic16_genAssemblerPreamble: configuration words are emitted by
7375         their address instead of their name. This part is incomplete and
7376         supports only the 18Fxx2 devices. Other devices will emit an error
7377         during assembly since they do not contain the same set of config
7378         registers
7379         * _pic16_genIVT: is modified,
7380
7381         * pcode.c: added definitions for some hardware registers that are needed
7382         for stack support
7383         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
7384         All PCI entries are updated. Now LFSR is supported.
7385         * Removed pic16_pciTRIS is mentioned by mdubuc in source
7386         * added pic16_newpCodeOpLit2 to support instructions with
7387         two literal arguments
7388         * pic16_pCode2str: corrected code that emits assembler instructions
7389         with two literal operands and those that have an access bit modifier
7390         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
7391         this fixes a bug which caused some labels to be lost, when an
7392         assembler directive was added, i.e. banksel,
7393         * pic16_FixRegisterBanking: improved logic that causes the insertion
7394         of bank switching,
7395         * InlineFunction: functions that are called once, are not any more
7396         inlined. This can be a port option in the future,
7397
7398         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
7399
7400         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
7401         hold the corresponding uninitialized symbols,
7402         * pic16_allocProcessorRegister: registers have explicit marked the
7403         accessBank field,
7404         * pic16_allocInternalRegister: registers are explicit marked as
7405         not used,
7406         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
7407         processing list, so bit registers were lost,
7408         *
7409
7410         * ralloc.h: added field 'accessBank' and original symbol operand
7411         in register definition,
7412         * removed the field isMapped from register definition,
7413
7414         ** Several functions have been removed from various sources:
7415         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
7416         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
7417         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
7418         pic16_assignRelocatableRegisters
7419
7420         ** others have been introduced:
7421         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
7422         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
7423
7424 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
7425
7426         * support/scripts/inc2h.pl: changed definition of BIT_AT
7427         to emit 'sbit at' instead of 'bit at'. This was a request.
7428
7429         PIC16 port related preliminary changes:
7430         * gen.c: prefixed function popRegFromString with
7431         pic16_ and all references to it corrected
7432         * pcode.c: all pic16_pc_* hardware registers prefixed
7433         with underscore (_),
7434         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
7435         * ralloc.c: newReg(): when register is REG_SFR then
7436         set address to rIdx,
7437         pic16_allocProcessorRegister(): marks register wasUsed=0
7438         pic16_writeUsedRegs(): added a call to assign processor
7439         registers via pic16_assignFixedRegisters
7440
7441 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7442
7443         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
7444         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
7445         variables in unused register banks.  Also the SSEG is placed
7446         wherever there is enough space for it, and IDATA can be anywhere
7447         in internal RAM.  For now compile using -Wl-Y[stack_size].
7448         The mem file is different for this option as well, since it
7449         makes no sense of talking about DSEG lenght.
7450
7451 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
7452
7453         * src/SDCClrange.c: fixed bug 869095 that caused segfault
7454         in certain cases, e.g. when ROM assignment, patch provided
7455         from Albert den Haan.
7456
7457 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
7458
7459         Many signedness and type propagation fixes:
7460         * src/SDCCicode.c: made geniCodeCast() static
7461         replaced SPEC_ by IS_ (cosmetic)
7462         (operandOperation): fixed div and mod operation
7463         (usualBinaryConversions): added support for promotion of char
7464         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
7465         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
7466         (geniCodeAdd): an array index will stay unsigned, even if promoted
7467         from char to int
7468         (geniCodeArray): ditto
7469         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
7470         * src/SDCCsymt.c (computeType): added more support for char;
7471         promotion of char is selectable by promoteCharToInt, fixed signedness
7472         for all cases
7473         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7474         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7475         * src/SDCCval (val*): replaced signedness calculation by
7476         computeType()
7477         rearranged if-branches (cosmetic)
7478         (valShift): added warning W_SHIFT_CHANGED
7479         (valCompare): fixed problem with different types
7480         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
7481         * support/regression/tests/literalop.c: added many cases
7482         * support/regression/tests/ast_constant_folding.c: changed finally to
7483         'unsigned int'
7484         * .version: new year, new version: 2.3.7
7485         * src/SDCCmain.c (main): applied patch #866468
7486         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
7487         provided by Scott Bronson
7488         * doc/sdccman.lyx: updated documentation for sdcdb
7489         updated and added chapter tips
7490
7491 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7492
7493         * src/SDCCsymt.h: missing from yesterday's commits
7494
7495 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7496
7497         * src/SDCC.y (struct_or_union_specifier),
7498         * support/Util/SDCCerr.c,
7499         * support/Util/SDCCerr.h: verify that struct & union tags are used
7500         as declared.
7501
7502 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7503
7504         * src/SDCCglobl.h: missing from yesterday's commits
7505
7506 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7507
7508         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
7509         sft_attributes, struct_declaration, parameter_declaration,
7510         type_name, start_block, declaration_list),
7511         * src/SDCC.lex (check_type): support redefinition of typedef names
7512
7513 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7514
7515         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
7516         aligned xdata arrays. Erik helped me with the if clause.
7517
7518 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7519
7520         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
7521         warning
7522
7523 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7524
7525         * src/SDCCast.h,
7526         * src/SDCCast.c (newAst_),
7527         * src/SDCCicode.h,
7528         * src/SDCCicode.c (ast2iCode, newiCode),
7529         * src/SDCCglobl.h,
7530         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
7531         expr, statement, expression_statement, selection_statement,
7532         iteration_statement, expr_opt, jump_statement): foundation for tracking
7533         sequence points
7534         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
7535         point code too)
7536
7537 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7538
7539         * support/Util/SDCCerr.c,
7540         * src/SDCCast.h,
7541         * src/SDCCast.c (createCase, createDefault, decorateType),
7542         * src/SDCClabel.c (labelUnreach),
7543         * src/SDCC.y (labeled_statement, jump_statement): More improvements
7544         to error messages.
7545         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
7546         (with thanks to Stas Sergeev)
7547         * device/include/time.h,
7548         * device/lib/time.c (CheckTime): suppress unreachable code warning
7549
7550 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7551
7552         * src/SDCCast.c (createIvalCharPtr),
7553         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
7554         bug #753752)
7555         * support/regression/tests/nullstring.c: tests for these two bugs
7556
7557 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7558
7559         * support/Util/SDCCerr.h,
7560         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
7561         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
7562         about storage class and 'at' used inside struct or union
7563         * src/SDCCBBlock.c (iCodeFromeBBlock),
7564         * src/SDCCcse.c (ifxOptimize),
7565         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
7566         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
7567         printIval, emitStaticSeg, emitOverlay),
7568         * src/SDCClabel.c (deleteIfx),
7569         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
7570         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
7571         gatherAutoInit, processParms),
7572         * support/Util/SDCCerr.h,
7573         * support/Util/SDCCerr.c (werrorfl): Support for better error location
7574         reporting for post-parse errors.
7575
7576 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7577
7578         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
7579         implicit casts via union; they don't work on big endian systems
7580         (possible fix for bug #861138)
7581
7582 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7583
7584         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
7585         * src/mcs51/main.c: fixed the fix for bug #737001
7586
7587 2003-12-15  Borut Razem <borut.razem AT siol.net>
7588
7589         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
7590
7591 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7592
7593         * support/makebin/makebin.c: put output in binary mode
7594
7595 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7596
7597         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
7598         xdata and data memory on startup. Set the environment variable
7599         SDCC_NOGENRAMCLEAR to disable this.
7600         * src/mcs51/peephole.def,
7601         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
7602         (allows non-interrupt and interrupt code to safely compete for a resource
7603         without the non-interrupt code having to disable interrupts)
7604
7605 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7606
7607         * src/SDCCicode.c (geniCodeAdd),
7608         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
7609         with valFromType if type might be a pointer and host is big endian).
7610         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
7611         types, not just integer types.
7612         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
7613         multiply defined with mismatching "at" address.
7614
7615 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7616
7617         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
7618         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
7619         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
7620         with embedded nulls (fixed bug #753752)
7621
7622 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7623
7624         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
7625         Apparently this did not see much testing (endless loop)
7626
7627 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7628
7629         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
7630
7631 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7632
7633         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
7634         gracefully handle NULL memmap pointers
7635
7636 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7637
7638         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
7639         instead of deleting the iCode when an operand is volatile
7640         * src/z80/gen.c (genDummyRead),
7641         * src/mcs51/gen.c (genDummyRead),
7642         * src/ds390/gen.c (genDummyRead),
7643         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
7644         not just IC_RIGHT
7645         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
7646         * src/SDCC.y: fixed bug #850420
7647
7648 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7649
7650         Applied z80 i/o port patch from Peter Townson and fixed some operators
7651         to better handle operands in A register.
7652         * device/include/z180.h
7653         * src/SDCC.y
7654         * src/SDCCglue.c
7655         * src/z80/gen.c
7656         * src/z80/gen.h
7657         * src/z80/main.c
7658         * src/z80/peeph-z80.def
7659         * src/z80/peeph.def
7660         * src/z80/z80.h
7661
7662 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7663
7664         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
7665
7666 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7667
7668         * device/lib/hc08/_mullong.c: Removed extra #endif
7669
7670 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7671
7672         * sim/ucsim/hc08.src/inst.cc,
7673         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
7674         carries from x to h
7675         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
7676         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
7677         * device/include/stdarg.h: fixed varargs for hc08
7678         * device/lib/Makefile.in,
7679         * device/lib/hc08/Makefile,
7680         * device/lib/hc08/_mulint.c,
7681         * device/lib/hc08/_mullong.c: fixed some endian problems
7682
7683 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7684
7685         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
7686         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
7687         * device/lib/_gptrget.c,
7688         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
7689
7690 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7691
7692         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
7693         * src/SDCCast.c (astErrors): fixed bug #846007
7694         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
7695
7696 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7697
7698         * src/SDCCast.c (decorateType): disabled a transformation I added in
7699         revision 1.188 (access to fields of a structure at an absolute address);
7700         it breaks with bitfields, extern declarations, and gcse analysis.
7701         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
7702         could be assigned through a pointer, so don't complain.
7703         * src/SDCCast.c (astErrors),
7704         * src/SDCCast.h,
7705         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
7706
7707 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
7708
7709         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
7710         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
7711         output of __config directives, since gpasm now supports them
7712         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
7713         pre-processor macro, i.e. -DMCU=p18f452
7714         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
7715         and modified to handle 'cast' icode similarly to '=' icode
7716         * src/pic16/device.h (typedef struct PIC_device): added field
7717         'extMIface' to indicate that chip has external memory interface
7718         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
7719         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
7720         18F8720
7721
7722 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7723
7724         * src/SDCC.y (pointer): fixed bug #846006
7725         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
7726         * src/SDCCast.c (decorateType): fixed bug #846009
7727         * src/ds390/peeph.def,
7728         * src/ds390/gen.c (genAnd, genOr),
7729         * src/mcs51/peeph.def,
7730         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
7731
7732 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7733
7734         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
7735         * src/SDCCdflow.c
7736         * src/SDCCcse.c
7737         * src/SDCCcse.h
7738         * src/SDCCBBlock.h
7739         * src/SDCCBBlock.c
7740
7741 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
7742
7743         fixed bug #845089
7744         * src/SDCCbitv.h,
7745         * src/SDCCbitv.c: added function to free a bitvector
7746         * src/SDCClrange.h,
7747         * src/SDCClrange.c: added function to recompute the liveranges
7748         * src/avr/ralloc.c,
7749         * src/ds390/ralloc.c,
7750         * src/hc08/ralloc.c,
7751         * src/mcs51/ralloc.c,
7752         * src/pic/ralloc.c,
7753         * src/pic16/ralloc.c,
7754         * src/xa51/ralloc.c,
7755         * src/z80/ralloc.c: recompute the liveranges after register packing
7756
7757 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
7758
7759         * src/SDCCloop.c (newInduction): fixed bug #845630
7760
7761 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7762
7763         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
7764         inadvertantly left behind from my 2003-11-12 change
7765
7766 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7767
7768         Updated headers I neglected to commit yesterday.
7769         * src/SDCClrange.h,
7770         * src/SDCCicode.h
7771
7772 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7773
7774         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
7775         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
7776         * src/SDCCopt.c (eBBlockFromiCode),
7777         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
7778         the creation of the key hash table from the sequencing so it can be used
7779         earlier (for some GCSE bug fixes still pending)
7780
7781 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7782
7783         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
7784         * support/regression/tests/addsub.c: testing genPlus shortcut
7785
7786 2003-11-15  Borut Razem <borut.razem AT siol.net>
7787
7788         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
7789
7790 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7791
7792         * src/SDCCcse.c (cseBBlock): fixed bug #527779
7793         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
7794         ordering is immaterial.
7795         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
7796
7797 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7798
7799         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
7800         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
7801         (SIGSEV) of bug #840381
7802         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
7803         unlink new file before rename if new and old filenames are the same)
7804
7805 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7806
7807         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
7808         uninitialized variables) for the mcs51. Set environment variable
7809         SDCC_GENRAMCLEAR to test.
7810         xdata initialization slightly shorter
7811
7812 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7813
7814         * src/SDCCsymt.h,
7815         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
7816         #838241 & 780691 (basicly the same bug)
7817         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
7818         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
7819
7820 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
7821
7822         * src/SDCCmain.c (linkEdit): "fix" #834252
7823
7824 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7825
7826         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
7827         * src/SDCCast.h,
7828         * src/SDCC.y: fixed bug #819403
7829
7830 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7831
7832         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
7833         the reentrant attribute.
7834         * src/hc08/gen.c (genPackBits): added missing stack readjustment
7835         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
7836         simulation
7837         * src/SDCCast.c (decorateType): fixed bug with storage class not being
7838         updated during pointer dereference; f.e. ~(((char *)1)*) was being
7839         erroneously reduced to a literal.
7840         * src/hc08/ralloc.c (packRegisters, rematStr),
7841         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
7842         some cases
7843
7844 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7845
7846         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
7847         * doc/sdccman.lyx: changed from 'article' to 'book'
7848         * doc/Makefile: readded test_suite_spec and cdbfileformat
7849
7850 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
7851
7852         * device/include/stdlib.h: include malloc.h to comply with ANSI
7853         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
7854
7855 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7856
7857         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
7858         * doc/clean.mk: also remove *.out files
7859         * doc/sdccman.lyx: some additions, larger top/bottom margins
7860
7861 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7862
7863         * src/SDCC.y: fixed bug #837365
7864         * support/regression/tests/bitopcse.c
7865         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
7866         a symbol (might be valop instead)
7867         * device/lib/Makefile.in: added errno.c to HC08SOURCES
7868         * device/lib/clean.mk: added hc08 to the cleaning list
7869
7870 2003-11-04  Borut Razem <borut.razem AT siol.net>
7871
7872         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
7873           made 2003-11-04
7874         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7875           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
7876           malloc is declared in standard stdlib.h
7877
7878 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7879
7880         * device/lib/hc08/Makefile: need to clean .rel not .o files
7881         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
7882
7883 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7884
7885         * src/port.h,
7886         * src/hc08/main.c,
7887         * src/mcs51/main.c,
7888         * src/ds390/main.c,
7889         * src/z80/main.c,
7890         * src/avr/main.c,
7891         * src/pic/main.c,
7892         * src/pic16/main.c,
7893         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
7894         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
7895         tests (which uses the port's oclsExpense function)
7896         * src/SDCC.y,
7897         * src/SDCCast.c,
7898         * src/SDCCicode.c,
7899         * src/hc08/gen.c,
7900         * src/ds390/gen.c,
7901         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
7902
7903 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7904
7905         * src/SDCCcse.c (ifxOptimize),
7906         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
7907         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
7908         deleting the IFX iCode.
7909         * src/hc08/ralloc.c: reduced unneeded slocs
7910         * src/hc08/gen.c: fixed bug in asmopToBoolean
7911
7912 2003-11-04  Borut Razem <borut.razem AT siol.net>
7913
7914         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
7915           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7916           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
7917           transferred to configure
7918
7919 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
7920
7921         Use headers defined in the C[++] standards:
7922         * sim/ucsim/gui.src/serio.src/fileio.cc
7923         * sim/ucsim/gui.src/serio.src/frontend.cc
7924         * sim/ucsim/gui.src/serio.src/main.cc
7925         * sim/ucsim/gui.src/serio.src/posix_signal.cc
7926         * support/Util/NewAlloc.c
7927         * as/hc08/lklibr.c
7928         * as/mcs51/lklibr.c
7929         * as/z80/aslist.c
7930         * as/z80/assym.c
7931
7932 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7933
7934         * Added MSVC projects for hc08 assembler and linker:
7935         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
7936         /as/hc08/link_hc08.dsp
7937
7938 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
7939
7940         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
7941
7942 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
7943
7944         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
7945
7946 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7947
7948         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
7949
7950 2003-10-31  Borut Razem <borut.razem AT siol.net>
7951
7952         * support/cpp2/cpplib.h,
7953           support/cpp2/cpplib.c,
7954           support/cpp2/cpplex.c,
7955           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
7956           to switch _asm block preprocessing on / off. Default is
7957           #pragma preproc_asm +
7958
7959 2003-10-31  Borut Razem <borut.razem AT siol.net>
7960
7961         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
7962           when outputting comment blocks (when executed with -C option) and
7963           _asm (SDCPP specific) blocks
7964
7965 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7966
7967         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
7968
7969 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
7970
7971         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
7972
7973 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
7974
7975         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
7976         * src/SDCCast.c (decorateType): fixed bug #832664
7977
7978 2003-10-31  Borut Razem <borut.razem AT siol.net>
7979
7980         * support\cpp2\cpplex.c: fixed for SDCPP:
7981           comments(when executed with -C option) and _asm blocks
7982           were included even if they where in skipped #if block.
7983           Applied solution from GCC cpp 3.3.2
7984
7985 2003-10-31  Borut Razem <borut.razem AT siol.net>
7986
7987         * src/SDCC.lex: sdcc now understands both formats:
7988           '# <line_number> <file_name>' and
7989           '#line <line_number> <file_name>'
7990         * support/cpp2/cppmain.c: sdcpp now generates the standard
7991           '# <line_number> <file_name>' instead of former
7992           '#line <line_number> <file_name>'
7993
7994 2003-10-30  Borut Razem <borut.razem AT siol.net>
7995
7996         * support/cpp2/cpphash.h,
7997         * support/cpp2/cpplib.h
7998         * support/cpp2/cpplex.c,
7999         * support/cpp2/cppmain.c,
8000         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
8001
8002 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8003
8004         Fixed a number of problems revealed by bug #827883.
8005         * src/SDCCloop.c (loopInvariants): Spill location of the
8006         result operand should be recomputed if extracted from
8007         a loop. Also, don't extract assignments of an iTemp
8008         from a literal.
8009         * src/SDCCast.c (isConformingBody): loop reversal should
8010         not occur if the control variable is involved with a
8011         relational operator.
8012
8013 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
8014
8015         * .version: bumped to 2.3.6 to reflect the big improvements
8016         made by Erik and Klaus. Thanks!
8017
8018 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
8019
8020         Replaced the livrange code.
8021         * src/SDCClrange.c: added new LR code
8022         * src/SDCCloop.c,
8023         * src/SDCCBBlock.h: removed remainig parts from old LR code
8024         * src/ds390/ralloc.c,
8025         * src/ds390/gen.c: minor fixes to make it work with new code
8026
8027 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8028
8029         * as/hc08/asm.h,
8030         * as/hc08/lkrloc.c,
8031         * src/hc08/gen.c,
8032         * src/hc08/ralloc.c: Fix various warnings related to the hc08
8033         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
8034         (tweaked fix for bug #818696)
8035
8036 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8037
8038         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
8039
8040 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8041
8042         * src/SDCCmain.c,
8043         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
8044         * src/mcs51/gen.c (gencjneshort),
8045         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
8046         more efficient (per Scott Bronson's suggestion)
8047
8048 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8049
8050         Extended the semantics of the critical keyword to include
8051         individual statements. See RFE #827755 and #799831
8052         * src/SDCC.y
8053         * src/SDCCicode.c
8054         * src/SDCCopt.c
8055         * src/SDCCast.c
8056         * support/Util/SDCCerr.c
8057         * support/Util/SDCCerr.h
8058         * src/mcs51/gen.c
8059         * src/ds390/gen.c
8060         * src/hc08/gen.c
8061
8062 2003-10-19  Borut Razem <borut.razem AT siol.net>
8063
8064         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
8065
8066 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8067
8068         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
8069         Fixed bug #818696
8070         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
8071         and predecrement operand is displayed
8072
8073 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
8074
8075         * src/SDCCval.c (valMinus): fixed bug #826041
8076
8077 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8078
8079         Some hc08 related updates that I missed earlier
8080         * sim/ucsim/stypes.h
8081         * support/regression/ports/hc08/spec.mk
8082
8083 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8084
8085         New target "hc08" for the Motorola 68hc08 family of micros
8086
8087         * configure
8088         * configure.in
8089         * Makefile
8090         * src/hc08/*
8091         * src/SDCCmain.c
8092         * src/port.h
8093         * sim/ucsim/hc08.src/*
8094         * sim/ucsim/configure.in
8095         * src/ucsim/configure
8096         * sim/ucsim/packages_in.mk
8097         * as/hc08/*
8098         * as/Makefile
8099         * device/include/mc68hc908qy.h
8100         * device/lib/hc08/*
8101         * device/lib/Makefile.in
8102         * support/regression/ports/hc08/*
8103         * support/regression/Makefile
8104
8105 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8106
8107         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
8108         regression test
8109         * src/ds390/gen.c (genCast): fixed bug #821957
8110
8111 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
8112
8113         * device/lib/logf.c: "fixed" overlay bug
8114         * support/regression/ports/host/spec.mk: added m library
8115         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
8116         * support/regression/tests/float_trans: added (for Eric)
8117
8118 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
8119
8120         * src/mcs51/gen.c (genCpl): fixed bug
8121         http://sf.net/mailarchive/message.php?msg_id=6263915
8122
8123 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
8124
8125         * src/SDCCast.c (decorateType): added extended constant folding
8126         * src/SDCCsymt.c (computeType): cleanup
8127         * src/SDCCval.c (valShift): minor optimization
8128         * support/regression/tests/ast_constant_folding.c: added
8129
8130 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8131
8132         * src/SDCCmain.c: removed some unintended changes
8133
8134 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8135
8136         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
8137         * src/z80/gen.c: fixed part of bug #817589
8138         * src/SDCCsymt.c (checkFunction): fixed bug #817895
8139
8140 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
8141
8142         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
8143         * src/SDCCcflow.c
8144         * src/SDCCcse.c
8145         * src/SDCCdflow.c
8146         * src/SDCClabel.c
8147         * src/SDCClrange.c
8148         * src/SDCCmem.c
8149         * src/SDCCopt.c
8150         * src/SDCCpeeph.c
8151         * src/SDCCset.c
8152         * src/avr/ralloc.c
8153         * src/ds390/ralloc.c
8154         * src/izt/ralloc.c
8155         * src/mcs51/ralloc.c
8156         * src/pic/ralloc.c
8157         * src/pic16/ralloc.c
8158         * src/xa51/ralloc.c
8159         * src/z80/ralloc.c
8160         * src/z80/gen.c: removed unused label "release:"
8161
8162 2003-10-06  Borut Razem <borut.razem AT siol.net>
8163
8164         * src/SDCC.lex: removed definition of unused variables
8165           save_optimize and save_options
8166
8167 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
8168
8169         * clean.mk: removed '=' in "-maxdepth=1"
8170         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
8171         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
8172
8173 2003-10-06  Borut Razem <borut.razem AT siol.net>
8174
8175         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
8176           my_unput() replaced by unput()
8177
8178 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
8179
8180         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
8181         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
8182         type-punned pointer will break strict-aliasing rules"
8183         Old LR behaviour is again default; Klaus' LR can be choosen by
8184         defining the environment variable LRKLAUS
8185         * src/SDCCBBlock.h
8186         * src/SDCCloop.c
8187         * src/SDCClrange.c
8188         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
8189         * clean.mk: fixed removal of files in bin/CVS/
8190         * device/lib/clean.mk: fixed removal of directories small and large
8191         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
8192         * src/SDCCicode.c,
8193         * src/SDCCval.c: removed superflous test for pedantic
8194
8195 2003-10-05  Borut Razem <borut.razem AT siol.net>
8196
8197         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
8198           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
8199           message "unmatched #pragma SAVE and #pragma RESTORE"
8200
8201 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8202
8203         * doc/sdccman.lyx: various additions and updates (interrupts, inline
8204           assembly, critical functions, atomic, nojtbound)
8205
8206 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
8207
8208         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
8209         * src/SDCCBBlock.h
8210         * src/SDCCloop.c
8211         * src/SDCCloop.h
8212         * src/SDCClrange.c
8213
8214 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8215
8216         * src/z80/gen.h,
8217         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8218         * src/mcs51/gen.h
8219         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8220         * src/ds390/gen.h
8221         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8222         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
8223         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
8224
8225 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8226
8227         * src/z80/gen.c (genRet): fixed bug #524753
8228         * src/z80/gen.c (genCast): fixed internal error on cast from
8229         pointer to long
8230         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
8231         fix for bug #477835 to the z80
8232         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
8233         for tracking iCodes in the peephole optimizer for z80
8234
8235 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8236
8237         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
8238         the other part of bug #814548
8239         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
8240
8241 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
8242
8243         * src/SDCCcse.c: fixed part of bug #814548
8244
8245 2003-09-28  Borut Razem <borut.razem AT siol.net>
8246
8247         * src/asm.c: rewrite of printILine() to use temporary file instead
8248           a pipe
8249         * src/xa51/main.c: commented out declaration of int rewinds
8250
8251 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8252
8253         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
8254
8255 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8256
8257         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
8258         * src/asm.c (printILine): Fixed bug #811015
8259
8260 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8261
8262         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
8263         freeing.
8264
8265 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8266
8267         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
8268         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
8269         to correctly handle general case of AOP_PAIRPTR
8270         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
8271
8272 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8273
8274         * src/mcs51/ralloc.c (fillGaps),
8275         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
8276         register positioning bug)
8277
8278 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
8279
8280         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
8281
8282 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8283
8284         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
8285         genCodePointerGet, genGenPointerGet, genFarPointerSet,
8286         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
8287         (ralloc doesn't intentionally do this now, but perhaps later)
8288         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
8289         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
8290         register positioning bugs (Fixed bug #762602 and #795325)
8291         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
8292         (Fixed bug #808779)
8293         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
8294         lines that --i-code-in-asm generates
8295
8296 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8297
8298         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
8299         trying to fclose a FILE* that was already closed.
8300
8301 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8302
8303         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
8304         of const struct should be treated as if const themselves)
8305
8306 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
8307
8308         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
8309
8310 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8311
8312         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
8313         Unix (/n) and DOS (/r/n) line terminations.
8314
8315 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8316
8317         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
8318         bug #613775
8319
8320 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8321
8322         * src/mcs51/gen.c (genFunction, genEndFunction),
8323         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
8324         and restore of EA so that stack offsets to parameters are
8325         correct when using both critical and reentrant/stack-auto.
8326         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
8327         size (can be triggered in error if sloc is shared between
8328         different sized objects)
8329         * device/include/float.h: fixed macros to explicitly use
8330         unsigned long where needed
8331
8332 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
8333
8334         Feature req. 799831: added code to allow nesting of critical functions
8335         * src/mcs51/gen.c (genFunction, genEndFunction)
8336         * src/ds390/gen.c (genFunction, genEndFunction)
8337
8338 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8339
8340         * src/SDCCsymt.c (sclsFromPtr),
8341         * src/SDCCsymt.h,
8342         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
8343         support for standard C idiom of memory mapped variables; for
8344         example, *((xdata int*)0x1234) = 1 is now internally equivalent
8345         to xdata int at 0x1234 tempvar = 1.
8346         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
8347         provided by Akiya ISHIDA
8348
8349 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
8350
8351         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
8352         * src/SDCCval.c (constVal): added reduction from int to char
8353         * src/SDCCval.c (valMult, valDiv): fixed sign handling
8354         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
8355         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
8356         to ignore the sign
8357         * support/regression/tests/shifts.c: fixed
8358
8359 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8360
8361         * src/z80/gen.c (genXor): Fixed bug #805445
8362
8363 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8364
8365         Fixed bug #621531 (const & volatile confusion in the type chain).
8366         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
8367         refer to the const or volatile state of the pointer itself.
8368
8369         * src/SDCCast.c
8370         * src/SDCCglue.c
8371         * src/SDCCicode.c
8372         * src/SDCCsymt.c
8373         * src/SDCCval.c
8374         * src/SDCC.y
8375         * src/SDCCsymt.h
8376         * src/pic/gen.c
8377         * src/pic/ralloc.c
8378         * src/pic16/gen.c
8379         * src/pic16/ralloc.c
8380         * support/regression/tests/const.c
8381
8382 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8383
8384         When checking for duplicated modules, use absolute paths
8385         instead of relative paths.  Files changed:
8386
8387         * as/mcs51/lklib.c
8388         * link/z80/lklib.c
8389
8390 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8391
8392         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
8393
8394 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8395
8396         * device/include/string.h: added size_t typedef, changed
8397         prototypes to use size_t, eliminated separate reentrant and
8398         non-reentrant declarations, added _memmove declaration
8399         * device/lib/_memcpy.c: changed to use size_t instead of int,
8400         changed /4 to >>2 to avoid division library call
8401         * device/lib/_memcmp.c,
8402         * device/lib/_memset.c,
8403         * device/lib/_strncat.c,
8404         * device/lib/_strncpy.c,
8405         * device/lib/_strncmp.c: changed to use size_t instead of int
8406         * device/lib/_memmove.c: new file (fixed bug #772294)
8407         * device/lib/Makefile.in: added _memmove.c
8408         * device/lib/z80/asm_strings.s: fixed bug #772290
8409         * support/regression/tests/bitfields.c: attempt to fix host assertion
8410         failure on amd64-unknown-linux2.2
8411
8412 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8413
8414         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
8415         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
8416         * as/z80/asmain.c (main): fixed bug #801766
8417
8418 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
8419
8420         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
8421         compilers
8422
8423 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8424
8425         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
8426         reported in bug #800609
8427
8428 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
8429
8430         * Top header beautifications in src/pic16 directory:
8431           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
8432           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
8433           pcoderegs.h, ralloc.c, ralloc.h
8434         * main.c: added top header and GPL license notice
8435         * pcode.c: fixed the if-conditional warning
8436
8437 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
8438
8439         * device/lib/_mullong.c: replaced int by short for gcc
8440
8441 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8442
8443         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
8444         and JUMPTABLE iCodes properly now (worked by accident before)
8445         * src/mcs51/gen.c (leftRightUseAcc),
8446         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
8447         iCode properly now. Use getSize instead of nRegs since a & b
8448         aren't part of the nRegs tally.
8449
8450 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
8451
8452         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
8453         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
8454           before instructions that use the _STATUS register
8455
8456 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
8457
8458         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
8459         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
8460         fetching of the pointer
8461         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
8462         copied from genNearPointerSet()
8463         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
8464         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
8465         If they pop r0/r1 they must be called in the opposite order than aopOp().
8466         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
8467         (resp. --stack-auto), prepared for --xstack
8468
8469 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8470
8471         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
8472
8473 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8474
8475         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
8476         these ports have their own __sdcc_external_start()
8477
8478 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
8479
8480         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8481         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
8482         type for bits was changed. It resulted in bit variables becoming
8483         global, which is not permitted in PIC 14 assembly output.
8484
8485 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8486
8487         * doc/sdccman.lyx: various additions and updates. Rearranged sections
8488
8489 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8490
8491         Z80 and MCS51 linkers complaint if a public symbol is defined
8492         in more than one library module:
8493
8494         * as/mcs51/lklib.c
8495         * link/z80/lklib.c
8496         * as/mcs51/Makefile.in
8497
8498 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8499
8500         A few small changes that speed up the peephole optimizer.
8501
8502         * src/SDCCpeeph.c
8503
8504 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8505
8506         Try to make the peephole optimizer smarter by maintaining
8507         an association between the assembly source code and the
8508         iCodes that originated them. Put this information to use
8509         with a new peephole rule condition "notVolatile" so that
8510         the rules can be aggressive yet still safe.
8511
8512         * src/SDCCpeeph.c
8513         * src/SDCCpeeph.h
8514         * src/mcs51/gen.c
8515         * src/mcs51/peeph.def
8516
8517 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8518
8519         Fixed bug #741761
8520
8521         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
8522         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
8523         if the left or right operand symbols have the accuse flag set.
8524
8525 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8526
8527         Changed the type of the result of the ! (NOT) operator to char;
8528         previously it returned the same type as the source. This allows
8529         us to eliminate all the genFloatNot functions (all of its target
8530         implementations were very buggy) since !float can use the same
8531         code as !long now.
8532
8533         * src/SDCCicode.c (ast2iCode): ! returns char
8534         * src/mcs51/gen.c (genNot, genNotFloat),
8535         * src/ds390/gen.c (genNot, genNotFloat),
8536         * src/z80/gen.c (genNot, genNotFloat),
8537         * src/pic/gen.c (genNot, genNotFloat),
8538         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
8539
8540 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
8541
8542         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8543         1. Interrupt would not compile properly. Ensure PCLATH register is saved
8544            during interrupts. Ensure WSAVE is located at a shared bank address.
8545         2. Fixed page selection in some places
8546         3. Fixed BTFSS/C to where necessary use registers directly and not simply
8547            the registers name strings.
8548         4. Fixed "signed / unsigned compare" compiler warnings.
8549         5. The PIC port manages its own allocation of the general purpose
8550            registers, but makes no attempt to reuse them. As a result when
8551            compiling it soon runs out of general purpose registers. Some
8552            additional code was added to the files pcode.c and device.c to walk
8553            through the function call tree and rename the registers so that they
8554            get reused.
8555
8556         * src/pic/device.c
8557         * src/pic/gen.c
8558         * src/pic/glue.c
8559         * src/pic/pcode.c
8560         * src/pic/pcode.h
8561         * src/pic/ralloc.c
8562         * src/pic/ralloc.h
8563         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
8564         genPlus() & genMinus() when the result is the same as left or right
8565
8566 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8567
8568         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
8569
8570 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8571
8572         Made bitfield a distinct type from bit so that bitfields
8573         convert as per ANSI C and bits retain their traditional
8574         boolean style behaviour. Implemented bitfield support in
8575         the z80 port.
8576
8577         * src/SDCCsymt.h,
8578         * src/SDCCsymt.c,
8579         * src/SDCCast.c,
8580         * src/cdbFile.c,
8581         * src/mcs51/gen.c,
8582         * src/ds390/gen.c: bit v bitfield split
8583         * src/z80/gen.c: New support for bitfields
8584         * support/regression/tests/bitfields.c: reenabled z80,
8585         added more tests
8586
8587 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8588
8589         Rules 246.x, 247.x relate to bitfields, the others speed up
8590         access to xdata mapped I/O devices.
8591
8592         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
8593
8594 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8595
8596         Cleaned up genPackBits and genUnpackBits and added two helper
8597         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
8598         for literal assignments in genPackBits (thanks to Frieder for
8599         reminding me).
8600
8601         * src/mcs51/gen.c
8602         * src/ds390/gen.c
8603
8604 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8605
8606         Fixed bug #748310 (pointer to function type mishandled when the
8607         function name is omitted). Also fixed a SIGSEGV when a function
8608         attribute (reentrant, etc) is used on a non-function or on a
8609         function but misplaced before the parameter list.
8610
8611         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
8612         bug #748310
8613         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
8614         * support/Util/SDCCerr.h,
8615         * support/Util/SDCCerr.c: Added func attr misuse error msg
8616
8617 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
8618
8619         Fixed bug #787649 by anonymous
8620         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
8621         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
8622
8623 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8624
8625         Fixed numerous bitfield problems.
8626
8627         * src/SDCC.y: More bitfield related error checking
8628         * src/SDCCsymt.h,
8629         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
8630         * support/Util/SDCCerr.h,
8631         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
8632         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
8633         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
8634         * support/regression/tests/bitfields.c: tests added
8635
8636 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8637
8638         Made the constant following the "interrupt" keyword optional. If
8639         omitted, the function will not automatically be given an entry
8640         in the interrupt vector table (similar to #pragma NOIV, but
8641         less syntacticly kludgy). The interrupt number is also now
8642         range checked. Also fixed a bug in the high order bit example
8643         in the manual.
8644
8645         * src/SDCC.y
8646         * src/SDCCmem.c
8647         * src/SDCCglue.c
8648         * src/SDCCsymt.h
8649         * support/Util/SDCCerr.c
8650         * support/Util/SDCCerr.h
8651         * doc/sdccman.lyx
8652
8653 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
8654
8655         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
8656         * src/SDCCicode.c (operandOperation): rewritten some ops
8657         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
8658         * src/SDCCsymt.c (computeType): literals are handled the same way as any
8659         other type
8660         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
8661         be re-activated by defining REDUCE_LITERALS)
8662         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
8663         unsigned, but are signed by default
8664         * src/SDCCval.c (constVal): rearranged
8665         * src/SDCCval.c (valMod): preliminary fix
8666         * src/SDCCval.c (valCastLiteral): use TYPE_* types
8667         * support/regression/literalop.c: added, work in progress
8668
8669 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8670
8671         Generate warnings for useless declarations like "char data;"
8672         that don't do what new users expect.
8673
8674         * src/SDCC.y
8675         * support/Util/SDCCerr.h
8676         * support/Util/SDCCerr.c
8677
8678 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
8679
8680         * src/SDCCval.c (valMult): fix overflow detection of negative int
8681
8682 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8683
8684         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
8685
8686         Changes to support big endian targets:
8687
8688         * src/ports.h
8689         * src/SDCCglue.c
8690         * src/avr/main.c
8691         * src/ds390/main.c
8692         * src/izt/i186.c
8693         * src/mcs51/main.c
8694         * src/pic/main.c
8695         * src/pic16/main.c
8696         * src/xa51/main.c
8697         * src/z80/main.c
8698
8699 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
8700
8701         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
8702         * device/lib/time.c: fixed warning "integer overflow in expression"
8703
8704 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
8705
8706         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
8707         * src/SDCCval.c (constVal): changed default to signed; hex and octal
8708         constants are unsigned; added recognition of "u" flag for unsigned
8709         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
8710         * src/SDCCval.c (valDiv, valMod): fixed signdness
8711         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
8712         signedness of modulo, left and right shift
8713         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
8714         * support/Util/SDCCerr.h: added warning W_INT_OVL
8715         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
8716         * src/SDCCast.c (ast_print): improved output of constants
8717
8718 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8719
8720         Fixed some warnings when building with MSVC:
8721
8722         * as\mcs51\asdata.c
8723         * as\z80\asdata.c
8724         * as\mcs51\asm.h
8725         * as\z80\asm.h
8726         * link\z80\aslink.h
8727         * link\z80\lkdata.c
8728         * link\z80\lkeval.c
8729         * link\z80\lkgb.c
8730         * link\z80\lkihx.c
8731         * link\z80\lks19.c
8732         * link\z80\lksym.c
8733         * support\cpp2\cpplib.c
8734         * src\ds390\gen.c
8735         * src\mcs51\gen.c
8736
8737 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
8738
8739         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
8740
8741 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8742
8743         * support\librarian\clean.mk: Do not remove Makefile.
8744         * support\librarian\Makefile: added.
8745
8746 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8747
8748         Added librarian to MSVC build:
8749         * all.dsp
8750         * sdcc.dsw
8751         * support\librarian\librarian.dsp
8752
8753         'configure' not needed for librarian, removed:
8754         * support\librarian\configure
8755         * support\librarian\configure.in
8756         * support\librarian\config_in.h
8757         * support\librarian\Makefile.in
8758
8759         Hopefully these ones built the librarian and the rest of sdcc properly:
8760         * Makefile
8761         * Makefile.common.in
8762
8763         Messed up 'configure', so revert to previous version:
8764         * configure
8765         * configure.in
8766
8767 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
8768
8769         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
8770         there, while the mantissa of a double is "only" 53 bits wide.
8771
8772 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8773
8774         Adding sdcclib to the build.  MSVC project coming soon.
8775         Files added/changed:
8776
8777         * support\librarian\clean.mk
8778         * support\librarian\configure
8779         * support\librarian\configure.in
8780         * support\librarian\config_in.h
8781         * support\librarian\Makefile.bcc
8782         * support\librarian\Makefile.in
8783         * support\librarian\sdcclib.c
8784         * Makefile.bcc
8785         * Makefile
8786         * Makefile.common.in
8787         * configure
8788         * configure.in
8789
8790 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8791
8792         Linker now complaints if linked modules have conflicting options, for
8793         example, one compiled using --model-large and another one compiled with
8794         --model-small.  The following files were modified:
8795
8796         * as\mcs51\asdata.c
8797         * as\mcs51\aslink.h
8798         * as\mcs51\asm.h
8799         * as\mcs51\asmain.c
8800         * as\mcs51\asout.c
8801         * as\mcs51\i51pst.c
8802         * as\mcs51\lkdata.c
8803         * as\mcs51\lklibr.c
8804         * as\mcs51\lkmain.c
8805         * as\z80\asdata.c
8806         * as\z80\asm.h
8807         * as\z80\asmain.c
8808         * as\z80\asout.c
8809         * as\z80\z80pst.c
8810         * link\z80\aslink.h
8811         * link\z80\lkdata.c
8812         * link\z80\lklibr.c
8813         * link\z80\lkmain.c
8814         * src\SDCCglue.c
8815
8816 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8817
8818         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
8819         as/mcs51/lklibr.c: Generate a warning when a library is not found.
8820
8821 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
8822
8823         * src/z80/mappings.i: fix _mul[us][int,long] entries
8824
8825 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8826
8827         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
8828
8829 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8830
8831         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
8832         * support/regression/tests/bitopcse.c: added
8833         fixed warning:
8834         * src/avr/gen.c:
8835         * src/pic/gen.c:
8836         * src/pic16/gen.c:
8837         * src/z80/gen.c:
8838         * src/xa51/gen.c:
8839
8840 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8841
8842         added support for new library format to z80, gbz80 linkers:
8843         *link/z80/aslink.h
8844         *link/z80/lklex.c
8845         *link/z80/lklib.c
8846         *link/z80/lklist.c
8847
8848 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8849
8850         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
8851         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
8852
8853 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
8854
8855         added DUMMY_READ_VOLATILE:
8856         * src/SDCC.y:
8857         * src/avr/gen.c:
8858         * src/xa51/gen.c:
8859         * src/z80/gen.c:
8860         * src/pic/gen.c:
8861         * src/pic16/gen.c:
8862         * src/mcs51/gen.c:
8863         * src/ds390/gen.c:
8864         * src/SDCCcse.c (algebraicOpts): many improvements
8865         * src/SDCCcse.h: removed algebraicOpts()
8866         * src/SDCCicode.c (picDummyRead): added
8867
8868 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8869
8870         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
8871         "Insufficient space in data memory".
8872
8873 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8874
8875         * src/mcs51/gen.c: fixed bug #771358
8876         * src/z80/gen.c: fixed bug #759087
8877
8878 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
8879
8880         * src/pic16/glue.c: minor cleanup by Vangelis
8881
8882 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8883
8884         * device/include/regc515c.h: fixed #758477
8885         * device/lib/_gptrget.c: saving some cycles in generic pointer get
8886         * device/lib/_gptrput.c: saved a few bytes
8887         * my tab spacing is 8, yours too?)
8888         * device/lib/_ser.c: process RX bytes earlier than TX bytes
8889         * device/lib/serial.c: process RX bytes earlier than TX bytes
8890         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
8891
8892 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8893
8894         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
8895
8896 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8897
8898     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
8899
8900 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
8901
8902         * device/lib/Makefile.in: bad fix, reverted to 1.43
8903
8904 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
8905
8906         * device/lib/Makefile.in: added missing z80 object files
8907
8908 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
8909
8910         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
8911         pic16 progress by Vangelis:
8912         * src/SDCCglobl.h:
8913         * src/SDCCmain.c:
8914         * src/pic/Makefile:
8915         * src/pic:
8916         * pic/Makefile:
8917         * pic16/device.c:
8918         * pic16/device.h:
8919         * pic16/gen.c:
8920         * pic16/gen.h:
8921         * pic16/genarith.c:
8922         * pic16/glue.c:
8923         * pic16/main.c:
8924         * pic16/pcode.c:
8925         * pic16/pcode.h:
8926         * pic16/pcodepeep.c:
8927         * pic16/peeph.def:
8928
8929 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8930
8931     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
8932
8933 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8934
8935     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
8936     added gbz80 build to MSVC project.
8937     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
8938     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
8939     from 8051 stuff and setup so it links using a .lnk file.
8940
8941 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8942
8943     * support/librarian/sdcclib.c: sdcc librarian.
8944     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
8945     with sdcclib.
8946
8947 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8948
8949     * as/mcs51/lkmain.c: properly handle extensions in function afile.
8950
8951 2003-07-02  Borut Razem <borut.razem AT siol.net>
8952
8953         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
8954         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
8955         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
8956         src/xa51/main.c, src/z80/main.c:
8957         virtualization of glue() function: each port has it's own glue function,
8958         which is accessed by do_glue function pointer in PORT.general structure
8959
8960 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
8961
8962         * DS800C400 fun, improved ROM interface and tinibios.
8963
8964 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
8965
8966         * More support for DS80C400. Now includes beginning of interface to ROM.
8967
8968 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
8969
8970         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
8971
8972 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8973
8974         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
8975
8976 2003-06-19  Borut Razem <borut.razem AT siol.net>
8977
8978         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
8979
8980 2003-06-19  Borut Razem <borut.razem AT siol.net>
8981
8982         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
8983         fixed Z80 port - crt0.o: cannot open.
8984
8985 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
8986
8987         * support/Util/MySystem.c (merge_command): revert bad fix
8988
8989 2003-06-18  Borut Razem <borut.razem AT siol.net>
8990
8991         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
8992
8993 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8994
8995         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8996         option --use-stdout sends errors to stdout instead of stderr.
8997
8998 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
8999
9000         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
9001
9002 2003-06-15  Borut Razem <borut.razem AT siol.net>
9003
9004         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
9005         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
9006         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
9007         fixed width array of pointers replaced with sets;
9008         multiple include and lib paths ared transferred to preprocessor and linker
9009         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
9010         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
9011         fixed width array of pointers
9012         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
9013         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
9014         fixupPath(), getPathDifference()
9015         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
9016         fixed width array of pointers
9017
9018 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
9019
9020         * src/pic16/ralloc.c: fix warnings
9021         * src/pic16/pcode.c: fix warning
9022
9023 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
9024
9025          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
9026         know all the details, but essentially this set of changes enable
9027         the pic16 port to generate movff instructions and generate assembler
9028         directives,
9029         * src/SDCCmain.c:
9030         * src/pic16/gen.c:
9031         * src/pic16/glue.c:
9032         * src/pic16/pcode.c:
9033         * src/pic16/device.c:
9034         * src/pic16/main.c:
9035         * src/pic16/pcode.h:
9036         * src/pic16/pcoderegs.c:
9037         * src/pic16/ralloc.c:
9038         * src/pic16/ralloc.h:
9039
9040 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9041
9042         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
9043         added option --vc, so sdcc errors and warnings are compatible with
9044         Microsoft Visual Studio.
9045
9046 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9047
9048         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
9049           device/lib/libfloat.lib: added atof function.
9050
9051 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
9052
9053         * doc/sdccman.lyx: updated to Lyx 1.3
9054         * doc/cdbfileformat.lyx: updated to Lyx 1.3
9055         * doc/test_suite_spec.lyx: updated to Lyx 1.3
9056         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
9057
9058 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
9059
9060         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
9061
9062 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9063
9064         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
9065           additions to the "related tools/documentation" section
9066
9067 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
9068
9069         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
9070
9071 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
9072
9073         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
9074         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
9075
9076 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
9077
9078         * doc/sdccman.lyx: fix double dash and other minor things
9079         * doc/Makefile: fix double dash
9080
9081 2003-05-28  Karl Bongers(patches from Martin Helmling)
9082         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
9083           condition and ignore commands.
9084
9085 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9086
9087         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
9088           is in parts still quite out of date, I did changes as far as I felt makes sense
9089           for a non-native english speaker.
9090           Please feel free to add to the manual or to correct my changes.
9091         * doc/Makefile: undid touching the date of intermediate tex files.
9092
9093 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9094
9095         * doc/sdccman.lyx: Manual has an index now
9096
9097 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
9098
9099         Finalize muluint/mulsint and mululong/mulslong merging:
9100         * device/lib/_mulint.c
9101         * device/lib/_mullong.c
9102         * device/lib/gbz80/mul.s
9103         * device/lib/gbz80/stubs.s
9104         * device/lib/z80/mul.s
9105         * device/lib/z80/stubs.s
9106         * src/SDCCsymt.c (initCSupport)
9107
9108 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9109
9110         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
9111         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
9112           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
9113           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
9114           instead of /Zm500.
9115
9116 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9117
9118         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
9119           the regression tests I'm not brave enough to enable 245.b, 245.c
9120         * doc/sdccman.lyx: added latex preamble for hyperref package.
9121           Using pdflatex this will give you a hyperlinked pdf file with
9122           bookmarks. (prepend '%' before /usepackage if this breaks something)
9123
9124 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9125
9126          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
9127
9128 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
9129
9130         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
9131
9132 2003-05-21    <johan AT balder>
9133
9134         * src/SDCCglue.c (printIval): fixed bug #739934
9135
9136 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
9137
9138         Applied patch from bug 737905 (renamed yylineo to mylineno):
9139         * src/altlex.c
9140         * src/SDCCast.c
9141         * src/SDCglobl.h
9142         * src/SDCC.lex
9143         * src/SDCCsymt.c
9144         * src/SDCCval.c
9145         * src/pic16/pcode.c: Cleaned warnings
9146         * src/pic16/pcodeflow.c: Cleaned warnings
9147         * src/pic16/pcoderegs.c: Cleaned warnings
9148
9149 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
9150
9151         * src/pic16/pcode.c: Cleaned warnings
9152         * src/pic16/pcodepeep.c: Cleaned warnings
9153         * src/pic16/ralloc.c: Cleaned warnings
9154
9155 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
9156
9157         * doc/sdccman.lyx: fixed bug 739745
9158         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
9159
9160 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
9161
9162         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
9163         it can be defined with CFLAGS when running configure
9164         * src/SDCCmain.c: fixed compiling + linking with object files
9165
9166 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
9167
9168         * configure.in: configure for pic16 port,
9169             added --disable-pic16-port
9170         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
9171         * src/SDCCmain.c: linkOptions is changed to set *,
9172             added if/endif conditional macros to remove options help
9173             messages from optionsTable when a port is not configured, added
9174             support for the PIc16 port in the ports table, when executing
9175             the compiler with no port specified on command line, a default
9176             port is selected with the new macro DEFAULT_PORT which is
9177             defined in port.h, in setDefaultOptions() linkOptions is removed
9178             from initialization assignment, since now it is a set,
9179             parseCmdLine uses setParseWithComma for linkOptions, in
9180             linkEdit() linkOptions are accessed with new function indexSet()
9181             which returns the i'th item of a set variable. See SDCCset.c, in
9182             linkEdit() when calling buildCmdLine(), added linkOptions as
9183             last argument. Now users can pass arguments to gplink via the
9184             -Wl option, main() uses pic16glue() to glue up pic16 programs
9185         * src/SDCCpeeph.c: various changes to support pic16
9186         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
9187             return the i'th item of the set
9188         * src/SDCCset.h: added function prototype for indexSet()
9189         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
9190         * src/clean.mk: added pic16 in CLEANALLPORTS variable
9191         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
9192             added macro DEFAULT_PORT
9193         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
9194         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
9195             generated
9196         * src/pic16/glue.c: commented out some error producing lines
9197         * src/pic16/main.c: __config directives are commented out to stop
9198             gpasm complaining and test the linkage with gplink, _linkCmd and
9199             _asmCmd changed to be more gplink and gpasm friendly
9200         * src/pic16/peeph.def: peep rule 3 is commented out, since it
9201             produced an error when parsed, peep rule 12 is added to utilize
9202             movff, but it is commented out since the pCode does not support
9203             yet a command with 2 address arguments
9204
9205 2003-05-18    <johan AT balder>
9206
9207         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
9208         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
9209 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
9210
9211         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
9212   Added feature to script commands from file.
9213
9214 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
9215
9216         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
9217         * src/SDCCutil.c: include ctype.h for win32
9218
9219 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
9220
9221         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
9222
9223 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
9224
9225         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
9226   Fixed so you can set breakpoints prior to run, run does not stop
9227   on entry now.  Add tbreak.  Other enhancements and fixes for use
9228   with ddd.
9229
9230 2003-05-12  Borut Razem <borut.razem AT siol.net>
9231
9232         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
9233
9234 2003-05-11  Borut Razem <borut.razem AT siol.net>
9235
9236         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
9237         the path of bin directory, so that PATH is the only env. variable, which has to be set
9238         in case of standard installation.
9239         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
9240         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
9241         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
9242
9243 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
9244
9245         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
9246         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
9247         temp files are in the port dir; clean the gen/test directory when
9248         generating new test.c
9249         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
9250         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
9251         * support/regression/tests/zeropad.c: added
9252
9253 2003-05-09    <johan AT balder>
9254
9255         * src/SDCCglue.c: fixed bug #597940
9256
9257 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
9258
9259         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
9260   cache sfr, optimize next,step, fix off by one sourceline,
9261   support ddd list function.
9262         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
9263
9264 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
9265
9266         * support/regression/HTMLgen.py: added compare_s2f()
9267         * support/regression/Makefile: redo 1.27
9268         * support/regression/generate-cases.py: redo 1.5
9269
9270 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
9271
9272         * support/regression/tests/float.c: workaround 33 bit hex constant
9273         * support/regression/tests/simplefloat.c: fix division for host
9274
9275 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
9276
9277         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
9278         that tame's the PIC's over-aggressive optimizer.
9279
9280 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9281
9282          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
9283          support for MSVC.
9284
9285 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
9286
9287         Initial support for DS80C400. "Hello world" runs on TINIm400
9288         (with polled I/O).
9289
9290 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
9291
9292          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
9293          * Some notes on ddd usage added in debugger/README
9294          Martin Helmling adding more features and fixes for ddd GUI debugger.
9295          Code added for nexti, stepi, up, down, and other adjustments.
9296
9297 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
9298
9299         * src/pic/pCodepeep.c non-wildcard asmops are now handled
9300         * src/pic/peeph.def Added two rules to optimize carry manipulation
9301         * src/pic/* removed debug printfs
9302
9303 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
9304
9305         * debugger/mcs51/cmd.c: added header newalloc.h
9306
9307 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
9308
9309         * as/Makefile: new EXEEXT
9310         * as/z80/Makefile: remove trailing slash of BUILDIR
9311         * as/z80/clean.mk: new EXEEXT
9312         * Makefile.common.in: add to CFLAGS (and others), don't replace it
9313         * support/cpp2/Makefile.in: new EXEEXT
9314         * src/pic/glue.c (pic14emitRegularMap): fixed warning
9315
9316 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
9317
9318         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
9319         EXEEXT was introduced to fix all related problems with targets
9320         "clean", "install" and "uninstall"; a couple of further flaws
9321         especially with "clean" have been fixed too
9322         * as/mcs51/Makefile.in
9323         * as/mcs51/clean.mk
9324         * as/z80/Makefile
9325         * Makefile
9326         * clean.mk
9327         * debugger/mcs51/Makefile.in
9328         * debugger/mcs51/clean.mk
9329         * link/z80/Makefile
9330         * link/z80/Makefile.in
9331         * link/z80/clean.mk
9332         * link/Makefile
9333         * packihx/Makefile.in
9334         * packihx/clean.mk
9335         * sim/ucsim/Makefile
9336         * sim/ucsim/clean.mk
9337         * sim/ucsim/avr.src/Makefile.in
9338         * sim/ucsim/avr.src/clean.mk
9339         * sim/ucsim/s51.src/Makefile.in
9340         * sim/ucsim/s51.src/clean.mk
9341         * sim/ucsim/xa.src/Makefile.in
9342         * sim/ucsim/xa.src/clean.mk
9343         * sim/ucsim/z80.src/Makefile.in
9344         * sim/ucsim/z80.src/clean.mk
9345         * sim/ucsim/main_in.mk
9346         * sim/ucsim/packages_in.mk
9347         * sim/ucsim/gui.src/Makefile.in
9348         * sim/ucsim/gui.src/serio.src/Makefile.in
9349         * sim/ucsim/gui.src/serio.src/clean.mk
9350         * src/Makefile.in
9351         * src/clean.mk
9352         * support/cpp2/Makefile.in
9353         * support/cpp2/clean.mk
9354         * support/makebin/Makefile
9355         * support/makebin/clean.mk
9356         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
9357         * doc/sdccman.lyx: --program-suffix no longer needed
9358
9359 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
9360
9361          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
9362          Martin Helmling added support for ddd GUI debugger.
9363          Code added to display assembly, set variables, and other commands
9364          to interface to ddd.
9365
9366 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
9367
9368         * as/Makefile: fix target clean
9369         * as/clean.mk: fix target clean
9370         * as/z80/clean.mk: fix target clean
9371
9372 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
9373
9374         * Makefile.common.in: added  AT EXEEXT AT
9375         * configure.in: removed all mingw32 stuff
9376         * configure: rebuilt from configure.in
9377         * doc/sdccman.lyx: updated section "installation"
9378         * support/scripts/sdcc_mingw32: adapted to configure
9379         * support/scripts/sdcc_cygwin_mingw32: added
9380
9381 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
9382
9383         * src/pic Added object file support for the PIC port
9384         * src/pic Applied patch from Craig Franklin (this started the object file support)
9385         * src/regression Updated the PIC regression tests for object files
9386
9387 2003-04-20  Borut Razem <borut.razem AT siol.net>
9388
9389         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
9390           lklex.c: In function `getfid':
9391           lklex.c:203: warning: array subscript has type `char'
9392         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
9393           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
9394         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
9395           stack handling macros
9396
9397 2003-04-19  Borut Razem <borut.razem AT siol.net>
9398
9399         * "handling space characters in file path" task:
9400         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
9401         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
9402         * support/Util/MySystem.h: make it self-sufficient
9403         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
9404           src/z80/main.c, sdcc/as/mcs51/lklex.c:
9405           handling space characters in file path
9406         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
9407           (it will be used by assemblers, which have their own includes, e.g. gpasm)
9408         * support/Util/MySystem.c: handling space characters in executable's path
9409
9410 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
9411
9412         * as/z80/Makefile: fix permanent rebuild of z80
9413         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
9414         * support/regression/tests/bitfields.c: added Johan's bitfields.c
9415
9416 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
9417
9418         * src/SDCCopt.c: add special case optimization to replace modulo by
9419           a power of two with a bitwise AND.
9420
9421 2003-04-18    <johan AT balder>
9422
9423         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
9424
9425 2003-04-17    <johan AT balder>
9426
9427         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
9428         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
9429
9430 2003-04-13  Borut Razem <borut.razem AT siol.net>
9431
9432         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
9433         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
9434           fixed mingw problem in adl_NORMALIZE_PATH
9435
9436 2003-04-12  Borut Razem <borut.razem AT siol.net>
9437
9438         * fixed "#pragma SAVE/RESTORE can not be nested":
9439         * src/SDCC.lex: reworked pragma handling functions
9440         * sdcc/src/SDCCglobl.h: reworked stack handling macros
9441         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
9442
9443 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9444
9445         * src/SDCCutil.c (pathEquivalent): defined but not used
9446         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
9447         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
9448         * configure: rebuilt from configure.in
9449         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9450         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9451         * device/include/Makefile.in: replace sdcc_datadir
9452         * device/lib/Makefile.in: replace sdcc_datadir
9453         * Makefile.common.in: add LDFLAGS from configure
9454         * packihx/Makefile.in: use LDFLAGS
9455         * src/Makefile.in: use LDFLAGS
9456         * support/cpp2/Makefile.in: add LDFLAGS from configure
9457         * support/makebin/Makefile: use LDFLAGS
9458         * .version: bumped version number to 2.3.5
9459
9460 2003-04-12  Borut Razem <borut.razem AT siol.net>
9461
9462         * completed "different paths" task:
9463         * src/SDCCmacro.c: fixed bug in handling quotes
9464         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
9465         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
9466
9467 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9468
9469         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
9470
9471 2003-04-11 kevin Vigor <kevin AT vigor.nu>
9472
9473         * ds390/gen.c ds390/peeph.def: fix bug 706781
9474
9475 2003-04-11  Borut Razem <borut.razem AT siol.net>
9476
9477         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
9478
9479 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
9480
9481         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
9482         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
9483          set - this bit used to not be set...).
9484         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
9485           bad code in PIC Port
9486         * src/regression/and2.c added to test bug 609268
9487         * src/regression/Makefile added and2.c to regression test
9488
9489
9490 2003-04-08    <johan AT CP255758-A>
9491
9492         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
9493         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
9494         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
9495
9496 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
9497
9498         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
9499         fix bug #487815
9500         * support/cpp2/Makefile.in: fix bug #487815
9501         * configure: rebuilt from configure.in
9502         * Makefile.common.in: docdir changed, new path suffixes
9503         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9504         * sdcc_vc_in.h: reflect changes from sdccconf.h
9505         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
9506         * src/SDCCutil.h: remove BINDIR hack
9507         * doc/sdccman.lyx: update new path hierarchy
9508
9509 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9510
9511         * src/SDCCpeeph.c: added okToRemoveSLOC test
9512
9513 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9514
9515         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
9516
9517 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9518
9519         * src/SDCCpeeph.c: added labelIsReturnOnly test
9520         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
9521
9522 2003-04-05    <johan AT balder>
9523
9524         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
9525         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
9526         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
9527         * src/SDCCast.c: fixed a warning
9528         * src/SDCCast.h: fixed a warning
9529         * src/SDCCicode.c (operandFromAst): fixed a warning
9530
9531 2003-04-04    <johan AT balder>
9532
9533         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
9534         * src/SDCCast.c (decorateType): fixed bug #715076
9535         * src/SDCC.y: fixed bug #702907
9536
9537 2003-04-03    <johan AT balder>
9538
9539         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
9540         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
9541         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
9542         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
9543         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
9544
9545 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
9546
9547         * _decdptr.c: fix return values
9548         * _gptrget.c: fix return values
9549         * _gptrgetc.c: fix return values
9550         * _gptrput.c: fix return values
9551         * _mulint.c: fix return values
9552         * as/z80/Makefile: fix 'make -j' problem
9553
9554 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
9555
9556         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
9557         * configure.in: big cleanup, updated to autoconf 2.5x
9558         * configure: rebuilt from configure.in
9559         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9560         * sdcc_vc_in.h: reflect changes from sdccconf.h
9561         * doc/Makefile: fixed a flaw in "make install"
9562
9563 2003-04-02    <johan AT balder>
9564
9565         * src/ds390/gen.c (genCmp): no comments
9566         * src/mcs51/gen.c (genCmp): no comments
9567         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
9568         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
9569
9570 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
9571
9572         * support/regression/generate-cases.py: place generated file in given sub directory
9573         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
9574         * support/regression/Makefile: improvements for 'make -j';
9575         side effect: it's simpler and faster now
9576
9577 2003-03-31  Borut Razem <borut.razem AT siol.net>
9578
9579         * src/z80/main.c: link-{port} and as-{port} defined without path
9580         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
9581
9582 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
9583
9584         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
9585
9586 2003-03-30  Borut Razem <borut.razem AT siol.net>
9587
9588         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
9589           changed type of list parameter to set
9590         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
9591         * src/port.h: changed type of do_assemble() parameter to set
9592         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
9593           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
9594           definition of "cppoutfilename" macro with NULL value in preProcess()
9595         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
9596         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
9597         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
9598           replaced with set *binPathSet
9599         * shash_add() deallocates the item, if allready exsists, before adding the new one
9600         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
9601
9602 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
9603
9604         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
9605           a nested for loop bug in the PIC port
9606         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
9607           for loops
9608
9609 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
9610
9611         * support/Util/dbuf.h: remove C++ stuff to make it portable
9612
9613 2003-03-28  Borut Razem <borut.razem AT siol.net>
9614
9615         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
9616           literal strings in stringLiteral()
9617         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
9618         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
9619           to the project
9620
9621 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
9622
9623         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
9624
9625 2003-03-26    <johan AT balder>
9626
9627         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
9628         * src/ds390/gen.c (saveRegisters): catched symbol abuse
9629         * src/SDCCast.c (decorateType): fixed " -v < 3"
9630
9631 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
9632
9633         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
9634         Added Lenny Story's debug infrastructure changes:
9635         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
9636         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
9637         * src/cdbFile.c: added
9638         * src/SDCCdebug.c: added
9639         * src/SDCCdebug.h: added
9640         * src/SDCCast.c (createFunction)
9641         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
9642         * src/SDCCmain.c (parseCmdLine, main)
9643         * src/SDCCmem.c (redoStackOffsets)
9644         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
9645         * src/SDCCsymt.h
9646         * src/common.h
9647         * src/avr/gen.c (genAVRCode)
9648         * src/ds390/gen.c (gen390Code)
9649         * src/mcs51/gen.c (gen51Code)
9650         * src/pic/gen.c (genpic14Code)
9651         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
9652         * src/xa51/gen.c (genXA51Code)
9653         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
9654
9655 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9656
9657         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
9658         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
9659
9660 2003-03-22    <johan AT balder>
9661
9662         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
9663
9664 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
9665
9666         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
9667         * doc/cdbfileformat.lyx: added, written by Lenny Story
9668         * doc/Makefile: added cdbfileformat.lyx
9669         * doc/clean.mk: added cdbfileformat.lyx
9670
9671 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
9672
9673         * src/mcs51/peeph.def: fix bug #705773
9674
9675 2003-03-20    <johan AT balder>
9676
9677         An sfr/sbit can have an "at #" AND an initializer
9678         * src/SDCCsymt.c (checkSClass):
9679         * src/SDCCmem.c (allocGlobal):
9680         * src/SDCCmem.c (allocLocal):
9681         * src/SDCCast.c (createBlock):
9682
9683 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
9684
9685         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
9686
9687 2003-03-16    <johan AT balder>
9688
9689         Undid the hackup of const and volatile, the problem is much bigger
9690         * src/SDCC.y:1.65
9691         * src/SDCCast.c:1.171
9692         * src/SDCCglue.c:1.138
9693         * src/SDCCicode.c:1.146
9694         * src/SDCCsymt.c:1.150
9695         * src/SDCCval.c:1.65
9696
9697 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
9698
9699         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
9700         * src/ds390/gen.c (genAddrOf): fixed bug #704087
9701
9702 2003-03-13    <johan AT balder>
9703
9704         Hackup const and volatile modifiers in type chains a bit:
9705         * src/SDCC.y:1.63
9706         * src/SDCCast.c:1.169
9707         * src/SDCCglue.c:1.136
9708         * src/SDCCicode.c:1.143
9709         * src/SDCCsymt.c1.146
9710         * src/SDCCsymt.h1.59
9711         * src/SDCCval.c:1.63
9712
9713 2003-03-12    <johan AT balder>
9714
9715         * src/SDCCBBlock.h: more LRH debugging junk
9716         * src/SDCCcflow.h: more LRH debugging junk
9717         * src/SDCCloop.c: more LRH debugging junk
9718         * src/SDCC.y (struct_declaration): fixed bug #697590
9719         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
9720         * src/ds390/gen.c (aopForRemat): fixed bug #700031
9721         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
9722
9723 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9724         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
9725         test function names must now match exactly).
9726         * src/SDCCcse.c: added special case in findCheaperOp to allow
9727         extending a short integer. Makes less awful code for bug 700121 test case.
9728
9729 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9730
9731         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
9732         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
9733
9734 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9735
9736         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
9737         actually called (operandsNotEqual() was called for all
9738         operandsNotEqualX tests).
9739
9740 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9741
9742         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
9743         with shorter literals. Fixes bug 700121.
9744
9745 2003-03-11    <johan AT balder>
9746
9747         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
9748
9749 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
9750
9751         * src/SDCCloop.c (mergeRegions): an evil beast is dead
9752         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
9753
9754 2003-03-10  Borut Razem <borut.razem AT siol.net>
9755
9756         * src/SDCCmain.c: pipe preprocessor's output
9757         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9758         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9759         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9760         which closes all pipes in pipeSet set
9761         * src/SDCCset.c: free deleted item in function deleteSetItem()
9762         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9763         moved from z80 to src subproject
9764         * .version: increased version number to 2.3.4
9765
9766 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
9767
9768         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
9769         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
9770         * support/regression/ports/xa51/spec.mk: fix typo
9771
9772 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
9773
9774         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
9775
9776 2003-03-09  Borut Razem <borut.razem AT siol.net>
9777
9778         * src/SDCCmain.c: pipe preprocessor's output
9779         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9780         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9781         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9782         which closes all pipes in pipeSet set
9783         * src/SDCCset.c: free deleted item in function deleteSetItem()
9784         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9785         moved from z80 to src subproject
9786
9787 2003-03-09  Borut Razem <borut.razem AT siol.net>
9788
9789         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
9790         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
9791         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
9792         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
9793         * src/SDCCglobl.h: unification of WIN32 native definitions
9794
9795 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9796
9797         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
9798
9799 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9800
9801         * src/configure.in:   check for endianess (even while cross-compiling)
9802         * src/configure:      check for endianess (even while cross-compiling)
9803         * src/configure_in.h: check for endianess (even while cross-compiling)
9804         * src/avr/gen.c:        remove old endianess stuff
9805         * src/mcs51/gen.c:      remove old endianess stuff
9806         * src/ds390/gen.c:      remove old endianess stuff
9807         * src/pic/gen.c:        remove old endianess stuff
9808         * src/pic/genarith.c:   remove old endianess stuff
9809         * src/pic/glue.c:       fix endianess check
9810         * src/pic16/gen.c:      remove old endianess stuff
9811         * src/pic16/genarith.c: remove old endianess stuff
9812         * src/pic16/glue.c:     fix endianess check
9813         * src/xa51/gen.c:       remove old endianess stuff
9814         * src/z80/gen.c:        fix endianess check
9815         * src/SDCCglue.c:       fix endianess check
9816         * src/ds390/peeph.def: fix bug 700036
9817
9818 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9819
9820         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
9821         * src/configure: find appropriate data-types on host for SDCC's int and long
9822         * src/configure.in: find appropriate data-types on host for SDCC's int and long
9823         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
9824         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
9825
9826 2003-03-07    <johan AT balder>
9827
9828         Just a big NOOP:
9829                 some minor cleanups before the big shot
9830                 OP_DEFS and OP_USES now use Kevin's protection
9831                 new option --nolabelopt
9832
9833         * src/SDCCBBlock.c:
9834         * src/SDCCast.c,:
9835         * src/SDCCcflow.c:
9836         * src/SDCCcse.c:
9837         * src/SDCCicode.c:
9838         * src/SDCCicode.h:
9839         * src/SDCClabel.c:
9840         * src/SDCCloop.c:
9841         * src/SDCCmain.c:
9842         * src/ds390/ralloc.c:
9843         * src/mcs51/ralloc.c:
9844         * src/pic/ralloc.c:
9845         * src/xa51/ralloc.c:
9846         * src/z80/ralloc.c:
9847
9848 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
9849
9850         * src/pic/pcode.c (get_op): fix 64 bit warnings
9851         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
9852         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
9853         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
9854         * support/regression/tests/malloc.c: fix 64 bit warnings
9855
9856 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
9857
9858         * src/mcs51/gen.c (genMinus): fixed bug 696436
9859
9860 2003-03-02  Borut Razem <borut.razem AT siol.net>
9861
9862         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
9863
9864 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
9865
9866         * configure.in: test for mkstemp
9867         * sdccconf_in.h: add HAVE_MKSTEMP
9868
9869 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
9870
9871         * device/include/ctype.h: removed warning while using --stack-auto
9872         * device/include/malloc.h: removed warning while using --stack-auto
9873         * device/include/string.h: removed warning while using --stack-auto
9874
9875 2003-02-23  Borut Razem <borut.razem AT siol.net>
9876
9877         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
9878         because NDEBUG is defined (see man assert)
9879         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
9880
9881 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9882
9883         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
9884         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
9885
9886 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9887
9888         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
9889         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
9890
9891 2003-02-18    <johan AT balder>
9892
9893         * as/mcs51/asmain.c (asmbl): module can start with a digit
9894         * as/z80/asmain.c (asmbl): module can start with a digit
9895
9896 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
9897
9898         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
9899         * src/asm.c: fix pipe() for Mingw32
9900
9901 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
9902
9903         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
9904         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
9905         make -V work again; --c1mode reads now from stdin
9906         * doc/sdccman.lyx: added --c1mode
9907         * support/Util/SDCCerr.c: new messages for c1 mode
9908         * support/Util/SDCCerr.h: new messages for c1 mode
9909         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
9910
9911 2003-02-15    <johan AT balder>
9912
9913         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
9914
9915 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
9916
9917         * doc/sdccman.lyx: Environment variables, -o and other minor things
9918
9919 2003-02-14    <johan AT balder>
9920
9921         * src/xa51/main.c: before anyone really tries to use it :)
9922
9923         * Install doc's in share/sdcc/doc
9924         * removed some obsolete files
9925         * Do a proper make distclean and uninstall
9926         M Makefile.common.in
9927         R sdccbuild.sh
9928         M as/Makefile
9929         M device/include/Makefile.in
9930         M device/lib/Makefile.in
9931         M doc/sdccman.lyx
9932         M link/Makefile
9933         M sim/ucsim/doc/Makefile.in
9934         M src/clean.mk
9935         R src/avr/peeph.rul
9936         R src/xa51/peeph.rul
9937         M support/cpp2/Makefile.in
9938         M support/makebin/Makefile
9939
9940
9941 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
9942
9943         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
9944
9945 2003-02-10  Borut Razem <borut.razem AT siol.net>
9946
9947         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
9948         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
9949         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
9950         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
9951         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
9952         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
9953         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
9954         src/z80/Makefile.bcc: Borland Makefile cleanup
9955         * as/z80/Makefile.bcc: Added Borland Makefile
9956         * support/cpp2/borland.h: Removed
9957
9958 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
9959
9960         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
9961         * src/SDCC.lex: new pragma NOIV
9962         * src/SDCCglobl.h: new pragma NOIV
9963         * src/SDCCmem.c: new pragma NOIV
9964
9965 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9966
9967         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
9968
9969 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9970
9971         * src/SDCCmain.c: signal handling is switched off by --debug
9972         * doc/Makefile: small fix for install; use clean.mk again
9973         * doc/clean.mk: clean *.pdf and *.html too
9974
9975 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
9976
9977         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
9978         * device/lib/printfl.c: fix a ds390 bug by making it portable
9979         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
9980         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
9981         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
9982         * debugger/mcs51/cmd.c: converted multi-line string literals
9983         * sim/ucsim/globals.cc: converted multi-line string literals
9984         * src/SDCCmain.c: introduced signal handler to remove temp files
9985         * doc/Makefile: small tweaks, implement clean
9986         * doc: removed generated files
9987
9988 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9989
9990         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
9991         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
9992         Address Record is not correctly generated for DS390."
9993
9994 2003-02-02  Borut Razem <borut.razem AT siol.net>
9995
9996         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
9997         * as/mcs51/asm.h: fixed compilation with Borland C
9998         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
9999         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
10000         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
10001         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
10002         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
10003         src/z80/Makefile.bcc: delete $(LIB) only if exist
10004         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
10005
10006 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
10007
10008         * device/include/malloc.h: introduced NULL
10009         * device/include/string.h: introduced NULL
10010         * device/include/stdlib.h: introduced NULL
10011         * device/lib/_memcpy.c: removed NULL
10012         * device/lib/_strcat.c: removed NULL
10013         * device/lib/_strchr.c: removed NULL
10014         * device/lib/_strcmp.c: removed NULL
10015         * device/lib/_strcpy.c: removed NULL
10016         * device/lib/_strcspn.c: removed NULL
10017         * device/lib/_strlen.c: removed NULL
10018         * device/lib/_strncat.c: removed NULL
10019         * device/lib/_strncmp.c: removed NULL
10020         * device/lib/_strncpy.c: removed NULL
10021         * device/lib/_strpbrk.c: removed NULL
10022         * device/lib/_strrchr.c: removed NULL
10023         * device/lib/_strspn.c: removed NULL
10024         * device/lib/_strstr.c: removed NULL
10025         * device/lib/_strtok.c: removed NULL
10026         * device/lib/malloc.c: removed NULL, include own header
10027
10028 2003-02-02    <johan AT balder>
10029
10030         * 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
10031         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
10032         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
10033         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
10034         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
10035         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
10036
10037 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10038
10039         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
10040         area 'DATA'"
10041
10042 2003-02-01    <johan AT balder>
10043
10044         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
10045
10046 2003-01-31    <johan AT CP255758-A>
10047
10048         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
10049
10050 2003-01-30    <johan AT balder>
10051
10052         * src/SDCCBBlock.c: automatic bug detection
10053         * src/SDCCicode.c: automatic bug detection
10054
10055 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10056
10057         * src/SDCCglobl.h:   now --xram-size 0 works
10058         * src/SDCCmain.c:    now --xram-size 0 works
10059
10060 2003-01-29    <johan AT balder>
10061
10062         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
10063
10064 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10065
10066         * as/mcs51/aslink.h: Added options --xram-size and --code-size
10067         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
10068         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
10069         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
10070         * src/SDCCglobl.h:   Added options --xram-size and --code-size
10071         * src/SDCCmain.c:    Added options --xram-size and --code-size
10072
10073 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
10074
10075         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
10076         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
10077
10078 2003-01-27    <johan AT balder>
10079
10080         * src/SDCC.y: fixed bug #613764
10081
10082 2003-01-26    <johan AT balder>
10083
10084         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
10085         * src/SDCCsymt.h: fixed bug #673374
10086         * src/SDCCglue.c: fixed bug #661910
10087         * src/SDCCast.c: fixed bug #458099 and 673374
10088
10089 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
10090
10091         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
10092         * as/mcs51/strcmpi.h: added
10093         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
10094         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
10095         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
10096         * as/mcs51/assym.c: strcmpi -> as_strcmpi
10097         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
10098         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
10099         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
10100         * as/mcs51/Makefile.aslink: new module strcmpi
10101         * as/mcs51/Makefile.asx8051: new module strcmpi
10102         * as/mcs51/Makefil.bcc: new module strcmpi
10103         * as/mcs51/Makefile.in: new module strcmpi
10104         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
10105
10106 2003-01-26    <johan AT balder>
10107
10108         * src/SDCCglue.c: reverted back to 1.124
10109         * src/SDCCast.c: reverted back to 1.156
10110         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
10111
10112 2003-01-25    <johan AT balder>
10113
10114         * src/SDCCglue.c: A better fix for bug #661910
10115         * src/SDCCast.c: A better fix for bug #661910
10116         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
10117
10118 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
10119
10120         * src/Makefile.in: remove spawn.o
10121         * src/SDCCmain.c: remove spawn.h
10122         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
10123         * src/spawn.c: removed
10124         * src/spawn.h: removed
10125         * support/regression/ports/ds390/spec.mk: link with -r
10126
10127 2003-01-24    <johan AT CP255758-A>
10128
10129         * src/ds390/gen.c (aopOp): fixed bug #667458
10130         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
10131         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
10132         (createIvalCharPtr): an ival doesn't always have a storage class anymore
10133
10134 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
10135
10136         * src/mcs51/peeph.def: better assembler identation by Frieder
10137         * src/mcs51/gen.c: better assembler identation by Frieder
10138
10139 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
10140
10141         * as/z80/string.h: removed for gcc 3.2
10142         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
10143         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
10144
10145 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
10146
10147         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
10148         * src/SDCCpeeph.c (replaceRule): fix bug #663503
10149         * support/regression/Makefile: separate temp files for ports
10150         * support/regression/generate-cases.py: separate temp files for ports
10151         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
10152         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
10153
10154 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
10155
10156         * moved tinitalk to device/examples/ds390
10157
10158 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
10159
10160         * as/mcs51/lkmem.c: rflag is for DS390
10161         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
10162         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
10163                          (linkEdit): move mem- and map-files the same way as ihx-files
10164         * src/z80/main.c (_setDefaultOptions): removed --generic
10165         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
10166         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
10167         * src/pic/glue.c (picglue): --c1mode works again
10168         * src/pic16/glue.c (pic16glue): --c1mode works again
10169         * src/asm.c (printCLine): fix #660034
10170
10171 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
10172
10173         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
10174         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
10175         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
10176         * as/mcs51/lkmem (summary): better fix for sp problem
10177         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
10178         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
10179         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
10180                                               remove --stack-after-data
10181
10182 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
10183
10184         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
10185         * src/SDCCutil.c (join): ugly bug: missing '\0'
10186         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
10187
10188 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
10189
10190         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
10191         * src/port.h: typo
10192         * src/pic/main.c (_asmCmd): gpasm supports -o
10193         * src/z80/main.c: more general macros
10194         * device/lib/Makefile.in: remove intermediate files
10195
10196 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
10197
10198         * .version: Bumped version number to 2.3.3
10199         * src/SDCCBBlock.c: new option -o
10200         * src/SDCCglobl.h: new option -o
10201         * src/SDCCglue.c: new option -o
10202         * src/SDCCmain.c: new option -o
10203         * src/asm.c: new option -o
10204         * src/ds390/main.c: new option -o
10205         * src/pic/glue.c: new option -o
10206         * src/pic/pcode.c: new option -o
10207         * src/pic/ralloc.c: new option -o
10208         * src/pic16/glue.c: new option -o
10209         * src/pic16/pcode.c: new option -o
10210         * src/pic16/ralloc.c: new option -o
10211         * src/z80/main.c: new option -o
10212         * device/lib/Makefile.in: use -o
10213         * support/regression/ports/ds390/spec.mk: use -o
10214         * support/regression/ports/gbz80/spec.mk: use -o
10215         * support/regression/ports/mcs51/spec.mk: use -o
10216         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
10217         * support/regression/ports/z80/spec.mk: use -o
10218         * support/regression/ports/ucz80/spec.mk: use -o
10219         * support/regression/ports/xa51/spec.mk: use -o
10220         * support/regression/fwk/lib/timeout.c: fix usage string
10221
10222 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
10223         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
10224
10225 2003-01-07    <johan AT balder>
10226
10227         * src/SDCCast.c (decorateType): fixed bug #600035
10228
10229 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
10230         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
10231         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
10232         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
10233         * src/pic/pcode.c: outcommented unused variable to remove warnings
10234         * src/pic/ralloc.c: outcommented unused variable to remove warnings
10235
10236 2003-01-06    <karl AT turbobit.com>
10237         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
10238    regression tests.
10239
10240 2003-01-06    <johan AT balder>
10241
10242         * src/SDCCicode.c: fixed array add
10243
10244 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
10245         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
10246         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
10247
10248 2003-01-04    <johan AT balder>
10249
10250         * src/SDCCval.c (getNelements): fixed the initialized array of structures
10251
10252 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10253         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
10254
10255 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
10256         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
10257         * support/regression/tests/bug-524697.c: fit mem usage into 8032
10258
10259 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
10260         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
10261
10262 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
10263         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
10264
10265 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
10266         * src/mcs51/main.c: removed {bindir}{sep} from aslink
10267
10268 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10269
10270     * in \sdcc\as\mcs51\ changed these files in order to create an
10271     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
10272     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
10273     following files to include the previous two files: aslink.dsp,
10274     Makefile.aslink, Makefile.bcc, and Makefile.in.
10275
10276     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
10277     .adb instead of .cdb
10278
10279 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10280
10281         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
10282         value from option --iram-size.
10283
10284 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10285
10286         * \sdcc\as\mcs51\lklist.c: added boundary check before using
10287         dram[] array.
10288
10289 2002-09-18    <wiml AT hhhh.org>
10290
10291         * SDCClrange.h: exposed setFromRange() and setToRange()
10292         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
10293           packRegsForAccUse() (bug 542397)
10294         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
10295           multiple times and emitting the fetch operations more than once
10296           added aopGetUsesAcc() function to allow binary operators to
10297           fetch their operands in the correct order; made genMinus() emit
10298           compact code for X = LITERAL - Y
10299
10300 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10301         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
10302         sprintf() in line 1267.
10303
10304 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10305         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
10306         like ports.
10307
10308 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10309         Changes to aslink (All the changes are marked with 'JCF'):
10310
10311         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
10312         summary().
10313
10314         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
10315         area BSEG.  Also moves, if possible, the DATA area down into the internal
10316         ram so more space is available.
10317
10318         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
10319         sflag.
10320
10321         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
10322         not bytes.  Function summary() which creates a memory usage summary
10323         file with extension .mem.  Reports of overlaping stack and small stack
10324         size.  If the space for the stack is less than 16 bytes aslink trows a
10325         warning.
10326
10327         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
10328         the 8051.  Option 'y' for memory summary output file.
10329
10330         Changes to sdcc (All the changes are marked with 'JCF'):
10331
10332         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
10333
10334         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
10335         overlaying area for it (uses RegBankUsed[4]).
10336
10337         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
10338         bank zero as used by default.  By default aslink locates the stack
10339         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
10340         the creation of the .mem file.  Delegates the allocation of data area
10341         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
10342         the begining of the stack area to aslink.
10343
10344         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
10345         glue() in SDCCglue.c creates an area for it.
10346
10347 2002-09-03  Borut Razem <borut.razem AT siol.net>
10348         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
10349         sdcc/src/pic/glue.c:
10350         introduced atexit() handler for teporay files removal in case of
10351         errors, assertions, ...
10352
10353 2002-08-29  Borut Razem <borut.razem AT siol.net>
10354         * sdcc/support/cpp2/auto-host_vc_in.h:
10355         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
10356         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
10357         Maybe there is a similar problem with BORLANDC? It should be checked!
10358
10359         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
10360         corrected improper use of assert: the assignment to clr variable was done inside the assert.
10361         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
10362         was not executed, and the compiler (cl) launched a warning:
10363         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
10364
10365 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
10366         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
10367
10368 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
10369         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
10370
10371         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10372           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
10373           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
10374           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10375           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
10376           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
10377           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
10378         - added Release configuration in VS projects
10379         - review of compiler an linker options
10380         - VC .exe files are generated in bin_vc directory, not to interfere
10381           with binaries generated from other projects (cygwin, mingw, bcc ...)
10382
10383         * sdcc/src/yacc.dsp: added
10384
10385         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
10386         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
10387         and insert the version number definitions from .version
10388
10389         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
10390
10391         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
10392         added - genarate auto-host.h using auto-host_vc_in.h as template
10393
10394         * sdcc/sdcc_vc.h,
10395         removed from CVS, generated automatically
10396
10397 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
10398         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
10399
10400 2002-08-11  Borut Razem <borut.razem AT siol.net>
10401         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
10402
10403 2002-08-10  Borut Razem <borut.razem AT siol.net>
10404         * src/SDCCmain.c (main):
10405         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
10406         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
10407         The consequence was that some temporary files were not removed.
10408
10409         * src/SDCCglue.c:
10410         unification of code in functions tempfilename() and tempfile():
10411         function tempnam() is defined in Visual Studio 6.0 and .NET
10412
10413         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
10414
10415         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10416           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
10417         - removed compiler command line option /WX: Treats all warnings as errors
10418         - update a list of source files, included into the project
10419
10420         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10421           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
10422         changed project type to Generic Project so that can be correcly converted to VS.NET project
10423
10424         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
10425
10426         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
10427
10428         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
10429
10430         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
10431         added return 0 statements after assert() to make compiler happy
10432
10433         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
10434         added newline in the def file to keep MSC compiler satisfied
10435
10436         * sdcc/src/z80/gen.c:
10437         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
10438           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
10439         - solved MSC error in function aopDump()
10440
10441         * sdcc_vc.h: define PREFIX as "\\sdcc"
10442
10443 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
10444         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
10445
10446 2002-06-22  Scott Dattalo <scott AT dattalo.com>
10447         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
10448         - Rewrote the register banking algorithm.
10449         - Added pCode live-range analysis to registers (for now, only non-used and
10450         singly-used registers optimized away)
10451
10452         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
10453
10454         * 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.
10455
10456 2002-05-10  Scott Dattalo <scott AT dattalo.com>
10457         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
10458
10459 2002-04-22  Michael Hope  <michaelh AT vroom>
10460
10461         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
10462
10463         * configure.in (DD_COPT): Added include support required for gbdk.
10464
10465         * .version: Bumped version number just to increase it.
10466
10467         * src/SDCCmain.c: Added -nostdinc to the default options.
10468
10469 2002-04-15  Michael Hope  <michaelh AT vroom>
10470
10471         * device/lib/z80/printf.c (sprintf): Added.
10472
10473         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
10474
10475         * src/z80/peeph.def: Added transpose redundent load rule.
10476
10477         * src/z80/main.c: Added force callee saves for jaune.
10478
10479         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
10480
10481         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
10482
10483 2002-03-28  Johan Knol  <johan AT balder>
10484
10485         * src/SDCCval.c: fixed bug #532436
10486
10487 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10488         * /src/port.h:
10489         Added "char *Processor" field to the port structure.
10490
10491         * /src/SDCCmain.c:
10492         Added -p option. Allows port dependent processor to be specified.
10493
10494         * all ports:
10495         Initialized the new field char *Processor field to NULL in all ports
10496
10497         * /src/pic/*:
10498         Compiler generated registers for interrupt context saving
10499         were not getting allocated.
10500
10501 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
10502
10503         * /src/SDCCast.c:
10504         Fixed left shift. Will promote the left side of a left shift
10505         if a) left shifting more than size of operand or b) when assigned
10506         to something size > size of left side
10507
10508 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10509         * src/pic/*
10510         tons of changes. Register allocation has been
10511         rewritten. Added customization for the various PICs. Flow
10512         analysis is restructured. ...
10513
10514         * src/pic/device.h:
10515         Added
10516
10517         * src/pic/device.c:
10518         Added. device.c is a PIC port hack to accomodate variations
10519         in PIC devices.
10520
10521 2002-03-13  Michael Hope  <michaelh AT vroom>
10522
10523         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
10524
10525 2002-03-04  johanknol  <johanknol AT manik>
10526
10527         * /src/SDCCval.c: fixed
10528
10529         const unsigned char arr[][2] = { { 0, 1 } };
10530         t18.c:1: error: Initializer element is not constant
10531
10532 2002-03-04  bela  <bela AT manik>
10533
10534         * /device/include/mcs51reg.h:
10535         ds89c420 register definition update
10536
10537 2002-03-03    <johan AT FRIJA>
10538
10539         * support/Util/SDCCerr.c: did something, but don't no why anymore
10540
10541         * support/regression/tests/bug-524691.c: made it a little less shy
10542
10543         * src/SDCCast.c (decorateType): fixed bug #524697
10544
10545         * src/SDCCast.c: made some lineno improvements
10546
10547         * src/SDCCval.c (getNelements): changed warning to error
10548
10549         * src/SDCCglue.c (printIvalArray): changed warning to error
10550
10551         * src/SDCCicode.c: fixed a warning for mingw
10552
10553         * src/SDCCast.c (decorateType): fixed the << promotion for ops
10554
10555         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
10556
10557 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
10558
10559         * src/ds390/peeph.def:
10560         Added some more peephole rules
10561
10562         * src/ds390/gen.c: Various fixes & enhancements
10563
10564         * src/SDCClrange.c, src/SDCClrange.h:
10565         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
10566
10567         * src/ds390/ralloc.c:
10568         various fixes & enhancements (ds390) specific
10569
10570         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
10571         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
10572         from rallocs.
10573
10574         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
10575
10576 2002-03-02    <johan AT FRIJA>
10577
10578         * src/SDCCast.c (decorateType): fixed bug #524708
10579
10580         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
10581
10582         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
10583
10584 2002-03-01  Michael Hope  <michaelh AT vroom>
10585
10586         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
10587
10588         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
10589
10590 2002-03-01    <johan AT FRIJA>
10591
10592         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
10593
10594         * src/SDCCast.c (decorateType): fixed bug #524209
10595
10596         * src/SDCCval.c (valNot): fixed bug #524195
10597
10598 2002-02-26    <johan AT balder>
10599
10600         * src/xa51/gen.c: fixed a warning
10601
10602         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
10603
10604         * src/SDCCast.c (decorateType): fixed bug #522534
10605
10606 2002-02-23    <johan AT balder>
10607
10608         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
10609
10610 2002-02-22    <johan AT balder>
10611
10612         * src/SDCCast.c: fixed bug #514865
10613
10614         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
10615
10616 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
10617
10618         * sdcc/src/SDCCloop.c:
10619         Previous fix was not good. basic blocks that have "break" or "return" are
10620         not really partof a loop , but live ranges used in these blocks should
10621         be live thru the entire loop, so set partOfLoop but don't add them to
10622         loop region
10623
10624 2002-02-21    <johan AT FRIJA>
10625
10626         * src/SDCCcse.c: fixed bug #514308
10627
10628 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
10629
10630         * src/SDCCloop.c:
10631         Fixed BUG #519583. If a conditional block ended in a return/break
10632         statement inside a loop, it was not being considered part of the loop.
10633
10634         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
10635
10636 2002-02-10  Karl Bongers <karl AT turbobit.com>
10637
10638         * debugger/*:
10639         Fixed up SDCDB debugger somewhat.  Updated debugger/README
10640         with lots of comments and notes.
10641
10642         * device/examples/test2.c:
10643         Fix bug, "red" variable not being initialized(compiler complained).
10644
10645         * device/examples/Makefile, examples/test3.c:
10646         Add Makefile in device/examples folder, compiles test3.c
10647         for use as a multiple module SDCDB test case.
10648
10649         * sim/ucsim/cmd.src/cmdset.cc:
10650         Took out debug printfs in ucsim "next" command.
10651
10652         * sim/ucsim/xa.src:
10653         Karl and Johan start ucsim XA support.  Most dissassembly working,
10654         about 75% emulation done(plenty of work remaining).
10655
10656         * sim/ucsim/z80.src:
10657         Add Z80 support to ucsim, add test-ucz80 regression test,
10658         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
10659         Notice z80 compiler fails on examples/test3.c/crc code.
10660
10661 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
10662
10663         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
10664         Added support for --parms-in-bank1
10665
10666         * src/ds390/peeph.def:
10667         added a few more peephole optimzations
10668
10669         * src/ds390/main.c:
10670         1) added __builtin_inp & __builtin_outp used to read in data of given length
10671            from a memory mapped port
10672         2) added __builtin_memcmp
10673         3) added __builtin_swapw swap bytes of a short
10674
10675         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
10676         1) handle multiple send & receives from register bank1
10677         2) ralloc can now allocate DPTR1 to some liveRanges
10678
10679         * src/SDCCsymt.c, src/SDCCsymt.h:
10680         changes to handle multiple sends & receives
10681
10682         * src/SDCCptropt.h:
10683         added some pointer arithmetic optimization
10684
10685         * src/SDCCptropt.c:
10686         added some pointer arithmetic optimizations but not stable yet so not
10687         called from anywhere (will get this working shortly)
10688
10689         * src/SDCCopt.c: fixed for multiple sends & receives
10690
10691         * src/SDCCmain.c:
10692         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
10693         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
10694            set preprocessor defines (depending on options)
10695
10696         * src/SDCCicode.c, src/SDCCicode.h:
10697         changes made to handle multiple sends & receives
10698
10699         * src/SDCCglobl.h:
10700         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
10701
10702         * src/SDCCcse.c, src/SDCCcse.h:
10703         added function findbackward def (to be used in upcoming optimization)
10704
10705         * src/SDCCcflow.c, src/SDCCcflow.h:
10706         added function returnAtEnd - to determine if a basic block terminates with
10707         a RETURN iCode
10708
10709         * src/SDCCast.c, src/SDCCast.h:
10710         added option parms-in-bank1
10711
10712         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
10713         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
10714         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
10715         adjusted for --parms-in-bank1 option
10716
10717         * device/include/string.h:
10718         donot redefine "reentrant" keyword
10719
10720         * device/include/ds80c390.h: Added some more SFRs
10721
10722 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
10723
10724         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
10725
10726 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
10727
10728         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
10729
10730 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
10731
10732         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
10733
10734 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
10735
10736         * Added --xram-movc option
10737
10738 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
10739
10740         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
10741
10742 2002-01-11  Johan Knol
10743
10744         * Added math lib of Jesus Calvino-Fraga
10745
10746 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
10747
10748         * src/SDCCmain.c (processFile): fix processing of ../../src.c
10749         * support/regression/Makefile: new target test-mcs51-stack-auto
10750         * support/regression/ports/mcs51-stack-auto/spec.mk: added
10751
10752 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10753
10754         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
10755
10756 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10757
10758         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
10759
10760 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
10761
10762         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
10763
10764         * src/SDCCglue.h: add definition for printIvalChar()
10765
10766 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10767
10768         * src/SDCCast.c: fix #498138 by Johan
10769
10770         * src/SDCCglue.c: fix #498138 by Johan
10771
10772 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10773
10774         * support/regression/Makefile: fix clean
10775
10776         * support/regression/ports/ds390/support.c: fix transmission of last character
10777
10778 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
10779
10780         * /sdcc/src/ds390/gen.c:
10781         a) improved computing address of stack variable
10782         b) took out some #if 0 code
10783         c) improved parmBytes adjustment
10784         d) improved genPlusIncr & genMinusIncr
10785         e) genCmp could generate bad code (when left assigned to DPTR)
10786         f) Fixed bug in hasInc
10787
10788         * /sdcc/src/ds390/ralloc.c:
10789         a) packRegsForSupport could mess up live information (Fixed)
10790         b) packRegsDPTRuse could be incorrect for left & right shift
10791
10792         * /sdcc/src/mcs51/ralloc.c:
10793         packRegsForSupport could mess up the live information (Fixed)
10794
10795         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
10796
10797         * /sdcc/src/SDCCast.c:
10798         can reverse a loop even if function call is present as long
10799         as the loop control variable is local & is not passed as parameter
10800
10801 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10802
10803         * /sdcc/ChangeLog: *** empty log message ***
10804
10805         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
10806         More builtin function additions for TININative
10807
10808         * /sdcc/src/ds390/ralloc.c:
10809         Had broken the regression testsuite
10810
10811         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
10812
10813         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
10814         Added funcattr hasStackParms will be set for reentrant functions when there
10815         are paramteres on the stack, this helps in minimizing frame pointer generation
10816         typeFromStr can handle function pointers now
10817
10818         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
10819         *** empty log message ***
10820
10821 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10822
10823         * /src/ds390/gen.c, /src/ds390/main.c:
10824         More builtin function additions for TININative
10825
10826         * /src/ds390/ralloc.c:
10827         Had broken the regression testsuite
10828
10829         * /src/SDCCast.c: Fixed a bug in dumptree
10830
10831         * /src/SDCCsymt.c, /src/SDCCsymt.h:
10832         Added funcattr hasStackParms will be set for reentrant functions when there
10833         are paramteres on the stack, this helps in minimizing frame pointer generation
10834         typeFromStr can handle function pointers now
10835
10836         * /doc/builtins.txt, /doc/TININative.txt:
10837         *** empty log message ***
10838
10839
10840 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10841
10842         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
10843         ALPHA version for -mTININative
10844
10845         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
10846         updated to reflect changes in the port structure
10847
10848         * /src/port.h:
10849         added function do_assemble (similar to do_link) if non-null this function
10850         will be called to do assembly (-mTININative) requires a multi command
10851         assembly
10852         added function genAssemblerEnd will be called to generate assembler Epilogue
10853
10854         * /src/SDCCsymt.c:
10855         added _JavaNative to debug info printing
10856
10857         * /src/SDCCmain.c: added option --tini-libid
10858         added port->do_assemble function (-mTININative) has a multi command assemble
10859
10860         * /src/SDCCglue.c: Disabled "constExpr" check
10861         added port->genAssemblerEnd function
10862
10863         * /src/SDCCglobl.h: Added option --tini-libid value
10864
10865         * /src/SDCCast.h:
10866         tookout optimizeCompare from the header (has no external references)
10867
10868         * /src/SDCCast.c: made one more function "static"
10869
10870 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
10871
10872         * src/z80/mappings.i: Added z80asm support.
10873
10874         * src/z80/main.c: Added z80asm support on --asm=z80asm
10875
10876         * src/z80/gen.c: Fixed asm portability issues.
10877
10878         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
10879
10880         * src/SDCCglue.c (printExterns): Added global/extern split.
10881
10882 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
10883
10884         * support/regression/Makefile: added test for mcs51 model large
10885
10886         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
10887
10888         * support/regression/ports/gbz80/spec.mk: added -mgbz80
10889
10890 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
10891
10892         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
10893
10894 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
10895
10896         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
10897
10898         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
10899
10900 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
10901
10902         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
10903
10904         * support/regression/tests/simplefloat.c: Port to mcs51.
10905
10906 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
10907         * support/regression/tests/bug-485362.c: Added.
10908
10909         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
10910
10911         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
10912
10913         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
10914
10915         * src/z80/gen.c (aopDump): Added a dump function.
10916
10917 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
10918         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
10919
10920         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
10921
10922         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
10923
10924         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
10925
10926         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
10927
10928         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
10929
10930         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
10931
10932         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
10933
10934         * support/regression/ports/ds390/support.c: Use tinibios.
10935
10936         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
10937
10938 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
10939
10940         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
10941         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
10942
10943         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
10944
10945         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
10946
10947 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
10948
10949         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
10950
10951         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
10952         (packRegsForIYUse): Created and optimised.
10953
10954 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10955
10956         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
10957 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
10958
10959         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
10960
10961         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
10962
10963         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
10964
10965 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10966
10967         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
10968
10969         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
10970
10971 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10972
10973         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
10974
10975         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
10976
10977         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
10978
10979 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10980
10981         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
10982         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
10983         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
10984
10985         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
10986
10987         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
10988         (genNotFloat): Added.
10989         (genUminusFloat): Added.
10990
10991         * device/lib/z80/Makefile: Added floating pt stubs.
10992
10993         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
10994
10995         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
10996
10997         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
10998
10999 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11000
11001         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
11002
11003         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
11004
11005         * sdcc/support/regression/Makefile: Add port ds390.
11006
11007         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
11008
11009         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
11010
11011         * sdcc/support/regression/ports/ds390/spec.mk: Added.
11012
11013         * sdcc/support/regression/ports/ds390/support.c: Added.
11014
11015         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
11016
11017         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
11018
11019         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
11020
11021 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
11022
11023         * device/include/malloc.h: Added z80 and gbz80 support.
11024
11025         * device/lib/gbz80/heap.s: Added.
11026
11027         * device/lib/z80/heap.s: Added.
11028
11029         * device/lib/malloc.c: Added z80 and gbz80 support.
11030
11031         * support/regression/tests/malloc.c (testMalloc): Added.
11032
11033         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
11034
11035         * support/regression/tests/bug-478094.c: Added.
11036
11037         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
11038
11039 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
11040
11041         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
11042
11043         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
11044
11045         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
11046
11047         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
11048
11049         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
11050
11051 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
11052
11053         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
11054
11055 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
11056
11057         * support/regression/tests/bug-477927.c: Added.
11058
11059         * src/z80/peeph.def: Added minor rules.
11060
11061         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
11062
11063         * src/z80/peeph.def: Added jump optimisation modification.
11064
11065 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
11066
11067         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
11068
11069 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
11070
11071         * support/regression/tests/funptrs.c: Added.
11072
11073 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
11074
11075         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
11076
11077 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
11078
11079         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
11080
11081         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
11082
11083         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
11084         (movLeft2ResultLong): Created.
11085
11086         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
11087         (joinPushes): Added.  Joins two char pushes into a word push.
11088
11089 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
11090
11091         * support/cpp2/Makefile.in (install): Added creation of dest dir.
11092
11093         * support/makebin/Makefile (install): Added creation of dest dir.
11094
11095 2001-10-24 Karl Bongers <karl AT turbobit.com>
11096
11097         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
11098
11099 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
11100
11101         * src/z80/ralloc.c: Turned off faulty pack for one use.
11102
11103         * src/z80/peeph-gbz80.def: Removed redundent restart options.
11104
11105         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
11106
11107 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
11108
11109         * support/regression/Makefile: Improved clean
11110
11111         * support/regression/ports/gbz80/spec.mk: Added clean
11112
11113         * support/regression/ports/host/spec.mk: Added clean
11114
11115         * support/regression/ports/z80/spec.mk: Added clean
11116
11117         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
11118
11119         * support/regression/ports/mcs51/timeout.c: little improvements
11120
11121 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
11122
11123         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
11124
11125         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
11126
11127         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
11128
11129 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
11130
11131         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
11132
11133         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
11134
11135 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
11136         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
11137
11138         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
11139
11140         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
11141
11142         * src/mcs51/main.c (_linkCmd): Added bin path to command.
11143
11144         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
11145
11146         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
11147
11148         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
11149
11150         * support/regression/tests/longor.c: Added.
11151
11152 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
11153
11154         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
11155
11156         * as/mcs51/aslink.h: define PATH_MAX
11157
11158         * as/mcs51/asm.h: define PATH_MAX
11159
11160         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
11161
11162         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
11163
11164         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
11165
11166         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
11167
11168         * src/SDCCglobl.h: define PATH_MAX
11169
11170         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
11171
11172         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
11173
11174 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
11175
11176         * src/z80/gen.c (gencjneshort): Fixed
11177
11178         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
11179
11180 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
11181
11182         * support/regression/tests/bug-469671.c: Added.
11183
11184         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
11185
11186 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
11187
11188         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
11189
11190         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
11191
11192 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
11193
11194         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
11195
11196         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
11197
11198         * src/device/lib/_mullong.c : removed hint: nooverlay bug
11199
11200         * src/device/lib/_divuint.c : removed hint: nooverlay bug
11201
11202         * src/device/lib/_divulong.c: removed hint: nooverlay bug
11203
11204         * src/device/lib/_moduint.c : removed hint: nooverlay bug
11205
11206         * src/device/lib/_modulong.c: removed hint: nooverlay bug
11207
11208 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
11209
11210         * 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.
11211
11212         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
11213
11214         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
11215
11216 2001-10-07    <johan AT FRIJA>
11217
11218         * device/lib/gets.c (gets): fixed the return value.
11219
11220 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
11221         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
11222
11223         * 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.
11224
11225         * 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.
11226
11227         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
11228
11229         * src/pic/gen.c: Removed Safe_strdup.
11230
11231         * configure.in: Added option to enable libgc support.
11232
11233         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
11234         (bitVectUnion): Optimised.
11235         (bitVectIntersect): Optimised.
11236         (bitVectBitsInCommon): Optimised.
11237         (bitVectCplAnd): Optimised.
11238
11239         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
11240
11241 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11242
11243         * src/SDCCmain.c: distinguish between assembler debug and plain options
11244
11245         * src/avr/main.c:   remove standard assembler options
11246
11247         * src/ds390/main.c: remove standard assembler options
11248
11249         * src/mcs51/main.c: remove standard assembler options
11250
11251         * src/port.h: removed "PENDING" comment
11252
11253 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11254
11255         * src/device/lib/_mulint.c  : new, with assember functions
11256
11257         * src/device/lib/_mullong.c : new, with assember functions
11258
11259         * src/device/lib/_divuint.c : with assember functions
11260
11261         * src/device/lib/_divsint.c : with assember functions
11262
11263         * src/device/lib/_divulong.c: with assember functions
11264
11265         * src/device/lib/_divslong.c: with assember functions
11266
11267         * src/device/lib/_moduint.c : with assember functions
11268
11269         * src/device/lib/_modsint.c : with assember functions
11270
11271         * src/device/lib/_modulong.c: with assember functions
11272
11273         * src/device/lib/_modslong.c: with assember functions
11274
11275         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
11276
11277         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
11278
11279         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
11280                                       replaced _mululong.c and _mulslong.c by _mullong.c
11281
11282 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11283
11284         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
11285
11286 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
11287
11288         * src/SDCCglue.c: test, if win32api is available for MINGW
11289
11290 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
11291
11292         * src/SDCCsymt.c: no more _modifier in printTypeChain()
11293         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
11294         * support/regression/ports/gbz80/spec.mk: removed GENERIC
11295         * support/regression/ports/host/spec.mk: removed GENERIC
11296         * support/regression/ports/mcs51/spec.mk: removed GENERIC
11297         * support/regression/ports/z80/spec.mk: removed GENERIC
11298
11299 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
11300
11301         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
11302
11303         * support/regression/tests/bug-467035.c: Created.
11304
11305 2001-10-01    <johan AT FRIJA>
11306
11307         * src/SDCC.y: fixed bug #466586 part 1
11308
11309 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
11310
11311         * SDCCicode.c: z80 has no generic pointers
11312         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
11313
11314 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
11315
11316         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
11317
11318 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
11319
11320         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
11321
11322         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
11323
11324 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
11325
11326         * configure.in: Fixed up so that ucsim is only configured once.
11327
11328         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
11329
11330         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
11331         (getPathDifference): As above.
11332
11333         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
11334
11335         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
11336
11337 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
11338         * .version: Updated to 2.3.1
11339
11340         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
11341         Added copyright header.
11342
11343         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
11344         (assemble): Added support for macro based assembler commands.
11345         (linkEdit): Added support for macro based linker commands.
11346         (preProcess): Changed the pre-processor to use macros.
11347         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
11348         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
11349
11350         * device/lib/z80/crt0.s: Added module name for debugging.
11351
11352 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
11353
11354         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11355
11356         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
11357
11358         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
11359
11360         * src/Makefile.in: Added SDCCmacro and SDCCutil
11361
11362 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
11363
11364         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11365
11366 2001-09-16    <johan AT FRIJA>
11367
11368         * 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.
11369
11370 2001-09-15    <johan AT FRIJA>
11371
11372         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
11373         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
11374
11375 2001-09-11    <johan AT FRIJA>
11376
11377         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
11378
11379 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
11380
11381         * support/regression/tests/bug-460444.c: Added test case.
11382
11383         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
11384         (genCast): Added justification for all of the asserts.
11385
11386 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
11387
11388         * support/regression/support.c: _xdata replaced by xdata
11389
11390         * support/regression/spec.mk: removed _generic
11391
11392 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
11393
11394         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
11395
11396         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
11397         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
11398
11399         * src/z80/peeph.def: Added a rule to optimise shift then compare.
11400
11401         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
11402
11403         * support/regression/tests/bug-460010.c: Added test case.
11404
11405         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
11406
11407 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
11408
11409         * support/regression/Makefile: inter-port-clean adjusted for mcs51
11410
11411         * support/regression/testfwk.c: removed workaround for bug #436344
11412
11413         * support/regression/tests/bp.c: use less memory with mcs51
11414
11415         * support/regression/tests/bug-441448.c: use less memory
11416
11417         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
11418
11419         * support/regression/collate-results.py: typo
11420
11421 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
11422
11423         * support/regression/tests/fetchoverlap.c: Added new test case.
11424
11425         * support/regression/tests/bp.c: Added new test case.
11426
11427         * support/regression/tests/bug-448984.c: Added new test case.
11428
11429         * support/regression/tests/pow2shifts.c: Added new test case.
11430
11431         * src/z80/gen.c: Turned off the noise it normally generates for the release.
11432         (genlshTwo): Fixed right shift for count > 8.
11433
11434         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
11435
11436 2001-09-08    <johan AT FRIJA>
11437
11438         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
11439
11440 2001-09-07    <johan AT FRIJA>
11441
11442         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
11443
11444         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
11445
11446 2001-09-06    <johan AT FRIJA>
11447
11448         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
11449         * bernhard noted me at this: "() equals to (void)" (1.38)
11450
11451 2001-09-05    <johan AT FRIJA>
11452
11453         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
11454
11455 2001-09-04    <johan AT FRIJA>
11456
11457         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
11458
11459
11460 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
11461
11462         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
11463
11464 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
11465
11466         * link/z80/aslink.h: Fixed path for PATH_MAX
11467
11468 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
11469
11470         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
11471
11472         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
11473
11474         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
11475
11476         * 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.
11477
11478 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
11479
11480         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
11481         (genCmp): Fixed up genCmp for the GB with longs.
11482
11483         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
11484
11485         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
11486
11487         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
11488
11489         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
11490
11491 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
11492
11493         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
11494
11495 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
11496
11497         * 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.
11498
11499         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
11500
11501 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
11502
11503         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
11504
11505         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
11506
11507 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
11508
11509   * sim/ucsim/configure:    little improvement of Cygwin-detection
11510   * sim/ucsim/configure.in: little improvement of Cygwin-detection
11511   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
11512   * support/regression/tests/bug-221100.c: small changes for mcs51
11513   * support/regression/tests/bug-221168.c: small changes for mcs51
11514   * support/regression/tests/bug-227710.c: small changes for mcs51
11515   * support/regression/tests/staticinit.c: small changes for mcs51
11516   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
11517   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11518   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11519
11520 $Revision$