* src/SDCCast.c (processParms): fixed bug #1247551
[fw/sdcc] / ChangeLog
1 2006-05-30 Bernhard Held <bernhard AT bernhardheld.de>
2
3         * src/SDCCast.c (isLoopCountable): fixed bug #1478316
4         (processParms): fixed bug #1247551
5
6 2006-05-27 Bernhard Held <bernhard AT bernhardheld.de>
7
8         * src/SDCCcse.c (findPointerSet): fixed bug #1493710
9         * support/regression/tests/bug-1493710.c: added
10
11 2006-05-27 Borut Razem <borut.razem AT siol.net>
12
13         * support/regression/fwk/lib/testfwk.c: define array in _printn() as
14           static instead auto
15         * support/regression/ports/pic16/support.c: increase stack size
16           from default 64 bytes to 128 bytes
17         * support/regression/tests/staticinit.c,
18           support/regression/tests/float.c: regression tests fully enabled
19           for pic16 port by putting the initialized data arrays into the code
20           section
21         * support/regression/ports/pic16/spec.mk: don't link default libraries.
22           This was changed by mistake in the previous version.
23
24 2006-05-28 Vangelis Rokas <vrokas AT users.sourceforge.net>
25
26         * src/pic16/gen.c (genFunction, genEndFunction): some
27         beautifications, fixed bug with falsely restoring FSR2 in large
28         stack model, thanks to Beau E. Cox for reporting the bug
29
30 2006-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
31
32         * debugger/mcs51/break.c,
33         * debugger/mcs51/cmd.c (throughout): removed unused variables and labels,
34           use %p to print pointers, made address variables unsigned
35         * debugger/mcs51/cmd.c (infoSymbols): added missing parameter to printf
36         * debugger/mcs51/symtab.c (parseSymbol): must return something
37         * src/mcs51/gen.c (aopForSym): small optimization,
38            moved declarations mcs51_ptrRegReq and mcs51_nRegs to ralloc.h,
39           (freeAsmop): added missing break,
40           (aopPut): removed parameter bvolatile, determine it inside the function,
41           (saveRegisters, unsaveRegisters): small optimization,
42           (genIpush): removed pointless check,
43           (throughout): replaced Safe_calloc, strcpy with Safe_strdup,
44           replaced sprintf with SNPRINTF,
45           replaced strcpy with strncpyz,
46           updated aopPut calls,
47           replaced D(emitcode("; genXXX", "")) with D(emitcode(";", "genXXX"))
48         * src/mcs51/ralloc.h:  added declarations mcs51_ptrRegReq and mcs51_nRegs
49
50 2006-05-24 Borut Razem <borut.razem AT siol.net>
51
52         * support/regression/tests/bug-221100.c: fixed xdata problem caused by
53           modification of test for the pic16 port, put the array to the code
54           memory for pic16port; thanks to Maarten Brock and Frieder Ferlemann
55
56 2006-05-23 Jesus Calvino-Fraga <jesusc at ece.ubc.ca>
57
58         * src/pic/gen.c: MSC 6 does not have <stdint.h>.  Use pstdint.h instead.
59         * support/Util/pstdint.h: added
60
61 2006-05-22 Borut Razem <borut.razem AT siol.net>
62
63         * src/regression/Makefile: removed bool2.c test, added -q linker option
64         * src/regression/add2.c, src/regression/add3.c, src/regression/bool1.c,
65           src/regression/bool3.c, src/regression/nestfor.c, src/regression/ptrfunc.c,
66           src/regression/compare.c, src/regression/or1.c, src/regression/compare2.c,
67           src/regression/while.c, src/regression/compare3.c, src/regression/compare4.c,
68           src/regression/compare5.c, src/regression/sub2.c, src/regression/rotate1.c,
69           src/regression/rotate2.c, src/regression/rotate3.c, src/regression/rotate4.c,
70           src/regression/switch1.c, src/regression/rotate5.c, src/regression/for.c,
71           src/regression/add.c, src/regression/sub.c, src/regression/call1.c:
72           define SUPPORT_BIT_TYPES 0, removed unused bit variables
73
74 2006-05-22 Raphael Neider <rneider AT web.de>
75
76         * src/pic16/gen.c (pic16_storeForReturn): fragile fix for
77           bug #1492360 (problematic due to generic pointers, see code)
78
79 2006-05-22 Borut Razem <borut.razem AT siol.net>
80
81         * support/regression/ports/pic16/specs.mk: removed stack size linker
82           directive
83         * support/regression/tests/array.c,
84           support/regression/tests/bitopcse.c,
85           support/regression/tests/bug-908454.c,
86           support/regression/tests/malloc.c: modified for pic16 regression test
87         * support/regression/tests/bitfields.c:
88           pic16 - excluded bitfileds of size > 8
89         * support/regression/tests/bp.c: pic16 - reduced data size
90         * support/regression/tests/bug-221100.c: pic16 - reduced data size
91         * support/regression/tests/bug-460010.c:
92           pic16 - used the absolute address the fits in memory
93         * support/regression/tests/bug-716242.c:
94           bug [ 1443651 ] pic 16: redefining symbol that cannot be redefined.
95         * support/regression/tests/float.c:
96           pic16 - excluded - data size too big
97         * support/regression/tests/onebyte.c:
98           pic16 - bug [ 1444425 ] onebyte.c regression tes fails on pic16
99         * support/regression/tests/shifts.c:
100           pic16 - function names probably have to differ in first X characters
101           (gpasm limitation?)
102         * support/regression/tests/staticinit.c:
103           pic16 - excluded some tests due error: no target memory available for
104           section ".idata"
105
106 2006-05-22 Borut Razem <borut.razem AT siol.net>
107
108         * support/Util/dbuf.c: fixed bug #1489008 fix dbuf_c_str(),
109           second try. Thanks Stas Sergeev once more.
110
111 2006-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
112
113         * src/hc08/gen.c (transferAopAop): aop forced to stack was not restored,
114           (genLeftShift, genRightShift): fixed bug 1491627
115         * src/hc08/peeph.def (rules 7, 8.x): added
116         * support/regression/tests/shifts.c (ShiftLeftByParam,
117           ShiftRightByParam, testShiftByParam): added to test variable shifting
118
119 2006-05-20 Raphael Neider <rneider AT web.de>
120
121         * src/pic/gen.c (bitpatternFromVal): fixed for 64-bit machines
122         * src/pic16/ralloc.c (newReg): use correct name in hashtable,
123           (allocReg): add only new registers to dynAllocRegs,
124           (pic16_assignRegisters): do not reset dynrIdx, fixes bugs
125             #1489055, #1445850, and probably #1483693
126
127 2006-05-19 Vangelis Rokas <vrokas AT users.sourceforge.net>
128
129         * src/pic16/glue.c (pic16_emitConfigRegs, pic16_emitIDRegs): fixed
130         bug in for-loop that didn't emit the last of CONFIG and ID registers
131
132 2006-05-18 Maarten Brock <sourceforge.brock AT dse.nl>
133
134         * src/mcs51/gen.c (genCodePointerGet): inc dptr instead of loading acc
135           with offset
136         * src/mcs51/peeph.def (186.x): updated and reenabled to fix bugs
137           1489016, 1434401 and 1490124
138         * src/ds390/peeph.def (186.x, 227.x): updated and reenabled to fix bugs
139           1489016, 1434401 and 1490124
140
141 2006-05-17 Borut Razem <borut.razem AT siol.net>
142
143         * support/Util/dbuf.c: fixed bug #1489008 fix dbuf_c_str(),
144           thanks Stas Sergeev
145
146 2006-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
147
148         * device/include/mcs51/P89c51RD2.h,
149         * device/include/mcs51/P89LPC901.h,
150         * device/include/mcs51/P89LPC922.h,
151         * device/include/mcs51/P89LPC932.h: added, thanks Omar Espinosa
152
153 2006-05-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
154
155         * device/lib/pic16/libsdcc/stack/{stack.S, Makefile.in}: add workaround
156         to fix missing stack pragma in compiled binary object file,
157
158 2006-05-14 Bernhard Held <bernhard AT bernhardheld.de>
159
160         * support/packihx/configure.in,
161         * support/packihx/configure: removed warning, autoconf >= 2.5x can
162         determine sizeof basic types even while cross compiling
163
164 2006-05-13 Bernhard Held <bernhard AT bernhardheld.de>
165
166         * src/avr/gen.c (aopop),
167         * src/ds390/gen.c (aopOp),
168         * src/hc08/gen.c (aopOp),
169         * src/mcs51/gen.c (aopop),
170         * src/pic16/gen.c (pic16_aopOp),
171         * src/pic/gen.c (aopOp),
172         * src/z80/gen.c (aopop): fix for bug #1479882; use new, exclusive asmop
173         if size of operand is smaller than spill location
174
175 2006-05-12 Borut Razem <borut.razem AT siol.net>
176
177         * *.dsw, *.dsp: changed property svn:eol-style to CRLF since they
178           have to have CR/LF line endings even if they are checked out on *nix
179           or on WIN32 in cygwin binmode
180
181 2006-05-12 Maarten Brock <sourceforge.brock AT dse.nl>
182
183         * doc/sdccman.lyx: documented numeric ranges, WEBDOC #1442369
184         * device/include/ds80c390.h: added sfr16 definitions
185         * src/ds390/gen.c,
186         * src/ds390/gen.h,
187         * src/ds390/main.c,
188         * src/ds390/ralloc.c,
189         * src/ds390/ralloc.h: changes all over the place to sync with mcs51
190           fixing several bugs and adding sfr16/sfr32, reentrant bit params,
191           bit returning functions
192         * support/regression/tests/sfr16.c: enabled test on ds390
193
194 2006-05-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
195
196         * src/hc08/gen.c (asmopToBool, genIfx): fix for bug #1429722
197         * src/hc08/gen.c (storeRegToAop): fix for bug #1439894
198
199 2006-05-11 Maarten Brock <sourceforge.brock AT dse.nl>
200
201         * sim/ucsim/sim.src/memcl.h: added get_decoder() to cl_address_space
202         * sim/ucsim/sim.src/mem.cc: implemented cl_address_space::get_decoder,
203           (cl_address_space constructor): removed expensive initialization,
204           (cl_address_space::get_cell): extended for late initialization,
205           (cl_address_space::*): use late initialization,
206           (cl_address_decoder::activate): removed expensive initialization,
207           This reduced regression test running time by 25%
208
209 2006-05-11 Bernhard Held <bernhard AT bernhardheld.de>
210
211         * packihx/,
212         * configure.in,
213         * configure,
214         * sdcc.dsw,
215         * Makefile.bcc,
216         * Makefile.in,
217         * support/packihx/Makefile.in,
218         * support/packihx/clean.mk,
219         * support/packihx/Makefile.bcc,
220         * support/packihx/PackIhx.dsp: moved packihx to support/packihx
221
222 2006-05-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
223
224         * src/SDCCval.c (valNot): fix for regression test failure
225           of not.c on big endian hosts
226
227 2006-05-10 Maarten Brock <sourceforge.brock AT dse.nl>
228
229         * device/inlcude/mcs51/msc1210.h: new, added, thanks Philippe Latu
230
231 2006-05-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
232
233         * device/lib/mcs51/Makefile.in: changed string comparison operator
234           to = for POSIX compliance; == is bash extension
235
236 2006-05-10 Maarten Brock <sourceforge.brock AT dse.nl>
237
238         * device/lib/hc08/_mulint.c: applied patch 1485428, thanks
239           kosmonaut_pirx
240
241 2006-05-09 Vangelis Rokas <vrokas AT users.sourceforge.net>
242
243         * src/pic16/gen.c (pic16_freeAsmop): release any temp registers
244         allocated by aopForSym thus fixing bug #1478657 about failed testfwk.c
245         * src/pic16/main.c (_pic16_keywords): added 'sfr16' keyword,
246         * src/pic16/ralloc.c (pic16_allocWithIdx): also a fix for bug exposed by
247         bug report #1478657,
248
249 2006-05-05 Borut Razem <borut.razem AT siol.net>
250
251         * doc/Makefile.in: remove of WARNINGS and labels.pl immediately after
252           making the html
253
254 2006-05-02 Borut Razem <borut.razem AT siol.net>
255
256         * doc/Makefile.in: removed *.ind dependency since there is no rule to
257           create *.ind, which made make to fail if invoked with -j 2
258
259 2006-05-01 Maarten Brock <sourceforge.brock AT dse.nl>
260
261         * src/SDCCglue.c (emitRegularMap): partial fix for bug 1477149, thanks
262           Hubert Sack for patch 1479782
263
264 2006-05-01 Vangelis Rokas <vrokas AT users.sourceforge.net>
265
266         * src/pic16/glue.c (pic16_printIvalStruct): fixed bug #1445929
267
268 2006-05-01 Raphael Neider <rneider AT web.de>
269
270         * src/pic/device.c (sanitise_processor_name): only remove p(ic) prefix,
271           (create_pic): store only prefix-free device name,
272           (init_pic): check for device names with "16" prefix,
273           (list_valid_pics),
274         * src/pic/device.h (struct PIC_device),
275         * src/pic/main.c (_pic14_genAssemblerPreamble): adapted to single
276             stored device name,
277         * device/include/pic/pic12f{635,675,629,683}.h,
278         * device/lib/pic/libdev/pic12f{635,675,629,683}.c: NEW device libraries
279         * device/lib/pic/libdev/Makefile.in: allow pic12* devices,
280         * device/include/pic/pic16f505.h,
281         * device/lib/pic/libdev/pic16f505.c: removed
282         * device/include/pic/pic14devices.txt: added support for pic12f
283             devices, removed unsupported non 16-bit devices
284             [above changes provided by patch from Zik Saleeba]
285         * src/pic/*, src/pic16/*, device/include/pic16/*,
286           device/lib/pic/**, device/lib/pic16/**: obfuscated email address
287
288 2006-05-01 Borut Razem <borut.razem AT siol.net>
289
290         * configure.in, configure, doc/Makefile.in:
291           sync with nightly build makefile - latex, dvipdf and dvips
292           not needed any more
293
294 2006-04-30 Bernhard Held <bernhard AT bernhardheld.de>
295
296         * support/scripts/sdcc.nsi: removed all Readmes and Makefiles
297         in the library source
298
299 2006-04-30 Maarten Brock <sourceforge.brock AT dse.nl>
300
301         * support/regression/ports/hc08/spec.mk: fixed bug 1478892
302
303 2006-04-28 Raphael Neider <rneider AT web.de>
304
305         * src/pic16/pcode.c (pic16_newpCodeOpLit12),
306         * src/pic16/gen.c (pic16_popGetLit12): NEW, create 12 bit literal,
307           (pic16_loadFSR0): handle 12 bit literals correctly, fixes #1440527
308         * src/pic16/pcode.h: added prototype for pic16_newpCodeOpLit12()
309
310 2006-04-28 Bernhard Held <bernhard AT bernhardheld.de>
311
312         * device/lib/pic/libdev/Makefile.in,
313         * device/lib/hc08/Makefile.in,
314         * device/lib/gbz80/Makefile.in,
315         * device/lib/z80/Makefile.in,
316         * device/lib/ds390/Makefile.in,
317         * device/lib/ds400/Makefile.in: added srcdir to include search path,
318         thanks to Borut for the bug report
319         * configure.in,
320         * configure: always create doc/Makefile independent from --enable-doc
321         * Makefile.in: always install from directory doc independent from
322         --enable-doc
323         * device/lib/pic/Makefile.in: added libdev again, it was erroneously
324         removed
325         * device/lib/pic/libdev/Makefile.in: fixed VPATH build
326         * doc/Makefile.in: install *.txt if present
327         * device/include/Makefile.in (install): added installation of pic/*.inc
328         and pic/*.txt files again, they were erroneously removed
329
330 2006-04-28 Raphael Neider <rneider AT web.de>
331
332         * src/pic/{gen.c,main.h,pcode.c},
333         * src/pic16/{gen.c,pcode.c}: quietened compiler warnings
334             concerning signedness with casts
335
336 2006-04-28 Raphael Neider <rneider AT web.de>
337
338         * src/pic/gen.c (genFunction): set global pic14_hasInterrupt on
339             definition of an interrupt handler,
340         * src/pic/glue.c (pic14_emitInterruptHandler): moved output of
341             interrupt handler stuff from picglue() to separate routine,
342           (picglue): enabled definition of intr handlers in files w/o main()
343
344 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
345
346         * support/librarian/sdcclib.c: moved include <limits.h> up to enable
347           compilation with MSVC 2005 Express Edition (VC8)
348
349 2006-04-26 Bernhard Held <bernhard AT bernhardheld.de>
350
351         * device/lib/Makefile: fixed build of gbz80 lib
352
353 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
354
355         * support/regression/tests/bug-460010.c,
356         * support/regression/tests/bug-524691.c,
357         * support/regression/tests/bug-716242.c: removed conditional defines
358           that are already in testfwk.h
359
360 2006-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
361
362         * src/ds390/gen.c (AccAXRrl1, AccAXLrl1): changed to real rotate by 1,
363           (AccAXRsh1): added, shift right by 1,
364           (AccAXLsh, AccAXRsh, AccAXRshS): updated for AccAXRrl1, AccAXRsh1 and
365            AccAXLrl1
366         * support/regression/tests/rotate.c: use <stdint.h> and enabled ds390
367
368 2006-04-25 Bernhard Held <bernhard AT bernhardheld.de>
369
370         * src/SDCCast.c (decorateType): partial fix for RFE 1475769,
371         remove cast to same type
372         * src/SDCCast.c (decorateType): fix for RFE 1475742,
373         optimize 'ifx (op == 0)' resp. 'ifx (op != 0)'
374         * as/z80/Makefile,
375         * link/z80/Makefile: removed, they have moved to
376         Makefile.in files
377         * configure,
378         * configure.in: replaced duplicate message about ucsim by missing sdcpp
379         * install-sh: fix bug #1204398 by setting umask 0022
380         * device/lib/Makefile: separate build of z80 and gbz80 lib
381
382 2006-04-24 Bernhard Held <bernhard AT bernhardheld.de>
383
384         Enabled VPATH feature: changed nearly all Makefiles (149 files).
385         See sdccman.lyx '2.4.10 VPATH feature' about how to use it.
386
387         One basic decision: e.g. src/clean.mk includes further files. In order
388         to make this work there are two solutions:
389         - rename another dozen clean.mk to clean_in.mk, add srcdir to them and
390           run configure on them. This way they can use
391           'include $(srcdir)/port-clean.mk'
392         - always include clean.mk by the Makefile at the same level. To avoid
393           that `make clean` tries to include and build Makefile.dep the
394           MAKECMDGOALS are examined (see e.g. src/Makefile.in). This has been
395           implemented, because now even `make uninstall` doesn't create
396           Makefile.in. clean.mk could be eliminated by pasting it in
397           Makefile.in.
398
399         * debugger/mcs51/Makefile.in: build own objects from library sources
400         (SLIB, SDCC) in current directory
401
402         * configure, configure.in: renamed --disable-device-lib-build in
403         --disable-device-lib; added --enable-doc, the required tools are
404         searched by configure; added result message; the toolchain for the
405         belonging ports are now only built, if the port is enabled.
406
407         * support/regression/*: all output is written in directory gen, because
408         the fwk and ports directories don't livet in the build tree using vpath
409
410         * doc/sdccman.lyx: renamed --disable-device-lib-build to
411         --disable-device-lib, added --enable-doc, added section VPATH
412
413         * sim/ucsim/configure.in,
414         * sim/ucsim/configure.in: hc08 couldn't be disabled, now hc08 and
415         z80 are enabled by default
416
417 2006-04-24 Raphael Neider <rneider AT web.de>
418
419         * src/pic/device.c (pic14_assignConfigWordValue): remember assignments
420             to config word, "pic14_"-prefixed some extern functions
421           (pic14_emitConfigWord): emit __config directive(s) if assignment to
422             config word has been found
423         * src/pic/device.h: added prototypes
424         * src/pic/pcode.c: added "pic14_"-prefix where needed
425         * src/pic/ralloc.c (IS_CONFIG_ADDRESS,pic14_assignRegisters): cosmetic
426             fixup
427         * src/pic/glue.c (pic14_constructAbsMap): handle assignments to config
428             words,
429           (pic14emitRegularMap): ignore config words,
430           (pic14createInterruptVect): moved generating __config directives away
431           (picglue): have __config directives emitted
432
433 2006-04-24 Borut Razem <borut.razem AT siol.net>
434
435         * doc/Makefile: sync with nightly build makefile
436
437 2006-04-24 Raphael Neider <rneider AT web.de>
438
439         * src/pic/pcoderegs.c (OptimizeRegUsage): do not optimize
440             registers that have not been assigned proper liveranges,
441             fixes #1469504 and #1474602,
442           (pCodeRegOptimizeRegUsage): fixed typo in comment
443
444 2006-04-24 Borut Razem <borut.razem AT siol.net>
445
446         * device/examples/main8051.c: deleted - it was removed from CVS
447           24.mar.2000 and after that modified 18.feb.2001, so it reappered
448           after the transition to Subversion
449         * src/SDCCalloc.h: deleted - it was removed  from CVS
450           3.feb.2001 and after that modified 18.feb.2001, so it reappered
451           after the transition to Subversion
452         * sim/ucsim/cpu.gif, sim/ucsim/interrupt.gif, sim/ucsim/new.gif,
453           sim/ucsim/serial1.gif, sim/ucsim/serial2.gif,
454           sim/ucsim/term_cpuopt.gif, sim/ucsim/timers.gif, sim/ucsim/wins.gif,
455           sim/ucsim/post.jpg, sim/ucsim/UCsim.jpg: corrected
456
457 2006-04-22 Maarten Brock <sourceforge.brock AT dse.nl>
458
459         * as/asx8051.dsp: added mcs51/strcmpi.h
460         * as/hc08/as_hc08.dsp: added asm.h, m6808.h, strcmpi.h
461         * as/hc08/aslink.h: updated lnksect prototype
462         * as/hc08/asm.h,
463         * as/mcs51/asm.h: added a_addr to struct area and s_org to struct sym
464         * as/hc08/asmain.c,
465         * as/mcs51/asmain.c (asmbl): init dot.s_org for S_ORG,
466           (newdot): handle A_ABS
467         * as/hc08/asout.c,
468         * as/mcs51/asout.c (outarea): output address
469         * as/hc08/lkaomf51.c,
470         * as/mcs51/lkaomf51.c: disabled unused array UsageType
471         * as/hc08/m08pst.c,
472         * as/mcs51/i51pst.c,
473         * as/z80/z80pst.c: "ABS" is not A_OVR
474         * as/hc08/lkarea.c (newarea): read a_addr,
475           (lnkarea): added codemap array, sort absolute areas to the front,
476            combine all GSINITx/GSFINAL,
477           (find_empty_space, allocate_space): new functions,
478           (lnksect): return next address, handle absolute sections
479         * as/mcs51/lkarea.c (newarea): read a_addr,
480           lnksect2 prototype changed,
481           (lnkarea2): define codemap unsigned, combine all GSINITx/GSFINAL,
482           (find_empty_space, allocate_space): new, factored out of lnksect2,
483           (lnksect2): return next address, handle absolute sections
484         * as/hc08/lkhead.c,
485         * as/mcs51/lkhead.c (newhead): head is absolute but not overlay
486         * as/hc08/lklibr.c (addfile, fndsym),
487         * as/mcs51/lklibr.c (addfile, buildlibraryindex, fndsym): prevent
488           index out of range and detect both '\' and '/'
489         * device/include/mcs51/c8051f200.h: added _XPAGE, removed bad comment
490         * device/include/stdbool.h: removed SDCC_ds390 from check to pass
491           regression tests (ds390 cannot return bool yet)
492         * doc/sdccman.lyx: changed version number, document changed --no-peep,
493           document critical interrupts on z80, document changed SDCC define
494         * src/asm.c (_asxxxx_mapping): fixed .org directive,
495           (_a390_mapping): added .org directive
496         * src/hc08/gen.c (transferAopAop): made bytemask log to fix warning,
497           (genMultOneByte): fixed warnings
498         * src/hc08/hc08.dsp: lowered warning level to 2 to suppress pedantic
499           ones
500         * src/pic16/device.c: removed newReg prototype, removed BYTE_IN_LONG
501         * src/pic16/gen.c (pic16_popGetLabel): made parameter key signed,
502           (pic16_genLeftShiftLiteral, genRightShiftLiteral): fixed warnings
503         * src/pic16/gen.h: changed prototype for pic16_popGetLabel
504         * src/pic16/main.c: removed newReg prototype
505         * src/pic16/pcode.c,
506         * src/pic16/pcode.h (pic16_emitDB): changed parameter c to int to fix
507           warnings
508         * src/pic16/pic16.dsp: lowered warning level to 2 to suppress pedantic
509           ones
510         * src/pic16/ralloc.c
511         * src/pic16/ralloc.h (newReg): changed type to int and size to unsigned
512           to fix warnings
513         * src/pic/pcode.c (allocInternalRegister): changed parameter optype
514           from short to PIC_OPTYPE
515         * src/pic/pic.dsp: lowered warning level to 2 to suppress pedantic ones
516         * src/pic/ralloc.c (newReg, allocInternalRegister): changed parameter
517           optype from short to PIC_OPTYPE
518         * src/port.h: made int_size unsigned to fix warnings
519         * src/SDCC.y: fixed warning on MSVC
520         * src/SDCCicode.c (getArraySizePtr): return unsigned int
521         * src/SDCCopt.c (convertToFcall): fixed warnings
522         * src/SDCCsymt.h: removed double prototype for genSymName
523         * src/xa51/ralloc.c (allocReg): made size unsigned int, type int and
524           offset int to fix warnings
525
526 2006-04-22 Borut Razem <borut.razem AT siol.net>
527
528         * doc/sdccman.lyx, */Makefile, */Makefile.in:
529           references to CVS replaced with Subversion
530
531 2006-04-21 Borut Razem <borut.razem AT siol.net>
532
533         * doc/sdccman.lyx, */Makefile, */Makefile.in:
534           references to CVS replaced with Subversion
535
536 2006-04-19 Borut Razem <borut.razem AT siol.net>
537
538         * src/version.awk: adapted for svn
539         * /asxxxx/asxhtml/*.gif: set property svn:mime-type to image/gif
540           sim/ucsim/doc/*.gif: set property svn:mime-type to image/gif
541           sim/ucsim/doc/*.jpg: set property svn:mime-type to image/jpeg
542           /binutils-avr/etc/*.vi, *.jin: removed all properties
543           support/scripts/sdcc.ico: set property svn:mime-type to image/x-icon
544
545 2006-04-19 Borut Razem <borut.razem AT siol.net>
546
547         * CVS to Subversion migration completed
548
549 2006-04-18 Borut Razem <borut.razem AT siol.net>
550
551         * support/scripts/sdcc.nsi: removed unexisting ${DEV_ROOT}\lib\pic\*.o,
552           ${DEV_ROOT}\lib\src\pic\libdev\*.S, ${DEV_ROOT}\lib\src\pic\libdev\*.inc
553
554 2006-04-17 Borut Razem <borut.razem AT siol.net>
555
556         * device/include/Makefile.in: added pic/*.inc to the installation
557
558 2006-04-15 Bernhard Held <bernhard AT bernhardheld.de>
559
560         * support/regression/collate-results.py: fixed output in case of
561         a valdiag error
562         * support/regression/generate-cases.py: fixed splitting of pathnames
563         with dots
564         * as/hc08/lklibr.c (addfile),
565         * as/mcs51/lklibr.c (addfile): fixed off-by-one bug
566
567 2006-04-11 Raphael Neider <rneider AT web.de>
568
569         * src/pic16/gen.c (getFreePtr, pic16_popRegFromString),
570         * src/pic16/ralloc.c (pic16_allocregWithName): removed debug output
571         * src/pic16/pcode.c (assignValnums): fixed #1460578
572
573 2006-04-11 Raphael Neider <rneider AT web.de>
574
575         * device/lib/pic/libdev/*.c,
576         * device/include/pic/*.h: replaced sfr and data with __sfr and __data,
577           fixes #1468739, enables compilation in --std-c99 mode
578         * support/scripts/inc2h.pl: emit __sfr/__data instead of sfr/data
579
580 2006-04-11 Raphael Neider <rneider AT web.de>
581
582         * src/pic/device.c (find_device): removed debug output
583           (list_valid_pics): enabled verbose listing of supported devices
584         * device/include/stdbool.h: define bool as char for pic14/16 as well
585
586 2006-04-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
587
588         * src/SDCC.y: allow using brackets here: "__interrupt (1) __using (1)"
589
590 2006-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
591
592         * .version: bumped version to 2.5.6
593         * src/pic/ralloc.c (newReg): MSVC doesn't support __builtin_return_address
594
595 2006-04-06 Raphael Neider <rneider AT web.de>
596
597         * .version: bumped version to 2.5.6 (pic14 ABI changed)
598         * src/SDCCmain.c: add -DSDCC_PROCESSOR=<id> for pic14 port
599         * src/pic/glue.c (emitSymbolToFile,pic14_constructAbsMap,
600           pic14emitRegularMap,pic14emitMaps): moved output for absolute symbols to
601             pic14_constructAbsMap
602           (pic14printPublics): declare absolute global symbols as global
603           (pic14createInterruptVect),
604         * src/pic/ralloc.c (IS_CONFIG_ADDRESS): support second config word,
605           (newReg): assume new registers unused, use correct name in
606             hashtable (reg->name instead of name), more debugLog output
607         * src/pic/device.h (PIC_device): added fields for verbose output
608         * src/pic/device.c: moved device definition to pic14devices.txt,
609             added routines for runtime parsing of pic14devices.txt,
610             added support for second config word
611         * src/pic/main.c (_process_pragma): removed #pragma maxram,
612           (_pic14_keywords): no longer accept "bit" and "sbit" keywords
613           (_pic14_initPaths): add search paths with "pic" suffix (not "pic14")
614           (_pic14_parseOptions): moved pCodeInitRegisters here
615           (_pic14_do_link): add "pic$(ARCH).lib" to linker arguments
616         * src/pic/pcode.c (AnalyzeBanking): bail out on unset processor,
617           (pCodeInitRegisters): rewrapped comments, perpared new approach to
618             handling the pseudo stack
619         * device/lib/Makefile.in: ignore failures in objects-pic16,
620         * device/lib/pic/{configure,configure.in,Makefile}: added libdev/
621         * device/lib/pic/NEWS: document new dependency on picXXX.lib
622         * device/lib/pic/Makefile.subdir,
623         * device/lib/pic16/Makefile.subdir: improved clean rules
624         * device/lib/pic/libdev/: NEW, pic14 device libraries
625         * device/lib/pic/libsdcc/_gptr{get,put}{1,2,3,4}.S: use _X not X
626         * device/lib/pic/libsdcc/macros.inc: use _X not X, declare default SFRs
627         * device/include/Makefile.in: create subdir and install pic14 headers
628         * device/include/pic/p16f_common.inc: removed unused declarations
629         * device/include/pic/pic16*.h: added header files for 100+ 14 bit
630             PICs from inc2h.pl v1.6,
631             replaced BIT_AT macros with struct declarations
632         * device/include/pic/pic14devices.txt: definition of supported devices,
633             all above improvements contributed by Zik Saleeba, thanks
634         * support/scripts/inc2h.pl: removed BIT_AT, replaced with structs
635         * support/scripts/sdcc.nsi: also install pic14 device libraries and
636             headers
637
638 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
639
640         * device/include/mcs51/c8051f410.h: added interrupt numbers,
641         * device/include/mcs51/c8051f200.h: old SiLabs mcu completes the list,
642           thanks to Charles Olds
643
644 2006-04-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
645
646         * debugger/mcs51/cmd.c (infoRegisters): show return address on stack
647
648 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
649
650         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug 1464657
651         * src/mcs51/gen.c (genJumpTab): fixed bug in medium model
652         * support/regression/bug1464657.c: added, new test
653
654 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
655
656         * src/SDCCmain.c (preProcess): implemented RFE 1449908, define SDCC as the
657           version number
658
659 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
660
661         * src/SDCCpeeph.c (initPeepHole): implemented RFE 1460196, when both
662           --no-peep and --peep-file <file> are used don't use default rules but
663           do use the <file>
664
665 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
666
667         * src/mcs51/gen.c (genCall): fixed bug 1457608
668
669 2006-03-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
670
671         * doc/sdccman.lyx: reverted to version 1.129 of december as my latest
672         changes seem to cause (trigger?) problems with the build system.
673
674 2006-03-29 Maarten Brock <sourceforge.brock AT dse.nl>
675
676         * src/SDCCpeeph.c (operandsLiteral): new, added,
677           (callFuncByName): inserted operandsLiteral
678         * src/mcs51/peeph.def: reenabled 132.e, added extra check to 132.x
679
680 2006-03-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
681
682         * doc/sdccman.lyx: added paragraph "Use of SDCC in Education"
683         * src/mcs51/peeph.def: disabled rule 132.e fixing bug #1453093
684
685 2006-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
686
687         * src/z80/gen.c (genFunction, genEndFunction): fixed bug 1160666,
688           implemented patch 1120823 Thanks to Willy De la Court (normal
689           interrupts need an interrupt number now if they are made critical),
690           and enabled nesting of critical functions though not for gbz80
691           (genCritical, genEndCritical): added functions
692           (genZ80Code): added cases for CRITICAL and ENDCRITICAL
693         * src/z80/mappings.i: added "ei" to all mappings
694
695 2006-03-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
696
697         * sim/ucsim/cmd.src/newcmdcl.h: applied patch fixing GCC 4.1 build
698         submitted by the Debian SDCC maintainer Aurelien Jarno:
699         "Credits goes to Martin Michlmayr, who rebuilt the whole Debian
700         archive with gcc 4.1 on mips and wrote the patch"
701
702 2006-03-16 Raphael Neider <rneider AT web.de>
703
704         * src/pic16/genarith.c (genAddLit): simplified and fixed case where
705           the left operand is shorter than the result (c* = lit-c* + int),
706           fixes bug #1450796
707         * src/pic16/gen.c (genRightShift): check IS_SYMOP before accessing
708           OP_SYMBOL
709
710 2006-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
711
712         * src/.version: increased version number to 2.5.5
713         * src/SDCCmain.c (linkEdit): do not test for PIC16 target since, PIC16
714         linking is done manually in pic16 port's _linkEdit,
715         * src/SDCCsymt.c (compStructSize): for target PIC16 and shell variable
716         PIC16_PACKED_BITFIELDS, compact bitfield structures as much as possible,
717         * src/pic16/gen.c (aopForSym): when direct register name is WREG then
718         allocate asmop as AOP_ACC,
719         (aopForRemat): added parameter 'bool result' in function declaration,
720         (pic16_aopGet): return AOP_ACC when accessing WREG,
721         (pic16_popGetTempReg): minor modification,
722         (pic16_popRegFromIdx): first try with 'pic16_regWithIdx' then with
723         'pic16_allocWithIdx',
724         (genPcall): removed ftype, usage of OP_SYM_TYPE asserted error when
725         calling function in absolute addresses,
726         (genAssign): take into account AOP_ACC asmop,
727         * src/pic16/pcode.c (pic16_newpCodeOpReg): minor modifications,
728         * src/pic16/pcoderegs.c: some debug functions and lines added,
729         * src/pic16/ralloc.c (decodeRegType): added but commented out,
730         * (pic16_typeRegWithIdx): search 'pic16_dynInternalRegs' for given
731         register too,
732         * (pic16_findFreeReg, pic16_findFreeRegNext): allocate new register via
733         call to allocReg, not by manually allocating a new one,
734         (pic16_assignRegisters): now before going through the register
735         allocating functions mark all registers as free. This eliminates some
736         side effects resulting from peephole parser done earlier in the backbone
737
738 2006-03-13 Maarten Brock <sourceforge.brock AT dse.nl>
739
740         * src/SDCCicode.c (geniCodeLogic),
741         * src/SDCCast.c (decorateType): applied patch by Bernhard for rfe 1422617
742
743 2006-03-10 Maarten Brock <sourceforge.brock AT dse.nl>
744
745         * src/mcs51/gen.c (sameReg): new, checks if two aop regs are the same,
746           (genSend): bugfix, do not allocate and free twice,
747           (shiftRLong): handle partially overlapping aops
748         * support/regression/tests/bitopcse.c: fixed warning redefined idata
749
750 2006-03-08 Borut Razem <borut.razem AT siol.net>
751
752         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata
753           for pic16
754
755 2006-03-08 Maarten Brock <sourceforge.brock AT dse.nl>
756
757         * support/regression/tests/bug1409955.c: new, added
758         * src/mcs51/gen.h: changed asmop.freed:1 to asmop.allocated for tracking
759         * src/mcs51/gen.c (newAsmop): set asmop.allocated to 1,
760           (aopForSym, aopOp): increment asmop.allocated if reused,
761           (freeAsmop): decrement asmop.allocated and check for zero instead of
762           using asmop.freed,
763           (freeForBranchAsmop): use asmop.allocated instead of asmop.freed,
764           (genNot, genCpl, genUminus, genMinus, genMult, genDiv, genMod, genCmpGt,
765            genCmpLt, genAndOp, genOrOp, genAnd, genOr, genXor, genRRC, genRLC,
766            genGetHbit, genGetAbit, genGetByte, genGetWord, genSwap,
767            genLeftShiftLiteral, genLeftShift, genRightShiftLiteral,
768            genSignedRightShift, genRightShift, genDataPointerGet,
769            genPagedPointerGet, genFarPointerGet, genCodePointerGet,
770            genGenPointerGet, genDataPointerSet, genAssign, genCast): free asmop's
771             in reverse order from allocation,
772           (genPlus, genCmpEq): free asmop's in reverse order from allocation and
773             added swappedLR to keep track
774         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata,
775           pdata & code for GCC, z80, gbz80 & hc08
776         * support/regression/tests/zeropad.c: moved defines to testfwk.h
777
778 2006-03-08 Raphael Neider <rneider AT web.de>
779
780         * src/pic16/main.c (_hasNativeMulFor): fixed bug #1444425
781
782 2006-03-07 Maarten Brock <sourceforge.brock AT dse.nl>
783
784         * device/include/mcs51/c8051f410.h: new SiLabs mcu
785         * src/ds390/peeph.def: disabled 186.d and 227.a as fix for #1434401
786         * support/regression/tests/array.c: added parenthesis, made arrays unsigned
787
788 2006-03-06 Borut Razem <borut.razem AT siol.net>
789
790         * support/regression/ports/pic16/spec.mk: link with libm18f.lib,
791           made the linker quiet
792
793 2006-03-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
794
795         * src/pic16/gen.c (genPcall): fixed bug #1443644
796         * src/pic16/device.h (struct pic16_options_t): added 'int CATregs' flag
797         which dumps before the function entry point a data byte which represents
798         the number of the local variables used by the specified function, added
799         'xinst' for initial support for Extended Instruction Support,
800         * src/pic16/gen.c (aopForSym, pic16_aopGet): beautifications,
801         (pic16_testStackOverflow): do not prefix GSTACK_TEST_NAME with
802         port->fun_prefix anymore (may change later),
803         (genFunction, genEndFunction): do not store/restore local registers for
804         _main (this should take care the --main-return command line option in
805         the future),
806         (genOr): removed some legacy pic-port instructions,
807         * src/pic16/genarith.c (genAddLit): re-enabled old code because
808         performing operations with SFR's causes data to be written more than
809         once to each SFR. Perhaps SFRs should be handled in special cases...
810         * src/pic16/glue.c: macros BIG_ENDIAN and BYTE_IN_LONG are moved to
811         pcode.h
812         * src/pic16/main.c (_process_pragma): stack bound checking did not take
813         into account for stack starting position,
814         (struct OPTIONS pic16_optionsTable): added command line argument
815         --extended or -y for Extended Instruction Support,
816         * src/pic16/ralloc.c (pic16_decodeOp): added case for FUNCTION,
817         (deassignLRs): *** perhaps the most important change, old 'for' code
818         (commented out for reference), didn't account for some registers which
819         were left marked 'not free' after a pointer operation. The change
820         reduces register usage a lot in some cases
821
822 2006-03-04 Borut Razem <borut.razem AT siol.net>
823
824         * support/regression/ports/hc08/spec.mk: remove *.asm in traget
825           _clean
826         * support/regression/tests/bug-524697.c: decreased array size for
827           mcs51 to fit into the internal RAM
828         * support/regression/Makefile.in: a little bit more verbose
829
830 2006-03-03 Borut Razem <borut.razem AT siol.net>
831
832         * support/regression/fwk/lib/testfwk.c,
833           support/regression/fwk/include/testfwk.h: introduced function
834           _prints(), nonrecursive _printn(), call _initEmu() from main()
835         * support/regression/ports/gbz80/support.asm,
836           support/regression/ports/ucz80/support.asm,
837           support/regression/ports/z80/support.asm,
838           support/regression/ports/ds390/support.c,
839           support/regression/ports/hc08/support.c,
840           support/regression/ports/host/support.c,
841           support/regression/ports/mcs51/support.c,
842           support/regression/ports/xa51/support.c: added empty _initEmu()
843           function
844         * support/regression/ports/pic16/gpsim.cmd,
845           support/regression/ports/pic16/spec.mk,
846           support/regression/ports/pic16/support.c,
847           support/regression/Makefile.in: added pic16 regression test
848
849 2006-03-01 Raphael Neider <rneider AT web.de>
850
851         * src/pic16/gen.c (genPcall,pic16_derefPtr,genGenPointerGet,
852           genConstPointerGet): use safe way of generating MOVFF to cover
853             literals as well as registers, fixes bug #1440527
854         * src/pic16/glue.c (pic16_printIvalBitFields): prevent NULL pointer
855             dereference
856           (pic16_printIvalUnion,pic16_isUnion): NEW, handle initialized unions
857             more correctly, fixes bug #1232186
858           (pic16_printIval): use pic16_printIvalUnion() for initialized unions
859         * src/pic16/main.c (_pic16_linkEdit): reorder linker arguments to make
860             gplink guess the correct processor in more cases, applied patch
861             from Till Riedel attached to and fixing bug #1436552
862
863 2006-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
864
865         * support/regression/tests/array.c: added, contains check for #1434401
866         * src/mcs51/peeph.def: disabled 186.d as temporary fix for #1434401
867
868 2006-02-16 Maarten Brock <sourceforge.brock AT dse.nl>
869
870         * device/include/mcs51/at89s8253.h: new, thanks to Krzysztof Polomka
871         * device/include/mcs51/at89S8252.h: fixed, thanks to Krzysztof Polomka
872         * device/include/mcs51/c8051f326.h,
873         * device/include/mcs51/c8051f340.h: new SiLabs mcu's
874         * device/include/mcs51/c8051f000.h,
875         * device/include/mcs51/c8051f018.h,
876         * device/include/mcs51/c8051f020.h: used () with __at, renamed IDLE,STOP to
877           PCON_IDLE,PCON_STOP and added sfr16 definitions
878
879 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
880
881         * src/mcs51/gen.c (genPlus, genMinus, genMult, genGetAbit, genGetByte,
882           genGetWord): fixed bug 1409955
883
884 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
885
886         * device/include/hc08/mc68hc908gp32.h,
887         * device/include/hc08/mc68hc908jb8.h: removed AWUL, added PTA6 & PTA7
888
889 2006-02-13 Maarten Brock <sourceforge.brock AT dse.nl>
890
891         * src/SDCCast.c (constExprValue): return NULL if not a value
892         * src/SDCCglue.c (printIvalArray): fixed bug 1225568
893         * src/hc08/gen.c(genUnpackBits, genUnpackBitsImmed): fixed bug 1019480
894         * support/regression/tests/bitfields.c: enabled signed bitfield for all
895
896 2006-02-13 Borut Razem <borut.razem AT siol.net>
897
898         * src/regression/ptrarg.c: added, fails due to bug #1430967
899         * src/regression/Makefile: ptrarg.c added, ...
900
901 2006-02-12 Maarten Brock <sourceforge.brock AT dse.nl>
902
903         * src/z80/gen.c (genUnpackBits): fixed bug 1019480
904         * support/regression/tests/bitfields.c: enabled signed bitfield for z80
905
906 2006-02-11 Borut Razem <borut.razem AT siol.net>
907
908         * src/SDCCmain.c: Added "sdcc: Calling linker..." if --verbose,
909           print "Processor: xxx" message to stdout only if --verbose
910
911 2006-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
912
913         * src/SDCCglue.c (printIvalStruct): fixed bug 1426356 union initializer
914         * support/regression/tests/bug1426356.c: added
915         * support/regression/tests/bitfields.c: removed 2 tests
916
917 2006-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
918
919         * device/include/mcs51/at89c51snd1c.h: updated comments, see patch 1428901
920         * device/include/mcs51/c8051f330.h,
921         * device/include/mcs51/c8051f350.h: used () with __at, renamed IDLE,STOP to
922           PCON_IDLE,PCON_STOP and added sfr16 definitions
923         * device/lib/_divsint.c,
924         * device/lib/_divuint.c,
925         * device/lib/_divulong.c,
926         * device/lib/_divulong.c: renamed a,b to x,y to avoid confusion, fixed
927           register bank bug for small stackauto
928
929 2006-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
930
931         * support/regression/fwk/lib/timeout.c: include <stdlib.h> for exit()
932
933 2006-02-08 Maarten Brock <sourceforge.brock AT dse.nl>
934
935         * support/regression/ports/mcs51-xstack-auto/spec.mk: forgot -I(...)/mcs51
936         * all.dsp: corrected several bin paths
937         * device/include/mcs51/c8051f120.h,
938         * device/include/mcs51/c8051f300.h,
939         * device/include/mcs51/c8051f310.h: used () with __at and renamed IDLE,STOP
940           to PCON_IDLE,PCON_STOP
941         * device/include/mcs51/c8051f320.h: see above, also added sfr16 definitions
942         * device/lib/printf_large.c (output_float): fixed bug 1388703
943         * support/regression/tests/bug1057979.c: added test for bug 1388703
944
945 2006-02-08 Raphael Neider <rneider AT web.de>
946
947         * src/pic/pcode.c (pciTRIS): fixed typo,
948           (BuildFlow,LinkFlow_pCode): added (disabled) debug output,
949           (LinkFlow): fixed handling of flows that end in a call,
950           (ReuseReg): perform safety check earlier
951         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed
952             to work with flows at the beginning of a pBlock,
953             fixes #1426557 (Symbol not previously defined),
954           (pic14_ReMapLiveRanges): NEW, destroy and rebuild register
955             usage information
956           (RemoveUnusedRegisters): update register usage info
957         * src/pic/ralloc.c (newReg): prevent duplicate registers from being
958             created, reuse existing ones instead
959         * src/pic/gen.c (genPcall): fixed #1424719
960
961 2006-02-07 Bernhard Held <bernhard AT bernhardheld.de>
962
963         * link/z80/lkmain.c,
964         * link/z80/lklex.c,
965         * link/z80/lkdata.c,
966         * link/z80/aslink.h: fixed build on current cygwin:
967         replaced getline() by lk_getline()
968
969 2006-02-01 Borut Razem <borut.razem AT siol.net>
970
971         * src/regression/add.c, src/regression/add2.c, src/regression/add3.c,
972           src/regression/add4.c, src/regression/and1.c, src/regression/and2.c,
973           src/regression/arrays.c, src/regression/b.c, src/regression/bank1.c,
974           src/regression/bool1.c, src/regression/bool2.c,
975           src/regression/bool3.c, src/regression/call1.c,
976           src/regression/compare.c, src/regression/compare10.c,
977           src/regression/compare2.c, src/regression/compare3.c,
978           src/regression/compare4.c, src/regression/compare5.c,
979           src/regression/compare6.c, src/regression/compare7.c,
980           src/regression/compare8.c, src/regression/compare9.c,
981           src/regression/configword.c, src/regression/for.c,
982           src/regression/inline.c, src/regression/mult1.c,
983           src/regression/nestfor.c, src/regression/or1.c,
984           src/regression/pointer1.c, src/regression/ptrfunc.c,
985           src/regression/rotate1.c, src/regression/rotate2.c,
986           src/regression/rotate3.c, src/regression/rotate4.c,
987           src/regression/rotate5.c, src/regression/rotate6.c,
988           src/regression/rotate7.c, src/regression/string1.c,
989           src/regression/struct1.c, src/regression/sub.c,
990           src/regression/sub2.c, src/regression/switch1.c,
991           src/regression/while.c, src/regression/xor.c,
992           src/regression/create_stc, src/regression/simulate,
993           src/regression/rt.sh, src/regression/Makefile: reenabled Scott's PIC14
994           regression tests
995         * src/regression/gpsim_assert.h: added
996
997 2006-01-28 Bernhard Held <bernhard AT bernhardheld.de>
998
999         * src/ds390/gen.c (unsaveRegisters): fixed literal function pointer
1000         ((void (code *) (void)) 0) ();
1001         * as/hc08/aslex.c,
1002         * as/hc08/aslink.h,
1003         * as/hc08/asm.h,
1004         * as/hc08/asmain.c,
1005         * as/hc08/lkdata.c,
1006         * as/hc08/lklex.c,
1007         * as/hc08/lkmain.c,
1008         * as/mcs51/aslex.c,
1009         * as/mcs51/aslink.h,
1010         * as/mcs51/asm.h,
1011         * as/mcs51/asmain.c,
1012         * as/mcs51/lkdata.c,
1013         * as/mcs51/lklex.c,
1014         * as/mcs51/lkmain.c,
1015         * as/z80/aslex.c,
1016         * as/z80/asm.h,
1017         * as/z80/asmain.c: fixed build on current cygwin:
1018         replaced getline() by as_getline()
1019
1020 2006-01-27 Bernhard Held <bernhard AT bernhardheld.de>
1021
1022         * src/SDCC.y: fixed bug #716242, exchanged pointer and function
1023         declarator in the symbol chain
1024         * src/SDCCsymt.h,
1025         * src/SDCCsymt.c (processFuncPtrArgs): added, removes "(void)"
1026         parameter list for function pointers
1027         * src/SDCCast.c (decorateType): added call of processFuncPtrArgs()
1028         * support/regression/tests/bug-716242.c: added
1029
1030 2006-01-20 Bernhard Held <bernhard AT bernhardheld.de>
1031
1032         * src/SDCCicode.c (geniCodeAdd, geniCodeArray): use char for array
1033         offset if possible
1034         * src/SDCCast.c (getLeftResultType): 255 fits in char, not 256
1035
1036 2006-01-18 Bernhard Held <bernhard AT bernhardheld.de>
1037
1038         * src/SDCCast.c (backPatchLabels): fixed bug #1408066: made it
1039         inifinitely recurseable, added static
1040         * support/regression/tests/bug-1408066.c: added
1041
1042 2006-01-17 Bernhard Held <bernhard AT bernhardheld.de>
1043
1044         * src/SDCCicode.h,
1045         * src/SDCCicode.c (newiTempPreheaderLabel, newiTempLoopHeaderLabel):
1046         renamed, added possibility to create "postLoopLbl"-labels
1047         * src/SDCCBBlock.c (iCodeBreakDown): renamed newiTempPreheaderLabel to
1048         newiTempLoopHeaderLabel
1049         * src/SDCCloop.c (newInduction, newRegion, backEdges, insertIntoLoop,
1050         isNotInBlocks, addToExitsMarkDepth, createLoop, dominatedBy,
1051         addDefInExprs, assignmentsToSym, isOperandInvariant, pointerAssigned,
1052         hasNonPtrUse, loopInvariants, addressTaken, findInduction,
1053         findDefInRegion, mergeRegions, ifMerged, mergeInnerLoops): made static,
1054         (pinduction, pregion, hasIncomingDefs, findLoopEndSeq): disabled,
1055         (basicInduction): fixed bug #136564, made static,
1056         (loopInduction): changed parameter of basicInduction, made static,
1057         (addPostLoopBlock): added
1058         * src/SDCCloop.h: removed backEdges, pregion, pinduction,
1059         loopOptimizations, addressTaken, findDefInRegion, hasIncomingDefs,
1060         findLoopEndSeq
1061         * support/regression/tests/bug-136564.c: added
1062         * support/regression/ports/mcs51-xstack-auto/spec.mk: added
1063         --std-sdcc99 to LIBSDCCFLAGS
1064
1065 2006-01-16 Bernhard Held <bernhard AT bernhardheld.de>
1066
1067         * src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false
1068         while loop
1069         * support/regression/tests/bug-1406131.c: added
1070
1071 2005-12-31 Bernhard Held <bernhard AT bernhardheld.de>
1072
1073         * src/SDCCast.c (decorateType): fix promotion of unary minus
1074         * src/SDCCsymt.c (computeType): beautified
1075         * src/SDCCval.c (cheapestVal): beautified, old non-Ansi version removed,
1076         (valUnaryPM, valComplement): fix sign and promotion,
1077         (valNot): ANSI: result type is int (SDCC: unsigned char)
1078         * support/regression/tests/uminus.c: speedup by removing superflous
1079         test case 'int'
1080         * support/regression/tests/onebyte.c: added promotion and signedness
1081         tests for unary minus
1082         * support/regressions/tests/bug-477927.c: disable warning about
1083         uninitialized variables
1084         * support/regression/tests/not.c: added
1085
1086 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
1087
1088         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
1089         * src/mcs51/gen.c (gen51Code): show final register usage after
1090         fillGaps in asm with --i-code-in-asm
1091         * src/SDCClrange.c (sequenceiCode, setLiveFrom, setLiveTo,
1092         markLiveRanges, markAlive, findNextUseSym, findNextUse, unvisitBlocks,
1093         incUsed, rliveClear, adjustIChain): made static,
1094         (setFromRange): excluded because it's unused,
1095         (findPrevUseSym, markWholeLoop): added,
1096         (findPrevUse): rewritten; fixes bug 895992; now a complete search
1097         through all branches of predecessors enables sdcc to emit the warning
1098         W_LOCAL_NOINIT, marking of outermost loop was incomplete,
1099         (rlivePoint): made static, added parameter emitWarnings which is only
1100         true during the first run out of two,
1101         (findRecursiveSucc, findRecursivePred): removed,
1102         (computeLiveRanges): made static, added parameter emitWarnings,
1103         (dumpIcRlive): added for debugging only
1104         * src/SDCClrange.h: added boolean parameter to computeLiveRanges(),
1105         removed prototype of setFromRange()
1106         * src/SDCCopt.c (eBBlockFromiCode): added new parameter emitWarnings
1107         in call of computeLiveRanges()
1108         * support/regression/tests/bug-895992.c: added
1109         * support/regression/tests/bug-971834.c: added
1110         * support/valdiag/tests/bug-895992.c: added
1111         * support/valdiag/tests/bug-971834.c: added
1112
1113 2005-12-18 Raphael Neider <rneider AT web.de>
1114
1115         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
1116           (genUnpackBits): improved code for direct operands,
1117           (genPackBits): improved code for literal assignment to bitfields
1118             and for direct destination operands (no FSR indirection),
1119             prevented redundant AND, fixes #1362800,
1120           (AccLsh): added parameter to disable masking of the result
1121         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
1122           skip instructions with side-effects (like incfsz),
1123           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
1124         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
1125         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
1126           fixes #1375263
1127
1128 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
1129
1130         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
1131         volatile variables as spill location
1132
1133 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
1134
1135         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
1136         replacing literals
1137         * support/regression/tests/bug-1376320.c: added
1138
1139 2005-12-08 Raphael Neider <rneider AT web.de>
1140
1141         * src/pic/device.c: renamed is_shared to pic14_is_shared
1142         * src/pic/gen.c (genIfx): re-enabled handling of sbits
1143         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
1144           (is_valid_identifier): added for above workaround
1145
1146 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
1147
1148         * device/lib/Makefile.in: fixed to enable port-specific-objects
1149         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
1150           char, thanks Hubert Sack
1151         * doc/sdccman.lyx: documented --xstack-loc,
1152           elaborated a bit more on interrupts and pitfalls,
1153           removed "setjmp/longjmp unsupported",
1154           documented some unsupported C99 features
1155         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
1156         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
1157           if, thanks Hubert Sack
1158         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
1159         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
1160           make make_library
1161         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
1162           regression tests can report resource usage (rfe 700441)
1163         * support/regression/collate-results.py: report resource usage
1164         * support/regression/ports/ds390/spec.mk,
1165         * support/regression/ports/hc08/spec.mk,
1166         * support/regression/ports/mcs51/spec.mk,
1167         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
1168         * support/regression/ports/ds390/uCsim.cmd,
1169         * support/regression/ports/hc08/uCsim.cmd,
1170         * support/regression/ports/mcs51/uCsim.cmd,
1171         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
1172         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
1173           library, use the default one
1174         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
1175           building the library
1176
1177 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
1178
1179         * config.dsp: added dependency on .version and configure_vc.awk
1180         * device/include/setjmp.h: updated for --stack-auto and --xstack
1181         * device/include/mcs51/at89c51snd1c.h: corrected line endings
1182         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
1183         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
1184         * device/lib/libsdcc.lib: added _setjmp
1185         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
1186           (decorateType): fixed bug 1372851,
1187           (optimizeGetHbit): fixed warning
1188         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
1189           array initialisation
1190         * support/regression/tests/bug1057979.c: added test for bug 1358192
1191         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
1192
1193 2005-12-03 Borut Razem <borut.razem AT siol.net>
1194
1195         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
1196           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
1197
1198 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
1199
1200         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
1201         createIval): implement symbol independant "flexible array member",
1202         (createIvalCharPtr): implemented flexible array initialisation with a
1203         string
1204         * src/SDCCsymt.c (copyStruct): removed,
1205         (getSize): fixed misleading comment,
1206         (getAllocSize): removed, the additional allocation size is now in
1207         sym->flexArrayLength,
1208         (checkStructFlexArray): new, syntax checks for flexible array members,
1209         (compStructSize): added syntax checks for "flexible array members"
1210         (copyStruct): removed,
1211         (copyLinkChain): removed inefficient fix for bug 770487
1212         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
1213         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
1214         symbol->flexArrayLength
1215         * src/SDCCerr.c,
1216         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
1217         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
1218         * support/regression/tests/structflexarray.c: added
1219         * support/valdiag/tests/structflexiblearray.c: added
1220
1221 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
1222
1223         * src/SDCCast.c (decorateType): fixed bug 1368489
1224         * support/Util/SDCCerr.c,
1225         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
1226
1227 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1228
1229         * device/include/mcs51/at89c51snd1c.h: added file submitted by
1230           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
1231
1232 2005-11-27 Borut Razem <borut.razem AT siol.net>
1233
1234         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
1235           support/cpp2/mkdeps.h: added command line option
1236           -obj-ext=<extension> to SDCPP to define object file externion, used
1237           for generation of make dependencies (-M)
1238         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
1239
1240 2005-11-26 Borut Razem <borut.razem AT siol.net>
1241
1242         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
1243           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
1244           added pic and pic16 libraries
1245
1246 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1247
1248         * device/include/float.h: Corrected typo in prototype of __fsgt
1249
1250 2005-11-25 Borut Razem <borut.razem AT siol.net>
1251
1252         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
1253           added creation of model-mcs51-stack-auto libraries
1254
1255 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
1256
1257         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
1258         and fields-list too
1259         * src/SDCCast.c (createIvalArray): removed obsolete comment
1260
1261 2005-11-24 Borut Razem <borut.razem AT siol.net>
1262
1263         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
1264           added missing device/lib/mcs51/crt*.asm sources
1265
1266 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
1267
1268         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
1269
1270 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
1271
1272         * device/lib/_fs2schar.c,
1273         * device/lib/_fs2sint.c,
1274         * device/lib/_fs2slong.c: optimized inline asm
1275
1276 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1277
1278         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
1279           Better handling of floats between -1.0 and 0.0.
1280
1281 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1282
1283         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
1284           (the missing "if"s prohibited removal of redundant labels)
1285
1286 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1287
1288         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
1289           Properly convert floats between -1.0 and 0.0 to long, int, and char
1290           types (max integer value of negative floats tends to zero).
1291         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1292           Removed changes made so to work properly with floats between
1293           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
1294           and _fs2char.c
1295
1296 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1297
1298         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
1299         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
1300         (genCast) cosmetic change
1301         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
1302         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
1303         from mcs51
1304         * support/regression/tests/bitfields (testSignedBitfields): added
1305
1306 2005-11-18 Borut Razem <borut.razem AT siol.net>
1307
1308         * sdcc/device/lib/Makefile.in: remove all unnecessary files
1309         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
1310           introduced SILENT option to make building of pic16 libraries less
1311
1312 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1313
1314         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1315           Now they work properly with floats between -1.0 and 0.0
1316         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
1317
1318 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
1319
1320         * src/SDCCicode.c (printOperand): added missing else
1321
1322 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1323
1324         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
1325         reformatted for better readability
1326         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
1327         signed bitfields
1328
1329 2005-11-17 Borut Razem <borut.razem AT siol.net>
1330
1331         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
1332           introduced SILENT option to make building of pic16 libraries less
1333           verbose - used for nightly snapshot build
1334         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
1335           available on Win32 platforms.
1336         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
1337           medium, large, pic and pic16
1338
1339 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1340
1341         * device/lib/printf_large.c: Temporary patch for bug 1358192:
1342           printf("%f"...) sets fraction to zero.
1343
1344 2005-11-16 Raphael Neider <rneider AT web.de>
1345
1346         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
1347           fixes #1357221
1348         * src/pic/gen.c (genIfx): implemented for CARRY bit
1349         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
1350           to generic pointers, fixes #1357332,
1351           (pic16_movLit2f): NEW,
1352           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
1353
1354 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
1355
1356         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
1357
1358 2005-11-11 Raphael Neider <rneider AT web.de>
1359
1360         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
1361         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
1362           compute pointer's type from operand,
1363           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
1364           improved single bit reads, fixes bug #1353379
1365
1366 2005-11-09 Borut Razem <borut.razem AT siol.net>
1367
1368         * support/scripts/sdcc.nsi: added lib/pic to the package
1369
1370 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
1371
1372         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
1373
1374 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
1375
1376         * support/regression/tests/bug1348008.c: added
1377         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
1378         * support/regression/tests/bug1337835.c: updated comment
1379
1380 2005-11-06 Borut Razem <borut.razem AT siol.net>
1381
1382         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1383           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1384           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1385           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1386           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
1387           dynamic construction of cl_error_class and derivates - 2.nd try
1388
1389 2005-11-05 Borut Razem <borut.razem AT siol.net>
1390
1391         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
1392           bug, which caused Bus Errors on sparc solaris
1393
1394 2005-11-04 Borut Razem <borut.razem AT siol.net>
1395
1396         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1397           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1398           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1399           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1400           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
1401           and derivates to resolve the initialization problem on OSX
1402
1403 2005-11-02 Borut Razem <borut.razem AT siol.net>
1404
1405         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1406           corrected typo - #include <winsock2.h>
1407
1408 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
1409
1410         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
1411           (_asxxxx_mapping): added org directive for future enhancements
1412
1413 2005-11-01 Borut Razem <borut.razem AT siol.net>
1414
1415         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1416           enabled sockets on WIN32
1417         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
1418
1419 2005-10-31 Borut Razem <borut.razem AT siol.net>
1420
1421         * support/regression/generate-cases.py: escape backslashes in {testcase}:
1422           WIN32 backslash path delimiters should be escaped when used in C strings
1423         * support/regression/tests/bitfields.c: exclude failing assertions for
1424           __CYGWIN32__ and __MINGW32__ hosts
1425
1426 2005-10-30 Borut Razem <borut.razem AT siol.net>
1427
1428         * src/SDCCutil.c: corrected double comparison typo
1429
1430 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
1431
1432         * device/lib/medium/Makefile: added for new memory model medium
1433         * device/include/asm/mcs51/features.h: updated for medium/pdata
1434         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
1435           added Multiply & Accumulate sbit's and MAC0_PAGE define
1436         * device/include/mcs51/c8051f300.h: added sfr16 definitions
1437         * device/include/mcs51/c8051f310.h: added sfr16 definitions
1438         * device/lib/_mullong.c: update for medium model
1439         * device/lib/incl.mk: added medium model
1440         * doc/sdccman.lyx: documented medium model
1441         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
1442         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
1443         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
1444         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
1445           (allocParms): set SCLS and OCLS to pdata for medium model
1446         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
1447           for pdata,
1448           (powof2): return <0 if not power of 2
1449         * src/avr/gen.c (genBitWise): use updated powof2
1450         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
1451           (shiftR2Left2Result): small optimization in setup, save acc when storing,
1452           (shiftLLeftOrResult): use B if necessary
1453         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
1454         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
1455         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
1456         * support/regression/Makefile.in: added test-mcs51-medium
1457         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
1458
1459 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
1460
1461         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
1462         specifier unsigned
1463         * device/lib/time.c (mktime): fixed bug 1334315
1464
1465 2005-10-28 Raphael Neider <rneider AT web.de>
1466
1467         * device/include/pic/p16f_common.inc: added common declarations
1468         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
1469
1470 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1471
1472         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
1473           (aopPutUsesAcc): added to predict accumulator use,
1474           (assignResultValue): save acc if necessary,
1475           (genMinusDec): store result if indirectly addressed,
1476           (genDivOneByte):  save acc if necessary,
1477           (movLeft2Result): bugfix if left already in acc,
1478           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
1479             attention to accumulator use (esp. pdata),
1480           (genReceive): receive pdata correctly
1481         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
1482         * src/SDCCicode.h: added isOperandInPagedSpace prototype
1483
1484 2005-10-27 Raphael Neider <rneider AT web.de>
1485
1486         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
1487
1488 2005-10-27 Raphael Neider <rneider AT web.de>
1489
1490         * .version: changed version to 2.5.4
1491         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
1492         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
1493           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
1494             arithmetics support routines
1495         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
1496         * device/lib/Makefile.in: also create installdir for pic
1497
1498         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
1499           pic14 port as well
1500         * src/pic/device.c (dump_sfr): rewritten to delegate register
1501           placement to the linker (use `extern sym' rather than sym EQU addr),
1502           (validAddress): fixed to check last specified address
1503         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
1504           (popGetLit): truncate literal value to 8 bit,
1505           (popGet): moved assert to more appropriate place
1506           (popGetExternal): create pCode operand from and mark the according
1507             symbol as being `extern'
1508           (popGetAddr): added sanity check on immediate's offset, provide
1509             GPOINTER tag on demand
1510           (aopPut): fixed for immediates,
1511           (mov2w_op): move operand's address or contents to WREG (depending on
1512             operand type), safer variant of mov2w,
1513           (movwf,call_libraryfunc): NEW, handy abbreviations,
1514           (get_argument_pcop,get_return_val_pcop,pass_argument,
1515           get_returnvalue): interface for accessing function parameters and
1516             return values,
1517           (assignResultValuei,genRet): use new parameter/return value interface
1518           (pic14_getDataSize): back to old version handling generic pointers,
1519           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
1520             provided implementation and/or fixed old one,
1521           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
1522             calls, removed legacy 8051 reference code
1523           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
1524           (loadSignToC): NEW, move the operands sign bit to CARRY,
1525           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
1526             genRightShiftSigned, accepts negative shift counts,
1527           (setup_fsr): load FSR and adjust IRP (indirect memory access),
1528           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
1529             generic pointers, __data pointers and __code pointers,
1530           (genUnpackBits,genPackBits): rewritten to work with generic pointers
1531             and signed bitfields, limit bitfields to 8 bit,
1532           (genDataPointerGet): fixed number of bytes read,
1533           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
1534           (genPointerGet,genPointerSet): fixed handling of __code pointers,
1535             pointers to constant data are no longer assumed to point to __code
1536             space, removed invalid pointer types,
1537           (bitpatternFromVal): retrieve the PICs representation of an integer
1538             or float literal,
1539           (genDataPointerSet): fixed assigning to po_immediate operands,
1540           (genGenPointerSet): implemented as library call,
1541           (genIfx): fixed incorrect condition,
1542           (genAddrOf): limit generic pointers' addresses to 2 bytes,
1543             provide GPOINTER tag according to destination's storage class,
1544           (genCast): added code to handle casting to generic pointers, added
1545             sign-/zero extension of the result
1546           (aop_isLitLike,op_isLitLike): fixed handling of immediates
1547         * src/pic/gen.h: added macros to access IRP bit in STATUS register
1548         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
1549           extend the result
1550         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
1551           address/register resides in the shared banks
1552           (emitSymbolToFile): improved to handle global and `pinned' symbols,
1553             put all variables into separate sections (have the linker arrange
1554             them)
1555           (picglue): put init code and interrupt handlers in separate sections
1556         * src/pic/main.c: added port specific options table, modified to PORT
1557           structure to make GPOINTERs 3 byte, added pic14_options
1558           (_pic14_do_link): private linking routine (update paths to libraries,
1559             add libsdcc.lib by default)
1560         * src/pic/main.h: declare pic14_options
1561         * src/pic/pcode.c: fixed instructions i/o relations,
1562           (RegCond): reverted to correct version,
1563           (newpCodeOpLit): truncate literals to 8 bit,
1564           (genericPrint): added debug output,
1565           (getRegFromInstruction): fixed for various operand types, simplified
1566           (BuildFlow): fixed broken handling of isntructions with labels
1567           (LinkFlow): start at last instruction in flow (skip trailing comments),
1568             pass the flow on to the next instruction after CALL
1569           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
1570           (insertPCodeInstruction): fixed inserting after a skip instruction,
1571           (DoBankSelect): fixed for labeled instructions
1572           (OptimizepBlock): honor --nopeep switch
1573           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
1574         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
1575         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
1576           (pCodeOptime2pCodes): allow disabling this optimization via
1577             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
1578             but is still buggy), started implementation of a dataflow based
1579             pCode optimization (CSE + dead code elimination)
1580           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
1581         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
1582           names are independant of the stack location and therefore portable across
1583           devices
1584
1585 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1586
1587         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
1588           (selectSpil): fixed bug 1337835 by not spilling bit variables
1589         * support/regression/tests/bug1337835.c: added test for this bug
1590         * src/mcs51/peeph.def: restart after rule 3.c,
1591           addded rules 263.x to optimize loading constants
1592
1593 2005-10-26 Raphael Neider <rneider AT web.de>
1594
1595         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
1596         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
1597           (genAssign): emit warning when casting literals to generic pointer
1598             type, also applies when taking the address of a fixed variable,
1599           (genCast): improved casting to generic pointers
1600         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
1601           extern variables, added verbose error message
1602         * device/include/pic16/{string.h,errno.h}: added #pragma library c
1603
1604 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
1605
1606         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
1607         carry must be complemented too
1608         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
1609         could be emitted by genMinus
1610         * src/SDCCval.c (constVal): fixed bug 1305065
1611
1612 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
1613
1614         * src/SDCCast.c (addCast): added promotion for bit variables
1615         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
1616         promotion casts + optimisation
1617         (optimizeGetWord): fix warning 'i' might be used uninitialized
1618         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
1619         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
1620
1621 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
1622
1623         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
1624         all chars are promoted to int; promotion should be handled in SDCCast.c
1625
1626 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1627
1628         * device/lib/_strcmp.c: Fixed bug 1326457
1629
1630 2005-10-11 Raphael Neider <rneider AT web.de>
1631
1632         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
1633         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
1634
1635 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
1636
1637         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
1638         * support/regression/tests/sfr16.c: added test for the sfr32 bug
1639
1640 2005-10-04 Raphael Neider <rneider AT web.de>
1641
1642         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
1643           device/lib/pic16/pics.all: added pic18f1320
1644         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
1645
1646 2005-09-30 Raphael Neider <rneider AT web.de>
1647
1648         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
1649         * src/pic16/devices.inc: NEW, provides device descriptions
1650         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
1651
1652 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
1653
1654         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
1655           GETHBIT
1656
1657 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
1658
1659         * doc/sdccman.lyx: updated Highest Order Bit documentation,
1660           documented Any Order Bit, Higher Order Byte and Higher Order Word
1661         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
1662         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
1663           (optimizeGetAbit): new, to get any bit, not only the high bit,
1664           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
1665           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
1666           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
1667           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
1668             RIGHT_OP: also try GETBYTE, GETWORD optimization,
1669             GETABIT, GETBYTE, GETWORD: decorate them,
1670           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
1671           (ast_print): added GETABIT, GETBYTE, GETWORD
1672         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
1673         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
1674           (geniCodeBinary): new generic binary icode,
1675           (ast2iCode): added GETABIT, GETBYTE, GETWORD
1676         * src/port.h: updated comment for PORT.hasExtBitOp
1677         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
1678           (genGetByte): new, to get a single byte,
1679           (genGetWord): new, to get a word from a long,
1680           (gen51Code): added GETABIT, GETBYTE, GETWORD
1681         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
1682
1683 2005-09-23 Raphael Neider <rneider AT web.de>
1684
1685         * configure.in, configure: have device/lib/pic configured
1686         * device/lib/Makefile.in: added model-pic14
1687         * device/lib/clean.mk: added pic/ to clean rule
1688         * device/lib/pic: added rudimentary pic14 library providing support
1689           functions for multiplication/division/generic pointer access
1690         * src/SDCCopt.c (convilong): mark support functions as extern
1691           for pic14 port as well
1692         * src/pic/gen.c (genMult): added assertions,
1693           (genpic14Code): emit warning on unhandled iCodes
1694         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
1695         * src/pic/pcode.c (pCodeOpCopy),
1696         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
1697           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
1698           SFR_REGISTER}), made safe for future extensions
1699         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
1700           instructions even if preceeded by SKIP instructions (also remove
1701           them); removed unused code
1702         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
1703           prevents leaving parts of the structure uninitialized after copying
1704
1705 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
1706
1707         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
1708           ago by me
1709         * support/regression/tests/addsub.c: added test for the bug
1710
1711 2005-09-21 Raphael Neider <rneider AT web.de>
1712
1713         * device/include/pic16/pic18f1220.h,
1714           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
1715         * device/lib/pic16/Makefile.rules: added missing opening paren
1716         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
1717           are provided in genutils.c,
1718           (genUminusFloat,genUminus,genCmpEq): added asserts on different
1719           operand/result sizes,
1720           (genCmp): assert on NULL pointers first, then check deref'ed values
1721         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
1722           result size
1723
1724 2005-09-18 Raphael Neider <rneider AT web.de>
1725
1726         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
1727           as these are now unused,
1728           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
1729         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
1730           local, avoids uninitialized pointer dereference on r->name
1731         * src/pic16/ralloc.c (newReg): fixed indentation
1732
1733 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
1734
1735         * src/SDCCval.c (constVal): fixed bug 730366
1736         * support/Util/SDCCerr.c,
1737         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
1738
1739 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
1740
1741         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
1742
1743 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
1744
1745         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
1746
1747 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
1748
1749         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
1750           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1751         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
1752           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1753         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
1754         * packihx/packihx.c (hexDigit): made c unsigned char
1755         * as/mcs51/lklibr.c (fndsym),
1756         * link/z80/lkgb.c (gb),
1757         * link/z80/lklibr.c (fndsym),
1758         * link/z80/lkrloc.c (relr),
1759         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
1760         * src/SDCC.lex (checkCurrFile, process_pragma),
1761         * src/SDCCglue.c (spacesToUnderscores),
1762         * src/SDCCmain.c (setParseWithComma, processFile),
1763         * src/asm.c (tvsprintf, printCLine),
1764         * src/avr/gen.c (emitcode, aopPut),
1765         * src/ds390/gen.c (emitcode),
1766         * src/hc08/gen.c (emitcode, emitinline),
1767         * src/mcs51/gen.c (emitcode, genInline),
1768         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1769           tokenizeLineNode),
1770         * src/pic/ralloc.c (debugLog),
1771         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1772           tokenizeLineNode),
1773         * src/pic16/ralloc.c (debugLog),
1774         * src/z80/main.c (_process_pragma):
1775            made all ctype.h function calls safe
1776         * src/SDCCopt.c: include math.h for fabs
1777         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
1778           and used them throughout the code to make ctype.h function calls safe
1779         * src/ds390/main.c (asmLineNodeFromLineNode),
1780         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
1781         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
1782            unsigned char*
1783         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
1784           (newpCodeAsmDir): made ctype.h function calls safe
1785         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
1786           pic16_emitcode):  made lbp unsigned char*
1787         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
1788           (pic16_newpCodeAsmDir): made ctype.h function calls safe
1789         * src/xa51/gen.c (emitcode),
1790         * src/z80/gen.c (_emit2): made lbp unsigned char*
1791         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
1792            char*
1793
1794 2005-09-05 Raphael Neider <rneider AT web.de>
1795
1796         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
1797           access bank splitpoint
1798
1799 2005-09-05 Raphael Neider <rneider AT web.de>
1800
1801         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
1802
1803 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
1804
1805         * .version: changed to version 2.5.3
1806         * doc/sdccman.lyx: changed version to 2.5.3,
1807           documented --codeseg and --constseg and pragma codeseg and constseg,
1808           documented bit parameters (reentrant) and bit returning
1809         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
1810            currFunc->recvSize, but is this ok for all ports?
1811           (ast2iCode): result of ~ on unsigned char must be cast to int for
1812            bool to work
1813         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
1814           function pointers in bit space
1815         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
1816           (processFuncArgs): call port.reg_parm() with reentrancy info
1817         * src/port.h,
1818         * src/avr/main.c,
1819         * src/ds390/main.c,
1820         * src/hc08/main.c,
1821         * src/pic/main.c,
1822         * src/pic16/main.c,
1823         * src/xa51/main.c,
1824         * src/z80/main.c: port.reg_parm prototype extended with
1825           "bool reentrant" parameter
1826         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
1827           options.stackAuto for allocating bit register parameters
1828         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
1829           (genSend): set BitBankUsed if it is,
1830           (selectRegBank): factored out of genCall for use in genPcall,
1831           (genCall): removed redundant dtype assignmen, use selectRegBank,
1832           (genPcall): handle returning in Carry properly, save in F0 if needed,
1833           (genReceive): handle bit register parameters
1834         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
1835           (mcs51_assignRegisters): enable bit registers for all reentrant
1836            functions and don't set BitBankUsed unconditionally
1837         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
1838         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
1839         * support/regression/tests/funptrs.c: added tests for BOOL and for return
1840
1841 2005-08-27 Borut Razem <borut.razem AT siol.net>
1842
1843         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
1844         ppc-osx (Darwin) does not support -u option. It seems that it is
1845         supported only on Linux - GNU cp
1846
1847 2005-08-25 Borut Razem <borut.razem AT siol.net>
1848
1849         * sim/ucsim/gui.src/serio.src/Makefile.in,
1850           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
1851           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1852           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
1853           install and strip, since the strip at /usr/ccs/bin should be used
1854           on solaris
1855
1856 2005-08-24 Borut Razem <borut.razem AT siol.net>
1857
1858         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
1859
1860 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
1861
1862         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
1863         ffffffffu
1864
1865 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
1866
1867         * as/mcs51/aslink.h: completed lkrloc.c prototypes
1868         * as/mcs51/lkmain.c (link_main): fixed warning
1869         * device/include/stdbool.h: ds390 has no advanced bit support yet
1870         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
1871         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
1872         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
1873           and updated their macros
1874         * src/SDCCval.c (constVal): updated comment for renamed b_long
1875
1876 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
1877
1878         * as/mcs51/asdata.c: changed ctype['['] to BINOP
1879         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
1880           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
1881           (oprio): set priority for '['
1882         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
1883            and adb_24_bit
1884         * as/mcs51/asm.h: added defines R_BIT and S_BIT
1885         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
1886         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
1887         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
1888           added overlayable BIT_BANK area
1889         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
1890           (summary2): explain 'T' in legenda
1891         * as/mcs51/lkrloc.c: replaced old K&R style,
1892           (relr): added R_BIT processing,
1893           (errmsg): added "Bit-addressable relocation error",
1894           (adb_bit): added for converting from byte- to bit-addressable space,
1895           (adb_24_bit): added for converting from byte- to bit-addressable space
1896         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
1897            used in reentrant functions now even as return value
1898         * device/lib/_gptrput.c (_gptrput): removed obsolete code
1899         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
1900           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
1901         * src/SDCCglobl.h: added indicator BitBankUsed
1902         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
1903            the bit registers b0-b7
1904         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
1905           (geniCodeCast): fixed bug 1263853,
1906           (geniCodeLogicAndOr): put result in bool or char,
1907           (geniCodeReceive): added parameter func for accessing the return type,
1908           (geniCodeFunctionBody): pass func to geniCodeReceive
1909         * src/SDCCmain.c: added indicator BitBankUsed
1910         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
1911         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
1912           (checkSClass): don't put automatic bool/bit on stack,
1913           (checkFunction): removed check on function cannot return bit
1914         * src/SDCCsymt.h: added newBoolLink prototype
1915         * src/mcs51/gen.c (rb1regs): added bit registers,
1916           (movc): created for assigning to carry,
1917           (pushReg, popReg): created for pushing registers,
1918           (sameRegs): check both AOP_REG and AOP_CRY types,
1919           (aopOp): handle bit registers,
1920           (aopPut): optimization no self-assign,
1921           (saveRegisters): push reg->base (bits) only once for bit registers,
1922            and use pushReg,
1923           (unsaveRegisters): pop reg->base only once and use popReg,
1924           (assignResultValue): added parameter func and return in carry for bits,
1925           (genIpush): optimization no reload in A if not changed,
1926           (genSend): bit parameters in reentrant functions are passed in bit
1927            registers by first assigning to bits in B, then save registers and
1928            copy B to bits,
1929           (genCall): handle returning in Carry properly, save it in F0 if needed,
1930           (genPcall): updated assignResultValue call, this is not safe yet for bit
1931            returning function !!!
1932           (genFunction): don't generate equ's for bit registers and use pushReg,
1933           (genEndFunction): take care of bit returning functions and use popReg,
1934           (genRet): return bit in Carry,
1935           (genIfx): optimize bit registers and other directly addressable bits,
1936           (genReceive): updated assignResultValue call
1937         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
1938           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
1939            registers when using stack-auto
1940         * src/mcs51/ralloc.c (_G): added allBitregs,
1941           (regs8051): added the bit registers,
1942           (createStackSpil): use macro IS_BIT,
1943           (getRegBit): added to allocate a bit register, else spill,
1944           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
1945           (updateRegUsage): factored out to ease stepping while debugging,
1946           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
1947            also allocate bit registers,
1948           (fillGaps): handle bit registers,
1949           (findAllBitregs): added to create bit vector with all bit registers,
1950           (mcs51_allBitregs): returns this bit vector,
1951           (mcs51_assignRegisters): when using stack-auto use bit registers for
1952            passing parameters and creating local variables
1953         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
1954
1955 2005-08-22 Borut Razem <borut.razem AT siol.net>
1956
1957         * device/lib/Makefile.in: replaced find option -or with -o
1958           to make it run on solaris
1959
1960 2005-08-22 Raphael Neider <rneider AT web.de>
1961
1962         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
1963           fixes #1265442 (crash on Solaris)
1964
1965 2005-08-20 Borut Razem <borut.razem AT siol.net>
1966
1967         * configure, configure.in: added tests for libsocket and libnsl libraries,
1968           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
1969           from support/regression/Makefile.in
1970         * support/regression/Makefile.in: added
1971         * device/lib/pic16/Makefile.common.in: force make to use bash shell
1972         * sim/ucsim/libtool: regenerated on sparc-solaris
1973         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1974           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
1975           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
1976           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
1977           sparc-solaris, which doesn't use GNU ld linker
1978         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
1979         * as/Makefile: find on sparc-solaris does not support -maxdepth option
1980
1981 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
1982
1983         * src/mcs51/peeph.def: updated comments
1984
1985 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1986
1987         * device/lib/_gptrget.c,
1988         * device/lib/_gptrput.c: slightly shorter
1989         * doc/sdccman.lyx: incremented version
1990         * src/mcs51/peeph.def: moved peephole comments to the line of first
1991           change to better keep line correlation, reanimated 186.e
1992         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
1993
1994 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
1995
1996         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
1997           David Saxton with quotes around file name.
1998
1999 2005-08-15 Borut Razem <borut.razem AT siol.net>
2000
2001         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
2002           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
2003           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
2004           make tests run on x86_64 platform
2005
2006 2005-08-13 Raphael Neider <rneider AT web.de>
2007
2008         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
2009           as it might be executed DURING a build (parallel make is wonderful)
2010
2011 2005-08-13 Raphael Neider <rneider AT web.de>
2012
2013         * device/lib/Makefile.in (port-specific-objects-pic16):
2014           revert to cp $(PORT)/bin/*.* $(PORTDIR)
2015         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
2016           dependency
2017         * device/lib/pic16/Makefile.rules: build subdirs before creating
2018           the library, removed builddir rule, create $(builddir) early in
2019           recurse rule, use empty recurse rule for leaf directories
2020         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
2021           mkdir errors (race condition), removed duplicate suffix "hex"
2022           from clean rules
2023         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
2024         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
2025           prevents mkdir -p from aborting on Alpha
2026
2027 2005-08-12 Raphael Neider <rneider AT web.de>
2028
2029         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
2030           db-statements in order to allow for arrays of pointers in code
2031           sections to be placed without interspersed 0-padding, fixes
2032           bug #1256215
2033         * (emitStatistics): fixed division by zero for pic18f1220
2034         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
2035           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
2036         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
2037         * (pic16_pCodeConstString): keep track of already emitted string
2038           literals to prevent "duplicate definitions of symbol _str_NR"
2039         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
2040           debug message
2041         * device/lib/Makefile.in: ignore failing PIC16 library builds
2042         * device/lib/pic16/Makefile: do not build if gputils are missing
2043         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
2044
2045 2005-08-10 Raphael Neider <rneider AT web.de>
2046
2047         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
2048           my last commit)
2049
2050 2005-08-10 Raphael Neider <rneider AT web.de>
2051
2052         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
2053           Rokas' patch to add the new fixed point type "__fixed16x16"
2054         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
2055           functions for __fixed16x16 arithmetics
2056         * device/lib/pic16: reimplemented the build system to support
2057           a separate build directory, better handling of libio (create
2058           the library in a separate subdir for each architecture) and
2059           easier configuration (centralized in Makefile.common)
2060
2061 2005-08-07 Raphael Neider <rneider AT web.de>
2062
2063         * src/pic16/gen.c (genrshTwo): fixed sign extension
2064         * src/pic16/device.c: added pic18f2320, 4220 and 4320
2065         * device/include/pic16/pic18f2220.h: changed some bit definitions,
2066           added T0CONbits
2067         * device/include/pic16/pic18f4220.h: NEW, header for
2068           pic18f4220 and pic18f4320
2069         * device/include/pic16/pic18fregs.h: added new devices,
2070           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
2071         * device/include/pic16/signal.h: resolved name clashes
2072           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
2073           to also allow testing for interrupt enable bits, added
2074           comments on how to use the macros
2075         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
2076         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
2077           register definitions for the devices
2078         * device/lib/pic16/pics.all: added new devices
2079         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
2080           allocated memory
2081         * device/lib/pic16/libc/stdlib/memfree: do not count
2082           the block header as free memory
2083         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
2084           simplified and added missing end-of-blocklist-marker
2085           (reported by Peter Onion, fixes #1252814)
2086         * (_mergeHeapBlock): fixed loop condition
2087         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
2088           len==0, restructured code
2089         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
2090           up a bit, reduced bitfield accesses, prevent endless loops
2091           in case of heap corruption
2092         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
2093           "unreferenced arguments/must return a value" warnings
2094         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
2095           replaced BAUDREG with SPBRG
2096         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
2097           device/lib/pic16/debug/gstack/gstack.c: replaced
2098           _naked, _asm, _endasm with __naked, __asm, __endasm
2099
2100 2005-08-05 Raphael Neider <rneider AT web.de>
2101
2102         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
2103           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
2104
2105 2005-08-05 Borut Razem <borut.razem AT siol.net>
2106
2107         * device/lib/Makefile.in: added missing ';'
2108         * configure: removed ^M characters
2109
2110 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2111
2112         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
2113           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
2114           License
2115
2116 2005-08-04 Borut Razem <borut.razem AT siol.net>
2117
2118         * configure.in: pic16 libraries build 2nd try - enable running
2119           configure in device/lib/pic16
2120         * configure: regenerated from configure.in
2121         * device/lib/Makefile.in: create $(PORT)/bin directory
2122
2123 2005-08-03 Raphael Neider <rneider AT web.de>
2124
2125         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
2126           to get/set values via pointers
2127         * (genUnpackBits,genPackBits): changed detection of
2128           ptr->bitfield vs. sym.bitfield, fixed access via generic
2129           pointers, removed dead (wrong) code for multibyte bitfields
2130         * (genNearPointerGet, genGenPointerGet): removed useless code,
2131           fixed bitfield detection, fixes #1250594
2132         * (genNearPointerSet): removed useless code
2133         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
2134           and introduced macro pic16_emitpcode that conditionally emits
2135           the origin of the following pCode (useful for debugging SDCC)
2136         * src/pic16/pcode.c: changed (and disabled) some debug outputs
2137         * (createDefmap): fixed handling of LFSR for --optimize-df
2138
2139 2005-08-02 Borut Razem <borut.razem AT siol.net>
2140
2141         * device/lib/Makefile.in: pic16 libraries build enabled since
2142           gputils-0.13.2 are now localy installed at sourceforge's compile farm
2143
2144 2005-08-02 Raphael Neider <rneider AT web.de>
2145
2146         * src/pic16/gen.c (genPackBits): removed deprecated warning
2147         * (genGenPointerSet): fixed bitfield detection
2148
2149 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2150
2151         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
2152
2153 2005-07-31 Raphael Neider <rneider AT web.de>
2154
2155         * device/lib/pic16/libdev/pic18f458.c,
2156           device/include/pic16/pic18f458.h: added missing T0CONbits
2157
2158 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
2159
2160         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
2161
2162 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
2163
2164         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
2165
2166 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2167
2168         * device/include/mcs51/at89c51ed2.h: added.
2169
2170 2005-07-23 Raphael Neider <rneider AT web.de>
2171
2172         * src/pic/gen.h: added emitpcode macro for debugging
2173         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
2174           and replace by macro adding debug information on demand
2175         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
2176         * (gencjne): tried to fix; replaced with correct (slower) code
2177         * (gen{Unp,P}ackBits): fixed single bit access
2178         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
2179         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
2180           previous instruction
2181         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
2182           register has to be handled with care (forbidding movement
2183           of assignments/uses, removing assignments completely, ...)
2184         * (pCodeOptime2pCodes): make use of regIsSpecial
2185         * added lots of debugging output (commented out)
2186         * src/pic/rallloc.c (deassignLRs): prevent operand registers
2187           from being reused as result UNLESS it is known to work
2188
2189 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
2190
2191         * support/Util/dbuf.h: include <stddef.h> for size_t
2192         * .version: changed to version 2.5.2
2193
2194 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2195
2196         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
2197
2198 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2199
2200         * src/hc08/gen.c (genMinus): fixed bug #1241835,
2201           (genModOneByte): removed needless psha/pula
2202
2203 2005-07-22 Raphael Neider <rneider AT web.de>
2204
2205         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
2206           have PIC14 handled like PIC16, fixes broken pic14 linker calls
2207         * src/pic/gen.c (resolveIfx): do not "invent" labels
2208         * (genSkipc): changed to positive logic
2209         * (genSkipCond): removed as no longer needed
2210         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
2211           backport from PIC16
2212         * (genLeftShift): check operands are in different registers
2213         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
2214           INCF does not update CARRY...
2215         * src/pic/main.c: fixed _linkCmd
2216         * src/pic/pcode.c (unlinkpCode): added inactive code
2217         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
2218           alive (do not assign result and operand overlapping registers)
2219
2220 2005-07-22 Raphael Neider <rneider AT web.de>
2221
2222         * src/pic/device.c (dump_sfr): replaced register declaration with
2223           call to emitSymbolToFile() to avoid duplicate symbols
2224         * (assignRelocatableRegisters): do not declare external symbols
2225         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
2226           right (take size of type, not etype)
2227         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
2228         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
2229         * (packRegsForAccUse): disabled assignment of WREG as
2230           the result reg to prevent occurence of just fixed #1235003,
2231           fixes #1242954
2232         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
2233           symbols (avoids duplicate symbols in .asm file)
2234         * (pic14emitRegularMap): use emitSymbolToFile()
2235         * src/pic/gen.c (aopOp): fixed spillLocation handling
2236         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
2237         * (genDataPointerSet): removed unneccessary variables/output
2238
2239 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
2240
2241         * as/mcs51/lkarea.c: enlarged codemap for banked memory
2242         * device/lib/mcs51/crtbank.asm: added # to 0x0F
2243
2244 2005-07-21 Raphael Neider <rneider AT web.de>
2245
2246         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
2247           architecture cannot handle them efficiently, fixes bug #1235003
2248         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
2249           check for empty sets before using them (fixes bug #1232190)
2250
2251 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
2252
2253         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
2254           (lnksect2): generate warnings for memory overlap
2255         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
2256           constseg to set the name of these segments so you can instruct the linker
2257           to place them in banks
2258         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
2259         * src/SDCCglobl.h: added MODEL_HUGE to enum,
2260           added code_seg and const_seg to options
2261         * src/SDCCglue.c (emitMaps): use options.const_seg,
2262           (createInterruptVect): put interrupt vectors in segment HOME,
2263           (glue): put HOME before static segment and put the main glue in HOME,
2264           (glue): use options.code_seg
2265         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
2266         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
2267           these segments so you can instruct the linker to place them in banks
2268           (linkEdit): use code_loc for HOME segment which should be the first
2269           segment in code memory now
2270         * src/SDCCmem.c: fixed more stuff like bug 1238386
2271         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
2272           (changePointer): don't change function pointers to code pointers for
2273           banked functions,
2274           (compareType): added exceptional check for banked function pointers
2275         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
2276         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
2277           after static in code memory
2278         * src/mcs51/gen.c: added aopLiteralLong prototype,
2279           (aopForSym): use getSize for functions,
2280           (genCall): generate banked calls over one trampoline __sdcc_banked_call
2281           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
2282           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
2283           the segment,
2284           (genPcall): use call for literal function pointers and generate banked
2285           calls over the one trampoline so there's only one place for the user to
2286           modify according to his/hers hardware,
2287           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
2288           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
2289         * src/mcs51/main.c: added keyword banked,
2290           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
2291         * support/Util/SDCCerr.c,
2292         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
2293           needed for passing the bank and address to the trampoline
2294         * device/lib/mcs51/crtbank.asm: added for bankswitching
2295         * device/lib/mcs51/Makefile: added crtbank
2296
2297 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2298
2299         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
2300           for fields at offset 0 of a struct or union as reported
2301           on 2005-07-07 in the developer mailing list.
2302
2303 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
2304
2305         * src/SDCCmem.c: fixed bug 1238386
2306
2307 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2308
2309         * src/mcs51/peeph.def: added labelrefcounting for peepholes
2310           (patch #1144962), added peephole 300, enabled 259.x
2311         * doc/sdccman.lyx: removed screenshot and provided link instead
2312
2313 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2314
2315         * doc/sdccman.lyx: added section about debugging with ddd
2316         * doc/figures/ddd_example.eps: screenshot of debugging session
2317
2318 2005-07-04 Raphael Neider <rneider AT web.de>
2319
2320         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
2321           like CODE pointers, fixes #1115683
2322         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
2323           call, fixes bugs #1232211, #1228110,
2324           fixed wrong casts to pCodeFlow from pCodeInstructions
2325
2326 2005-07-04 Raphael Neider <rneider AT web.de>
2327
2328         * src/pic/gen.c (popGet): changed assert to allow for
2329           bit operands
2330         * (popGetAddr): changed signature to provide
2331           an additional index, patched all call sites
2332         * (genCmpEq): handle literal-like operands correctly
2333         * (genAddrOf): added sanity checks on __code/__data pointers
2334         * (genAssign): added handling of symbols from __code section
2335         * (gencjne): do not generate code for comparisons whose result
2336           is neither stored nor used, fixes bug #1171114
2337         * (AccLsh, AccRsh): operate on operand instead of WREG
2338         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
2339           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
2340           by known count
2341         * rewrote complete shift-by-literal logic, commented unused
2342           functions out
2343         * (genConstPointerGet): get multiple bytes (if result size > 1),
2344           fixed handling of non-immediate addresses
2345         * (genPointerGet): handle CODE pointers like CONST pointers
2346         * (genpic14Code): insert C-SRC lines as Cource-pCodes
2347         * ({aop,op}_isLitLike): NEW, single place to decide whether an
2348           operand is to be treated as a literal or not
2349         * (mov2w,genPcall,genCmpEq),
2350           src/pic/genarith.c: use aop_isLitLike() to decide between
2351           literal/register contents
2352         * (addSign): added missing offset
2353         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
2354           only emit comment in debug-mode,
2355           use {aop,op}_isLitLike throughout the file
2356         * src/pic/glue.c: fix initializers for pointers (work in progress)
2357         * src/pic/pcode.c (get_op): honor index on _const symbols
2358         * ({reset,dump}pCodeStatistics): NEW, estimate code size
2359         * (dumppBlock): added pCode size estimation
2360         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
2361           check for IS_SYMOP before OP_SYMBOL'ing
2362         * fixed indentation, compacted switch-statements
2363         * (allocReg): find free register and allocate it instead of
2364           allocating new registers all the time
2365         * (deassignLRs): prevent POINTER_GET's from being assigned the same
2366           registers as its operands (necessary only for multibyte GETs)
2367
2368 2005-07-01 Raphael Neider <rneider AT web.de>
2369
2370         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
2371           debugging .asm-output macros FENTRY + FEXIT
2372         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
2373           way... I wonder...
2374         * (emitpComment): NEW, printf to pCode
2375         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
2376           offset handling
2377         * (popGetAddr): NEW, variant of popGet to access an immediates
2378           high(er) bytes instead of the n'th byte of memory they reference,
2379           replaced popGet with popGetAddr where neccessary
2380         * (genDataPointerGet): reactivated and fixed implementation
2381         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
2382           accesses
2383         * (genDataPointerSet): fixed multibyte assignments
2384         * (genpic14Code): fixed --i-code-in-asm handling
2385         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
2386         * (genPlus): fixed index-out-of-bounds error
2387         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
2388         * src/pic/ralloc.c: added debugging output macro FENTRY2
2389         * (spillThis): fixed indentation, enbraced for-body for clarity
2390         * (rematStr): commented out as now unused
2391         * (regTypeNum): commented out special spill case (overwrites
2392           arbitrary values)
2393         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
2394
2395 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
2396
2397         * doc/sdccman.lyx: documented sfr16/sfr32,
2398           added example for using storage class with function pointers
2399         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
2400
2401 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
2402
2403         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
2404         * device/lib/_itoa.c,
2405         * device/lib/_ltoa.c: optimized codesize
2406         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
2407           but don't know how to suppress the double warning.
2408         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
2409         * support/Util/SDCCerr.c,
2410         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
2411
2412 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
2413
2414         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
2415           fixed old K&R prototypes
2416         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
2417         * device/lib/_gptrget.c,
2418         * device/lib/_gptrgetc.c,
2419         * device/lib/_gptrput.c: changed versions for new memory indicator values,
2420           also new versions for small generic pointers and banked generic pointers
2421         * src/port.h: added const_name
2422         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
2423         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
2424         * src/SDCCcse.c (findPrevIc): check all associative operators
2425         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
2426         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
2427         * src/SDCCmem.c: updated comments,
2428           set far-space to 0 for pdata, results in optimized code
2429         * src/SDCCmem.h: added macro CONST_NAME
2430         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
2431           moving the info into the highest bits, see also gptrget/gptrput
2432         * src/src.dsp: added sdcc.ico to project files
2433         * src/avr/gen.c (genCast): fixed bug 0x%d
2434         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
2435         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
2436           relation between ptr_type and DCL_TYPE,
2437           (genCast): fixed bug 0x%d
2438         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
2439           (CODE)" for const_name
2440         * src/hc08/gen.c (genCast): fixed bug 0x%d
2441         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
2442           (hc08_port): added "CONST (CODE)" for const_name
2443         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
2444           (aopForRemat, adjustArithmeticResult): disconnected direct relation
2445           between ptr_type and DCL_TYPE,
2446           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
2447           operand* and took AOP() inside function so sfr-ness can be checked,
2448           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
2449           new prototype,
2450           (genFunction, genEndFunction): optimized stack setup,
2451           (genMinus): optimized for literals with ending zeroes (in bytes),
2452           (genCast): fixed bug 0x%d
2453         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
2454           (mcs51_port): added "CONST (CODE)" for const_name
2455         * src/mcs51/peeph.def: made rule 226 more generic
2456         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
2457         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
2458         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
2459         * src/z80/main.c (z80_port): added NULL for const_name,
2460           (gbz80_port): added NULL for const_name
2461         * support/regression/tests/bug663539.c,
2462         * support/regression/tests/sfr16.c: new tests
2463
2464 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2465
2466         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
2467
2468 2005-06-24 Raphael Neider <rneider AT web.de>
2469
2470         * device/lib/pic16/libdev/pic18f[68][567]20.c:
2471           corrected typos...
2472         * device/include/pic16/signal.h: added USBIF
2473           and SIG_USB
2474
2475 2005-06-24 Raphael Neider <rneider AT web.de>
2476
2477         * device/lib/pic16/libdev/pic18f2455.c,
2478           device/include/pic16/pic18f2455.h: NEW
2479         * device/include/pic16/pic18fregs.h,
2480           device/lib/pic16/pics.all,
2481           src/pic16/device.c: added 18f2455
2482         * device/lib/pic16/libdev/pic18f[68][567]20.c,
2483           device/include/pic16/{pic18f[68][567].h,usart.h}:
2484           replaced MULTIPLE_USARTS define with more relaible
2485           compatibility sfrs (for USART access)
2486
2487 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
2488
2489         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
2490           and the output asm file line is printed on two lines.
2491
2492 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2493
2494         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
2495           BGT, BLE, BHI, and BLS instructions
2496         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
2497           genCmpEq): removed
2498         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
2499           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
2500           fixes bug #1216342
2501         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
2502
2503 2005-06-15 Raphael Neider <rneider AT web.de>
2504
2505         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
2506         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
2507         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
2508           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
2509           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
2510
2511 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2512
2513         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
2514           Marcel Telka in bug #1215704
2515
2516 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
2517
2518         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
2519           located in shared memory bank.
2520
2521 2005-05-31 Raphael Neider <rneider AT web.de>
2522
2523         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
2524           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
2525           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
2526
2527 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
2528
2529         * device/lib/_strncpy.c: fixed the fix
2530
2531 2005-05-26 Raphael Neider <rneider AT web.de>
2532
2533         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
2534           initializers with \0, bug #1208187
2535         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
2536           intializers with \0, bug #1208187
2537
2538 2005-05-26 Raphael Neider <rneider AT web.de>
2539
2540         * src/pic16/glue.c (pic16_printIvalChar): fixed string
2541           initializers with \0, bug #1208187
2542         * src/pic16/main.c (_process_pragma): added sanity checks
2543           for stack position and size, emit warnings when appropriate
2544
2545 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
2546
2547         * device/lib/_strncpy.c: fixed not filling with \0
2548
2549 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2550
2551         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
2552           createFunction),
2553         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
2554           compound_statement),
2555         * src/SDCCsymt.h,
2556         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
2557
2558 2005-05-24 Raphael Neider <rneider AT web.de>
2559
2560         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
2561
2562 2005-05-24 Raphael Neider <rneider AT web.de>
2563
2564         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
2565           TRISE definitions, closes bug #1162453
2566
2567 2005-05-22 Raphael Neider <rneider AT web.de>
2568
2569         * src/pic16/main.c (_process_pragma): check for missing
2570           arguments to pragmas code and udata
2571         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
2572           consistency fixes to match other headers (thanks to Jim Paris)
2573         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
2574
2575 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
2576
2577         * src/SDCCicode.c (isOperandEqual): fixed missing ;
2578
2579 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
2580
2581         * support/regression/tests/bug1198642.c: new test
2582         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
2583         * src/SDCCcse.c (findPrevIc): added comment, please have a look
2584         * support/scripts/resource.h,
2585         * support/scripts/resource.rc,
2586         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
2587         * support/scripts/sdcc.ico: added 32x32 icon
2588
2589 2005-05-18 Raphael Neider <rneider AT web.de>
2590
2591         * device/lib/pic16/libdev/pic18f*.c,
2592         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
2593           keywords to "__sfr" and "__at (X)"
2594         * device/include/pic16/pic18fregs.h: added pic18f4520
2595         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
2596           #1203088 (MPLAB compatibility)
2597
2598 2005-05-17 Raphael Neider <rneider AT web.de>
2599
2600         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
2601         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
2602         * device/lib/pic16/pics.all: added new devices
2603         * src/pic16/device.c: added support for pic18f4520
2604
2605 2005-05-16 Raphael Neider <rneider AT web.de>
2606         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
2607         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
2608         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
2609           convenience function for bit access
2610
2611 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
2612
2613         * device/lib/printf_large.c: fixed bug 1193299
2614         * support/regression/tests/bug1057979.c: added test %3.3s
2615
2616 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2617
2618         * device/include/mcs51/8051.h,
2619         * device/include/mcs51/8052.h: made parseable with lint
2620         * device/include/mcs51/lint.h: added include file for (sp)lint
2621         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
2622         * doc/cdbfileformat.lyx,
2623         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
2624
2625 2005-05-14 Raphael Neider <rneider AT web.de>
2626
2627         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
2628         * device/lib/pic16/libc/stdlib/itoa.c (new)
2629         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
2630         * device/lib/pic16/libio/Makefile: exclude subdir according to
2631           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
2632         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
2633         * src/pic16/gen.c (genFunction): prevent annoying warning
2634         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
2635           nameclashes on BeOS
2636         * support/cpp2/cppmain.c (cpp_output_string): new
2637         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
2638           fixes bug 1116802
2639
2640 2005-05-13 Borut Razem <borut.razem AT siol.net>
2641
2642         * src/SDCCmain.c (linkEdit): fixed bug 1195202
2643
2644 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2645
2646         * .version: changed to version 2.5.1; back to bleeding edge development
2647
2648 2005-05-11 Borut Razem <borut.razem AT siol.net>
2649
2650         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
2651           generate PDF version 1.3 documents
2652
2653 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2654
2655         * .version: changed to version 2.5.0
2656
2657 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2658
2659         * doc/sdccman.lyx: updated weblinks, index and smaller updates
2660
2661 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2662
2663         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
2664         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
2665         well as many smaller updates.
2666         * .version: changed to version 2.5.0-pre1
2667
2668 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2669
2670         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
2671
2672 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
2673
2674         * support/regression/tests/bug1185672.c: added
2675         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
2676           bug 1185672
2677         * src/mcs51/gen.c (genCall): added comments, made it look safer
2678         * src/mcs51/gen.c (genEndFunction): simplified
2679
2680 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
2681
2682         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
2683
2684 2005-04-14 Borut Razem <borut.razem AT siol.net>
2685
2686         * fixed bug 1045046 - SIGSEGV with really simple code?:
2687           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
2688           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
2689
2690 2005-04-14 Borut Razem <borut.razem AT siol.net>
2691
2692         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
2693           src/pic16/device.h: temporarily disabled experimental #inline pragma
2694           for 2.5.0 release
2695
2696 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
2697
2698         * device/include/z80/stdio.h,
2699         * device/include/z80/string.h: removed these highly incomplete files so
2700           SDCC can use the default ones in device/include/
2701
2702 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2703
2704         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
2705         gcc warning.
2706         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
2707         fix sdcpp warnings.
2708
2709 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2710
2711         * device/include/malloc.h: removed redundant __reentrant prototypes
2712         * device/lib/_mullong.c: added working xstack variant in asm (C version
2713           doesn't pass regression tests)
2714         * device/lib/bpx.c: used __data and made bpx char for mcs51
2715         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
2716           (createFunction): fixed bug with xstackPtr
2717         * src/SDCCcse.c: corrected comments
2718         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
2719           (killDeadCode, eBBlockFromiCode): removed unused code
2720         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
2721           corrected comments
2722         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
2723           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
2724           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
2725           (genModOneByte): fixed warning in MSVC
2726         * src/mcs51/main.c (): added comments
2727         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
2728
2729 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2730
2731         * src/SDCCmain.c (linkEdit): oops, changed one line too many
2732
2733 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
2734
2735         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
2736
2737 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
2738
2739         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
2740         characters arrays of larger size than the declared one.
2741
2742 2005-04-10 Borut Razem <borut.razem AT siol.net>
2743
2744         * src/pic/gen.c (genInline),
2745           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
2746           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
2747           (findNextInstruction), (findPrevInstruction),
2748           (findInstructionUsingLabel),
2749           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
2750         * src/pic/pcode.c (findLabel): added missing '\n'
2751         * src/src.dsp: added SDCCdwarf2.c to the project
2752
2753 2005-04-09 Borut Razem <borut.razem AT siol.net>
2754
2755         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
2756
2757 2005-04-08 Raphael Neider <rneider AT web.de>
2758
2759         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
2760           into the chain after a given one) and mergeDefmapSymbols (combine
2761           defmap entries for each symbol per pcode)
2762         * (createDefmap): have defmap entries merged in the end
2763         * (defmapReplaceSymRef): split defmap entries covering two accesses to
2764           a symbol before replacing one access type's symbol, merge symbols in
2765           the end (replacement symbol might already have an entry)
2766         * (assignValnums): keep reference to written WREG intact
2767
2768 2005-04-08 Raphael Neider <rneider AT web.de>
2769
2770         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
2771           Alpha)
2772
2773 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
2774
2775         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
2776         bytes
2777
2778 2005-04-07 Raphael Neider <rneider AT web.de>
2779
2780         * device/include/pic16/usart.h: added compatibility defines for
2781           devices with more than one USART
2782         * device/include/pic16/pic18f[68][567]20.h: activated above defines
2783
2784 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2785
2786         * device/lib/Makefile.in: updated for port specific include
2787
2788 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2789
2790         * support/regression/ports/mcs51/spec.mk: added mcs51 include
2791
2792 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2793
2794         * device/include/8051.h,
2795         * device/include/8052.h,
2796         * device/include/at89S8252.h,
2797         * device/include/at89c55.h,
2798         * device/include/at89x051.h,
2799         * device/include/at89x51.h,
2800         * device/include/at89x52.h,
2801         * device/include/mcs51reg.h,
2802         * device/include/reg51.h,
2803         * device/include/reg764.h,
2804         * device/include/regc515c.h,
2805         * device/include/sab80515.h: (re)moved these 12 files
2806         * device/include/mcs51/8051.h,
2807         * device/include/mcs51/8052.h,
2808         * device/include/mcs51/at89S8252.h,
2809         * device/include/mcs51/at89c55.h,
2810         * device/include/mcs51/at89x051.h,
2811         * device/include/mcs51/at89x51.h,
2812         * device/include/mcs51/at89x52.h,
2813         * device/include/mcs51/mcs51reg.h,
2814         * device/include/mcs51/reg51.h,
2815         * device/include/mcs51/reg764.h,
2816         * device/include/mcs51/regc515c.h,
2817         * device/include/mcs51/sab80515.h: and added them here
2818
2819 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
2820
2821         * device/include/stdarg.h: changed SDCC specific keywords to double
2822           underlined form.
2823         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
2824           mcs51 and ds390.
2825         * device/include/hc08/mc68hc908gp32.h,
2826         * device/include/hc08/mc68hc908jb8.h,
2827         * device/include/hc08/mc68hc908jkjl.h,
2828         * device/include/hc08/mc68hc908qy.h: fixed comments
2829         * device/include/mcs51/README: updated
2830         * device/include/mcs51/c8051f120.h: added PINRSF
2831         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
2832         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
2833           amidst code. Also inline is not supported.
2834
2835 2005-04-06 Raphael Neider <rneider AT web.de>
2836
2837         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
2838         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
2839           callers stack/frame pointers
2840
2841 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
2842
2843         * device/include/pic16/usart.h: added, missing in previous commit,
2844         * device/include/pic16/adc.h: fixed typo,
2845         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
2846         commit,
2847         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
2848         <p18fxxx.inc>
2849         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
2850         uninitialized because a bug appears with gplink
2851         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
2852         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
2853         complains for unrecognised option
2854
2855 2005-04-05 Raphael Neider <rneider AT web.de>
2856
2857         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
2858           structs as well (using memcpy)
2859         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
2860           on ISRs (GOTO has no label)
2861         * src/pic16/device.h: added OF_OPTIMIZE_DF
2862         * src/pic16/main.c: added compiler switch --optimize-df to enable the
2863           new data flow analysis/optimization
2864         * src/pic16/pcode.c: added (prototypes for and implementation of)
2865           dataflow analysis functions, fixed pCodeInstructions' inCond and
2866           outCond values, made RCALL a branch instruction
2867         * (pic16_unlinkpCode): keep C line if possible
2868         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
2869           C line moved if possible
2870         * (pic16_getRegFrompCodeOp): NEW, improved version of...
2871         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
2872           to use new pic16_getRegFrompCodeOp (works for more SFRs)
2873         * (pic16_BuildFlow): fixed skip instructions with label (did not start
2874           new flow)
2875         * (pic16_getJumptabpCode): NEW, needed in...
2876         * (LinkFlow): fixed handling of jumptables, calls and conditional
2877           branches
2878         * (pic16_InsertCommentAfter): NEW
2879         * (pic16_pCodeReplace): made verbose and flow preserving
2880         * (AnalyzeFlow): added call to data flow analysis
2881         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
2882         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
2883         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
2884
2885 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2886
2887         * src/SDCCast.c (decorateType): fixed bug #1105626
2888
2889 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
2890
2891         * device/include/asm/pic16/features.h,
2892         * pic18f*.h headers,
2893         * device/include/pic16/adc.h,
2894         * device/include/pic16/delay.h,
2895         * device/include/pic16/i2c.h,
2896         * device/include/pic16/malloc.h,
2897         * device/include/pic16/stdio.h,
2898         * device/include/pic16/stdlib.h,
2899         * device/include/pic16/string.h,
2900         * device/lib/pic16/libc/stdio/printf_tiny.c,
2901         * device/lib/pic16/libc/stdio/printf_small.c,
2902         * device/lib/pic16/libc/stdio/strmgpsim.c,
2903         * device/lib/pic16/libc/stdio/strmmssp.c,
2904         * device/lib/pic16/libc/stdio/strmusart.c,
2905         * device/lib/pic16/libc/stdio/vfprintf.c,
2906         * device/lib/pic16/libc/stdlib/ltoa.c,
2907         * device/lib/pic16/libc/stdlib/putchar.c,
2908         * device/lib/pic16/libc/stdlib/x_ftoa.c,
2909         * device/lib/pic16/libc/stdlib/memchrpgm.c,
2910         * device/lib/pic16/libc/stdlib/memchrram.c,
2911         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
2912         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
2913         * device/lib/pic16/libio/adc/adcbusy.c,
2914         * device/lib/pic16/libio/adc/adcread.c,
2915         * device/lib/pic16/libio/adc/adcsetch.c,
2916         * device/lib/pic16/libio/usart/ubaud.c,
2917         * device/lib/pic16/libio/usart/ubusy.c,
2918         * device/lib/pic16/libio/usart/udrdy.c,
2919         * device/lib/pic16/libio/usart/uopen.c,
2920         * device/lib/pic16/libio/usart/uputc.c,
2921         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
2922         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
2923         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
2924         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
2925         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
2926         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
2927         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
2928         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
2929         specific keywords to double underlined form,
2930         * device/lib/pic16/libc/Makefile.rules,
2931         * device/lib/pic16/libsdcc/Makefile.rules,
2932         * device/lib/pic16/libm/Makefile,
2933         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
2934         to compile with C standard set in Makefile.common
2935         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
2936         rand.c and crc.c in compilation process,
2937         * device/lib/pic16/libsdcc/int/divuint.c,
2938         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
2939         `c' from signed to unsigned,
2940         * device/lib/pic16/startup/crt0.c,
2941         * device/lib/pic16/startup/crt0i.c,
2942         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
2943         keywords to double underlined form, bug fixes in _do_cinit function
2944         which prevented the correct initialization of the .idata segment,
2945         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
2946         core to enter a infinite loop
2947         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
2948
2949 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2950
2951         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
2952
2953 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2954
2955         * device/include/Makefile.in: add support for hc08 subdirectory
2956         * device/include/hc08/: new subdirectory
2957         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
2958         Lucas Loizaga, thanks!
2959         * device/include/hc08/mc68hc908qy.h,
2960         * device/include/hc08/mc68hc908gp32.h,
2961         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
2962         their own directory. Changed internal macro names to use the compiler
2963         reserved namespace. Changed SDCC specific keywords to double
2964         underlined form.
2965         * device/include/math.h,
2966         * device/include/malloc.h,
2967         * device/include/stdarg.h,
2968         * device/include/stdbool.h
2969         * device/include/string.h,
2970         * device/include/tinibios.h,
2971         * device/include/ds400rom.h,
2972         * device/include/8051.h,
2973         * device/include/8052.h,
2974         * device/include/80c51xa.h,
2975         * device/include/at89c55.h,
2976         * device/include/at89S8252.h,
2977         * device/include/at89x51.h,
2978         * device/include/at89x52.h,
2979         * device/include/ds80c390.h,
2980         * device/include/reg764.h,
2981         * device/include/regc515c.h,
2982         * device/include/sab80515.h,
2983         * device/include/mcs51/c8051f000.h,
2984         * device/include/mcs51/c8051f018.h,
2985         * device/include/mcs51/c8051f020.h,
2986         * device/include/mcs51/c8051f040.h,
2987         * device/include/mcs51/c8051f060.h,
2988         * device/include/mcs51/c8051f120.h,
2989         * device/include/mcs51/c8051f300.h,
2990         * device/include/mcs51/c8051f310.h,
2991         * device/include/mcs51/c8051f320.h,
2992         * device/include/mcs51/c8051f330.h,
2993         * device/include/mcs51/c8051f350.h,
2994         * device/include/z180.h: Changed SDCC specific keywords to double
2995         underlined form.
2996
2997 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
2998
2999         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
3000         18F4455,
3001         * (pic16_assignConfigWordValue): disable testing of configuration
3002         register value with config mask,
3003         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
3004         function with port->fun_prefix,
3005         * (genFunction): when generating a naked interrupt function never
3006         create an absolute segment placed in interrupt vector address, place
3007         the actual interrupt function at IVA instead, when an interrupt
3008         function is generated with unspecified interrupt then do not create
3009         the absolute section,
3010         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
3011         code for generating a call to generic pointer get/put function with
3012         a call to function pic16_callGenericPointer(),
3013         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
3014         the call to the generic pointer get/put functions with prefixing the
3015         function name with port->fun_prefix,
3016         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
3017         * src/pic16/main.c (_process_pragma): prefix function with
3018         port->fun_prefix,
3019         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
3020         calling assembler, old 18Fxxxx macro is deprecated,
3021         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
3022         PC_ASMDIR in while condition,
3023         * (findInstruction): add PC_ASMDIR in while condition,
3024         * (buildCallTree): prefix main with port->fun_prefix,
3025         * (pic16_pCode2str): fixed bug that didn't emit the memory access
3026         identifier for variable with banked access in instructions BTFSS,
3027         BTFSC, BCF, BSF, BTG
3028         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
3029         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
3030         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
3031         perform optimization when enviroment variable NO_REG_OPT is set,
3032         * (insideLRBlock): NEW, return 1 if register is inside an
3033         INF_LOCALREGS block,
3034         * (RemoveRegFromLRBlock): remove a register that is completely
3035         eliminated by register optimization, but it is still left in local
3036         register store/restore in/from stack block,
3037         * (Remove2pcodes): after removing register, check to see if it
3038         should be removed from local register store/restore in/from stack
3039         block,
3040         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
3041         DUMMY_READ_VOLATILE,
3042
3043         * device/include/pic16/adc.h: minor prototype modifications and
3044         update,
3045         * device/include/pic16/malloc.h: added GPL notice various
3046         modifications,
3047         * device/include/pic16/stdint.h: NEW, standard header for ints
3048         * device/include/pic16/delay.h: NEW, header for delay functions,
3049         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
3050         delay1mtcy,
3051         * device/include/pic16/signal.h: NEW, header providing helper macros
3052         for implementing signal handlers,
3053         * device/include/pic16/stdio.h: added prototypes for functions,
3054         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
3055         prototypes for stdin and stdout, added macro PUTCHAR to
3056         automatically implement putchar function prototype,
3057         * device/include/pic16/usart.h: modified and updated USART library,
3058         * device/lib/pic16/libio/adc/,
3059         * device/lib/pic16/libio/i2c: some modifications to improve library
3060         performance,
3061         * device/lib/pic16/libc/stdio/: modifications for the new printf*
3062         family of functions,
3063         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
3064         family of functions and other sources,
3065         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
3066         of the PIC18Fxx[28] devices,
3067         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
3068         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
3069         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
3070         _do_cinit function, because the previous failed when local variables
3071         where not placed in the same memory bank,
3072         * device/lib/pic16/libsdcc/char/: various modifications to improve
3073         library performance,
3074         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
3075         information on the new functions of the c library and more...
3076
3077 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3078
3079         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
3080
3081 2005-03-26 Raphael Neider <rneider AT web.de>
3082
3083         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
3084           if condition == CARRY)
3085         * (genCmp): adapted to new genSkipc semantics
3086         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
3087           on rIfx (genCmp was broken)
3088
3089 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3090
3091         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
3092         * src/z80/main.c (_keywords[]),
3093         * src/SDCCglobal.h (struct options),
3094         * src/SDCC.y,
3095         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
3096         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
3097         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
3098         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
3099         always available in leading double underscore form. The C99 support is
3100         mostly missing, but it's a start.
3101         * support/regression/tests/bug-227710.c: fixed nonconforming use of
3102         reserved identifier "__data".
3103
3104 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
3105
3106         * src/mcs51/peeph.def: fixed bug 1170013
3107
3108 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
3109
3110         * device/include/mcs51reg.h: fixed bug 842007
3111
3112 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3113
3114         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
3115         last time.
3116
3117 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3118
3119         * src/port.h (struct PORT),
3120         * src/avr/ralloc.c (avr_assignRegisters),
3121         * src/avr/main.c,
3122         * src/ds390/ralloc.c (ds390_assignRegisters),
3123         * src/ds390/main.c,
3124         * src/hc08/ralloc.c (hc08_assignRegisters),
3125         * src/hc08/main.c,
3126         * src/mcs51/ralloc.c (mcs51_assignRegisters),
3127         * src/mcs51/main.c,
3128         * src/pic/ralloc.c (pic14_assignRegisters),
3129         * src/pic/main.c,
3130         * src/pic16/ralloc.c (pic16_assignRegisters),
3131         * src/pic16/main.c,
3132         * src/xa51/ralloc.c (xa51_assignRegisters),
3133         * src/xa51/main.c,
3134         * src/z80/ralloc.c (z80_assignRegisters),
3135         * src/z80/ralloc.h,
3136         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
3137         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
3138         * src/SDCCcse.h,
3139         * src/SDCCdflow.c (computeDataFlow),
3140         * src/SDCCdflow.h,
3141         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
3142         * src/SDCCloop.h,
3143         * src/SDCCcflow.c (*),
3144         * src/SDCCcflow.h,
3145         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
3146         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
3147         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
3148         immedDom() returning wrong block; probably fixes bug #1160833)
3149
3150 2005-03-20 Borut Razem <borut.razem AT siol.net>
3151
3152         * support/scripts/inc2h.pl: WIN32 port
3153
3154 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
3155
3156         * device/lib/makefile.in: added abs.c and labs.c
3157
3158 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
3159
3160         * device/include/stdint.h: added
3161         * device/lib/abs.c: added
3162         * device/lib/labs.c: added
3163         * device/include/stdlib.h: added abs() and labs() prototypes
3164         * device/lib/libsdcc.lib: added abs and labs
3165         * device/include/float.h,
3166         * device/lib/_fsmul.c,
3167         * device/lib/printf_fast.c,
3168         * device/lib/printf_tiny.c: updated comments
3169
3170 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3171
3172         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
3173         bug #1164313
3174
3175 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3176
3177         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
3178         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
3179
3180 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
3181
3182         * device/lib/printf_large.c: removed inline assembly for portability and
3183           readability. Use printf_fast if speed or size are more important.
3184         * src/pic16/gen.c: removed conditions around use of DEBUGpc
3185         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
3186
3187 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
3188
3189         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
3190         prevent compiler warning
3191
3192 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
3193
3194         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
3195         moved to level 0 and declared as static. Also they are explicit
3196         placed in access bank. This was necessery because some times they
3197         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
3198         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
3199         optimizations. Currently only compare to unsigned char is implemented,
3200         * src/pic16/gen.c: added fReturnIdx array,
3201         * (struct resolvedIfx) is moved to gen.h and made public,
3202         * (struct _G): added sregsAlloc and sregsAllocSet fields,
3203         * (aopForSym): added an optimization to directly store in stack of
3204         the operand of a SEND iCode,
3205         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
3206         but as registers instead (AOP_REG) using the fReturnIdx array,
3207         * (pic16_freeAsmop): remove the freed register from the
3208         _G.sregsAlloc field,
3209         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
3210         a compare of 'WREG',
3211         * (pic16_popGetTempRegCond): changed function prototype, now
3212         function takes also a bitVector argument v which holds the current
3213         set of registers that are allocated for stack access by aopForSym,
3214         registers allocated in aopForSym for accessing stack symbols are not
3215         any more part of the functions usedRegs field,
3216         * (genCall): some times aopOp is called for a stack variable to be
3217         send, aopForSym might perform the push, if this is true make sure
3218         that genCall doesn't push the variable twice by testing _G.resDirect,
3219         * (genFunction): changed testing for unspecified interrupt number
3220         from 256 to INTNO_UNSPEC,
3221         * modified selection scheme of frame pointer generation. Previously
3222         if function did use local registers a frame pointer was generated,
3223         now a frame pointer is generated only if function has arguments
3224         (that need PLUSW2 register access), or has stack arguments, or the
3225         compiler is not instructed to omit the frame pointer,
3226         * (genEndFunction): before restoring local registers that were saved
3227         in the function preamble, also restore the registers that *might*
3228         have been allocated for stack access,
3229         * (genRet): removed some old comments,
3230         * (genCmp, the active (RN's) version): added a call to the
3231         pic16_genCmp_special function to perform the compare with a more
3232         robust and optimized way,
3233         * (genInline): a feature has been added in inline code generation,
3234         which allows a wildcard variable substitution when writing inline
3235         assembly. Code is incomplete and experimental therefore undocumented,
3236         * (genCast): changed order of aopOp for result and right to allow
3237         aopForSym to directly load the result if possible,
3238         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
3239         perform an optimized compare on some selected special occasions,
3240         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
3241         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
3242         generate an IVT any more,
3243         * src/pic16/main.c (pic16_optionsTable): added command line option
3244         --optimize-cmp,
3245         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
3246         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
3247         macros,
3248         * src/pic16/NOTES: Raphael Neider added in list of active developers
3249         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
3250         jumptable_end to prevent bug #,
3251         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
3252         inCond and outCond fields,
3253         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
3254         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
3255         turn off register spilling,
3256         * (packRegsForOneUse): synced with other ports' versions although it
3257         is not used currently,
3258         * (pic16_packRegisters): added an optimization while reading
3259         structure bitfields, some registers may be saved (malloc code is
3260         decreased by 80 bytes)
3261
3262 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
3263
3264         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
3265         left is a bitfield, if yes, then don't optimize assignment. Perhaps
3266         this can be optimized more?
3267
3268 2005-03-10 Raphael Neider <rneider AT web.de>
3269
3270         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
3271           genNearPointerGet): (hopefully) fixed access to bitfields via
3272           pointers (p->bitN = x; and x = p->bitN; failed)
3273
3274 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
3275
3276         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
3277
3278 2005-03-09 Raphael Neider <rneider AT web.de>
3279
3280         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
3281
3282 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
3283
3284         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
3285         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
3286           (regTypeNum): set REG_BIT type if necessary
3287         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
3288         * support/regression/tests/critical.c: check bug 1144613
3289
3290 2005-03-02 Raphael Neider <rneider AT web.de>
3291
3292         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
3293
3294 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3295
3296         * src/avr/ralloc.c (serialRegAssign),
3297         * src/ds390/ralloc.c (serialRegAssign),
3298         * src/hc08/ralloc.c (serialRegAssign),
3299         * src/mcs51/ralloc.c (serialRegAssign),
3300         * src/pic/ralloc.c (serialRegAssign),
3301         * src/pic16/ralloc.c (serialRegAssign),
3302         * src/xa51/ralloc.c (serialRegAssign),
3303         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
3304
3305 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
3306
3307         * src/SDCCast.c (decorateType): fixed bug 1124787
3308
3309 2005-02-20 Hubert Sack <sack AT digiplan.de>
3310         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3311
3312         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
3313         patch #1121755
3314
3315 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3316
3317         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
3318         to keep the correct label reference count when adding/removing references
3319         to labels. A peephole file using this is appended to patch #1144962.
3320
3321 2005-02-14 Raphael Neider <rneider AT web.de>
3322
3323         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
3324         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
3325         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
3326           retrievals of result operand's value on assignment
3327
3328 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
3329
3330         * device/include/pic16/string.h: modified prototype for memccpy()
3331         to memccpy(void *, void *, char, size_t)
3332         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
3333         check whether to omit frame pointer or not,
3334         * (genInline): convert all occurences of "\n" to LF in inline
3335         assembler blocks, this helps formatting the inline text,
3336         * (pic16_loadFSR0): modified prototype,
3337         * (genNearPointerGet, genNearPointerSet): reorganization of code,
3338         removed some 8051 legacy code,
3339         * (genPackBits): enabled handling bitfields exceeding one byte in size,
3340         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
3341         before allocating temporary registers in functions,
3342
3343 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
3344
3345         * support/regression/tests/bitvars.c: corrected the "fix"
3346
3347 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
3348
3349         * support/regression/tests/bitvars.c,
3350         * support/regression/tests/bitwise.c,
3351         * support/regression/tests/rotate.c: "fixed" problems on Alpha
3352
3353 2005-02-10 Raphael Neider <rneider AT web.de>
3354
3355         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
3356           different size for Alpha
3357         * src/pic16/gen.c (genCmpEq) : improved compare with 0
3358
3359 2005-02-09 Raphael Neider <rneider AT web.de>
3360
3361         * src/SDCC.lex(doPragma) : save and restore warning options as well
3362           (also added new stack plus clone- and copyAndFreeSDCCERRG())
3363         * have #pragma less_pedantic set the errorlevel to WARNING
3364           (fixes #1117001)
3365         * (cloneOptimize) : fixed wrong malloc's size
3366         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
3367           facilitate correct handling of #pragma (save|restore)
3368
3369 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
3370
3371         * src/mcs51/gen.c: removed non-standard C nameless struct/union
3372
3373 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
3374
3375         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
3376
3377 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
3378
3379         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
3380
3381 2005-02-02 Raphael Neider <rneider AT web.de>
3382
3383         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
3384         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
3385         * (pic16_storeForReturn): fixed to allow returning function pointers
3386         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
3387         * device/include/pic16/{stddef.h,stdbool.h}: added
3388
3389 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
3390
3391         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
3392
3393 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
3394
3395         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
3396         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
3397          appeared to be required
3398
3399 2005-01-31 Borut Razem <borut.razem AT siol.net>
3400
3401         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
3402           include/mcs51 and include/z80 directories to the package
3403
3404 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3405
3406         * src/hc08/gen.c (genFunction): fixed bug #1112752
3407
3408 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3409
3410         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
3411
3412 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3413
3414         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
3415
3416 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
3417
3418         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
3419
3420 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
3421
3422         * device/include/c8051fxxx.h: removed these 6 files
3423         * device/include/mcs51/c8051fxxx.h: added these 11 new files
3424
3425 2005-01-26 Raphael Neider <rneider AT web.de>
3426
3427         * src/pic16/gen.c (genAssign): fixed assignment from longs
3428           in codespace (were cut to three bytes)
3429         * (genDummyRead): implemented (except for CODESPACE...),
3430           fixed bug #1108575
3431         * src/pic16/glue.c (emitStatistics): beautified
3432         * device/lib/pic16/libm/Makefile: added include path
3433
3434 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3435
3436         * src/z80/gen.c (aopPut): fixed bug #1103902
3437
3438 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3439
3440         * device/lib/expf.c: fixed bug #1095792
3441
3442 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
3443
3444         * device/lib/pic16/libm: added Math library sources
3445
3446 2005-01-24 Raphael Neider <rneider AT web.de>
3447
3448         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
3449           to enable upcast to pCodeOpReg2 (there is no type tag to
3450           differenciate the two and pic16_popGet2p cast into PCOR2)
3451         * src/pic16/main.c (_process_pragma): fixed another malloc bug
3452           (sizeof(sectNames) changed to sizeof(sectName))
3453           Both patches fix segfaults under MinGW.
3454
3455 2005-01-23 Raphael Neider <rneider AT web.de>
3456
3457         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
3458           Safe_[mc]?alloc()'ed variables
3459         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
3460           of (byte sized) temporaries (assign them to WREG for now)
3461         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
3462           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
3463           this might fix SIGSEGVs on MinGW...
3464         * src/SDCCopt.c (killDeadCode): restored original behaviour
3465           (volatile operands might get thrown away though)
3466
3467 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
3468
3469         * src/pic16/gen.c: fixed bug #1106975,
3470         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
3471         pointer update, INTCON is saved, global interrupts are disabled and
3472         restored after updateing TOS.
3473         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
3474         * added function attribute 'shadowregs' to take advantage of shadow
3475         registers,
3476         * added function attribute 'wparam' as an alternative to the wparam
3477         pragma,
3478         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
3479         user declares a non-ISR function as 'shadowregs',
3480         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
3481
3482 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
3483
3484         * .version: bumped version number to 2.4.8
3485         * device/lib/pic16/pics.all: list of PIC18F devices supported by
3486         pic16 port,
3487         * device/lib/pic16/libio/i2c/: I2C module support library,
3488         * device/include/pic16/i2c.h: I2C support library header,
3489         * device/lib/pic16/libc/stdio/: standard IO support sources,
3490         * (printf_small.c): printf_small() source, supports float print,
3491         * (printf_tiny.c): printf_tiny() source, does not support floats,
3492         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
3493         enable global optimizations for entire library source, other
3494         Makefiles in the source tree are also modified to reflect this,
3495         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
3496         function,
3497         * doc/sdccman.lyx: updated to reflect new changes,
3498         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
3499         sym->onStack if-case,
3500         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
3501         sbit, idata, _idata, xdata, _xdata,
3502         * added pragma library, to link an external library, (see doc),
3503         * removed command line options, --pomit-config-words, --pomit-ivt,
3504         --pleave-reset-vector,
3505         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
3506         when calling assembler to reflect memory model used, also define
3507         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
3508         reflect stack model used,
3509         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
3510         on stack return NULL,
3511
3512 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3513
3514         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
3515           of the operands is volatile. Fixes #1020220
3516
3517 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3518
3519         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
3520         * (OptimizeRegUsage): make sure that there is really no other flow where
3521           the first pCode is used
3522
3523 2005-01-22 Raphael Neider <rneider AT web.de>
3524
3525         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
3526           to fix #1106967 (pCode->seq are not set up correctly)
3527
3528 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3529
3530         * src/SDCCglue.c (glue): make sure code area is declared before the
3531         static initialization area.
3532
3533 2005-01-21 Raphael Neider <rneider AT web.de>
3534
3535         * device/lib/Makefile.in: fixed test for pic16 install dir
3536         * device/lib/pic16/*/Makefile*: modified compile flags to enable
3537           optimizations
3538         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
3539           added --optimize-goto compiler switch and pragma wparam documentation
3540         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
3541         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
3542           and PRODH closing bug #1071770 (peephole optimizer)
3543
3544 2005-01-19 Raphael Neider <rneider AT web.de>
3545
3546         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
3547           cmdLine buffers (used when calling sdcpp...) are large enough
3548           (MAX_PATH=256 truncates arguments leading to system halts when
3549           used in MinGW...)
3550         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
3551         * (genUminus): rewritten to for efficiency
3552         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
3553           used uninitialized in some cases)
3554         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
3555           copy the third byte from the int -- now assumes 0x80 (data memory)
3556         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
3557           operands (genAddLit expects the iCode's operands to swapped as
3558           well), fixed leftover bytes (crashed for short left operands)
3559         * (pic16_genMinusDec): performance improvements, removed false
3560           PIC14 emitSKPNCs
3561         * (pic16_genMinus): fixed to cope with differently sized operands
3562         * src/pic16/glue.c (pic16_glue): added new banksel optimization
3563           for --obanksel > 1
3564         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
3565         * src/pic16/graph.[ch]: implementation of directed graphs, used by
3566           new banksel optimization
3567         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
3568           analysis for temporary registers (segfaults...)
3569         * src/pic16/peeph.def: added rule
3570
3571 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
3572
3573         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
3574         which converts a float number to its ASCII representation
3575         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
3576         functions to convert the fractional and integer part of a float to ASCII,
3577         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
3578         realloc.c): added _MALLOC_SPEC to explicit place variables in data
3579         ram
3580         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
3581         _STATMEM macros,
3582         * device/include/pic16/adc.h: added GPL info,
3583         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
3584         a pCodeOp as tested operand,
3585         * (genNearPointerGet): optimized bit testing, does not use
3586         intermediate register for bit value, test directly instead with
3587         BTFSS, BTFSC, works only for single bits,
3588         * (genpic16Code): dump the name of the iCode in the asm,
3589         * src/pic16/ralloc.c (decodeOp): removed static declaration and
3590         renamed to pic16_decodeOp,
3591         * (serialRegAssign): do not allocate a temporary register for iCode
3592         sequences that test a single bit for 1/0
3593
3594 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
3595
3596         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
3597         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
3598         access stack and frame pointers. They are initially assigned to
3599         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
3600         accessing SFRs. Updated all occurences of modification of stack or
3601         frame pointer in gen.c and pcode.c,
3602         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
3603         assigning of a literal value to pointers,
3604         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
3605         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
3606         selected
3607
3608 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
3609
3610         * doc/sdccman.lyx: update documentation about stack pragma, added
3611         some info for stack memory models
3612
3613 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3614
3615         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
3616
3617 2005-01-08 Raphael Neider <rneider AT web.de>
3618
3619         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
3620           udata sections to fix bug #1097823
3621
3622 2005-01-05 Raphael Neider <rneider AT web.de>
3623
3624         * src/pic16/gen.c (genGenericShift): added handling of differently
3625           sized left operand and result
3626
3627 2005-01-04 Raphael Neider <rneider AT web.de>
3628
3629         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
3630         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
3631           to hold the condition bit)
3632         * added new version of genCmp (old code available via #define)
3633         * added new version of genShiftLeft/genShiftRight in a generic
3634           way, now supports shifting by negative values
3635         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
3636           shiftCount (expected by genGenericShift)
3637         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
3638         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
3639           dump
3640         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
3641           is an invalid literal too...)
3642
3643 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
3644
3645         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
3646         from Raphael Neider,
3647         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
3648         for 8-bit literals. This fixes some literal operands which are sign
3649         extended to 16-bits ints when instruction needs only 8-bits.
3650
3651 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
3652
3653         * device/lib/logf.c: added mcs51 assembly version
3654         * device/lib/expf.c: added mcs51 assembly version
3655         * device/lib/_logexpf.c: new shared asm code for expf and logf
3656         * device/include/math.h: add defines for assembly math library
3657         * device/lib/Makefile.in: build new _logexpf.c
3658         * device/lib/libfloat.lib: use new _logexpf.c
3659
3660 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3661
3662         * src/pic/device.c
3663         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
3664           device types which have less than 0x7f registers.
3665
3666 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3667
3668         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
3669
3670 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3671
3672         * device/lib/printf_fast.c: only build on supported arch.
3673         * device/lib/printf_tiny.c: only build on supported arch.
3674         * device/lib/printf_fast_f.c: only build if asm float lib
3675         * device/lib/_fsget1arg.c: only build if asm float lib
3676         * device/lib/_fsget2args.c: only build if asm float lib
3677         * device/lib/_fsnormalize.c: only build if asm float lib
3678         * device/lib/_fsreturnval.c: only build if asm float lib
3679         * device/lib/_fsrshift.c: only build if asm float lib
3680         * device/lib/_fsswapargs.c: only build if asm float lib
3681         * device/include/stdio.h: don't provide print_fast,
3682           print_fast_f, print_tiny prototypes if --xstack used
3683
3684 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
3685
3686         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
3687         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
3688           to the SOURCES
3689
3690 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3691
3692         * device/lib/printf_fast_f.c: same as printf_fast, but
3693           with floating point enabled
3694         * device/lib/printf_fast.c: minor tweaks
3695         * device/include/stdio.h: add printf_fast_f
3696
3697 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3698
3699         * src/SDCCmain.c: make --float-reent default for mcs51
3700         * device/lib/_fsadd.c: added mcs51 assembly version
3701         * device/lib/_fssub.c: added mcs51 assembly version
3702         * device/lib/_fsmul.c: added mcs51 assembly version
3703         * device/lib/_fsdiv.c: added mcs51 assembly version
3704         * device/lib/_fseq.c: added mcs51 assembly version
3705         * device/lib/_fsneq.c: added mcs51 assembly version
3706         * device/lib/_fsgt.c: added mcs51 assembly version
3707         * device/lib/_fslt.c: added mcs51 assembly version
3708         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
3709         * device/lib/Makefile.in: add _fscmp to build
3710         * device/lib/libfloat.lib: add _fscmp to build
3711
3712 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3713
3714         * device/lib/_fs2slong.c: added mcs51 assembly version
3715         * device/lib/_fs2sint.c: added mcs51 assembly version
3716         * device/lib/_fs2schar.c: added mcs51 assembly version
3717         * device/lib/_fs2ulong.c: added mcs51 assembly version
3718         * device/lib/_fs2uint.c: added mcs51 assembly version
3719         * device/lib/_fs2uchar.c: added mcs51 assembly version
3720         * device/lib/_slong2fs.c: added mcs51 assembly version
3721         * device/lib/_sint2fs.c: added mcs51 assembly version
3722         * device/lib/_schar2fs.c: added mcs51 assembly version
3723         * device/lib/_ulong2fs.c: added mcs51 assembly version
3724         * device/lib/_uint2fs.c: added mcs51 assembly version
3725         * device/lib/_uchar2fs.c: added mcs51 assembly version
3726         * device/include/float.h: added #define to select asm vs c
3727
3728 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
3729
3730         * device/lib/printf_fast.c: improvements to float output
3731         * device/include/float.h: add defines for assembly float library
3732         * device/lib/_fsget1arg.c: receive 1 float arg
3733         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
3734         * device/lib/_fsnormalize.c: normalize a float
3735         * device/lib/_fsreturnval.c: return float, various helper routines
3736         * device/lib/_fsrshift.c: right shift a float's mantissa
3737         * device/lib/_fsswapargs.c: swap 2 floats
3738         * device/lib/Makefile.in: build these 6 new files for mcs51
3739         * device/lib/libfloat.lib: add these 6 files to the library
3740
3741 2004-12-26 Borut Razem <borut.razem AT siol.net>
3742
3743         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
3744           built by gcc 3.4.2
3745
3746 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
3747
3748         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
3749           and fully reentrant and register bank neutral.
3750         * device/lib/printf_fast.c: added float (not enabled by default),
3751           added compact/slower integer (also not enabled by default),
3752           improved size/speed of fast integer code, other minor changes
3753         * device/include/stdio.h, device/lib/Makefile.in,
3754           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
3755
3756 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
3757
3758         * src/pic16/pcode.c: declaring variables other than at the start of a
3759           block is not supported in C by VC6.
3760
3761 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
3762
3763         * applied a previous patch from Raphael Neider that wasn't included
3764         in the previous commits, which fixes infinite loops within jumptable
3765         improvements,
3766         * made some fixes that previous patches introduced
3767
3768 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
3769
3770         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
3771         that fixes an issue with AOP_PCODE asmop's offset,
3772         * (pic16_popCopyReg): update instance field too,
3773         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
3774         function of pic port,
3775         * (genCmp, genAnd, genAssign),
3776         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
3777
3778 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
3779
3780         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
3781         variables initial values to idata section,
3782         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
3783         variables in some functions. This utilizes parmBytes field of iCode
3784         structure to hold the offset of the variable in stack. (might be
3785         able to use the stack field too?)
3786         * applied patch from Raphael Neider # ### , # ###
3787         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
3788         variable initial values in idata section,
3789         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
3790         for static variables with initial value
3791         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
3792         applied fix in while loop from Raphael Neider.
3793
3794 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
3795
3796         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
3797         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
3798         * src/ds390/ralloc.c (serialRegAssign): spill bits
3799         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
3800         * support/Util/SDCCerr.c,
3801         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
3802         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
3803         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
3804
3805 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
3806
3807         * device/include/sdcc-lib.h: inserted LGPL, added includes
3808           asm/ds390/features.h and asm/mcs51/features.h
3809         * device/include/asm/default/features.h,
3810         * device/include/asm/gbz80/features.h,
3811         * device/include/asm/z80/features.h: added empty _AUTOMEM
3812           and _STATMEM
3813         * device/include/asm/ds390/features.h,
3814         * device/include/asm/mcs51/features.h: added files with defines for
3815           _AUTOMEM and _STATMEM indicating automatic and static storage class
3816         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
3817         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
3818         * src/SDCCicode.c (geniCodeCast),
3819         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
3820         * src/SDCCloop.c (loopInduction): removed unused variable lr
3821         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
3822           to convertToFcall to include char modulo (RFE 1065037), added check
3823           if left operand is unsigned and use abs of literal value
3824         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
3825           as it doesn't work after conversion from peephole.def to peephole.rul
3826         * src/mcs51/gen.c (toBoolean): added check for size,
3827           (genModOneByte): optimized code for signed char modulo a literal
3828           power of 2 (thanks to Hubert Sack),
3829           (genRRC): removed unnecessary "clr c",
3830           (genRLC): replaced "add a,acc" with cheaper "rlc a"
3831         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
3832           jump optimization,
3833           swapped rules 256.c and 256.d,
3834           extended 256.d by using new multiple checks (thanks Erik),
3835           added rules 256.e and 256.f,
3836           updated rule 261.a and 261.b to new generated code
3837         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
3838
3839 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3840
3841         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
3842           induction related bugs, including first part of bug #1074377
3843
3844 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
3845
3846         * applied patch from bug-report #1076292,
3847         * applied patches for genAnd and Goto-optimizations for Raphael
3848         Neider,
3849         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
3850         dump a less iCode information,
3851         * src/pic16/device.h (pic16_options_t): added field debgen,
3852         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
3853         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
3854         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
3855         puclic,
3856         * (various functions): added macros FENTRY and FENTRY2 to functions,
3857         to emit function prologue,
3858         * (various functions): fixed indentation,
3859         * (genNearPointerGet): fixed loading of FSR0,
3860         * (genPackBits): applied patch from Raphael Neider to fix updating
3861         of FSR0 and touching only the modified bits,
3862         * src/pic16/genarith.c (various functions): added macros FENTRY to
3863         emit function prologue in comments,
3864         * src/pic16/pcode.h: added functions debugf2, debugf3,
3865         * src/pic16/ralloc.c: partial fix for packForPush caused
3866         segmentation fault,
3867
3868 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3869
3870         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
3871           <stsp AT users.sourceforge.net> with reversed byte order
3872         * support/regression/tests/rotate.c: added (ds390 skips some tests)
3873
3874 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3875
3876         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
3877           bug #1074377
3878         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
3879         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
3880
3881 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3882
3883         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
3884
3885 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3886
3887         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
3888           conditions,
3889           (setFromConditionArgs): friendly operand parser for peephole rules,
3890           (operandBaseName, operandsNotRelated): new peephole condition
3891           "operandsNotRelated" -- similar to "operandsNotSame", but takes
3892           architecture specific register naming into account, handles n-way
3893           comparisons, and supports quoted literals
3894         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
3895
3896 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3897
3898         * src/mcs51/peeph.def: fixed bug #1076940
3899
3900 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3901
3902         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
3903
3904 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3905
3906         Adding support for replacing ljmps with sjmps in jumptables
3907         generated for switch statements. For now you need to set the
3908         environment variable SDCC_SJMP_JUMPTABLE to enable this.
3909         Now 4 algorithms for mcs51 jumptable generation are used:
3910         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
3911         addresses loaded pc-relative for up to 112 cases and stack-pushing
3912         target addresses loaded with offset from dptr for up to 256 cases.
3913
3914         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
3915         * src/mcs51/main.c: adapted constants for switch table generation
3916         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
3917
3918 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
3919
3920         * device/lib/printf_large.c (_print_format): fixed bug 1073386
3921         * support/regression/tests/bug1057979.c: added test for bug 1073386
3922
3923 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3924
3925         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
3926         compilers
3927
3928 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3929
3930         * src/pic16/device.h,
3931         * src/pic16/genarith.c,
3932         * src/pic16/glue.c,
3933         * src/pic16/main.c,
3934         * src/pic16/pcode.c: applied patches #1068154 and #1070213
3935
3936 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
3937
3938         Large cummulative patch for pic16 port.
3939         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
3940         to call when a stack overflow occurs,
3941         * (malloc.h): added CVS Id tag,
3942         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
3943         variable,
3944         * added libc directory. The current version of LibC contains string
3945         functions, ctype functions and macros and some functions of the
3946         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
3947         be extensively tested in the future. Standard disclaimer here.
3948         Library is not automatically build yet. But one can build it by
3949         invoking 'make' inside the libc directory.
3950         * added ADC library under libio. Preliminary version yet.
3951
3952         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
3953         * src/pic16/gen.c (aopForRemat): asmop size is filled by
3954         aopForRemat() now and not by pic16_aopOp(),
3955         * (pic16_popGetTempReg): removed warning messgae when allocating
3956         temporary registers, its a buggy feature and will be removed,
3957         * (pic16_popGet): set register instance field in AOP_CRY,
3958         * (pic16_outBitC): fixed for results in size greater than 1,
3959         * (genUminusFloat): fixed for pic16, ported code from mcs51,
3960         * (pic16_storeForReturn): optimized return of 0,
3961         * (genCmp): experimental code for new genCmp which uses PIC18's
3962         special compare&skip instructions. Initial tests fail some times
3963         with variables grater than 1 byte in size, so new code is disabled,
3964         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
3965         a single bit,
3966         * (genCast): began a fix to optimize the casting of a bit to another
3967         bit, now assigning a bitfield to another bitfield will fail, sorry,
3968         * src/pic16/main.c: disabled the use of lr-support feature,
3969         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
3970         * added some function prototypes, added function _debugf prototype,
3971         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
3972         bits with offset (case PO_GPR_BIT),
3973         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
3974         command line,
3975         * (isBankInstruction): modified to return 0 for no banking instruction,
3976         and 1 for banking instruction,
3977         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
3978         caused stop processing pCodes after a inline assembly block,
3979         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
3980         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
3981         registers when it shouldn't,
3982         * src/pic16/ralloc.c (allocReg): add preliminary support for
3983         supporting a limited set of temporary registers,
3984
3985 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3986
3987         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
3988           genDataPointerSet): ensure assignments always copy in MSB to LSB
3989           order,
3990           (loadRegFromAop): recognize CLRH optimization,
3991           (genFunction): optimize RECEIVE iCodes in reentrant functions
3992
3993 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3994
3995         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
3996           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
3997           selected.
3998         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
3999         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
4000           contiguous with data
4001
4002 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4003
4004         * device/lib/_gptrget.c (_gptrget),
4005         * device/lib/_gptrgetc.c (_gptrgetc),
4006         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
4007           instead of sjmp to ret
4008         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
4009           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
4010
4011 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
4012
4013         * .version: bumped version to 2.4.7
4014         * device/lib/_gptrget.c (_gptrget): is now _naked
4015         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
4016         * device/lib/_gptrput.c (_gptrput): is now _naked
4017         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
4018           (createFunction): fixed xstack
4019         * src/SDCCglue.c (emitMaps): set allocation required for bit area
4020         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
4021           or bit either,
4022           (geniCodeCritical): store original interrupt state in an iTemp bit
4023           var unless stack-auto
4024         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
4025         * src/SDCCmain.c (setIncludePath): added include/target to search path
4026         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
4027         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
4028           prototype,
4029           (processFuncArgs): put bit vars in bit area
4030         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
4031           unsaveRBank): fixed xstack,
4032           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
4033           (genFunction, genEndFunction): fixed xstack,
4034           (genAssign): optimization don't walk backwards through mem
4035         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
4036         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
4037         * support/regression/Makefile: also make library (for stack-auto) when
4038           making "all" and added "test-mcs51-xstack-auto"
4039         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
4040         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
4041         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
4042         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
4043         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
4044           make-library by MAKE_LIBRARY
4045         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
4046           regression tests for xstack
4047         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
4048         * support/regression/tests/critical.c: test for critical on mcs51
4049
4050 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4051
4052         * support/regression/ports/ucz80/spec.mk: use include and lib files from
4053           built version of sdcc instead of installed version
4054
4055 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
4056
4057         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
4058         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
4059           vprintf.c now
4060         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
4061         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
4062           WARNING: remove device/lib/build/z80/printf.o by hand when
4063           updating from previous build!
4064         * device/lib/z80/printf.c: updated comment
4065         * support/regression/tests/bug1057979.c: test all ports now
4066         * support/regression/tests/bug1065458.c: file added
4067
4068 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4069
4070         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
4071           *_start and *_end symbols for static functions
4072
4073 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
4074
4075         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
4076           and search crt0.o in all library paths,
4077           (setIncludePath): proper handling of --nostdinc,
4078           (setLibPath): proper handling of --nostdlib
4079         * support/regression/Makefile,
4080         * support/regression/ports/ds390/spec.mk,
4081         * support/regression/ports/gbz80/spec.mk,
4082         * support/regression/ports/hc08/spec.mk,
4083         * support/regression/ports/mcs51/spec.mk,
4084         * support/regression/ports/mcs51-large/spec.mk,
4085         * support/regression/ports/mcs51-stack-auto/spec.mk,
4086         * support/regression/ports/z80/spec.mk: use include and lib files from
4087           built version of sdcc instead of installed version
4088         * doc/sdccman.lyx: fixed typo in --nostdinc
4089
4090 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
4091
4092         * src/pic/pcode.c,
4093         * src/pic/device.c,
4094         * src/pic/ralloc.c,
4095         * src/pic/gen.c : added support to generate code for struct bit fields.
4096
4097 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
4098
4099         * as/xa51/xa_version.h,
4100         * device/include/errno.h,
4101         * device/include/regc515c.h,
4102         * device/lib/_itoa.c,
4103         * device/lib/_ltoa.c,
4104         * device/lib/ser_ir_cts_rts.c,
4105         * sim/ucsim/xa.src/glob.cc,
4106         * sim/ucsim/xa.src/inst_gen.cc,
4107         * sim/ucsim/xa.src/xa_bit.cc,
4108         * sim/ucsim/xa.src/xa_sfr.cc,
4109         * sim/ucsim/z80.src/inst_dd.cc,
4110         * sim/ucsim/z80.src/inst_fdcb.cc,
4111         * support/scripts/keil2sdcc.pl,
4112         * src/pic16/pic16.dsp,
4113         * src/pic16/pic16a.dsp: corrected cvs line endings
4114         * device/lib/printf_large.c: fixed bug 1057979
4115         * src/pic16/gen.c: fixed non-C standard code
4116         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
4117         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
4118         * support/regression/ports/mcs51/support.c: reload T1 asap
4119         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
4120           pdata use and clear idata startup behaviour
4121         * support/regression/tests/bug1057979.c: added
4122
4123 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
4124
4125         * device/examples/ds390/ow390/ad26.h,
4126         * device/examples/ds390/ow390/cnt1d.h,
4127         * device/examples/ds390/ow390/crcutil.c,
4128         * device/examples/ds390/ow390/ownet.h,
4129         * device/examples/ds390/ow390/owsesu.c,
4130         * device/examples/ds390/ow390/swt12.h,
4131         * device/examples/ds390/ow390/swtoper.c,
4132         * device/examples/ds390/ow390/temp10.h,
4133         * device/examples/ds390/ow390/thermodl.c,
4134         * device/examples/ds390/tinitalk/tinitalk.dsp,
4135         * device/examples/ds390/tinitalk/tinitalk.dsw,
4136         * device/examples/mcs51/clock/hw.h,
4137         * device/examples/mcs51/simple2/go.bat,
4138         * device/examples/serialcomm/windows/serial.h,
4139         * device/examples/xa51/dummy.c,
4140         * device/examples/xa51/hello.c,
4141         * device/include/80c51xa.h,
4142         * device/include/at89x051.h: corrected cvs line endings
4143
4144 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
4145
4146         * src/pic16/main.c (options): added command line --gstack, to trace
4147         stack over/under flows,
4148         * added pragma 'wparam' to allow passing first byte of function
4149         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
4150         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
4151         call to __gstack_test function and sets up the symbol as extern,
4152         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
4153         * popaop): added call to pic16_testStackOverflow,
4154         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
4155         wparamList list,
4156         * (genCall, genPcall): now all parameters are passed via stack
4157         except in functions that are pass to wparam pragma in which WREG is
4158         used too,
4159         * (genPcall): REENTRANT flag is checked to see if variable prototype
4160         contains reentrant keyword, don't call a non-reentrant function, via
4161         a reentrant function pointer or vice versa, functions are never
4162         passed via WREG,
4163         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
4164         D.Winkler,
4165         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
4166         SIGSEGV when accessing a NULL register stucture,
4167         * (pic16_printGPointerType): modified to handle UPPER modifier for
4168         function initializers, changed prototype of function to simpler one,
4169         * (pic16_printIvalFuncPtr): check to see if function is already
4170         added in externs list,
4171         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
4172         optimized a move from W to SFR with a move to the same register
4173         later after a CALL,
4174         * device/lib/pic16/debug: NEW directory, contains debug features
4175         which are enabled when linking with libdebug.lib, currently command
4176         line option --gstack enables stack pointer tracing for over/under
4177         flow, corresponding sources are in debug/gstack
4178
4179 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
4180
4181         * doc/sdccman.lyx: updated SDCC version,
4182         * (PIC16 port): update list of command line options,
4183         * src/pic16/device.h (structure pic16_options_t): added field gstack
4184         to enable stack overflow tracing on push/pops,
4185         * src/pic16/device.c (statistics structure): added statistics
4186         structure,
4187         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
4188         pic16_dump_int_registers): increase statistics counters for each
4189         * variable which is encountered
4190         * (pic16_dump_usection): emit each .udata variable to its own udata
4191         section,
4192         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
4193         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
4194         parameters via stack, otherwise use old scheme,
4195         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
4196         assembler output file,
4197         * src/pic16/main.c: added command line options --gstack to enable
4198         push/pop tracing for stack overflow,
4199         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
4200         instructions): added size of each instruction,
4201         * (pic16_countInstruction): estimate size of instructions in
4202         the_pFile list, inline assembly blocks are not counted,
4203         * (pic16_FixRegisterBanking): trace previous register usage, when
4204         banksel optimizations is greater than 0, don't emit a redudant
4205         banksel directive,
4206
4207 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
4208
4209         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
4210         * src/pic16/ralloc.c : applied same fix for pic16.
4211         * src/pic/gen.c : tidied it up a little.
4212
4213 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4214
4215         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
4216         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
4217
4218 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4219
4220         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
4221
4222 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4223
4224         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
4225         non-reentrant function __modsint in the interrupt function (thus
4226         corrupting math operations during serial I/O)
4227         * device/lib/ser_ir.c: as above, changed buffersize
4228         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
4229         256.c,d for zeroing
4230         * doc/Makefile: added option -t for rsync
4231
4232 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4233
4234         * src/SDCCast.h (struct ast),
4235         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
4236
4237 2004-10-20 Borut Razem <borut.razem AT siol.net>
4238
4239         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
4240         package
4241
4242 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
4243
4244         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
4245         makefile targets,
4246         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
4247         support functions to replace long sequences of MOVFF's from access
4248         bank registers to stack and vice versa,
4249         * src/pic16/device.h: added new field opt_flags, where optimization
4250         flags can be set to enable certain features,
4251         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
4252         * pBlock, (genFunction, genEndFunction): surroung loop for
4253         saving/loading used registers in stack with PC_INFO pCodes,
4254         INF_LREGS. Code in between can then be optimized by pCode optimizer
4255         to support function calls,
4256         * (genDataPointerSet): fixed bug which loaded float fields in
4257         structures with corrupt data,
4258         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
4259         in a standard way debug info on stderr. Feature used for developing
4260         and debugging only,
4261         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
4262         obsolete chunks of code,
4263         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
4264         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
4265         * pic16/src/pcode.c (pic16_newpCodeInfo,
4266         * (pic16_newpCodeOpLocalRegs),
4267         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
4268         feature,
4269         * (pic16_pCodeConstString): printing of the initial value of a
4270         symbol as a comment is inhibited since parsing was already done by
4271         copyStr and output is corrupt,
4272         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
4273
4274 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4275
4276         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
4277
4278 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
4279
4280         * as/mcs51/lkarea.c: removed old K&R style,
4281           (lnksect): changed check on boundary error,
4282           (lnksect2): changed check on boundary error,
4283           (lnksect2): extend XSTK to end of page if size = 1
4284         * as/mcs51/lkmain.c: removed old K&R style,
4285           (Areas51): create l_IRAM symbol
4286         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
4287         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
4288           model-mcs51-stack-auto, added model-mcs51-xstack-auto
4289         * device/lib/_mullong.c: added version to be compiled with xstack
4290         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
4291         * device/lib/mcs51/crtxclear.asm: clear pdata as well
4292         * device/lib/mcs51/crtxstack.asm: fixed comment
4293         * src/SDCCglue.c: maxInterrupts defaults to 0,
4294           (emitMaps): added pdata,
4295           (createInterruptVect): (re)moved default,
4296           (glue): added pdata,
4297           (glue): moved __start__xstack to XSTK with default size 1
4298         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
4299           and options.float_rent when options.stackAuto is set,
4300           (linkEdit): only write XDATA_NAME if provided on command line
4301         * src/SDCCmem.h,
4302         * src/SDCCmem.c: added pdata
4303         * src/port.h: added pdata_name to PORT
4304         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
4305           (saveRegisters, unsaveRegisters): removed usage of B,
4306           (genMinus): fixed accumulator clash,
4307           (genJumpTab): added comment, this needs another look
4308         * src/mcs51/gen.c: added check for "B in use" paranoia,
4309           added pushB() and popB()
4310         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
4311           chance
4312         * src/avr/main.c,
4313         * src/ds390/main.c,
4314         * src/hc08/main.c,
4315         * src/mcs51/main.c,
4316         * src/pic/main.c,
4317         * src/pic16/main.c,
4318         * src/xa51/main.c,
4319         * src/z80/main.c: (reset_regparms) made void parameter explicit and
4320           added PSEG (PAG,XDATA) or NULL to port specifier
4321         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
4322         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
4323           (_mcs51_genInitStartup): removed __start__xstack equ,
4324           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
4325         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
4326         * src/z80/gen.c (_rleAppend): fixed warnings
4327         * support/regression/tests/zeropad.c: added pdata test
4328         * .version: bumped to 2.4.6
4329
4330 2004-10-17 Borut Razem <borut.razem AT siol.net>
4331
4332         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
4333         as a part of nightly build
4334
4335 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
4336
4337         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
4338         WREG holds the first byte function parameters,
4339         * (aopForSym): take special case for symbols which are in FARSPACE
4340         but in CODESPACE too,
4341         * (assignResultValue): modified to take into account _G.useWreg,
4342         * (genCall): don't use wreg for parameter passing when function is
4343         declared as reentrant, too, added optimization INCF to stack
4344         pointer when stack parameter count is 1,
4345         * (genFunction, genEndFunction): refurnished and fixed to not using
4346         wreg for passing parameters when function has varargs or is
4347         reentrant, fixed bug with symbol name compare for generating
4348         functions in absolute address,
4349         * (pic16_storeForReturn): refurnished,
4350         * (genCmp): began writing a new version of the function, not ready
4351         yet, therefore it is disabled,
4352         * (genAssign): do not read code memory when assigning a function to
4353         a pointer function,
4354         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
4355         array of characters, not pointer,
4356         * (pic16initialComments): in debug mode emit an .ident directive for
4357         the assembler,
4358         * (_process_pragma): emit a new warning type (internal to pic16)
4359         when setting stack to default length, emit a similar warning when
4360         placing a function at absolute address and address is not word aligned
4361         * (_pic16_parseOptions): added 'return TRUE' statement,
4362         * (_pic16_linkEdit): if compiling a source, then add the source's
4363         file object, first in the list of objects to link,
4364
4365 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
4366
4367         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
4368         * src/pic/main.c : removed VC warning.
4369         * src/pic/gen.c : changed comment.
4370
4371 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
4372
4373         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
4374         reference to a deprecated symbol _GPTRREG was causing failure to
4375         link. Thanks G. M. Gallant for the info.
4376
4377 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
4378
4379         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
4380         comments for Bugs item #954788.
4381
4382 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
4383
4384         * src/pic16/device.c (pic16_dump_gsection,
4385         * pic16_groupRegistersInSection): handle symbols declared to be in
4386         access bank differently,
4387         * src/pic16/gen.c (struct _G): added field resDirect,
4388         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
4389         send values read from stack directly to result and don't allocate
4390         temporary values,
4391         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
4392         same registers,
4393         * (pic16_sameRegsOfs): NEW,
4394         * (freeAsmop): if _G.resDirect is set then do not mark registers as
4395         free because they were not allocated from temporary pool,
4396         * pic16_popRegFromString): workaround to fix a problem with
4397         allocating variables twice or never,
4398         * (genGenPointerGet): using PRODL instead of FSR0H,
4399         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
4400         instead of FSR0H,
4401         * (genAssign): take advantage of the _G.resDirect flag,
4402         * (genCast): around line 11844, use mov2f instead of directly
4403         MOVFF'ing between operands to account for literal values,
4404         * src/pic16/genutils.c: some new debug functions for gpsim have been
4405         added,
4406         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
4407         float with integer part only,
4408         * src/pic16/main.c (_process_pragma): handle pragma udata access to
4409         place variables in access bank
4410         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
4411         updated sources to reflect recent changes in gen.c
4412
4413 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
4414
4415         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
4416         sources that searched for headers in installation path, now the
4417         device/include/pic16 is used,
4418         * src/pic16/glue.c (pic16glue),
4419         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
4420         .line directives if not in debug mode, this suppresses assembler's
4421         warnings for ignored directives
4422
4423 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
4424
4425         * src/port.h: made reset_regparms prototype void parameter explicit.
4426         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
4427         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
4428         * doc/sdccman.lyx: documented warning disabling and how to use
4429           printf_large to make it print floats.
4430         * device/include/stdbool.h: NEW
4431         * device/lib/_atof.c,
4432         * device/lib/_divuint.c,
4433         * device/lib/_divulong.c,
4434         * device/lib/expf.c,
4435         * device/lib/printf_large.c,
4436         * device/lib/sincosf.c,
4437         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
4438         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
4439           a completely reentrant lib.
4440
4441 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
4442
4443         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
4444         * device/include/pic16/stdio.h: fixed bug with colon
4445
4446 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
4447
4448         * device/include/pic16/stdio.h,
4449         * device/include/pic16/stdlib.h,
4450         * device/include/pic16/math.h: NEW
4451         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
4452         declared as _naked to reduce overhead
4453         * device/lib/Makefile.in (target port-specific-objects-pic16):
4454         changed * to *.* so to ignore the CVS directory,
4455         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
4456         stacked variables back in stack,
4457         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
4458         corruption
4459
4460 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
4461
4462         * .version: bumped version number to 2.4.5
4463         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
4464         * support/Util/SDCCerr.c (messages structure): added entry for
4465         W_POSSBUG2
4466
4467         Large cumulative patch for pic16 port and libraries.
4468         * device/include/pic16/sdcc-lib.h,
4469         * device/include/pic16/stdarg.h,
4470         * device/include/asm/pic16/features.h,
4471         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
4472         * device/include/pic16/float.h: changes reentrant keyword with
4473         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
4474         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
4475         updated target build-libraries to include objects from gptr,
4476         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
4477         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
4478         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
4479         all function headings,
4480         * src/SDCCmain.c: added global parameter userIncDirsSet,
4481         * (parseCmdLine): when option -I is encountered add directory to
4482         userIncDirsSet too,
4483         * src/version.awk: added space between control and long,
4484         * src/pic16/NOTES: added some notes for the port,
4485         * src/pic16/gen.c: added prototype for mov2fp function,
4486         * (fReturnpic16[]): properly named return value registers,
4487         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
4488         * (aopForSym): added code to handle symbols with onStack flag set,
4489         symbols onStack are allocated PTRSIZE bytes,
4490         * (aopFreeAsmop): handles special case where asmops are stack objects,
4491         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
4492         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
4493         added argument lock to trace flaws in allocating temporary registers
4494         when developing port,
4495         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
4496         * (pic16_popRegFromString): reenabled allocating a direct register
4497         from string,
4498         * (assignResultValue): various beautifications,
4499         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
4500         referenced function argument,
4501         * (genIpush): reenabled to allow stacked arguments, handles only
4502         ic->parmPush iCodes,
4503         * (genCall, genPcall): major changes to allow for variable argument
4504         functions, fixed a bug with falsely restoring stack pointer after
4505         returning from call,
4506         * (genFunction): pending code for critical function,
4507         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
4508         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
4509         * (genNearPointerGet): fixed bug with indirect reading, was always
4510         reading from INDF0
4511         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
4512         pointers,
4513         * (genAddrOf): rewrote code to take address of a stacked function parameter
4514         * (genCast): fixed casting to generic pointer type,
4515         * src/pic16/gen.h: added AOP_STA,
4516         * (struct asmop): added field stk,
4517         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
4518         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
4519         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
4520         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
4521         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
4522         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
4523         generic pointers,
4524         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
4525         and library paths,
4526         * (pic16_port structure): generic pointer size is set to 3,
4527         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
4528         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
4529         compiler warning,
4530         * src/pic16/ralloc.c (allocReg): prevent allocating register when
4531         operand is an iTemp,
4532
4533 2004-09-24 Martin Helmling <mh AT octo-soft.de>
4534
4535         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
4536         * debugger/mcs51/simi.c: addapt new syntax of s51
4537
4538 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
4539
4540         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
4541         * src/pic16/pcode.c: commented out some calls to free() in order to
4542         fix bug #989576,
4543
4544 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4545
4546         * src/SDCCicode.h,
4547         * src/SDCCicode.c (isiCodeInFunctionCall),
4548         * src/avr/ralloc.c (selectSpil),
4549         * src/pic/ralloc.c (selectSpil),
4550         * src/pic16/ralloc.c (selectSpil),
4551         * src/ds390/ralloc.c (selectSpil),
4552         * src/hc08/ralloc.c (selectSpil),
4553         * src/xa51/ralloc.c (selectSpil),
4554         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
4555         stack in the middle of a function call sequence (fixes bug #1020268)
4556         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
4557         costs associated with the minimum switch case.
4558
4559 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4560
4561         * src/SDCC.lex: fixed bug #1030549
4562
4563 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4564
4565         * src/SDCCcse.h (struct cseDef),
4566         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
4567         over a function call if the CSE is derived from a symbol whose
4568         address has been taken (fixes bug #1029883)
4569         * support/regression/tests/bug-1029883: a new regression test for
4570         this bug
4571
4572 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4573
4574         * src/hc08/gen.c (emitinline): fixed bug #1029778
4575         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
4576         to a cast object is no longer a syntax error ("fixes" bug #1030006,
4577         and starts toward RFE #905167)
4578
4579 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
4580
4581         * src/pic16/gen.c (mov2f): New function to move an operand to
4582         another without considering if it is a literal or a register,
4583         * (pic16_sameRegs): don't check if they are both AOP_REG,
4584         * (AccRsh): removed andmask=0 lines,
4585         * (genLeftShift): duplicated to be improved in future versions,
4586         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
4587         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
4588         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
4589         * (pic16initMnemonics): added initialization for POC_INFSNZW,
4590         * (insertBankSwitch): fixed inserting banksel directives algorithm
4591         for instructions that follow a skip instruction, this fixes a report
4592         for broken subtraction code generation,
4593         * src/pic16/ralloc.c (deassignLRs): do not free register if current
4594         iCode is a left op, just in case result and right share the same
4595         registers
4596
4597 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4598
4599         * src/hc08/main.c,
4600         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
4601         preservation of HX
4602         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
4603         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
4604         on 2004-09-12; it was buggy
4605
4606 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
4607
4608         * src/SDCCsymt.h: removed RESULT_CHECK
4609         * src/SDCCast.c,
4610         * src/SDCCglue.c,
4611         * src/SDCCval.c,
4612         * src/pic/glue.c,
4613         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
4614
4615 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
4616
4617         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
4618         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
4619         configuration values no more rejected by compiler, they are assigned
4620         to configuration registers with a warning message instead,
4621         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
4622         the for-loop so last conf register is emitted too,
4623         * (_pic16_initPaths): link library libsdcc.lib by default,
4624         * (_hasNativeMulFor): modified test for multiplication according to
4625         Raphael Neider's remarks. Integer multiplication is also done with
4626         support functions,
4627         * device/include/pic16/pic18fregs.h: corrected type error in while
4628         testing and including 18f6720 header file
4629
4630 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
4631
4632         * src/pic16/device.h (pic16_options): removed field use_crt,
4633         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
4634         until an optimization to handle single bits is added,
4635         * (pic16_loadFSR0): moved before genUnpackBits,
4636         * (genAnd): some white lines removed,
4637         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
4638         leave_reset flags in pic16_options when using crt modules,
4639
4640 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
4641
4642         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
4643           for bugs 898889 & 979599. Also used some safer print instructions.
4644
4645 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
4646
4647         * src/pic16/device.h (pic16_options_t): added field use_crt,
4648         crt_name, no_crt,
4649         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
4650         catch a probable future bug,
4651         * src/pic16/gen.c: aopIdx function commented out,
4652         * (genAssign): commented out old code which used aopIdx,
4653         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
4654         code, added if conditionals to take into account the --use-crt
4655         command line options,
4656         * src/pic16/main.c (pic16_optionsTable): added new command line
4657         options, --use-crt= and --no-crt,
4658         * (_pic16_linkEdit): now the proper crt object is added in the
4659         linker command line except than when --no-crt is specified,
4660         * src/pic16/pcode.c,
4661         * src/pic16/pcode.h: added some structures and functions for a new
4662         optimization scheme to compansate for instruction overhead between
4663         same iCodes, this scheme is currently under development and is not
4664         working in any way,
4665         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
4666         to && operator,
4667         * device/lib/pic16/startup/crt0i.c,
4668         * device/lib/pic16/startup/crt0iz.c: added global char variable
4669         __uflags to force the generation of an idata section
4670
4671 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
4672
4673         * doc/Makefile,
4674         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
4675         * doc/sdccman.lyx: updated sdcc version to 2.4.4
4676
4677 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4678
4679         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
4680         Frieder) and clarified the default code optimization mode
4681
4682 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4683
4684         * src/SDCC.lex (doPragma, process_pragma),
4685         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
4686         "opt_code_size", and "opt_code_balanced"
4687         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
4688         regrouped options by category, added support for category headers
4689         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
4690         and "--opt-code-size"
4691         * doc/sdccman.lyx: documented these new options and pragmas
4692         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
4693         preference into account
4694
4695 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4696
4697         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
4698           geniCodePreDec): Fixed bug 904237 by generating a warning
4699         * src/SDCCerr.h,
4700         * src/SDCCerr.c: added warning W_SIZEOF_VOID
4701
4702 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
4703
4704         * src/pic/device.c : When no max ram set validate full memory range.
4705         * src/pic/pcode.c,
4706         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
4707
4708 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4709
4710         * device/lib/_gptrget.c,
4711         * device/lib/_gptrput.c: updated comment
4712         * device/lib/calloc.c,
4713         * device/lib/free.c,
4714         * device/lib/malloc.c,
4715         * device/lib/realloc.c: added LGPL, made them reentrant-safe
4716         * src/SDCCcse.c (cseBBlock),
4717         * src/SDCCicode.c (printOperand, geniCodeArray),
4718         * src/SDCCicode.h (struct operand): fixed bug 868103
4719         * support/regression/tests/bug-868103.c: added
4720         * src/SDCCast.c (searchLitOp),
4721         * src/SDCCcse.h (struct cseDef),
4722         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
4723         * src/SDCCicode.h (struct operand),
4724         * src/SDCCsymt.h (struct sym_link),
4725         * src/avr/gen.c (hasInc),
4726         * src/ds390/gen.c (hasInc),
4727         * src/hc08/gen.c (genPlusIncr, hasInc),
4728         * src/mcs51/gen.c (hasInc),
4729         * src/pic16/glue.c (pic16_printIvalChar),
4730         * src/pic16/ralloc.c (regWithIdx),
4731         * src/xa51/gen.c (hasInc) : removed warnings
4732         * src/SDCCast.c (createBlock): added comment ???
4733         * src/hc08/ralloc.c: updated comments
4734
4735 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4736
4737         * doc/sdccman.lyx: updated section on switch statements, added
4738         section about semaphore locking
4739         * doc/Makefile: added option -info for latex2html
4740         * device/lib/_gptrget.c,
4741         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
4742
4743 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4744
4745         * src/pic/device.h,
4746         * src/pic/device.c,
4747         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
4748          maxram is less than 0x100.
4749
4750 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4751
4752         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
4753
4754 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4755
4756         * src/port.h,
4757         * src/mcs51/main.c,
4758         * src/ds390/main.c,
4759         * src/z80/main.c,
4760         * src/hc08/main.c,
4761         * src/pic/main.c,
4762         * src/pic16/main.c,
4763         * src/avr/main.c,
4764         * src/xa51/main.c
4765         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
4766         a jump table is the best form for a switch statement, including
4767         automatic insertion of missing cases to make the case range
4768         continuous. Developed in collaboration with Frieder Ferlemann.
4769
4770 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4771
4772         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
4773         accumulator result if it needs sign extension
4774
4775 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4776
4777         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
4778
4779 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4780
4781         * device/lib/gbz80/printf.c,
4782         * device/lib/z80/printf.c: removed define for NULL
4783
4784 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4785
4786         * as/xa51/xa_link.c,
4787         * device/examples/ds390/ow390/ad26.c,
4788         * device/examples/ds390/ow390/cnt1d.c,
4789         * device/examples/ds390/ow390/counter.c,
4790         * device/examples/ds390/ow390/ds2480.h,
4791         * device/examples/ds390/ow390/ds2480ut.c,
4792         * device/examples/ds390/ow390/findtype.c,
4793         * device/examples/ds390/ow390/gethumd.c,
4794         * device/examples/ds390/ow390/owllu.c,
4795         * device/examples/ds390/ow390/ownetu.c,
4796         * device/examples/ds390/ow390/swt12.c,
4797         * device/examples/ds390/ow390/swtloop.c,
4798         * device/examples/ds390/ow390/temp.c,
4799         * device/examples/ds390/ow390/temp10.c,
4800         * device/examples/ds390/ow390/thermo21.c,
4801         * device/examples/ds390/ow390/tinilnk.c,
4802         * device/examples/ds390/ow390/tstfind.c,
4803         * device/examples/serialcomm/windows/serial.cpp,
4804         * device/examples/serialcomm/windows/test_serialcomm.cpp,
4805         * device/include/reg51.h: fixed line endings for cvs
4806
4807 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4808
4809         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
4810         packRegsForAccUse, packRegisters): new accumulator register
4811         packing algorithm
4812         * support/regression/ports/hc08/support.c (_putchar): suppress
4813         warning of unused variable
4814         * src/SDCCicode.c: added SWAP entry to codeTable
4815
4816 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
4817
4818         * device/lib/sprintf.c: forgot to add this file before previous commit
4819
4820 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
4821
4822         * src/pic16/gen.c (genPackBits): added operand right in function
4823         parameters, load result directly if p_type is POINTER (that is
4824         called by genNearPointerSet)
4825         * (genUnPackBits): added operand left in function parameters,
4826         * (genNearPointerGet, genNearPointerSet): prevent the loading of
4827         FSR0 if accessing bitfields,
4828
4829 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
4830
4831         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
4832           _print_format; updated printf, sprintf, vsprintf
4833         * device/include/asm/default/features.h: corrected comment/define
4834         * device/lib/Makefile.in: added sprintf.c
4835         * device/lib/libsdcc.lib: added sprintf module
4836         * device/lib/printf_large.c,
4837         * device/lib/vprintf.c,
4838         * device/lib/sprintf.c: totally refactored printf_large and vprintf
4839           into these 3 files
4840         * support/regression/Makefile: changed ALL_PORTS into a usefull default
4841         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
4842         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
4843           hc08 test
4844         * support/regression/tests/zeropad.c: define idata as data for hc08
4845
4846 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4847
4848         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
4849         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
4850         labels are referenced at least once (even if a reference is not found)
4851         * src/hc08/gen.c (emitcode): set isComment flag for comments
4852         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
4853         loads), rules 6a..6b (optimize jumps to return)
4854
4855 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4856
4857         * device/lib/acosf.c (acosf),
4858         * device/lib/asinf.c (asinf),
4859         * device/lib/atanf.c (atanf),
4860         * device/lib/ceilf.c (ceilf),
4861         * device/lib/cosf.c (cosf),
4862         * device/lib/coshf.c (coshf),
4863         * device/lib/cotf.c (cotf),
4864         * device/lib/fabsf.c (fabsf),
4865         * device/lib/floorf.c (floorf),
4866         * device/lib/log10f.c (log10f),
4867         * device/lib/logf.c (logf),
4868         * device/lib/sinf.c (sinf),
4869         * device/lib/sinhf.c (sinhf),
4870         * device/lib/sqrtf.c (sqrtf),
4871         * device/lib/tanf.c (tanf),
4872         * device/lib/tanhf.c (tanhf),
4873         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
4874         replaced all instances of "reentrant" in the library functions
4875         defined in math.h with this macro.
4876         * support/regression/tests/float_trans.c: reenabled test for hc08
4877
4878 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
4879
4880         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
4881         erroneously deleted
4882
4883 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4884
4885         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
4886         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
4887         multi-byte volatile operands are used
4888         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
4889         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
4890         initialization to area GSINIT0 so that it would always precede
4891         any static initializers in GSINIT
4892         * support/regression/tests/zeropad.c: fixed idata define for hc08
4893         * support/regression/tests/bug-927659.c,
4894         * support/regression/tests/float_trans.c: disabled tests for hc08
4895         pending missing library routines
4896         * .version: increased version number to 2.4.4 - hc08 port now passes
4897         regression tests
4898
4899
4900 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
4901
4902         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
4903         * Makefile.common.in,
4904         * as/Makefile,
4905         * as/hc08/Makefile.in,
4906         * as/mcs51/Makefile.in,
4907         * as/z80/Makefile.in,
4908         * debugger/mcs51/Makefile.in,
4909         * device/include/Makefile.in,
4910         * device/lib/Makefile.in,
4911         * doc/Makefile,
4912         * link/Makefile,
4913         * link/z80/Makefile.in,
4914         * packihx/Makefile.in,
4915         * sim/ucsim/main_in.mk,
4916         * sim/ucsim/avr.src/Makefile.in,
4917         * sim/ucsim/doc/Makefile.in,
4918         * sim/ucsim/gui.src/serio.src/Makefile.in,
4919         * sim/ucsim/hc08.src/Makefile.in,
4920         * sim/ucsim/s51.src/Makefile.in,
4921         * sim/ucsim/xa.src/Makefile.in,
4922         * sim/ucsim/z80.src/Makefile.in,
4923         * src/Makefile.in,
4924         * support/cpp2/Makefile.in,
4925         * support/librarian/Makefile,
4926         * support/makebin/Makefile: added DESTDIR to the install path proposed
4927         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
4928         * doc/sdccman.lyx: added DESTDIR documentation
4929
4930 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
4931
4932         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
4933         instruction for interrupt handlers, use fast returns when returning
4934         from high priority interrupts
4935
4936 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4937
4938         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
4939         code generation
4940         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
4941         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
4942         bugs, ported much of Bernhard's code from mcs51
4943         * src/mcs51/gen.c (genSend),
4944         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
4945         than one when calling a reentrant function
4946         * device/lib/_mullong.c: defined an alternate struct layout for big
4947         endian ports (hc08)
4948
4949 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4950
4951         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
4952         test
4953
4954 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4955
4956         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
4957         are sane and complete before asking the port its prefered parameter
4958         passing method (fixes bug #1017633)
4959         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
4960         and _ret3
4961
4962 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4963
4964         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
4965         problem in bitfields >= 8 bits.
4966
4967 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4968
4969         * src/SDCCsymt.c: undid changes that were not meant to be committed
4970
4971 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4972
4973         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
4974
4975 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4976
4977         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
4978           copied and wrong bit got inverted
4979
4980 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4981
4982         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
4983         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
4984         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
4985         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
4986         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
4987         assignments to bitfields at known addresses
4988         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
4989         reads from bitfields at known addresses
4990         * src/hc08/ralloc.c (packRegisters),
4991         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
4992         genhc08Code): optimize pointer get values used as conditionals
4993         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
4994         and branch
4995
4996 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4997
4998         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
4999         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
5000         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
5001         as conditionals
5002
5003 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5004
5005         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
5006
5007 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5008
5009         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
5010         related problems
5011
5012 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
5013
5014         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
5015
5016 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5017
5018         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
5019         mcs51 port
5020
5021 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
5022
5023         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
5024
5025 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5026
5027         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
5028         cases use more compact code.
5029
5030 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
5031
5032         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
5033
5034 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5035
5036         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
5037
5038 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5039
5040         * src/SDCCsymt.h,
5041         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
5042         parameter of changePointer() from symbol* to sym_link*
5043         * src/SDCCast.c (decorateType): call changePointer() for CAST op
5044         * src/SDCCsymt.c (compareType): void* type is castable to other
5045         pointers, but not necesarily an exact match.
5046         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
5047         is no longer blindly treated as an exact match.
5048         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
5049
5050 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
5051
5052         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
5053
5054 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
5055
5056         * src/pic/gen.c,
5057         * src/pic/pcode.c,
5058         * src/pic/ralloc.h,
5059         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
5060
5061 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
5062
5063         * src/pic/device.c,
5064         * src/pic/device.h,
5065         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
5066
5067 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5068
5069         * src/mcs51/gen.c (emitcode): fixed bug #992819
5070
5071 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
5072
5073         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
5074           there's no need to make it worse
5075
5076 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5077
5078         * src/mcs51/ralloc.c (deassignLR),
5079         * src/ds390/ralloc.c (deassignLR),
5080         * src/hc08/ralloc.c (deassignLR),
5081         * src/z80/ralloc.c (deassignLR),
5082         * src/pic/ralloc.c (deassignLR),
5083         * src/pic16/ralloc.c (deassignLR),
5084         * src/avr/ralloc.c (deassignLR),
5085         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
5086         rlivePoint): fixed another part of bug #971834
5087
5088 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5089
5090         * src/z80/main.c: enabled "critical" keyword
5091         * src/z80/mappings.i,
5092         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
5093         functions (fixes bug #979646)
5094         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
5095
5096 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5097
5098         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
5099           such as c:\mydir.
5100
5101 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
5102
5103         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
5104           doesn't disable too much optimizations
5105
5106 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
5107
5108         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
5109
5110 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
5111
5112         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
5113
5114 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
5115
5116         * src/pic/gen.c tidied up tabs
5117         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
5118         * src/pic/main.c tidied up tabs
5119         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
5120         * src/pic/pcoderegs.c tidied up tabs
5121         * src/pic/ralloc.c tidied up tabs
5122
5123 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
5124
5125         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
5126         to S_FIXED for pic16 port and when symbol is not in level 0,
5127         allocate for S_REGISTER storage class and pic16 port, too,
5128         * src/pic16/device.h: prototype for checkSym,
5129         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
5130         * (pic16_assignConfigWordValue): test the value and the mask to
5131         validate that the value is suitable for the configuration word,
5132         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
5133         collect extern declared symbols, don't emit symbol twice, check
5134         first if symbol is in publics set first,
5135         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
5136         * added command line '--fstack' which enables an experimental
5137         feature for stack access, too buggy to be used yet...
5138         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
5139         * (pic16_allocDirReg): when register has storage class S_REGISTER
5140         allocate in pic16_dynAccessRegs,
5141         * device/include/pic16/pic18f????.h: modified configuration word
5142         naming convention, words started as CONFIG0H but should be CONFIG1H
5143
5144 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
5145
5146         * device/include/mcs51reg.h: fixed bug 970993
5147
5148 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
5149
5150         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
5151         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
5152         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
5153         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
5154         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
5155         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
5156           error/warning numbers,
5157           added function setWarningDisabled()
5158         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
5159         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
5160           _memcmp.c _memmove.c calloc.c realloc.c free.c
5161         * support/regression/tests/malloc.c: added tests for new functionality
5162         * support/regression/tests/zeropad.c: added tests for truncated initializers
5163           and initialized char arrays starting with '\x0'
5164         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
5165
5166 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
5167
5168         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
5169
5170 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5171
5172         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
5173         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
5174         peephole 177.e. Thanks to anonymous
5175
5176 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
5177
5178         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
5179         function isn't used in the source but referenced as a
5180         variable initializer then declare it as extern in .asm file
5181
5182 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
5183
5184         * .version: increased version number to 2.4.3
5185
5186         Adding version extension according to ChangeLog CVS revision
5187         * src/Makefile.in (target all): added dependency 'version.h'
5188         * (rule version.h): added rule to create version.h from ChangeLog,
5189         * (rule dep): added dependency version.h,
5190         * src/version.awk: AWK script to create version.h
5191         * src/SDCCdwarf2.c (dwWriteModule),
5192         * src/SDCCglue.c (initialComments),
5193         * src/SDCCmain.c (printVersionInfo): modified to write after
5194         version string the version extension number,
5195         * src/SDCCutil.c: included "version.h"
5196         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
5197         number,
5198         * src/SDCCutil.h: added prototype for getBuildNumber
5199
5200         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
5201         includeDirsSet, too,
5202         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
5203         const char [] is found in function prototype...
5204
5205         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
5206         moving to WREG with source is already in WREG,
5207         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
5208         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
5209         * (aopForSym): stack'ed symbols are partially supported, added
5210         if-clause to support symbols in FARSPACE,
5211         * (sameRegs): added test for AOP_ACC to see if registers are same,
5212         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
5213         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
5214         * (pic16_popRegFromString): will not allocate a new register if it
5215         doesn't find one by name, bug may have introduced...
5216         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
5217         * (genIpush): revived to use pic16 port's stack,
5218         * (genAddrOf): added incomplete case for stack'ed operand,
5219         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
5220         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
5221         can handle multibyte operands,
5222         * src/pic16/glue.c (pic16_printIval*): some debug info added,
5223         * (pic16initialComments): added message for MPLAB compatibility
5224         mode enabled,
5225         * src/pic16/main.h: prototype for pic16_mplab_comp,
5226         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
5227         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
5228         * (_pic16_linkEdit): NEW, handles link stage, transferred here
5229         because of increased complexity of procedure,
5230         * (_process_pragma): stack pragma changed to format 'stack pos len',
5231         emit symbol '_stack_end' to conform with gplink,
5232         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
5233         to search for register,
5234         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
5235         PO_GPR_REGISTER,
5236         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
5237         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
5238         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5239         case for PO_GPR_REGISTER,
5240         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
5241         dies, the new era is ahead !...
5242         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
5243         pic16_dynInternalRegs,
5244         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
5245         * (pic16_allocDirReg): minor optimizations and bug fixes,
5246         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
5247
5248         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
5249         load stack and frame pointer with address of 'stack_end' symbol
5250
5251 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
5252
5253         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
5254         without source code but only variable initializers
5255
5256 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
5257
5258         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
5259         external are not declared as extern to reduce overhead while linking
5260
5261 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
5262
5263         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
5264
5265 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
5266
5267         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
5268           Yee Keat for the patch
5269         * src/SDCCast.c (decorateType): fixed bug #979599
5270         * src/ds390/gen.h: removed local fReturnSizeDS390
5271         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
5272         * src/ds390/gen.c (genAnd, genOr, genXor),
5273         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
5274
5275 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
5276
5277         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
5278         add relFilesSet to $3, manipulate $2 to handle linking of object
5279         files without source files in command line,
5280         * device/include/pic16 (all headers): added ID location macros,
5281         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
5282         entries for ID location bytes,
5283         * (pic16_assignIdByteValue): NEW,
5284         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
5285         added field dumpcalltree to pic16_options_t,
5286         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
5287         is used instead of pic16_Gstack_base_addr, check if (ifx) before
5288         emitting rFalseIfx label after check_carry label,
5289         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
5290         pic16_emitDIRegs), NEW
5291         * (pic16glue): dump .calltree file when option --calltree found,
5292         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
5293         * (_pic16_genAssemblerPreamble): emit ID locations after
5294         configuration registers,
5295         * (pic16_linkCmd): modifications of the link command,
5296         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
5297         * (pic16_pCodeInitRegisters): don't init stack registers,
5298         * (pic16_findPrevInstruction): fixed bug,
5299         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
5300         bug with immediate registers,
5301         * (buildCallTree): traces stack push and pop,
5302         * (pct2): dump also stack usage for each function,
5303         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
5304         * (pic16_allocDirReg): various modifications,
5305         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
5306         fixed to 1,
5307
5308 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
5309
5310         * src/pic16/pcode.c: removed buggy double colon
5311
5312 2004-07-01 Borut Razem <borut.razem AT siol.net>
5313
5314         * support/scripts/sdcc.nsi: added include/pic16 to setup
5315
5316 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
5317
5318         * device/lib/Makefile.in: fixed bug in target objects-pic16,
5319         * device/lib/pic16/Makefile: prefixed with dash (-) command under
5320         target 'clean',
5321         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
5322         specific command line arguments. Also added sample lkr script
5323         for placing a variable at a specific memory bank.
5324         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
5325         at a specific memory bank,
5326         * (pic16_dump_isection): fixed bug which caused string literals to
5327         be omitted when dumping idata section,
5328         * (pic16_groupRegistersInSection): added code to handle registers
5329         in specific memory banks,
5330         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
5331         public, all references are renamed too,
5332         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
5333         AOP_DPTR2,
5334         * (pic16_storeForReturn): added case to handle when dest is WREG,
5335         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
5336         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
5337         pic16_rel_udata, check to see if that register is marked as being
5338         a member of a specific memory bank,
5339         * (pic16_printIvalCharPtr): added code to add string literals either
5340         to code or the idata sections,
5341         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
5342         also accept the 'udata' pragma,
5343         * src/pic16/main.h: new structure types sectName and sectSym
5344         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
5345         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
5346         * (pic16_findPrevInstruction): fixed, it returned nothing,
5347         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
5348         instruction combinations,
5349         * (pic16_FixRegisterBanking): heavily reorganised,
5350         * (pic16_AnalyzeBanking): if generating banksel directives is
5351         disabled, then don't call FixRegisterBanking at all,
5352         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
5353         completely removed,
5354         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
5355
5356 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
5357
5358         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
5359         Phuah Yee Keat <yk.phuah AT nestac.com>
5360
5361 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5362
5363         * src/pic16/glue.c (pic16createInterruptVect): function now emits
5364         correctly the IVT even if it is relocated to some other location
5365
5366 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5367
5368         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
5369         * device/include/pic16/pic18f2220.h: NEW,
5370         * device/lib/pic16/libdev/pic18f2220.c: NEW,
5371         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
5372         * src/pic16/device.c (struct Pics16): added info for 18f2220,
5373         * src/pic16/device.h (struct pic16_options): added ivt_loc and
5374         nodefaultlibs, ivt_loc is the location of the interrupt vector
5375         table, and nodefaultlibs signs that default libraries should not be
5376         linked in link stage,
5377         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
5378         according to --ivt-loc argument,
5379         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
5380         when pragma stack is found,
5381
5382 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5383
5384         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
5385         256 (range check), 257 (do while), 258.a-f (bit banging
5386         f.e. on 3-wire SPI bus)
5387
5388 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5389
5390         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
5391         variables used exclusively within a loop
5392
5393 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
5394
5395         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
5396
5397 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5398
5399         * src/SDCClrange.c (computeClash): fixed bug #971834
5400
5401 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5402
5403         * src/mcs51/gen.c (genCmp): fixed bug #975903
5404         * src/hc08/gen.c (operandsEqu),
5405         * src/ds390/gen.c (operandsEqu),
5406         * src/z80/gen.c (operandsEqu),
5407         * src/pic/gen.c (operandsEqu),
5408         * src/pic16/gen.c (operandsEqu),
5409         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
5410         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
5411
5412 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5413
5414         * src/SDCCcse.c (cseBBlock): fixed bug #966963
5415
5416 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
5417
5418         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
5419         default case in switch statement,
5420         * glue.c (pic16_initPointer): expr is initialised via decoarteType
5421         to eliminate problem with initialisation of pointers, but problem
5422         still exists,
5423         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
5424         * (emitStaticSegment): removed various lines emitting debug info,
5425         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
5426         added processor registers for utilizing EEPROM,
5427         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
5428         configurable and set 8
5429
5430 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
5431
5432         * .version: increased version number to 2.4.2,
5433
5434         Cumulative patch for pic16 port
5435         * src/pic16/device.c: changed scheme to dump initial values for
5436         variables in idata segment, all print_idata* functions were removed,
5437         now the pic16_printIval* will be called,
5438         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
5439         * _pic16_printPointerType, pic16_printPointerType,
5440         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
5441         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
5442         NEW, similar to the respective functions in SDCCglue.c,
5443         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
5444         way, emitting hex bytes,
5445         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
5446
5447 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5448
5449         * src/avr/ralloc.c (serialRegAssign),
5450         * src/xa51/ralloc.c (serialRegAssign),
5451         * src/pic/ralloc.c (serialRegAssign),
5452         * src/pic16/ralloc.c (serialRegAssign),
5453         * src/hc08/ralloc.c (serialRegAssign),
5454         * src/z80/ralloc.c (serialRegAssign),
5455         * src/ds390/ralloc.c (serialRegAssign),
5456         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
5457
5458 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5459
5460         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
5461         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
5462
5463 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
5464
5465         Cumulative patch for pic16 port:
5466         * src/pic16/device.h (typedef PIC16_device) modified fields for
5467         defining microcontrollers,
5468         * src/pic16/device.c: added new info for all devices in Pics16 array,
5469         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
5470         to be optimised out by the pCode optimiser,
5471         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
5472         specially, bug reported by G.M. Gallant,
5473         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
5474         as force'd so that cannot be optimised out by pCode optimiser,
5475         * src/pic16/pcode.c,
5476         * src/pic16/pcodepeeph.c,
5477         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
5478         they are disabled by default, but can be enabled explicit with
5479         command argument --denable-peeps, for testing,
5480         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
5481         --pomit-ivt in COMPILE_FLAGS
5482
5483 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5484
5485         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
5486           compilation on MSVC
5487
5488 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5489
5490         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
5491
5492 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5493
5494         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
5495         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
5496
5497 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
5498
5499         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
5500         would only assign 0x300001 register.
5501
5502 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
5503
5504         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
5505         in COMPILE_FLAGS. Thanks to G. Gallant for report.
5506
5507 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5508
5509         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
5510         for ds80c400
5511         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
5512         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
5513         added peephole 254 (left shift), 255 (jump table)
5514
5515 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
5516
5517         * device/lib/Makefile.in: removed comment line with model-pic16,
5518         * (target port-specific-objects-pic16): the libraries and objects
5519         are copied to the build directory form the device/lib/pic16/bin
5520         directory
5521
5522         Cumulative patch concerning pic16 port:
5523         * library directory has been re-organized,
5524         * added support for PIC18F1220,
5525         * added headers and library sources for chips 18f1220,18f6520,
5526         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
5527
5528         * configuration registers setting has changed, now each supported
5529         device has a complete description of the registers it uses,
5530         * all initialisations are moved to idata sections, these section
5531         can be absolute or relocatable,
5532         * fixed initialisation of codespace variables,
5533         * fixed warning about PCLATU and gpsim,
5534         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
5535         * (genAssign): use table reads when assigning from variables in codespace,
5536         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
5537         char/int variables placed in codespace,
5538         * (pic16_emitConfigRegs): NEW, emits a list with configuration
5539         registers set in .asm file, no need for --pomit-config-words anymore,
5540         * (pic16glue): some 8051 legacy segments are commented out
5541         (to be removed completely),
5542         * added support for alternative assembler and linker with --asm=
5543         and --link= command line arguments,
5544         * peepholes are disabled automatically in the port, no need to
5545         specify on command line,
5546         * port supports natively char/int/long multiplication, but converts
5547         all divisions to support functions,
5548         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
5549         to the file set in variable $2,
5550         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
5551         strings in ASCII format and not in hex,
5552         * ralloc.c (serialRegAssign): added a triplet of conditional calls
5553         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
5554         allocate proper register if iCodes aren't temporary,
5555
5556 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
5557
5558         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
5559
5560 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
5561
5562         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
5563         is commented out
5564
5565 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5566
5567         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
5568         computed address is reused
5569         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
5570         multi-byte bitfields
5571
5572 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5573
5574         * src/z80/gen.c: (genArrayInit): must check for pointers too
5575
5576 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5577
5578         * support/regression/tests/zeropad.c: never meant to commit the
5579           nestedstruct test: removed, added check for GCC version
5580
5581 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
5582
5583         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
5584         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
5585         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
5586           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
5587           bugs 928906 and 954082 half-empty initializers
5588         * src/SDCCsymt.h,
5589         * src/SDCCsymt.c (getAllocSize): added for above fix
5590         * src/z80/gen.c (genArrayInit): fixed bug 741044
5591         * support/regression/tests/zeropad.c: added tests
5592
5593 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
5594
5595         * src/pic16/device.c (pic16_dump_section): corrected bug which
5596         caused some symbols of the libraries to be misplaced
5597
5598 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
5599
5600         * src/pic16/glue.c,
5601         * src/pic16/ralloc.h,
5602         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
5603         to fix conflict with pic port
5604
5605 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
5606
5607         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
5608         externs configuration variables,
5609         * src/pic16/ralloc.h,
5610         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
5611         prototype in header, commented out some debug messages
5612
5613 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
5614
5615         * src/pic16/glue.c,
5616         * src/pic16/main.c,
5617         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
5618         for gpasm COFF object generation. Thanks to D. Hawkins for
5619         his patch info
5620
5621 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5622
5623         * src/ds390/main.c,
5624         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
5625         Brock for spotting this)
5626         * src/ds390/gen.c (genEndFunction),
5627         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
5628         interrupt handler and critical. Disable push/pop optimizations when
5629         peephole optimizations disabled.
5630
5631 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
5632
5633         Updated pic16 library sources and headers.
5634         * device/lib/pic16/pic18f*/ ,
5635         * device/include/pic16/*.h: modified to handle structured SFR
5636         definitions
5637
5638 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
5639
5640         * src/port.h (PORT structure): added hook initPaths, now each
5641         port can declare its own default search paths,
5642         which can been seen with the --print-search-dirs option,
5643         see pic16 port for example,
5644         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
5645         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
5646         * (doPrintSearchDirs): NEW, replaces in a central manner the
5647         printing of search dirs which was split in set*Paths functions,
5648         * (main): added call to port->initPaths and doPrintSearchDirs,
5649         * src/avr/main.c,
5650         * src/ds390/main.c,
5651         * src/hc08/main.c,
5652         * src/izt/i186.c,
5653         * src/izt/tlcs900h.c,
5654         * src/mcs51/main.c,
5655         * src/pic/main.c,
5656         * src/pic16/main.c: modified port structures to reflect addition of
5657         initPaths hook,
5658
5659         * src/pic16/device.c (regCompare): registers are finally sorted by name,
5660         * (pic16_dump_section): for registers in same address reserve memory once,
5661         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
5662         to no_banksel,
5663         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
5664         result is greater in size than right or left,
5665         * (pic16_genUMult8X8_8): there are some cases where the result can
5666         be 16 bits size, so handle these,
5667         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
5668         * (pic16_outBitC): modified to emit pcodes,
5669         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
5670         or not,
5671         * (genDivOneByte): implemented algorithm to divide 8-bits,
5672         * (genCmp): uncommented goto, but issues still exist,
5673         * (genAnd): fixed a bug with variables >8bits,
5674         * (genPackBits): optimization added that uses BCF/BSF to change a
5675         single bit,
5676         * (genAssign): fixed bug when assigning floating point literals,
5677         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
5678         __sdcc_gsinit_startup label,
5679         * src/pic16/main.c (_pic16_init): removed search directory
5680         initialisations,
5681         * (_pic16_initPaths): NEW, used to initialise search directories,
5682         * (_hasNativeMulFor): support functions for all except char/int
5683         multiplication, and char division,
5684         * (PIC16_port struct): modified entry for native mul support,
5685         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
5686         no_banksel option,
5687         * (buildCallTree): call to register_usage is ifdef'ed out,
5688
5689 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5690
5691         * device/include/string.h: applied Stas Sergeev's patch to make this
5692         header file compatible with the preprocessor -Wundef option
5693         * src/SDCCmain.c (main): abort compilation if preprocessor reports
5694         failure (fixes bug #941458)
5695
5696 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5697
5698         * src/SDCCopt.c (killDeadCode): fixed bug #907733
5699         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
5700         that the variable, not the function, should be static
5701         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
5702         to be consistent with non-literal case
5703
5704 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5705
5706         * src/SDCCast.c (isConformingBody): fixed bug #949967
5707         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
5708         convilong): fixed bug #952086
5709
5710 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5711
5712         * src/SDCCmem.c (allocVariables): fixed bug #955321
5713
5714 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5715
5716         * src/hc08/main.c (_hc08_genAssemblerEnd),
5717         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
5718         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
5719         completely eliminated the use of a temporary file
5720         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
5721         when more than one file linked
5722         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
5723
5724 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5725
5726         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
5727         which fixes bug #543481
5728         * support/regression/tests/bug-751703.c: fixed comments left from a
5729         cut and paste error
5730         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
5731         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
5732         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
5733         scopes
5734         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
5735         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
5736         are now changed to underscores in moduleName
5737
5738 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5739
5740         * as/mcs51/lkmem.c: better fix for bug #954173
5741
5742 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
5743         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5744
5745         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
5746         * device/include/c8051f000.h,
5747         * device/include/c8051f120.h,
5748         * device/include/c8051f300.h,
5749         * device/include/c8051f310.h,
5750         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
5751         PWM16) and detab'ed
5752
5753 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5754
5755         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
5756         and mailing lists, doc'ed --no-peep-comments, removed reference
5757         to knoppix (newest version has no LyX/LaTeX), other minor changes
5758         * src/SDCCglue.c (glue): save 2 bytes stack space with
5759         option --main-return. The ljmp could probably be avoided too
5760
5761 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5762
5763         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
5764
5765 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5766
5767         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
5768         * src/SDCCopt.c (isLocalWithoutDef),
5769         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
5770         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
5771         (credit to Maarten Brock for patch #949363, on which this is based)
5772         * support/regression/tests/bug-751703.c: some test cases of extern used
5773         within inner scopes.
5774
5775 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5776
5777         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
5778         SPEC_STRUCT
5779         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
5780         struct definitions
5781         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
5782         dwWriteLabel): fix to create valid debugger symbols even when
5783         the module name has non-alphanumeric symbols in it
5784         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
5785         when a variable's allocation has been optimized away
5786
5787
5788 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5789
5790         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
5791         * src/hc08/main.c,
5792         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
5793         * src/mcs51/main.c,
5794         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
5795         * src/ds390/main.c,
5796         * src/z80/gen.c (z80_emitDebuggerSymbol),
5797         * src/z80/main.c,
5798         * src/pic/gen.c (pic14_emitDebuggerSymbol),
5799         * src/pic/main.c,
5800         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
5801         * src/pic16/main.c,
5802         * src/avr/gen.c (avr_emitDebuggerSymbol),
5803         * src/avr/main.c,
5804         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
5805         * src/xa51/main.c,
5806         * src/SDCCdebug.c (emitDebuggerSymbol),
5807         * src/SDCCdebug.h,
5808         * src/port.h: added a debugger struct to the port struct. Added a
5809         callback for defining debugger symbols
5810
5811         * src/SDCCast.c (createLabel),
5812         * src/SDCC.y (labeled_statement): mark all compiler generated labels
5813         with isitmp = 1
5814         * src/SDCCicode.h,
5815         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
5816         iCode back to the ast for the function
5817
5818         * src/hc08/ralloc.c (hc08_assignRegisters),
5819         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
5820         unneeded fields from the regs struct.
5821         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
5822         pushReg() & pullReg() functions instead of emitcode()
5823
5824         * src/hc08/gen.c (genLabel, genhc08Code),
5825         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
5826
5827         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
5828         debugger hooks
5829
5830         * src/hc08/gen.c (genEndFunction, genhc08Code),
5831         * src/hc08/gen.h,
5832         * src/mcs51/gen.c (genEndFunction, gen51Code),
5833         * src/mcs51/gen.h,
5834         * src/ds390/gen.c (genEndFunction, gen390Code),
5835         * src/ds390/gen.h,
5836         * src/z80/gen.c (genEndFunction, genZ80Code),
5837         * src/z80/gen.h,
5838         * src/z80/z80.h,
5839         * src/pic/gen.c (genEndFunction, genpic14Code),
5840         * src/pic/gen.h,
5841         * src/pic16/gen.c (genEndFunction, genpic16Code),
5842         * src/pic16/gen.h,
5843         * src/avr/gen.c (genEndFunction, genAVRCode),
5844         * src/avr/gen.h,
5845         * src/xa51/gen.c (genEndFunction, genXA51Code),
5846         * src/xa51/gen.h,
5847         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
5848         specific code to cdbFile.c and out of the backend code generators
5849
5850         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
5851         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
5852         starting address is now 0
5853
5854         * as/hc08/asm.h,
5855         * as/hc08/m08pst.c,
5856         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
5857         assembler directive for DWARF support
5858         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
5859
5860         * src/src.dsp,
5861         * src/Makefile.in,
5862         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
5863
5864 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5865
5866         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
5867         and inappropriate peephole optimization in jump tables
5868
5869 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5870
5871         * as/hc08/m08pst.c,
5872         * src/SDCCglue.c: sdccopt works for the hc08 port now
5873
5874 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
5875
5876         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
5877
5878 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5879
5880         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
5881
5882 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5883
5884         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
5885         rules
5886         * src/SDCCmain.c,
5887         * src/SDCCglobl.h,
5888         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
5889         comments from the peephole optimizer replacement rules
5890         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
5891         symbols
5892         * src/SDCCcse.c (updateSpillLocation),
5893         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
5894         equivalents
5895         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
5896         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
5897         objects far pointers
5898
5899 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5900
5901         * src/SDCCsymt.h: a missing part of my last change
5902         * src/pic/ralloc.c (regTypeNum),
5903         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
5904
5905 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5906
5907         * src/SDCCicode.h,
5908         * src/SDCCicode.c (aggrToPtrDclType),
5909         * src/SDCCptropt.h,
5910         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
5911         ptrPseudoSymConvert),
5912         * src/pic/ralloc.c (regTypeNum),
5913         * src/pic16/ralloc.c (regTypeNum),
5914         * src/hc08/ralloc.c (regTypeNum),
5915         * src/ds390/ralloc.c (regTypeNum),
5916         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
5917         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
5918
5919 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5920
5921         * link/z80/lkmain.c (afile),
5922         * as/hc08/lkmain.c (afile),
5923         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
5924         prevent a pointer problem when a filename has no directory and
5925         no extension specified.
5926
5927 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5928
5929         * link/z80/lkmain.c (afile): allow periods in directory names
5930         * link/z80/lkmain.c (afile),
5931         * as/mcs51/lkmain.c (afile),
5932         * as/hc08/lkmain.c (afile): allow linker script file to have an
5933         extension other than ".lnk"
5934         * link/z80/lklex.c (getfid),
5935         * link/z80/lkmain.c (parse),
5936         * as/mcs51/lklex.c (getfid),
5937         * as/mcs51/lkmain.c (parse),
5938         * as/hc08/lklex.c (getfid),
5939         * as/hc08/lkmain.c (parse): Support comments in the linker script
5940         file on lines by themselves and after filenames
5941
5942 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5943
5944         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
5945
5946 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5947
5948         * src/z80/peeph-z80.def: removed some peephole rules that don't
5949         work with multibyte arithmetic (fixed bug #937126)
5950         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
5951         to registers and not global variables
5952         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
5953         geniCodePreInc, geniCodePostDec, geniCodePreDec,
5954         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
5955         checking for assignments not internally generated (fixed bug #931895)
5956         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
5957         structure member (fixed bug #930072)
5958
5959 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5960
5961         * src/SDCCmain.c (linkEdit),
5962         * src/hc08/main.c (_hc08_parseOptions),
5963         * as/hc08/Makefile.in,
5964         * as/hc08/aslink.h,
5965         * as/hc08/asm.h,
5966         * as/hc08/m08pst.c,
5967         * as/hc08/lkrloc.c (relr, rele),
5968         * as/hc08/lkarea.c (lnkarea)
5969         * as/hc08/lkmain.c (afile, parse),
5970         * as/hc08/lkelf.c: support for ELF output
5971         * as/hc08/lks19.c (s19),
5972         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
5973
5974 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5975
5976         * as/mcs51/lkihx.c: Fixed bug #899105.
5977
5978 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5979
5980         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
5981         .dsp files from Unix to DOS.
5982
5983 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5984
5985         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
5986         function pointers; we have been compliant for several months now.
5987         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
5988         change that was accidently commented out
5989         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
5990         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
5991         bug #922319
5992
5993 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5994
5995         * src/hc08/gen.c: output of all of the internal debugging information
5996         is now controlled by the D() macro; it is disabled by default
5997
5998 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5999
6000         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
6001         harder to keep the same registers during a CAST iCode
6002         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
6003         long via int can be done in a single cast, if the signedness is
6004         correct.
6005         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
6006         putchar() in tinibios.c in ds390's library
6007
6008 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
6009
6010         * src/SDCCast.c (decorateType): fixed bug #898889,
6011         cast result of a literal complement too
6012         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
6013         fixed check for bitfields
6014
6015 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
6016
6017         * src/SDCCicode.c (geniCodeLogic): made it static,
6018         (geniCodeLogicAndOr): added in order to fix bug #905492,
6019         (ast2iCode): fixed bug #905492
6020         * support/regression/tests/bug-905492.c: added
6021         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
6022         (processParms): fixed bug #927659: don't copy parms, this will clear
6023         decorated flag
6024         * support/regression/tests/bug-927659.c: added
6025
6026 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
6027
6028         * src/SDCCast.c (addCast): don't cast float to char
6029         * device/lib/libsdcc.lib: added _memmove
6030
6031 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
6032
6033         * device/lib/large/Makefile: fixed parallel execution by
6034         replacing `make` by `$(MAKE)`
6035
6036 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6037
6038         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
6039         offsets (fixes bug #923936)
6040
6041 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
6042
6043         * device/lib/small/Makefile: fixed parallel execution by
6044         replacing `make` by `$(MAKE)`
6045
6046 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
6047
6048         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
6049
6050 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
6051
6052         * src/pic/gen.c (genCpl): multi-byte complements were not working.
6053         * src/regression/Makefile: Regression test was not running.
6054
6055 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
6056
6057         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
6058         complement if possible
6059         * src/SDCCval.c (valComplement),
6060         * src/SDCCicode.c (operandOperation): fixed complement of literal
6061         * support/regression/tests/onebyte.c (testComplement): added
6062
6063 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
6064
6065         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
6066         return an optimized tree; actually replace actParm with the new tree
6067         * src/SDCCast.h: added some parantheses to remove side effects
6068         * support/regression/tests/bug-920866.c
6069
6070 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
6071         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
6072         Bit operands were not being handled properly in the pic14 port.
6073         (now src/regression/add.c passes again).
6074
6075 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6076
6077         * src/SDCC.y (labeled_statement): case and default no longer require
6078         a following statement (RFE #893037)
6079
6080 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6081
6082         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
6083         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
6084         disabled (fixes bug #916294)
6085         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
6086         "mov a,acc"; patch provided by Lenny Story
6087         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
6088
6089 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6090
6091         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
6092         functions
6093         * src/ds390/gen.c (genFunction, genEndFunction),
6094         * src/ds390/ralloc.c (ds390_assignRegisters),
6095         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
6096         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
6097         pushed if there are parameters passed on the stack. Also, a cleaner
6098         way to decide if r0/r1 should be pushed/popped. (Together they fix
6099         bug #918693)
6100
6101 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6102
6103         * doc/sdccman.lyx,
6104         * device/lib/mcs51/crtpagesfr.asm,
6105         * device/lib/mcs51/crtxinit.asm,
6106         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
6107         to avoid confusion with Si Lab's SFRPAGE register.
6108
6109 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6110
6111         * src/SDCCglue.c (emitMaps): allow public sfr variables
6112         * src/SDCCglue.c (initialComments): include compiler build date
6113         with compiler version and put the timestamp of the generated
6114         assembly file on a serperate line to be less confusing.
6115         * src/port.h: added genInitStartup hook
6116         * src/avr/main.c,
6117         * src/ds390/main.c,
6118         * src/hc08/main.c,
6119         * src/pic/main.c,
6120         * src/pic16/main.c,
6121         * src/xa51/main.c,
6122         * src/z80/main.c: genInitStartup initialize as NULL (default to
6123         historical behaviour)
6124         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
6125         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
6126         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
6127         library instead of hard coding it into the compiler.
6128         * support/regression/ports/mcs51-stack-auto/spec.mk,
6129         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
6130         * device/lib/mcs51/Makefile,
6131         * device/lib/small/Makefile,
6132         * device/lib/large/Makefile,
6133         * device/lib/mcs51/crtpagesfr.asm,
6134         * device/lib/mcs51/crtstart.asm,
6135         * device/lib/mcs51/crtxclear.asm,
6136         * device/lib/mcs51/crtxinit.asm,
6137         * device/lib/mcs51/crtclear.asm,
6138         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
6139         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
6140         and into user configurable files.
6141         * device/lib/clean.mk: clean mcs51 directory too
6142         * support/regression/tests/longlit.c: added static to T1 declaration
6143         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
6144         accesses in the initialization code
6145
6146 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6147
6148         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
6149         OSCTRIMVAL as noted in bug #916008
6150
6151 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6152
6153         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
6154         in loops with multiple exits (reported as incorrect registers
6155         used by Martin Helmling in Sdcc-user list)
6156
6157 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6158
6159         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
6160         made ds390 register extensions look less like error messages
6161
6162 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6163
6164         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
6165         reported by Adam Wozniak in Sdcc-user list
6166
6167 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
6168
6169         * src/SDCCast.c (decorateType): fixed with bug and promotion in
6170         arithmetic optimizations, added debug output
6171
6172 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
6173
6174         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
6175         * sdcc.spec: updated and split sdcc into 3 rpms
6176         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
6177         needed for literals of LEFT_OP and '+'
6178         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
6179         introduced RESULT_TYPE_NOPROM
6180         (geniCodeMultiply): fixed logic for decision if mul is optimized to
6181         left shift
6182         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
6183         limited promotion to int only for '*'
6184         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
6185
6186 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
6187
6188         * src/pic16/gen.c (genSkip),
6189         (genc16bit2lit), (gencjneshort): commented out
6190         (is_LitOp): new helper function, checks operand type
6191         (genCmpEq): rewritten
6192
6193 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
6194
6195         * support/regression/tests/bug-908454.c: added
6196
6197 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
6198
6199         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
6200         * src/SDCCicode.c (usualBinaryConversions): op needs int type
6201         (geniCodeCast): cosmetic, don't preserve bit storage class
6202         (geniCodeLeftShift): added promotion
6203         (geniCodeLogic): fixed regression
6204         * src/SDCCsymt.c (computeTypeOr): accept bits too
6205         (compareType): 2nd part of fix for bug #908454, needed for bitfields
6206
6207 2004-03-07  Borut Razem <borut.razem AT siol.net>
6208
6209         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
6210
6211 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
6212
6213         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
6214         version of pic16_genPackRegisters which does not check if ic is a
6215         CAST operator,
6216         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
6217         function cause string1.c regression test fails
6218
6219 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
6220
6221         * sim/ucsim/configure.in,
6222         * sim/ucsim/configure,
6223         * sim/ucsim/doc/Makefile.in: use docdir
6224         * src/SDCC.y: fixed sbit atrributes
6225         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
6226         * src/SDCCast.c (decorateType): |^& need special promotion handling
6227         * src/SDCCast.h,
6228         * src/SDCCsymt.h: moved definition of RESULT_TYPE
6229         * src/SDCCsymt.h (computeType),
6230         * src/SDCCicode.c: computeType() needs op
6231         * src/SDCCsymt.c (checkTypeSanity),
6232         * doc/sddman.lyx: "plain" bitfields are unsigned
6233         * src/SDCCsymt.c (computeTypeOr): added
6234         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
6235         |^& ops
6236         * src/SDCCval.c (val*): computeType() needs op
6237         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
6238         * support/regression/tests/onebyte.c: added tests for |^&
6239
6240 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
6241
6242         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
6243         for writing icode into asm output.
6244
6245 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
6246
6247         * src/pic16/device.c: added some debug lines enabled
6248         with macro DEBUG_CHECK,
6249         * src/pic16/genarith.c: more debug in genPlus,
6250         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
6251         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
6252         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
6253         * (aopForSym): onStack symbols are re-placed in data memspace,
6254         and onStack flag is cleared,
6255         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
6256         copy temporary pcodeop,
6257         * (genPcall): added warning for not updating PCLATU,
6258         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
6259         always true for pic16 port,
6260         * (genMultOneWord): NEW, supports integer multiplication,
6261         * (genMult): modified to call genMultOneWord,
6262         * (ifxForOp): added warning when return NULL,
6263         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
6264         flag is set before call to operandFromSymbol for implicit
6265         added structures,
6266         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
6267         options.intlong_rent are set by default,
6268         * (_hasNativeMulFor): modified to allow port generation of integer
6269         multiplication,
6270         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
6271         set regtype to REG_SFR for all registers, restricting seting the
6272         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
6273
6274 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6275
6276         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
6277         more than 500 times in the regression tests
6278
6279 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6280
6281         * support/Util/SDCCerr.h,
6282         * support/Util/SDCCerr.c,
6283         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6284         enumerator_list),
6285         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
6286         for symbol conflicts.
6287         * support/valdiags/tests/enum.c,
6288         * support/valdiags/tests/tentdecl.c,
6289         * support/valdiags/tests/struct.c: expect possible error messages
6290         referring to original symbol definitions.
6291         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
6292         * src/SDCCsymt.h,
6293         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
6294
6295 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
6296
6297         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
6298
6299 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
6300
6301         * src/pic16/ralloc.c (newReg): fixed bug #908929
6302
6303 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6304
6305         * src/ds390/gen.c: added missing #include "main.h"
6306
6307 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
6308
6309         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
6310         checking if symbol is already in set,
6311         * src/pic16/device.h: prototype for checkAddSym,
6312         * src/pic16/gen.c: (_G): added entry interruptvector,
6313         * (assignResultValue): removed some commented out lines,
6314         * (genFunction): check for ISR via sym->type, absolute section for
6315         interrupt code is created via a new pBlock, the goto instruction is
6316         placed now correctly at the interrupt vector position, changed all
6317         references from ivec to _G.interruptvector,
6318         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
6319         is the interrupt is a high priority one, same for return from ISR,
6320         * src/pic16/glue.c: changed all calls of addSetHead for publics and
6321         externs to calls of checkAddSym,
6322         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
6323         pic16_pcode_verbose flag is set,
6324         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
6325         * src/pic16/pcoderegs.c: message about how many registers are saved
6326         will only be emitted if pic16_pcode_verbose flag is set,
6327
6328 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6329
6330         * src/ds390/ralloc.h,
6331         * src/ds390/ralloc.c (ds390_regWithIdx),
6332         * src/ds390/gen.c (emitcode),
6333         * src/ds390/main.h,
6334         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
6335         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6336         ds390operandCompare, getRegsRead, getRegsWritten,
6337         initializeAsmLineNode): customized instruction size calculation for
6338         ds390, started basis for some register optimizations
6339         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
6340         corresponding assembly output
6341         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
6342         missing push/pop of r0/r1. Optimized push/pops
6343
6344 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6345
6346         * src/mcs51/main.c (instructionSize): fixed ACALL size
6347         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
6348
6349 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
6350
6351         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
6352         the sorting of rlist with NULL elements
6353         * (print_idataType, print_idata): NEW to create idata sections
6354         * src/pic16/device.h: idataSymSet new variable
6355         * src/pic16/gen.c (genFunction): fixed some bugs in string
6356         comparing, improved the absolute section creation for ISRs,
6357         added FSR0L/FSR0H in registers that are saved in an ISR,
6358         * (genInline): fixed the processing of inline snippets,
6359         now they undergo no process by the peephole optimizer
6360         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
6361         are placed in idataSymSet,
6362         * (pic16emitStaticSeg): extern symbols are added in externs,
6363         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
6364         switching when aboslute variables are placed in access bank memory
6365         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
6366         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
6367         commented out with #if,
6368         * (pic16_packRegisters): reintroduce the check for CAST because some
6369         symbols are not correctly handled,
6370         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
6371         pCodeInstruction instead of pCode,
6372         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
6373         pCodeAsmDir definition,
6374         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
6375         directive, then the argument directive is emitted without the leading
6376         tab, hack for inline labels which must be in the first column,
6377         * (compareLabel,pic16_findNextInstruction),
6378         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
6379         * (insertBankSwitch): modified for the new pCodeAsmDir,
6380
6381 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6382         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
6383
6384         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
6385         instance,
6386         * (pushSide): commented out with #if,
6387         * (assignResultValue): fixed some typos in saving
6388         registers,
6389         * (genPcall): FIXED and sync'ed with genCall,
6390         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
6391         * (genNearPointerGet): fixed to handle some more cases,
6392         implementation scheme via table reads,
6393         * (genConstPointerGet): modified to access code memory correct,
6394         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
6395         and improved to handle some cases
6396         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
6397         instead of "RETLW" for init data
6398         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
6399         not IN_DIRSPACE, work around to reduce bank switching when aboslute
6400         variables are placed in access bank memory (<0x80 and >=0xf80),
6401         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
6402         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
6403         TBLWT_POSTDEC,TBLWT_PREINC
6404         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
6405         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
6406         directives
6407         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
6408         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
6409         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
6410         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
6411
6412 2004-02-29  Borut Razem <borut.razem AT siol.net>
6413
6414         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
6415         support/Util/findme.h, support/Util/system.h: enhance binary relative
6416         search for lib and include by using findProgramPath()
6417
6418 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6419
6420         * src/SDCCpeeph.h,
6421         * src/SDCCpeeph.c (pcDistance),
6422         * src/port.h,
6423         * src/mcs51/ralloc.h,
6424         * src/mcs51/ralloc.c (mcs51_regWithIdx),
6425         * src/mcs51/main.h,
6426         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
6427         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6428         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
6429         size calculation port specific, started basis for some register
6430         optimizations
6431         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
6432         missing push/pop of r0/r1. Optimized push/pops
6433         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
6434         * device/lib/_modsint.c (_modsint),
6435         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
6436         and stack version so regression tests pass
6437
6438 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
6439
6440         * src/Makefile.in (dep): include SLIBOBJS in dependency check
6441         * src/SDCCast.c (decorateType): catch another small optimization
6442         with '?' operator
6443         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
6444         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
6445         modified to finally use computeType() all over SDCC,
6446         see Feature Request #877103
6447         * src/SDCCval.h: cosmetic
6448         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
6449         valCompare(); regression tested in muldiv.c
6450         * support/regression/tests/muldiv.c (testMod): mod sign follows
6451         dividend only
6452
6453 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
6454
6455         * src/SDCCast.c (decorateType): fixed bug #902362
6456         * doc/INSTALL.txt: fixed install instructions for win32
6457
6458 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
6459
6460         * device/include/Makefile.in (install): fixed by replacing spaces
6461         by tabs
6462         * doc/README.txt,
6463         * doc/INSTALL.txt: updated for release
6464         * doc/sdccman.lyx: added warning for --xstack being buggy
6465
6466 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
6467
6468         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
6469         to eliminate build warnings.
6470         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
6471
6472 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
6473            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6474
6475         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
6476         removed -penable-stack, added comment for stack pragma, added
6477         warning for not initializing the stack/frame registers, removed
6478         comment at interrupts section
6479
6480         Stack is made permanent, there is no ability to disable stack usage.
6481         * src/pic16/device.h,
6482         * src/pic16/device.c: removed all references to USE_STACK macro,
6483         * src/pic16/device.c (pic16_dump_section): when no elements in
6484         rlist, free rlist before return,
6485         * (pic16_dump_int_registers): NEW, internal registers are a new set
6486         of general purpose registers reused by each function,
6487         * (checkAddReg): returns 1 if registers is added to set,
6488         * (pic16_groupRegistersInSection): when a registers is of type
6489         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
6490         * src/pic16/device.h: memRange and Assigned Memory are deleted,
6491         SRCASECMP macro is moved here from device.c
6492         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
6493         PO_PCLATU, PO_PRODL, PO_PRODH,
6494         * (pic16_pCodeOpType, genMinus,
6495         changed compares to "a" register, with AOP_ACC,
6496         * (pic16_genPlus): fixed some bugs and indented properly,
6497         * (pic16_addSign): changed size to size+offset in the MOVWF
6498         instruction,
6499         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
6500         multiply 8-bit operand by literal, result is 8-bit,
6501         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
6502         multiply 2 8-bit operand, result is 8-bit,
6503         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
6504         genUMult8X*_16,
6505         * src/pic16/gen.c: changed accUse to contain WREG only,
6506         * (pic16_emitcomment): renamed to pic16_emitpcomment,
6507         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
6508         true, do not use immediate addressing any more unless sym is a
6509         pointer in codespace,
6510         * (aopForRemat): do not use immediate addressing when symbol not in
6511         codespace and when symbol's address is requested,
6512         * (aopOp): for-loop in if(sym->accUse) is modified for the new
6513         accUse size (= 1),
6514         * (aopGet): added case for AOP_ACC and don't return "accumulator
6515         bug" but WREG instead,
6516         * (popGetTempReg): pushes contents of temporary register in stack,
6517         * (popReleaseTempReg): pops contents of temporary register from
6518         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
6519         * (pic16_popGet): separated case AOP_ACC to return register WREG
6520         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
6521         or PO_IMMEDIATE and initializes their instance/offset appropriately,
6522         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
6523         the use of immediate pointers to certain cases only.
6524
6525         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
6526         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
6527         * (assignResultValue, genCall, genRet): modified to use the new
6528         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
6529         genPcall is still broken,
6530         * (genFunction): added code to create 'A' type pBlocks when
6531         interrupt functions are generated, code not extensively tested yet,
6532         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
6533         * (genEndFunction): modified so ISRs pop stored registers from stack,
6534         * (genMultOneByte): cleanup,
6535         * (AccRsh): added flag andmask, to and result with appropriate mask,
6536         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
6537         * (genDataPointerGet): fixed and reenabled its use,
6538         * (genNearDataPointerGet): bugs fixed,
6539         * (genDataPointerSet): bugs fixed,
6540         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
6541         pic16_DumpSymbol, pic16_DumpOp,
6542         * src/pic16/genutils.h: function prototypes for the above functions,
6543         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
6544         pointers,
6545         * (pic16emitRegularMap): many many many improvements, but needs a
6546         major cleanup,
6547         * src/pic16/main.c: enable_stack in pic16_options is removed,
6548         * (_pic16_parseOptions): removed command line options -penable-stack,
6549         * (_process_pragma): emit stack symbol only when stack pragma is
6550         processed,
6551         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
6552         redirected to FSR0L/FSR0H pair,
6553         * (pic16_get_op, pic16_get_op2): modifications and improvements,
6554         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
6555         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
6556         for immediates,
6557         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
6558         * (dumpPicOptype): NEW,
6559         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
6560         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
6561         with movff instruction,
6562         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
6563         added pic16_int_regs, some packRegsFor* functions are commented out,
6564         because produce errors,
6565         * src/pic16/NOTES: minor modifications
6566
6567 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6568
6569         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
6570         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
6571         --pack-iram.
6572         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
6573         * as/mcs51/lkaomf51.c: fixed bug #895763
6574
6575 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
6576
6577         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
6578
6579 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6580
6581         * doc/sdccman.lyx: added details about the HC08 storage classes and
6582         interrupts, fixed the register usage info for z80 & gbz80
6583
6584 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
6585
6586         * doc/sdccman.lyx: added more pic16 port documentation
6587         * device/include/pic16/: added header pic18fregs.h
6588
6589 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
6590
6591         * doc/sdccman.lyx: added Vangelis' contribution
6592
6593 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6594
6595         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
6596         extend to the next CALL or PCALL, not just to the next CALL.
6597
6598 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
6599
6600         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
6601
6602 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6603
6604         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
6605         bug #895752 and a better fix for bug #716790
6606
6607 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6608
6609         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
6610
6611 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6612
6613         * doc/sdccman.lyx: minor changes, minor changed
6614
6615 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
6616
6617         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
6618         which can't handle SDCC_NEWONEBYTEOPS,
6619         (geniCodeMultiply): removed conversion from mult to shift for pic14
6620         and pic16
6621
6622 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6623
6624         * src/hc08/gen.h,
6625         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
6626         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
6627         thus fixing bug #895406
6628
6629 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
6630
6631         * device/lib/_modsint.c,
6632         * device/lib/_modslong.c: sign follows divisor only
6633         * src/hc08/gen.c (genMultOneByte): if result size is 1,
6634         signs or signedness can be ignored
6635         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
6636         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
6637         added optimization for IFX,
6638         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
6639         arguments;
6640         reenabled optimization for IFX, which was removed on 2004-01-11
6641         * src/SDCCast.h: added return type IFX
6642         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
6643         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
6644         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
6645         SDCC_OLDONEBYTEOPS selects the old behaviour
6646         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
6647         changed again and commented promotion rule
6648         * src/SDCCval.c (valDiv): promotion no longer necessary
6649         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
6650         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
6651         rewritten
6652         * support/regression/tests/onebyte.c: added
6653
6654 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
6655
6656         * gen.c (genInline): reverted to old code for assemnling inline
6657         code because of bug reported James Chadd
6658
6659 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
6660
6661         * ralloc.h: missing declarations from previous patch,
6662         seems that patch for ralloc.h was never applied, fixed
6663
6664 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6665            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6666
6667         * pcode.c,
6668         * pcode.h,
6669         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
6670         indirect addressing. Marked FSR0 as deprecated
6671         * gen.c (pointerCode): commented out, not needed now
6672         (pic16_popGet2p): new MOVFF helper function
6673         (genGenPointerGet),
6674         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
6675         (shiftRLong): removed duplicate debugging info
6676
6677 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6678
6679         * src/ds390/gen.c (genNearPointerGet),
6680         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
6681         optimization with bits, but not bitfields.
6682         * src/ds390/ralloc.c (packRegisters),
6683         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
6684
6685 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
6686
6687         * src/SDCCcse.c (algebraicOpts): copy operands before modification
6688
6689 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6690
6691         * src/SDCCsymt.h,
6692         * src/SDCCicode.c (operandFromSymbol),
6693         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
6694         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
6695         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
6696         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
6697         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
6698         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
6699         bug #892038
6700         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
6701         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
6702         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
6703         * src/SDCCsymt.c (newSymbol),
6704         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6705         enumerator_list),
6706         * src/SDCCval.h,
6707         * src/SDCCval.c (newiList): fixed bug #885705
6708
6709 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6710
6711         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
6712         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
6713
6714 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6715
6716         * device/include/c8051f120.h,
6717         * device/include/c8051f300.h,
6718         * device/include/c8051f310.h: added/updated header files for Silicon
6719         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6720         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
6721         in new section Submitting patches
6722
6723 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6724
6725         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
6726         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6727         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6728         genGenPointerSet),
6729         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
6730         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6731         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6732         genGenPointerSet),
6733         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
6734         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6735         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6736         genGenPointerSet),
6737         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
6738         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6739         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6740         genGenPointerSet): fixed bug #892400
6741         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
6742         to eliminate build warnings.
6743         * src/SDCCast.c (processParms),
6744         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
6745         fixed bug 751859
6746         * support/valdiag/valdiag.py: added GCC to the list of defines active
6747         when compiling with gcc
6748
6749 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6750
6751         * support/Util/SDCCerr.h,
6752         * support/Util/SDCCerr.c,
6753         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
6754         with an incomplete type (fixed bug #883734)
6755         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
6756
6757 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6758
6759         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
6760
6761 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6762
6763         * src/SDCCast.c (decorateType),
6764         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
6765         function pointer implementation
6766         * support/regression/tests/funptrs.c: added tests to verify both forms
6767         of function pointers work correctly. Added tests to verify parameters
6768         are passed in the correct order.
6769
6770 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
6771
6772         * device.c (regCompare): registers are sorted by ascending
6773         address and increasing size,
6774         * main.c (_pic16_finaliseOptions): removed the declaration
6775         of compiler macro MCU. Now a macro of the format pic18fxxxx
6776         will be defined from the command line
6777
6778 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6779             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6780
6781         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
6782         PCOP_RLCF was overwritten!
6783         * gen.c (genSkip): commented out calls to pic16_emitcode,
6784         * (genCmpEQ): fixed "long" compares, only high word did get compared,
6785         * (genlshTwo),
6786         * (genRRC): added debugging info,
6787         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
6788         overwritten while shifting,
6789         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
6790         overwritten while shifting,
6791         * (AccLsh),
6792         * (AccRsh),
6793         * (shiftLLeftOrResult),
6794         * (shiftRLeftOrResult),
6795         * (shiftRLong),
6796         * (shiftLLong): Implemented with pic16_emitpcode
6797         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
6798         * (genLeftShift): Fixed bug, operand for shift by variable always
6799         was "and"ed with 0x0f,
6800         * (genLeftShiftLiteral),
6801         * (genrshTwo),
6802         * (genRightShiftLiteral): added debugging info,
6803         * (genrshFour): added comment,
6804         * (genRightShift): determined signedness from operand "left"
6805         instead of "result"
6806
6807 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6808
6809         * src/SDCCicode.c (geniCodeParms),
6810         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
6811         function pointers, fixed function pointer bugs #861242 and #861896
6812
6813 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6814
6815         * device/include/c8051f000.h,
6816         * device/include/c8051f120.h,
6817         * device/include/c8051f300.h: added header files for Silicon
6818         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6819
6820 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
6821
6822         * src/SDCCast.c (processParams): added new type flow and restructured
6823         (gatherAutoInit): added new type flow
6824         (addCast): cosmetic changes
6825         (getLeftResultType): added new type flow for array indices, patch
6826         provided by Stas, see FR #877103
6827         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
6828         array index patch by Stas
6829         * src/SDCCast.h: added prototype getResultTypeFromType()
6830         * src/SDCCval.h,
6831         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
6832         * src/pic/glue.c (pic14emitStaticSeg),
6833         * src/pic16/glue.c (pic16emitStaticSeg),
6834         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
6835         for initialization of symbols
6836         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
6837         * support/Util/SDCCerr.h:
6838         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
6839         * .version: bumped version number to 2.3.8
6840         * device/include/Makefile.in (install),
6841         * doc/Makefile (install): changed to 'rm `find ...`' construct to
6842         avoid warnings
6843
6844 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
6845
6846         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
6847         Slade Rich fixed an optimization bug
6848         * src/pic/pcodepeep.c,
6849         * src/pic/pcoderegs.c
6850         * doc/Makefile (install): added test for directory
6851
6852 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6853
6854         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
6855         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
6856         * src/pic/ralloc.c (getRegPtr, getRegGpr),
6857         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
6858         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
6859         * as/mcs51/asexpr.c (term),
6860         * as/hc08/asexpr.c (term): fixed bug #887146
6861
6862 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6863
6864         * src/z80/gen.c (genMult): handle single byte result product
6865         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
6866         DUMMY_READ_VOLATILE (fixed bug #886367)
6867
6868 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6869
6870         * support/regression/tests/libmullong.c: fixed logic, on little endian
6871         hosts we ended without a mullong_wrapper()
6872
6873 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6874
6875         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
6876         virus/worm forged address usage.
6877
6878 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6879
6880         Fixed promotion, it should be done on AST level:
6881         * src/SDCCast.c (addCast): added promotion to int
6882         (decorateType): updated call to upCast()
6883         * src/SDCCicode.c (geniCodeLeftShift): removed call to
6884         usualUnaryConversions()
6885
6886 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
6887
6888         * support/regression/tests/literalop.c (mulWrapper): Added a
6889         wrapper to remove integer overflow warnings.
6890
6891         * support/regression/tests/float_trans.c: Made work on host.
6892
6893         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
6894         location of sz80.
6895
6896         * support/regression/generate-cases.py (main): Changed from inline
6897         to a main method.
6898
6899         * doc/Makefile (install): Changed to depth first to get rid of
6900         missing directory install warning.
6901
6902         * as/Makefile (install-doc): Made work on Mac.
6903
6904 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
6905
6906         * src/SDCCast.c: added an additional type flow in decorateType() of
6907         opposite direction, see feature request #860006; it's enabled at runtime
6908         by setting the environment variable SDCC_NEWTYPEFLOW
6909         * src/SDCCast.h: changed prototype of decorateType()
6910         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
6911         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
6912         'char' to 'int' can be omitted, if both operands are 'unsigned char';
6913         see feature request #877103
6914         * src/SDCCval.c: updated call of decorateType()
6915         (valBitwise): fixed bug #882876
6916         (valMinus): added promotion
6917         (valLogicAndOr): result is unsigned
6918         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
6919         * src/SDCCsymt.c (computeType),
6920         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
6921         must not cause an unsigned operation
6922         * src/pic/glue (pic14emitRegularMap),
6923         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
6924
6925 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
6926
6927         * src/pic/pcode.c (PCodeID): commented out left over debug code
6928
6929 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
6930
6931         * support/valdiag/tests/overflow.c: added shift tests
6932         * src/pic/device.c,
6933         * src/pic/gen.c,
6934         * src/pic/gen.h,
6935         * src/pic/glue.c,
6936         * src/pic/main.c,
6937         * src/pic/pcode.c,
6938         * src/pic/pcode.h,
6939         * src/pic/pcodepeep.c,
6940         * src/pic/pcoderegs.c,
6941         * src/pic/ralloc.c,
6942         * src/pic/ralloc.h: applied patch from Slade Rich;
6943         added support for multiple code pages and multiple RAM banks on the
6944         PIC 14 port. The ASM files now no longer simply assume all the
6945         code / RAM are in the same page / bank. This means the linker can
6946         safely allocate code/RAM of separate ASM files to different pages/banks.
6947         * doc/sdccman.lyx: added Slade's tips
6948         * src/mcs51/peeph.def: fixed bug #880768
6949
6950 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6951
6952         * src/hc08/ralloc.c (rematStr): fixed bug #879282
6953         * src/SDCCast.c (decorateType): fixed bug #880197
6954
6955 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
6956
6957         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
6958         getopt.h.
6959
6960         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
6961         strtof is not part of C89 and isn't included with Mac OS X.
6962
6963 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6964
6965         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
6966         shiftL2Left2Result): fixed bug #879326
6967         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
6968         (genMultOneByte): fixed bug in signed vs unsigned multiplication
6969         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
6970         address fetch for clr instruction
6971         * device/lib/hc08/_mulint.c: created optimized assembly version
6972         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
6973
6974 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
6975
6976         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
6977         proposed in FR #877103
6978
6979 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
6980
6981         * src/SDCCval.c (cheapestVal): added missing checks
6982         * src/SDCCicode.c (usualBinaryConversions): fixed condition
6983         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
6984
6985 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
6986
6987         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
6988         equal operands
6989
6990 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
6991
6992         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
6993         loaded with the linker search paths (-L arguments) and the libraries
6994         to be linked with the current source (-l arguments). Changes
6995         currently will affect only the pic16 port.
6996         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
6997         include path the port specific paths and port specific libraries,
6998         * gplink command now contains the $3 argument,
6999         * src/pic16/device.h,
7000         * src/pic16/device.c,: structure PIC_device is made public and
7001         renamed to PIC16_device, the same for variable Pics which is renamed
7002         to Pics16. Updated all references to them.
7003         * src/pic16/glue.c (pic16glue): corrected bug with code
7004         initialization which bypassed the variable initializations block.
7005
7006         * device/lib/pic16/Makefile.rules: removed --penable-stack from
7007         COMPILE_FLAGS and added the --nostdinc option
7008
7009 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7010
7011         * device/include/mc68hc908jb8.h: Register defs for another member
7012         of the hc08 family. Contributed by Bjorn Bringert - thanks!
7013
7014 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
7015
7016         Documenting changes from previous commits.
7017         * configure.in (version 1.56),
7018         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
7019         when generating output files to configure the pic16 library,
7020         but now I've commented it out, since gputils aren't installed in the
7021         SF compile farm, so library won't compile
7022
7023         * device/lib/Makefile.in (version 1.56): initially I've added in
7024         target 'all' the prerequestive 'model-pic16' so it compiled the
7025         pic16 library, but now I've commented it out for the same reasons
7026         above,
7027         * added targets 'model-pic16' and 'objects-pic16' to compile the
7028         library
7029         * added target 'port-specific-objects-pic16' to handle the
7030         generated libraries and copy them into the build/ directory
7031         * added target 'clean-intermediate-pic16' to clean intermediate
7032         files into pic16 directory
7033         * in target 'installdirs' added line to create directory pic16 in
7034         the installation path
7035
7036         * device/include/Makefile.in (version 1.11): in target 'install'
7037         added lines to copy all header files to installation path,
7038         * in target 'installdirs' added line create directory for pic16
7039         headers in the installation path
7040
7041 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
7042
7043         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
7044          a function call
7045
7046 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
7047
7048         * configure,
7049         * device/lib/configure.in,
7050         * device/lib/configure: fixed for autoconf 2.57
7051
7052 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7053
7054         * src/z80/main.c (_parseOptions): fixed the portmode= command line
7055         option so that it actually works. Made it specific to the z80, since
7056         the gbz80 doesn't have these kinds of I/O ports.
7057
7058 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7059
7060         * device/include/z180.h,
7061         * device/lib/_memcpy.c,
7062         * device/lib/_memmove.c,
7063         * device/lib/_mulint.c,
7064         * device/lib/ser_ir.c,
7065         * device/lib/ser_ir_cts_rts.c,
7066         * device/lib/_strcmp.c,
7067         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
7068         * src/z80/main.c (_process_pragma): add support for pragmas bank and
7069         portmode; added deprecation warning for bank= and protmode= forms.
7070         Also, guard against buffer overflow.
7071         * src/z80/gen.c (aopGet): generate better code for sfr banked read
7072
7073 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7074
7075         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
7076         changed interrupt vector table generation to only emit declared vectors.
7077         * device/include/Makefile.in: added missing backslash
7078         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
7079
7080 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
7081
7082         Mainly changes to support compilation of the device libraries
7083         * src/pic16/device.c: stack is allocated via symbol and not
7084         via literal number. The symbol is placed in the corresponding
7085         position of the data ram
7086         * (pic16_dump_section): relocatable and absolute uninitialized
7087         data are now emitted in sorted order to reduce section naming,
7088         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
7089         weren't marked as being in the access bank,
7090
7091 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
7092
7093         Added portion of GNU PIC Library under the directory
7094         device/include/pic16 and device/lib/pic16. These files
7095         contain the declarations of SFRs for the PIC18Fxx2 devices.
7096         The directory is initialized via configure from toplevel.
7097
7098 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
7099
7100         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
7101         the spilllocations to be compared correctly
7102
7103 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
7104
7105         * src/SDCCast.c (decorateType): fixed bug introduced today
7106
7107 2004-01-12  Borut Razem <borut.razem AT siol.net>
7108
7109         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
7110         doc/sdccman.lyx: upper case pragmas are deprecated
7111
7112 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
7113
7114         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
7115         in simpler and even better code
7116
7117 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
7118
7119         * src/SDCCicode.c (operandOperation): fixed bug #874819
7120         * src/SDCCast.c (decorateType): fixed
7121         char foo (unsigned long ul) { return ul > 0; }
7122
7123 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7124
7125         * doc/sdccman.lyx: Moved and added some sections, small changes
7126         all over. Telling LaTeX to be less strict with word spacing
7127         to better keep the right margin. Changed some notes about
7128         maintainance of the ports in section 3.2.1 - is it OK like this?
7129
7130 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
7131
7132         SDCC source changes:
7133         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
7134         convilong): modified to inform the pic16 port that builtin functions
7135         are external
7136
7137         PIC16 PORT specific changes:
7138         * src/pic16/device.c pic16_dump_equates() added,
7139         processor registers declared internally by the port are emitted in
7140         the translation as equates,
7141         * src/pic16/gen.c: inline code is passed unprocessed to the
7142         translation,
7143         * (pic16_popGetLit2): fnuction modified to take second operand as
7144         pCodeOp pointer and not as literal,
7145         * (popRegFromIdx): prefixed with pic16_,
7146         * (pic16_popCombine2): modified to receive already allocated pCode
7147         operands,
7148         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
7149         * (genFunction): initializes local stack frame and pushes on stack
7150         all the registers used by this function,
7151         * (genEndFunction): restores all registers from stack and restores
7152         stack frame,
7153         * src/pic16/glue.c (pic16emitRegularMap): various changes and
7154         improvements,
7155         * (pic16glue): changed the program startup sequence,
7156         * added new dbName code 'A' for functions placed in absolute section
7157         * src/pic16/main.c: added function attribute _naked,
7158         * added pragma 'code' to place a fnuction at an absolute address,
7159         * added command line arguments --debug-ralloc and --pcode-verbose,
7160         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
7161         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
7162         * (pic16_newpCodeOpLit2): modified to take the second operand as
7163         pCodeOp pointer,
7164         * (pic16_printpBlock): modified to emit each function in a separate
7165         section,
7166         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
7167         UPPER for immediate operands,
7168         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
7169         instruction,
7170         * src/pic16/peeph.def: all peepholes with movff are commented out,
7171         because there is a problem in the pcode peep optimizer,
7172         * src/pic16/ralloc.c: the register allocator can now reuse local
7173         function symbols for another function. This saves register usage.
7174         * src/pic16/ralloc.h: added flag isLocal in structure regs,
7175
7176         Added file src/pic16/NOTES with information about program writing on
7177         the current port version.
7178
7179 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7180
7181         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
7182         and peephole 252 (array access)
7183
7184 2004-01-09  Borut Razem <borut.razem AT siol.net>
7185
7186         * src/SDCCmain.c : fixed #872250: -l command line defined library
7187           files are scanned before standard library files
7188
7189 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7190
7191         * src/SDCCast.c (decorateType): fixed bug #874046
7192
7193 2004-01-09  Borut Razem <borut.razem AT siol.net>
7194
7195         * support/scripts/sdcc.nsi: remove previous installation
7196
7197 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7198
7199         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
7200         bytes for last interrupt vector (mcs51)
7201         * sdcc.spec: fixed typo
7202
7203 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7204
7205         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
7206         gen51Code): more efficient parameter receive for --model-large
7207         ("bug" #845294)
7208
7209 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7210
7211         * src/ds390/main.c,
7212         * src/z80/main.c: added missed needLinkerScript flags (more than
7213         one port structure defined in these file)
7214         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
7215         bug #795325
7216
7217 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
7218
7219         * src/SDCCmain.c: removed various references to DEFAULT_PORT
7220         * src/port.h: added flag needLinkerScript in port->linker
7221         structure to inform whether to create a .lnk file or not,
7222         * src/avr/main.c,
7223         * src/ds390/main.c,
7224         * src/hc08/main.c,
7225         * src/mcs51/main.c,
7226         * src/pic/main.c,
7227         * src/pic16/main.c,
7228         * src/xa51/main.c,
7229         * src/z80/main.c: changed appropriately to configure
7230         needLinkerScript flag
7231         * src/pic/gen.c,
7232         * src/pic16/gen.c (genAddrOf): fixed bug #863624
7233         * src/pic/glue.c: added variable udata_section_name to
7234         override default uninitialized data segment definition for
7235         devices only with SHAREBANK memory (reported from Erik Epetrich)
7236         * (pic14emitOverlay): modified to emit a commented overlay segment
7237         directive when no overlay data exist
7238         * (picglue): modified to emit uninitialized data segment
7239         according to udata_section_name
7240         * src/pic/main.c (_pic14_parseOptions): added command line
7241         options --udata-section-name=[name] to override default
7242         udata definition name
7243         * modified _linkCmd and _asmCmd to include compiler passed
7244         arguments via -W option
7245         * src/pic16/main.c: added $l in _asmCmd, changed extension for
7246         object file from '.rel' to '.o' in port->linker structure,
7247         changed size of fptr from 2 to 3 in port structure
7248
7249 2004-01-07  Borut Razem <borut.razem AT siol.net>
7250
7251         * support/scripts/sdcc.nsi: update PATH
7252         * support/scripts/sdcc.ico: craeted
7253
7254 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
7255
7256         * device/include/Makefile.in: fix install
7257         * doc/Makefile: fix install
7258
7259 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7260
7261         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
7262         in bug #860505
7263         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
7264         how the function variable allocation summary is displayed; also
7265         include information about variables allocated to the overlay
7266         segment
7267
7268 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7269
7270         * as/mcs51/lkmain.c: Help about -Y option
7271         * as/mcs51/lkarea.c: Fixed gcc warnings
7272
7273 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
7274
7275         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
7276         fixed warning
7277         * support/valdiag/tests/overflow.c: added
7278         * src/SDCCast.c (decorateType),
7279         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
7280         LEFT_OP (left shift)
7281
7282 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7283
7284         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
7285         (default behaviour).
7286
7287 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7288
7289         A python script to validate compiler diagnostic messages. It can be
7290         used to verify that sdcc complains about bad c source code and
7291         gives a good location of the error.
7292         * support/valdiag/Makefile,
7293         * support/valdiag/valdiag.py,
7294         * support/valdiag/tests/*
7295
7296 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7297
7298         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
7299         * src/SDCCsymt.c (newEnumType),
7300         * src/SDCCsymt.h
7301         * support/Util/SDCCerr.c,
7302         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
7303         enum related bugs.
7304         * support/regression/tests/enum.c: added test for enum values that
7305         require at least 2 bytes of storage.
7306
7307 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7308
7309         * src/common.h: added ifndef/define/endif macros
7310         around the header file.
7311         Bug reported from Jesus Calvino-Fraga
7312
7313 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
7314
7315         * sdcc.spec: updated
7316         * device/include/Makefile.in: don't install CVS directories
7317         * device/lib/Makefile.in: added removal of CVS directories after install
7318         * doc/Makefile: fixed install, added local_icons
7319         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
7320         * src/mcs51/gen.c (genRightShift): fixed bug #870788
7321         * src/ds390/gen.c (genRightShift): fixed bug #870788
7322         * src/SDCCast.c (decorateType): fixed bug #870781
7323
7324 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7325
7326         PIC16 port related changes:
7327         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
7328         added variable stackPos,
7329
7330         * gen.c: genCall, assignResultValue: added support for
7331         pushing/retrieving function parameters to/from stack,
7332         genFunction,genEndFunction: setup stack frame for the
7333         generated function,
7334         genAddrOf: will be changed according to bug 863624
7335
7336         * added files genutils.c and genutils.h which contain gen*
7337         debugged and optimised functions extracted from gen.c
7338
7339         * glue.c: added variable 'externs' which holds extern symbols,
7340         pic16emitRegularMap: is modified to properly handle relocatable
7341          symbols under the new scheme,
7342         pic16createInterruptVect: is modified
7343         pic16printPublics: is modified to emit 'global' assembler directives,
7344         added pic16_printExterns to print extern symbols,
7345         pic16glue: initializes stack/frame pointer in the beginning of
7346         the assembly output. Temporary hack, will be corrected later,
7347         because gplink yet does not support stack and SDCC does not
7348         yet support a type of crt0.o object to create the final binary.
7349
7350         * Removed many lines that contain 8051 legacy code.
7351         * The code is finally placed under a 'code' directive.
7352         * Added port specific options.
7353
7354         * _process_pragma: simplified since now we do not need *special*
7355         include file to define SFR registers. But a separate header
7356         will be needed. This will be developed later.
7357         * _pic16_parseOptions: added, parses port specific options:
7358         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
7359         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
7360         --preplace-udata-with=
7361
7362         * _pic16_setDefaultOptions: modified to initialize section names,
7363         but hack is temporarly out of order since it needs improvement.
7364         * _pic16_genAssemblerPreamble: configuration words are emitted by
7365         their address instead of their name. This part is incomplete and
7366         supports only the 18Fxx2 devices. Other devices will emit an error
7367         during assembly since they do not contain the same set of config
7368         registers
7369         * _pic16_genIVT: is modified,
7370
7371         * pcode.c: added definitions for some hardware registers that are needed
7372         for stack support
7373         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
7374         All PCI entries are updated. Now LFSR is supported.
7375         * Removed pic16_pciTRIS is mentioned by mdubuc in source
7376         * added pic16_newpCodeOpLit2 to support instructions with
7377         two literal arguments
7378         * pic16_pCode2str: corrected code that emits assembler instructions
7379         with two literal operands and those that have an access bit modifier
7380         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
7381         this fixes a bug which caused some labels to be lost, when an
7382         assembler directive was added, i.e. banksel,
7383         * pic16_FixRegisterBanking: improved logic that causes the insertion
7384         of bank switching,
7385         * InlineFunction: functions that are called once, are not any more
7386         inlined. This can be a port option in the future,
7387
7388         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
7389
7390         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
7391         hold the corresponding uninitialized symbols,
7392         * pic16_allocProcessorRegister: registers have explicit marked the
7393         accessBank field,
7394         * pic16_allocInternalRegister: registers are explicit marked as
7395         not used,
7396         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
7397         processing list, so bit registers were lost,
7398         *
7399
7400         * ralloc.h: added field 'accessBank' and original symbol operand
7401         in register definition,
7402         * removed the field isMapped from register definition,
7403
7404         ** Several functions have been removed from various sources:
7405         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
7406         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
7407         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
7408         pic16_assignRelocatableRegisters
7409
7410         ** others have been introduced:
7411         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
7412         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
7413
7414 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
7415
7416         * support/scripts/inc2h.pl: changed definition of BIT_AT
7417         to emit 'sbit at' instead of 'bit at'. This was a request.
7418
7419         PIC16 port related preliminary changes:
7420         * gen.c: prefixed function popRegFromString with
7421         pic16_ and all references to it corrected
7422         * pcode.c: all pic16_pc_* hardware registers prefixed
7423         with underscore (_),
7424         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
7425         * ralloc.c: newReg(): when register is REG_SFR then
7426         set address to rIdx,
7427         pic16_allocProcessorRegister(): marks register wasUsed=0
7428         pic16_writeUsedRegs(): added a call to assign processor
7429         registers via pic16_assignFixedRegisters
7430
7431 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7432
7433         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
7434         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
7435         variables in unused register banks.  Also the SSEG is placed
7436         wherever there is enough space for it, and IDATA can be anywhere
7437         in internal RAM.  For now compile using -Wl-Y[stack_size].
7438         The mem file is different for this option as well, since it
7439         makes no sense of talking about DSEG lenght.
7440
7441 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
7442
7443         * src/SDCClrange.c: fixed bug 869095 that caused segfault
7444         in certain cases, e.g. when ROM assignment, patch provided
7445         from Albert den Haan.
7446
7447 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
7448
7449         Many signedness and type propagation fixes:
7450         * src/SDCCicode.c: made geniCodeCast() static
7451         replaced SPEC_ by IS_ (cosmetic)
7452         (operandOperation): fixed div and mod operation
7453         (usualBinaryConversions): added support for promotion of char
7454         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
7455         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
7456         (geniCodeAdd): an array index will stay unsigned, even if promoted
7457         from char to int
7458         (geniCodeArray): ditto
7459         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
7460         * src/SDCCsymt.c (computeType): added more support for char;
7461         promotion of char is selectable by promoteCharToInt, fixed signedness
7462         for all cases
7463         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7464         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7465         * src/SDCCval (val*): replaced signedness calculation by
7466         computeType()
7467         rearranged if-branches (cosmetic)
7468         (valShift): added warning W_SHIFT_CHANGED
7469         (valCompare): fixed problem with different types
7470         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
7471         * support/regression/tests/literalop.c: added many cases
7472         * support/regression/tests/ast_constant_folding.c: changed finally to
7473         'unsigned int'
7474         * .version: new year, new version: 2.3.7
7475         * src/SDCCmain.c (main): applied patch #866468
7476         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
7477         provided by Scott Bronson
7478         * doc/sdccman.lyx: updated documentation for sdcdb
7479         updated and added chapter tips
7480
7481 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7482
7483         * src/SDCCsymt.h: missing from yesterday's commits
7484
7485 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7486
7487         * src/SDCC.y (struct_or_union_specifier),
7488         * support/Util/SDCCerr.c,
7489         * support/Util/SDCCerr.h: verify that struct & union tags are used
7490         as declared.
7491
7492 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7493
7494         * src/SDCCglobl.h: missing from yesterday's commits
7495
7496 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7497
7498         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
7499         sft_attributes, struct_declaration, parameter_declaration,
7500         type_name, start_block, declaration_list),
7501         * src/SDCC.lex (check_type): support redefinition of typedef names
7502
7503 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7504
7505         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
7506         aligned xdata arrays. Erik helped me with the if clause.
7507
7508 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7509
7510         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
7511         warning
7512
7513 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7514
7515         * src/SDCCast.h,
7516         * src/SDCCast.c (newAst_),
7517         * src/SDCCicode.h,
7518         * src/SDCCicode.c (ast2iCode, newiCode),
7519         * src/SDCCglobl.h,
7520         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
7521         expr, statement, expression_statement, selection_statement,
7522         iteration_statement, expr_opt, jump_statement): foundation for tracking
7523         sequence points
7524         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
7525         point code too)
7526
7527 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7528
7529         * support/Util/SDCCerr.c,
7530         * src/SDCCast.h,
7531         * src/SDCCast.c (createCase, createDefault, decorateType),
7532         * src/SDCClabel.c (labelUnreach),
7533         * src/SDCC.y (labeled_statement, jump_statement): More improvements
7534         to error messages.
7535         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
7536         (with thanks to Stas Sergeev)
7537         * device/include/time.h,
7538         * device/lib/time.c (CheckTime): suppress unreachable code warning
7539
7540 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7541
7542         * src/SDCCast.c (createIvalCharPtr),
7543         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
7544         bug #753752)
7545         * support/regression/tests/nullstring.c: tests for these two bugs
7546
7547 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7548
7549         * support/Util/SDCCerr.h,
7550         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
7551         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
7552         about storage class and 'at' used inside struct or union
7553         * src/SDCCBBlock.c (iCodeFromeBBlock),
7554         * src/SDCCcse.c (ifxOptimize),
7555         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
7556         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
7557         printIval, emitStaticSeg, emitOverlay),
7558         * src/SDCClabel.c (deleteIfx),
7559         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
7560         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
7561         gatherAutoInit, processParms),
7562         * support/Util/SDCCerr.h,
7563         * support/Util/SDCCerr.c (werrorfl): Support for better error location
7564         reporting for post-parse errors.
7565
7566 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7567
7568         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
7569         implicit casts via union; they don't work on big endian systems
7570         (possible fix for bug #861138)
7571
7572 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7573
7574         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
7575         * src/mcs51/main.c: fixed the fix for bug #737001
7576
7577 2003-12-15  Borut Razem <borut.razem AT siol.net>
7578
7579         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
7580
7581 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7582
7583         * support/makebin/makebin.c: put output in binary mode
7584
7585 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7586
7587         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
7588         xdata and data memory on startup. Set the environment variable
7589         SDCC_NOGENRAMCLEAR to disable this.
7590         * src/mcs51/peephole.def,
7591         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
7592         (allows non-interrupt and interrupt code to safely compete for a resource
7593         without the non-interrupt code having to disable interrupts)
7594
7595 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7596
7597         * src/SDCCicode.c (geniCodeAdd),
7598         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
7599         with valFromType if type might be a pointer and host is big endian).
7600         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
7601         types, not just integer types.
7602         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
7603         multiply defined with mismatching "at" address.
7604
7605 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7606
7607         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
7608         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
7609         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
7610         with embedded nulls (fixed bug #753752)
7611
7612 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7613
7614         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
7615         Apparently this did not see much testing (endless loop)
7616
7617 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7618
7619         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
7620
7621 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7622
7623         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
7624         gracefully handle NULL memmap pointers
7625
7626 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7627
7628         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
7629         instead of deleting the iCode when an operand is volatile
7630         * src/z80/gen.c (genDummyRead),
7631         * src/mcs51/gen.c (genDummyRead),
7632         * src/ds390/gen.c (genDummyRead),
7633         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
7634         not just IC_RIGHT
7635         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
7636         * src/SDCC.y: fixed bug #850420
7637
7638 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7639
7640         Applied z80 i/o port patch from Peter Townson and fixed some operators
7641         to better handle operands in A register.
7642         * device/include/z180.h
7643         * src/SDCC.y
7644         * src/SDCCglue.c
7645         * src/z80/gen.c
7646         * src/z80/gen.h
7647         * src/z80/main.c
7648         * src/z80/peeph-z80.def
7649         * src/z80/peeph.def
7650         * src/z80/z80.h
7651
7652 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7653
7654         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
7655
7656 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7657
7658         * device/lib/hc08/_mullong.c: Removed extra #endif
7659
7660 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7661
7662         * sim/ucsim/hc08.src/inst.cc,
7663         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
7664         carries from x to h
7665         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
7666         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
7667         * device/include/stdarg.h: fixed varargs for hc08
7668         * device/lib/Makefile.in,
7669         * device/lib/hc08/Makefile,
7670         * device/lib/hc08/_mulint.c,
7671         * device/lib/hc08/_mullong.c: fixed some endian problems
7672
7673 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7674
7675         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
7676         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
7677         * device/lib/_gptrget.c,
7678         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
7679
7680 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7681
7682         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
7683         * src/SDCCast.c (astErrors): fixed bug #846007
7684         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
7685
7686 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7687
7688         * src/SDCCast.c (decorateType): disabled a transformation I added in
7689         revision 1.188 (access to fields of a structure at an absolute address);
7690         it breaks with bitfields, extern declarations, and gcse analysis.
7691         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
7692         could be assigned through a pointer, so don't complain.
7693         * src/SDCCast.c (astErrors),
7694         * src/SDCCast.h,
7695         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
7696
7697 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
7698
7699         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
7700         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
7701         output of __config directives, since gpasm now supports them
7702         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
7703         pre-processor macro, i.e. -DMCU=p18f452
7704         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
7705         and modified to handle 'cast' icode similarly to '=' icode
7706         * src/pic16/device.h (typedef struct PIC_device): added field
7707         'extMIface' to indicate that chip has external memory interface
7708         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
7709         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
7710         18F8720
7711
7712 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7713
7714         * src/SDCC.y (pointer): fixed bug #846006
7715         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
7716         * src/SDCCast.c (decorateType): fixed bug #846009
7717         * src/ds390/peeph.def,
7718         * src/ds390/gen.c (genAnd, genOr),
7719         * src/mcs51/peeph.def,
7720         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
7721
7722 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7723
7724         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
7725         * src/SDCCdflow.c
7726         * src/SDCCcse.c
7727         * src/SDCCcse.h
7728         * src/SDCCBBlock.h
7729         * src/SDCCBBlock.c
7730
7731 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
7732
7733         fixed bug #845089
7734         * src/SDCCbitv.h,
7735         * src/SDCCbitv.c: added function to free a bitvector
7736         * src/SDCClrange.h,
7737         * src/SDCClrange.c: added function to recompute the liveranges
7738         * src/avr/ralloc.c,
7739         * src/ds390/ralloc.c,
7740         * src/hc08/ralloc.c,
7741         * src/mcs51/ralloc.c,
7742         * src/pic/ralloc.c,
7743         * src/pic16/ralloc.c,
7744         * src/xa51/ralloc.c,
7745         * src/z80/ralloc.c: recompute the liveranges after register packing
7746
7747 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
7748
7749         * src/SDCCloop.c (newInduction): fixed bug #845630
7750
7751 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7752
7753         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
7754         inadvertantly left behind from my 2003-11-12 change
7755
7756 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7757
7758         Updated headers I neglected to commit yesterday.
7759         * src/SDCClrange.h,
7760         * src/SDCCicode.h
7761
7762 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7763
7764         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
7765         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
7766         * src/SDCCopt.c (eBBlockFromiCode),
7767         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
7768         the creation of the key hash table from the sequencing so it can be used
7769         earlier (for some GCSE bug fixes still pending)
7770
7771 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7772
7773         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
7774         * support/regression/tests/addsub.c: testing genPlus shortcut
7775
7776 2003-11-15  Borut Razem <borut.razem AT siol.net>
7777
7778         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
7779
7780 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7781
7782         * src/SDCCcse.c (cseBBlock): fixed bug #527779
7783         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
7784         ordering is immaterial.
7785         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
7786
7787 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7788
7789         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
7790         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
7791         (SIGSEV) of bug #840381
7792         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
7793         unlink new file before rename if new and old filenames are the same)
7794
7795 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7796
7797         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
7798         uninitialized variables) for the mcs51. Set environment variable
7799         SDCC_GENRAMCLEAR to test.
7800         xdata initialization slightly shorter
7801
7802 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7803
7804         * src/SDCCsymt.h,
7805         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
7806         #838241 & 780691 (basicly the same bug)
7807         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
7808         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
7809
7810 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
7811
7812         * src/SDCCmain.c (linkEdit): "fix" #834252
7813
7814 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7815
7816         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
7817         * src/SDCCast.h,
7818         * src/SDCC.y: fixed bug #819403
7819
7820 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7821
7822         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
7823         the reentrant attribute.
7824         * src/hc08/gen.c (genPackBits): added missing stack readjustment
7825         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
7826         simulation
7827         * src/SDCCast.c (decorateType): fixed bug with storage class not being
7828         updated during pointer dereference; f.e. ~(((char *)1)*) was being
7829         erroneously reduced to a literal.
7830         * src/hc08/ralloc.c (packRegisters, rematStr),
7831         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
7832         some cases
7833
7834 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7835
7836         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
7837         * doc/sdccman.lyx: changed from 'article' to 'book'
7838         * doc/Makefile: readded test_suite_spec and cdbfileformat
7839
7840 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
7841
7842         * device/include/stdlib.h: include malloc.h to comply with ANSI
7843         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
7844
7845 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7846
7847         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
7848         * doc/clean.mk: also remove *.out files
7849         * doc/sdccman.lyx: some additions, larger top/bottom margins
7850
7851 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7852
7853         * src/SDCC.y: fixed bug #837365
7854         * support/regression/tests/bitopcse.c
7855         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
7856         a symbol (might be valop instead)
7857         * device/lib/Makefile.in: added errno.c to HC08SOURCES
7858         * device/lib/clean.mk: added hc08 to the cleaning list
7859
7860 2003-11-04  Borut Razem <borut.razem AT siol.net>
7861
7862         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
7863           made 2003-11-04
7864         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7865           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
7866           malloc is declared in standard stdlib.h
7867
7868 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7869
7870         * device/lib/hc08/Makefile: need to clean .rel not .o files
7871         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
7872
7873 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7874
7875         * src/port.h,
7876         * src/hc08/main.c,
7877         * src/mcs51/main.c,
7878         * src/ds390/main.c,
7879         * src/z80/main.c,
7880         * src/avr/main.c,
7881         * src/pic/main.c,
7882         * src/pic16/main.c,
7883         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
7884         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
7885         tests (which uses the port's oclsExpense function)
7886         * src/SDCC.y,
7887         * src/SDCCast.c,
7888         * src/SDCCicode.c,
7889         * src/hc08/gen.c,
7890         * src/ds390/gen.c,
7891         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
7892
7893 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7894
7895         * src/SDCCcse.c (ifxOptimize),
7896         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
7897         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
7898         deleting the IFX iCode.
7899         * src/hc08/ralloc.c: reduced unneeded slocs
7900         * src/hc08/gen.c: fixed bug in asmopToBoolean
7901
7902 2003-11-04  Borut Razem <borut.razem AT siol.net>
7903
7904         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
7905           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7906           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
7907           transferred to configure
7908
7909 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
7910
7911         Use headers defined in the C[++] standards:
7912         * sim/ucsim/gui.src/serio.src/fileio.cc
7913         * sim/ucsim/gui.src/serio.src/frontend.cc
7914         * sim/ucsim/gui.src/serio.src/main.cc
7915         * sim/ucsim/gui.src/serio.src/posix_signal.cc
7916         * support/Util/NewAlloc.c
7917         * as/hc08/lklibr.c
7918         * as/mcs51/lklibr.c
7919         * as/z80/aslist.c
7920         * as/z80/assym.c
7921
7922 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7923
7924         * Added MSVC projects for hc08 assembler and linker:
7925         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
7926         /as/hc08/link_hc08.dsp
7927
7928 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
7929
7930         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
7931
7932 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
7933
7934         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
7935
7936 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7937
7938         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
7939
7940 2003-10-31  Borut Razem <borut.razem AT siol.net>
7941
7942         * support/cpp2/cpplib.h,
7943           support/cpp2/cpplib.c,
7944           support/cpp2/cpplex.c,
7945           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
7946           to switch _asm block preprocessing on / off. Default is
7947           #pragma preproc_asm +
7948
7949 2003-10-31  Borut Razem <borut.razem AT siol.net>
7950
7951         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
7952           when outputting comment blocks (when executed with -C option) and
7953           _asm (SDCPP specific) blocks
7954
7955 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7956
7957         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
7958
7959 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
7960
7961         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
7962
7963 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
7964
7965         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
7966         * src/SDCCast.c (decorateType): fixed bug #832664
7967
7968 2003-10-31  Borut Razem <borut.razem AT siol.net>
7969
7970         * support\cpp2\cpplex.c: fixed for SDCPP:
7971           comments(when executed with -C option) and _asm blocks
7972           were included even if they where in skipped #if block.
7973           Applied solution from GCC cpp 3.3.2
7974
7975 2003-10-31  Borut Razem <borut.razem AT siol.net>
7976
7977         * src/SDCC.lex: sdcc now understands both formats:
7978           '# <line_number> <file_name>' and
7979           '#line <line_number> <file_name>'
7980         * support/cpp2/cppmain.c: sdcpp now generates the standard
7981           '# <line_number> <file_name>' instead of former
7982           '#line <line_number> <file_name>'
7983
7984 2003-10-30  Borut Razem <borut.razem AT siol.net>
7985
7986         * support/cpp2/cpphash.h,
7987         * support/cpp2/cpplib.h
7988         * support/cpp2/cpplex.c,
7989         * support/cpp2/cppmain.c,
7990         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
7991
7992 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7993
7994         Fixed a number of problems revealed by bug #827883.
7995         * src/SDCCloop.c (loopInvariants): Spill location of the
7996         result operand should be recomputed if extracted from
7997         a loop. Also, don't extract assignments of an iTemp
7998         from a literal.
7999         * src/SDCCast.c (isConformingBody): loop reversal should
8000         not occur if the control variable is involved with a
8001         relational operator.
8002
8003 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
8004
8005         * .version: bumped to 2.3.6 to reflect the big improvements
8006         made by Erik and Klaus. Thanks!
8007
8008 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
8009
8010         Replaced the livrange code.
8011         * src/SDCClrange.c: added new LR code
8012         * src/SDCCloop.c,
8013         * src/SDCCBBlock.h: removed remainig parts from old LR code
8014         * src/ds390/ralloc.c,
8015         * src/ds390/gen.c: minor fixes to make it work with new code
8016
8017 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8018
8019         * as/hc08/asm.h,
8020         * as/hc08/lkrloc.c,
8021         * src/hc08/gen.c,
8022         * src/hc08/ralloc.c: Fix various warnings related to the hc08
8023         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
8024         (tweaked fix for bug #818696)
8025
8026 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8027
8028         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
8029
8030 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8031
8032         * src/SDCCmain.c,
8033         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
8034         * src/mcs51/gen.c (gencjneshort),
8035         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
8036         more efficient (per Scott Bronson's suggestion)
8037
8038 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8039
8040         Extended the semantics of the critical keyword to include
8041         individual statements. See RFE #827755 and #799831
8042         * src/SDCC.y
8043         * src/SDCCicode.c
8044         * src/SDCCopt.c
8045         * src/SDCCast.c
8046         * support/Util/SDCCerr.c
8047         * support/Util/SDCCerr.h
8048         * src/mcs51/gen.c
8049         * src/ds390/gen.c
8050         * src/hc08/gen.c
8051
8052 2003-10-19  Borut Razem <borut.razem AT siol.net>
8053
8054         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
8055
8056 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8057
8058         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
8059         Fixed bug #818696
8060         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
8061         and predecrement operand is displayed
8062
8063 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
8064
8065         * src/SDCCval.c (valMinus): fixed bug #826041
8066
8067 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8068
8069         Some hc08 related updates that I missed earlier
8070         * sim/ucsim/stypes.h
8071         * support/regression/ports/hc08/spec.mk
8072
8073 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8074
8075         New target "hc08" for the Motorola 68hc08 family of micros
8076
8077         * configure
8078         * configure.in
8079         * Makefile
8080         * src/hc08/*
8081         * src/SDCCmain.c
8082         * src/port.h
8083         * sim/ucsim/hc08.src/*
8084         * sim/ucsim/configure.in
8085         * src/ucsim/configure
8086         * sim/ucsim/packages_in.mk
8087         * as/hc08/*
8088         * as/Makefile
8089         * device/include/mc68hc908qy.h
8090         * device/lib/hc08/*
8091         * device/lib/Makefile.in
8092         * support/regression/ports/hc08/*
8093         * support/regression/Makefile
8094
8095 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8096
8097         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
8098         regression test
8099         * src/ds390/gen.c (genCast): fixed bug #821957
8100
8101 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
8102
8103         * device/lib/logf.c: "fixed" overlay bug
8104         * support/regression/ports/host/spec.mk: added m library
8105         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
8106         * support/regression/tests/float_trans: added (for Eric)
8107
8108 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
8109
8110         * src/mcs51/gen.c (genCpl): fixed bug
8111         http://sf.net/mailarchive/message.php?msg_id=6263915
8112
8113 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
8114
8115         * src/SDCCast.c (decorateType): added extended constant folding
8116         * src/SDCCsymt.c (computeType): cleanup
8117         * src/SDCCval.c (valShift): minor optimization
8118         * support/regression/tests/ast_constant_folding.c: added
8119
8120 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8121
8122         * src/SDCCmain.c: removed some unintended changes
8123
8124 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8125
8126         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
8127         * src/z80/gen.c: fixed part of bug #817589
8128         * src/SDCCsymt.c (checkFunction): fixed bug #817895
8129
8130 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
8131
8132         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
8133         * src/SDCCcflow.c
8134         * src/SDCCcse.c
8135         * src/SDCCdflow.c
8136         * src/SDCClabel.c
8137         * src/SDCClrange.c
8138         * src/SDCCmem.c
8139         * src/SDCCopt.c
8140         * src/SDCCpeeph.c
8141         * src/SDCCset.c
8142         * src/avr/ralloc.c
8143         * src/ds390/ralloc.c
8144         * src/izt/ralloc.c
8145         * src/mcs51/ralloc.c
8146         * src/pic/ralloc.c
8147         * src/pic16/ralloc.c
8148         * src/xa51/ralloc.c
8149         * src/z80/ralloc.c
8150         * src/z80/gen.c: removed unused label "release:"
8151
8152 2003-10-06  Borut Razem <borut.razem AT siol.net>
8153
8154         * src/SDCC.lex: removed definition of unused variables
8155           save_optimize and save_options
8156
8157 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
8158
8159         * clean.mk: removed '=' in "-maxdepth=1"
8160         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
8161         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
8162
8163 2003-10-06  Borut Razem <borut.razem AT siol.net>
8164
8165         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
8166           my_unput() replaced by unput()
8167
8168 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
8169
8170         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
8171         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
8172         type-punned pointer will break strict-aliasing rules"
8173         Old LR behaviour is again default; Klaus' LR can be choosen by
8174         defining the environment variable LRKLAUS
8175         * src/SDCCBBlock.h
8176         * src/SDCCloop.c
8177         * src/SDCClrange.c
8178         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
8179         * clean.mk: fixed removal of files in bin/CVS/
8180         * device/lib/clean.mk: fixed removal of directories small and large
8181         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
8182         * src/SDCCicode.c,
8183         * src/SDCCval.c: removed superflous test for pedantic
8184
8185 2003-10-05  Borut Razem <borut.razem AT siol.net>
8186
8187         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
8188           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
8189           message "unmatched #pragma SAVE and #pragma RESTORE"
8190
8191 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8192
8193         * doc/sdccman.lyx: various additions and updates (interrupts, inline
8194           assembly, critical functions, atomic, nojtbound)
8195
8196 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
8197
8198         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
8199         * src/SDCCBBlock.h
8200         * src/SDCCloop.c
8201         * src/SDCCloop.h
8202         * src/SDCClrange.c
8203
8204 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8205
8206         * src/z80/gen.h,
8207         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8208         * src/mcs51/gen.h
8209         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8210         * src/ds390/gen.h
8211         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8212         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
8213         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
8214
8215 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8216
8217         * src/z80/gen.c (genRet): fixed bug #524753
8218         * src/z80/gen.c (genCast): fixed internal error on cast from
8219         pointer to long
8220         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
8221         fix for bug #477835 to the z80
8222         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
8223         for tracking iCodes in the peephole optimizer for z80
8224
8225 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8226
8227         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
8228         the other part of bug #814548
8229         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
8230
8231 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
8232
8233         * src/SDCCcse.c: fixed part of bug #814548
8234
8235 2003-09-28  Borut Razem <borut.razem AT siol.net>
8236
8237         * src/asm.c: rewrite of printILine() to use temporary file instead
8238           a pipe
8239         * src/xa51/main.c: commented out declaration of int rewinds
8240
8241 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8242
8243         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
8244
8245 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8246
8247         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
8248         * src/asm.c (printILine): Fixed bug #811015
8249
8250 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8251
8252         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
8253         freeing.
8254
8255 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8256
8257         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
8258         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
8259         to correctly handle general case of AOP_PAIRPTR
8260         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
8261
8262 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8263
8264         * src/mcs51/ralloc.c (fillGaps),
8265         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
8266         register positioning bug)
8267
8268 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
8269
8270         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
8271
8272 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8273
8274         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
8275         genCodePointerGet, genGenPointerGet, genFarPointerSet,
8276         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
8277         (ralloc doesn't intentionally do this now, but perhaps later)
8278         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
8279         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
8280         register positioning bugs (Fixed bug #762602 and #795325)
8281         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
8282         (Fixed bug #808779)
8283         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
8284         lines that --i-code-in-asm generates
8285
8286 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8287
8288         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
8289         trying to fclose a FILE* that was already closed.
8290
8291 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8292
8293         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
8294         of const struct should be treated as if const themselves)
8295
8296 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
8297
8298         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
8299
8300 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8301
8302         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
8303         Unix (/n) and DOS (/r/n) line terminations.
8304
8305 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8306
8307         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
8308         bug #613775
8309
8310 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8311
8312         * src/mcs51/gen.c (genFunction, genEndFunction),
8313         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
8314         and restore of EA so that stack offsets to parameters are
8315         correct when using both critical and reentrant/stack-auto.
8316         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
8317         size (can be triggered in error if sloc is shared between
8318         different sized objects)
8319         * device/include/float.h: fixed macros to explicitly use
8320         unsigned long where needed
8321
8322 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
8323
8324         Feature req. 799831: added code to allow nesting of critical functions
8325         * src/mcs51/gen.c (genFunction, genEndFunction)
8326         * src/ds390/gen.c (genFunction, genEndFunction)
8327
8328 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8329
8330         * src/SDCCsymt.c (sclsFromPtr),
8331         * src/SDCCsymt.h,
8332         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
8333         support for standard C idiom of memory mapped variables; for
8334         example, *((xdata int*)0x1234) = 1 is now internally equivalent
8335         to xdata int at 0x1234 tempvar = 1.
8336         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
8337         provided by Akiya ISHIDA
8338
8339 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
8340
8341         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
8342         * src/SDCCval.c (constVal): added reduction from int to char
8343         * src/SDCCval.c (valMult, valDiv): fixed sign handling
8344         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
8345         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
8346         to ignore the sign
8347         * support/regression/tests/shifts.c: fixed
8348
8349 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8350
8351         * src/z80/gen.c (genXor): Fixed bug #805445
8352
8353 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8354
8355         Fixed bug #621531 (const & volatile confusion in the type chain).
8356         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
8357         refer to the const or volatile state of the pointer itself.
8358
8359         * src/SDCCast.c
8360         * src/SDCCglue.c
8361         * src/SDCCicode.c
8362         * src/SDCCsymt.c
8363         * src/SDCCval.c
8364         * src/SDCC.y
8365         * src/SDCCsymt.h
8366         * src/pic/gen.c
8367         * src/pic/ralloc.c
8368         * src/pic16/gen.c
8369         * src/pic16/ralloc.c
8370         * support/regression/tests/const.c
8371
8372 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8373
8374         When checking for duplicated modules, use absolute paths
8375         instead of relative paths.  Files changed:
8376
8377         * as/mcs51/lklib.c
8378         * link/z80/lklib.c
8379
8380 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8381
8382         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
8383
8384 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8385
8386         * device/include/string.h: added size_t typedef, changed
8387         prototypes to use size_t, eliminated separate reentrant and
8388         non-reentrant declarations, added _memmove declaration
8389         * device/lib/_memcpy.c: changed to use size_t instead of int,
8390         changed /4 to >>2 to avoid division library call
8391         * device/lib/_memcmp.c,
8392         * device/lib/_memset.c,
8393         * device/lib/_strncat.c,
8394         * device/lib/_strncpy.c,
8395         * device/lib/_strncmp.c: changed to use size_t instead of int
8396         * device/lib/_memmove.c: new file (fixed bug #772294)
8397         * device/lib/Makefile.in: added _memmove.c
8398         * device/lib/z80/asm_strings.s: fixed bug #772290
8399         * support/regression/tests/bitfields.c: attempt to fix host assertion
8400         failure on amd64-unknown-linux2.2
8401
8402 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8403
8404         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
8405         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
8406         * as/z80/asmain.c (main): fixed bug #801766
8407
8408 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
8409
8410         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
8411         compilers
8412
8413 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8414
8415         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
8416         reported in bug #800609
8417
8418 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
8419
8420         * Top header beautifications in src/pic16 directory:
8421           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
8422           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
8423           pcoderegs.h, ralloc.c, ralloc.h
8424         * main.c: added top header and GPL license notice
8425         * pcode.c: fixed the if-conditional warning
8426
8427 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
8428
8429         * device/lib/_mullong.c: replaced int by short for gcc
8430
8431 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8432
8433         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
8434         and JUMPTABLE iCodes properly now (worked by accident before)
8435         * src/mcs51/gen.c (leftRightUseAcc),
8436         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
8437         iCode properly now. Use getSize instead of nRegs since a & b
8438         aren't part of the nRegs tally.
8439
8440 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
8441
8442         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
8443         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
8444           before instructions that use the _STATUS register
8445
8446 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
8447
8448         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
8449         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
8450         fetching of the pointer
8451         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
8452         copied from genNearPointerSet()
8453         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
8454         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
8455         If they pop r0/r1 they must be called in the opposite order than aopOp().
8456         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
8457         (resp. --stack-auto), prepared for --xstack
8458
8459 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8460
8461         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
8462
8463 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8464
8465         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
8466         these ports have their own __sdcc_external_start()
8467
8468 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
8469
8470         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8471         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
8472         type for bits was changed. It resulted in bit variables becoming
8473         global, which is not permitted in PIC 14 assembly output.
8474
8475 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8476
8477         * doc/sdccman.lyx: various additions and updates. Rearranged sections
8478
8479 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8480
8481         Z80 and MCS51 linkers complaint if a public symbol is defined
8482         in more than one library module:
8483
8484         * as/mcs51/lklib.c
8485         * link/z80/lklib.c
8486         * as/mcs51/Makefile.in
8487
8488 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8489
8490         A few small changes that speed up the peephole optimizer.
8491
8492         * src/SDCCpeeph.c
8493
8494 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8495
8496         Try to make the peephole optimizer smarter by maintaining
8497         an association between the assembly source code and the
8498         iCodes that originated them. Put this information to use
8499         with a new peephole rule condition "notVolatile" so that
8500         the rules can be aggressive yet still safe.
8501
8502         * src/SDCCpeeph.c
8503         * src/SDCCpeeph.h
8504         * src/mcs51/gen.c
8505         * src/mcs51/peeph.def
8506
8507 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8508
8509         Fixed bug #741761
8510
8511         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
8512         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
8513         if the left or right operand symbols have the accuse flag set.
8514
8515 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8516
8517         Changed the type of the result of the ! (NOT) operator to char;
8518         previously it returned the same type as the source. This allows
8519         us to eliminate all the genFloatNot functions (all of its target
8520         implementations were very buggy) since !float can use the same
8521         code as !long now.
8522
8523         * src/SDCCicode.c (ast2iCode): ! returns char
8524         * src/mcs51/gen.c (genNot, genNotFloat),
8525         * src/ds390/gen.c (genNot, genNotFloat),
8526         * src/z80/gen.c (genNot, genNotFloat),
8527         * src/pic/gen.c (genNot, genNotFloat),
8528         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
8529
8530 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
8531
8532         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8533         1. Interrupt would not compile properly. Ensure PCLATH register is saved
8534            during interrupts. Ensure WSAVE is located at a shared bank address.
8535         2. Fixed page selection in some places
8536         3. Fixed BTFSS/C to where necessary use registers directly and not simply
8537            the registers name strings.
8538         4. Fixed "signed / unsigned compare" compiler warnings.
8539         5. The PIC port manages its own allocation of the general purpose
8540            registers, but makes no attempt to reuse them. As a result when
8541            compiling it soon runs out of general purpose registers. Some
8542            additional code was added to the files pcode.c and device.c to walk
8543            through the function call tree and rename the registers so that they
8544            get reused.
8545
8546         * src/pic/device.c
8547         * src/pic/gen.c
8548         * src/pic/glue.c
8549         * src/pic/pcode.c
8550         * src/pic/pcode.h
8551         * src/pic/ralloc.c
8552         * src/pic/ralloc.h
8553         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
8554         genPlus() & genMinus() when the result is the same as left or right
8555
8556 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8557
8558         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
8559
8560 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8561
8562         Made bitfield a distinct type from bit so that bitfields
8563         convert as per ANSI C and bits retain their traditional
8564         boolean style behaviour. Implemented bitfield support in
8565         the z80 port.
8566
8567         * src/SDCCsymt.h,
8568         * src/SDCCsymt.c,
8569         * src/SDCCast.c,
8570         * src/cdbFile.c,
8571         * src/mcs51/gen.c,
8572         * src/ds390/gen.c: bit v bitfield split
8573         * src/z80/gen.c: New support for bitfields
8574         * support/regression/tests/bitfields.c: reenabled z80,
8575         added more tests
8576
8577 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8578
8579         Rules 246.x, 247.x relate to bitfields, the others speed up
8580         access to xdata mapped I/O devices.
8581
8582         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
8583
8584 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8585
8586         Cleaned up genPackBits and genUnpackBits and added two helper
8587         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
8588         for literal assignments in genPackBits (thanks to Frieder for
8589         reminding me).
8590
8591         * src/mcs51/gen.c
8592         * src/ds390/gen.c
8593
8594 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8595
8596         Fixed bug #748310 (pointer to function type mishandled when the
8597         function name is omitted). Also fixed a SIGSEGV when a function
8598         attribute (reentrant, etc) is used on a non-function or on a
8599         function but misplaced before the parameter list.
8600
8601         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
8602         bug #748310
8603         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
8604         * support/Util/SDCCerr.h,
8605         * support/Util/SDCCerr.c: Added func attr misuse error msg
8606
8607 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
8608
8609         Fixed bug #787649 by anonymous
8610         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
8611         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
8612
8613 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8614
8615         Fixed numerous bitfield problems.
8616
8617         * src/SDCC.y: More bitfield related error checking
8618         * src/SDCCsymt.h,
8619         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
8620         * support/Util/SDCCerr.h,
8621         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
8622         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
8623         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
8624         * support/regression/tests/bitfields.c: tests added
8625
8626 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8627
8628         Made the constant following the "interrupt" keyword optional. If
8629         omitted, the function will not automatically be given an entry
8630         in the interrupt vector table (similar to #pragma NOIV, but
8631         less syntacticly kludgy). The interrupt number is also now
8632         range checked. Also fixed a bug in the high order bit example
8633         in the manual.
8634
8635         * src/SDCC.y
8636         * src/SDCCmem.c
8637         * src/SDCCglue.c
8638         * src/SDCCsymt.h
8639         * support/Util/SDCCerr.c
8640         * support/Util/SDCCerr.h
8641         * doc/sdccman.lyx
8642
8643 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
8644
8645         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
8646         * src/SDCCicode.c (operandOperation): rewritten some ops
8647         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
8648         * src/SDCCsymt.c (computeType): literals are handled the same way as any
8649         other type
8650         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
8651         be re-activated by defining REDUCE_LITERALS)
8652         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
8653         unsigned, but are signed by default
8654         * src/SDCCval.c (constVal): rearranged
8655         * src/SDCCval.c (valMod): preliminary fix
8656         * src/SDCCval.c (valCastLiteral): use TYPE_* types
8657         * support/regression/literalop.c: added, work in progress
8658
8659 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8660
8661         Generate warnings for useless declarations like "char data;"
8662         that don't do what new users expect.
8663
8664         * src/SDCC.y
8665         * support/Util/SDCCerr.h
8666         * support/Util/SDCCerr.c
8667
8668 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
8669
8670         * src/SDCCval.c (valMult): fix overflow detection of negative int
8671
8672 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8673
8674         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
8675
8676         Changes to support big endian targets:
8677
8678         * src/ports.h
8679         * src/SDCCglue.c
8680         * src/avr/main.c
8681         * src/ds390/main.c
8682         * src/izt/i186.c
8683         * src/mcs51/main.c
8684         * src/pic/main.c
8685         * src/pic16/main.c
8686         * src/xa51/main.c
8687         * src/z80/main.c
8688
8689 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
8690
8691         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
8692         * device/lib/time.c: fixed warning "integer overflow in expression"
8693
8694 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
8695
8696         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
8697         * src/SDCCval.c (constVal): changed default to signed; hex and octal
8698         constants are unsigned; added recognition of "u" flag for unsigned
8699         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
8700         * src/SDCCval.c (valDiv, valMod): fixed signdness
8701         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
8702         signedness of modulo, left and right shift
8703         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
8704         * support/Util/SDCCerr.h: added warning W_INT_OVL
8705         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
8706         * src/SDCCast.c (ast_print): improved output of constants
8707
8708 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8709
8710         Fixed some warnings when building with MSVC:
8711
8712         * as\mcs51\asdata.c
8713         * as\z80\asdata.c
8714         * as\mcs51\asm.h
8715         * as\z80\asm.h
8716         * link\z80\aslink.h
8717         * link\z80\lkdata.c
8718         * link\z80\lkeval.c
8719         * link\z80\lkgb.c
8720         * link\z80\lkihx.c
8721         * link\z80\lks19.c
8722         * link\z80\lksym.c
8723         * support\cpp2\cpplib.c
8724         * src\ds390\gen.c
8725         * src\mcs51\gen.c
8726
8727 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
8728
8729         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
8730
8731 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8732
8733         * support\librarian\clean.mk: Do not remove Makefile.
8734         * support\librarian\Makefile: added.
8735
8736 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8737
8738         Added librarian to MSVC build:
8739         * all.dsp
8740         * sdcc.dsw
8741         * support\librarian\librarian.dsp
8742
8743         'configure' not needed for librarian, removed:
8744         * support\librarian\configure
8745         * support\librarian\configure.in
8746         * support\librarian\config_in.h
8747         * support\librarian\Makefile.in
8748
8749         Hopefully these ones built the librarian and the rest of sdcc properly:
8750         * Makefile
8751         * Makefile.common.in
8752
8753         Messed up 'configure', so revert to previous version:
8754         * configure
8755         * configure.in
8756
8757 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
8758
8759         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
8760         there, while the mantissa of a double is "only" 53 bits wide.
8761
8762 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8763
8764         Adding sdcclib to the build.  MSVC project coming soon.
8765         Files added/changed:
8766
8767         * support\librarian\clean.mk
8768         * support\librarian\configure
8769         * support\librarian\configure.in
8770         * support\librarian\config_in.h
8771         * support\librarian\Makefile.bcc
8772         * support\librarian\Makefile.in
8773         * support\librarian\sdcclib.c
8774         * Makefile.bcc
8775         * Makefile
8776         * Makefile.common.in
8777         * configure
8778         * configure.in
8779
8780 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8781
8782         Linker now complaints if linked modules have conflicting options, for
8783         example, one compiled using --model-large and another one compiled with
8784         --model-small.  The following files were modified:
8785
8786         * as\mcs51\asdata.c
8787         * as\mcs51\aslink.h
8788         * as\mcs51\asm.h
8789         * as\mcs51\asmain.c
8790         * as\mcs51\asout.c
8791         * as\mcs51\i51pst.c
8792         * as\mcs51\lkdata.c
8793         * as\mcs51\lklibr.c
8794         * as\mcs51\lkmain.c
8795         * as\z80\asdata.c
8796         * as\z80\asm.h
8797         * as\z80\asmain.c
8798         * as\z80\asout.c
8799         * as\z80\z80pst.c
8800         * link\z80\aslink.h
8801         * link\z80\lkdata.c
8802         * link\z80\lklibr.c
8803         * link\z80\lkmain.c
8804         * src\SDCCglue.c
8805
8806 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8807
8808         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
8809         as/mcs51/lklibr.c: Generate a warning when a library is not found.
8810
8811 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
8812
8813         * src/z80/mappings.i: fix _mul[us][int,long] entries
8814
8815 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8816
8817         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
8818
8819 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8820
8821         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
8822         * support/regression/tests/bitopcse.c: added
8823         fixed warning:
8824         * src/avr/gen.c:
8825         * src/pic/gen.c:
8826         * src/pic16/gen.c:
8827         * src/z80/gen.c:
8828         * src/xa51/gen.c:
8829
8830 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8831
8832         added support for new library format to z80, gbz80 linkers:
8833         *link/z80/aslink.h
8834         *link/z80/lklex.c
8835         *link/z80/lklib.c
8836         *link/z80/lklist.c
8837
8838 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8839
8840         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
8841         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
8842
8843 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
8844
8845         added DUMMY_READ_VOLATILE:
8846         * src/SDCC.y:
8847         * src/avr/gen.c:
8848         * src/xa51/gen.c:
8849         * src/z80/gen.c:
8850         * src/pic/gen.c:
8851         * src/pic16/gen.c:
8852         * src/mcs51/gen.c:
8853         * src/ds390/gen.c:
8854         * src/SDCCcse.c (algebraicOpts): many improvements
8855         * src/SDCCcse.h: removed algebraicOpts()
8856         * src/SDCCicode.c (picDummyRead): added
8857
8858 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8859
8860         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
8861         "Insufficient space in data memory".
8862
8863 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8864
8865         * src/mcs51/gen.c: fixed bug #771358
8866         * src/z80/gen.c: fixed bug #759087
8867
8868 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
8869
8870         * src/pic16/glue.c: minor cleanup by Vangelis
8871
8872 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8873
8874         * device/include/regc515c.h: fixed #758477
8875         * device/lib/_gptrget.c: saving some cycles in generic pointer get
8876         * device/lib/_gptrput.c: saved a few bytes
8877         * my tab spacing is 8, yours too?)
8878         * device/lib/_ser.c: process RX bytes earlier than TX bytes
8879         * device/lib/serial.c: process RX bytes earlier than TX bytes
8880         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
8881
8882 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8883
8884         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
8885
8886 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8887
8888     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
8889
8890 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
8891
8892         * device/lib/Makefile.in: bad fix, reverted to 1.43
8893
8894 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
8895
8896         * device/lib/Makefile.in: added missing z80 object files
8897
8898 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
8899
8900         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
8901         pic16 progress by Vangelis:
8902         * src/SDCCglobl.h:
8903         * src/SDCCmain.c:
8904         * src/pic/Makefile:
8905         * src/pic:
8906         * pic/Makefile:
8907         * pic16/device.c:
8908         * pic16/device.h:
8909         * pic16/gen.c:
8910         * pic16/gen.h:
8911         * pic16/genarith.c:
8912         * pic16/glue.c:
8913         * pic16/main.c:
8914         * pic16/pcode.c:
8915         * pic16/pcode.h:
8916         * pic16/pcodepeep.c:
8917         * pic16/peeph.def:
8918
8919 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8920
8921     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
8922
8923 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8924
8925     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
8926     added gbz80 build to MSVC project.
8927     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
8928     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
8929     from 8051 stuff and setup so it links using a .lnk file.
8930
8931 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8932
8933     * support/librarian/sdcclib.c: sdcc librarian.
8934     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
8935     with sdcclib.
8936
8937 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8938
8939     * as/mcs51/lkmain.c: properly handle extensions in function afile.
8940
8941 2003-07-02  Borut Razem <borut.razem AT siol.net>
8942
8943         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
8944         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
8945         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
8946         src/xa51/main.c, src/z80/main.c:
8947         virtualization of glue() function: each port has it's own glue function,
8948         which is accessed by do_glue function pointer in PORT.general structure
8949
8950 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
8951
8952         * DS800C400 fun, improved ROM interface and tinibios.
8953
8954 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
8955
8956         * More support for DS80C400. Now includes beginning of interface to ROM.
8957
8958 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
8959
8960         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
8961
8962 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8963
8964         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
8965
8966 2003-06-19  Borut Razem <borut.razem AT siol.net>
8967
8968         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
8969
8970 2003-06-19  Borut Razem <borut.razem AT siol.net>
8971
8972         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
8973         fixed Z80 port - crt0.o: cannot open.
8974
8975 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
8976
8977         * support/Util/MySystem.c (merge_command): revert bad fix
8978
8979 2003-06-18  Borut Razem <borut.razem AT siol.net>
8980
8981         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
8982
8983 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8984
8985         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8986         option --use-stdout sends errors to stdout instead of stderr.
8987
8988 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
8989
8990         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
8991
8992 2003-06-15  Borut Razem <borut.razem AT siol.net>
8993
8994         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
8995         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
8996         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
8997         fixed width array of pointers replaced with sets;
8998         multiple include and lib paths ared transferred to preprocessor and linker
8999         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
9000         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
9001         fixed width array of pointers
9002         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
9003         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
9004         fixupPath(), getPathDifference()
9005         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
9006         fixed width array of pointers
9007
9008 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
9009
9010         * src/pic16/ralloc.c: fix warnings
9011         * src/pic16/pcode.c: fix warning
9012
9013 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
9014
9015          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
9016         know all the details, but essentially this set of changes enable
9017         the pic16 port to generate movff instructions and generate assembler
9018         directives,
9019         * src/SDCCmain.c:
9020         * src/pic16/gen.c:
9021         * src/pic16/glue.c:
9022         * src/pic16/pcode.c:
9023         * src/pic16/device.c:
9024         * src/pic16/main.c:
9025         * src/pic16/pcode.h:
9026         * src/pic16/pcoderegs.c:
9027         * src/pic16/ralloc.c:
9028         * src/pic16/ralloc.h:
9029
9030 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9031
9032         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
9033         added option --vc, so sdcc errors and warnings are compatible with
9034         Microsoft Visual Studio.
9035
9036 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9037
9038         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
9039           device/lib/libfloat.lib: added atof function.
9040
9041 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
9042
9043         * doc/sdccman.lyx: updated to Lyx 1.3
9044         * doc/cdbfileformat.lyx: updated to Lyx 1.3
9045         * doc/test_suite_spec.lyx: updated to Lyx 1.3
9046         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
9047
9048 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
9049
9050         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
9051
9052 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9053
9054         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
9055           additions to the "related tools/documentation" section
9056
9057 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
9058
9059         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
9060
9061 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
9062
9063         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
9064         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
9065
9066 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
9067
9068         * doc/sdccman.lyx: fix double dash and other minor things
9069         * doc/Makefile: fix double dash
9070
9071 2003-05-28  Karl Bongers(patches from Martin Helmling)
9072         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
9073           condition and ignore commands.
9074
9075 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9076
9077         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
9078           is in parts still quite out of date, I did changes as far as I felt makes sense
9079           for a non-native english speaker.
9080           Please feel free to add to the manual or to correct my changes.
9081         * doc/Makefile: undid touching the date of intermediate tex files.
9082
9083 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9084
9085         * doc/sdccman.lyx: Manual has an index now
9086
9087 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
9088
9089         Finalize muluint/mulsint and mululong/mulslong merging:
9090         * device/lib/_mulint.c
9091         * device/lib/_mullong.c
9092         * device/lib/gbz80/mul.s
9093         * device/lib/gbz80/stubs.s
9094         * device/lib/z80/mul.s
9095         * device/lib/z80/stubs.s
9096         * src/SDCCsymt.c (initCSupport)
9097
9098 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9099
9100         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
9101         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
9102           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
9103           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
9104           instead of /Zm500.
9105
9106 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9107
9108         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
9109           the regression tests I'm not brave enough to enable 245.b, 245.c
9110         * doc/sdccman.lyx: added latex preamble for hyperref package.
9111           Using pdflatex this will give you a hyperlinked pdf file with
9112           bookmarks. (prepend '%' before /usepackage if this breaks something)
9113
9114 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9115
9116          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
9117
9118 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
9119
9120         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
9121
9122 2003-05-21    <johan AT balder>
9123
9124         * src/SDCCglue.c (printIval): fixed bug #739934
9125
9126 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
9127
9128         Applied patch from bug 737905 (renamed yylineo to mylineno):
9129         * src/altlex.c
9130         * src/SDCCast.c
9131         * src/SDCglobl.h
9132         * src/SDCC.lex
9133         * src/SDCCsymt.c
9134         * src/SDCCval.c
9135         * src/pic16/pcode.c: Cleaned warnings
9136         * src/pic16/pcodeflow.c: Cleaned warnings
9137         * src/pic16/pcoderegs.c: Cleaned warnings
9138
9139 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
9140
9141         * src/pic16/pcode.c: Cleaned warnings
9142         * src/pic16/pcodepeep.c: Cleaned warnings
9143         * src/pic16/ralloc.c: Cleaned warnings
9144
9145 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
9146
9147         * doc/sdccman.lyx: fixed bug 739745
9148         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
9149
9150 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
9151
9152         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
9153         it can be defined with CFLAGS when running configure
9154         * src/SDCCmain.c: fixed compiling + linking with object files
9155
9156 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
9157
9158         * configure.in: configure for pic16 port,
9159             added --disable-pic16-port
9160         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
9161         * src/SDCCmain.c: linkOptions is changed to set *,
9162             added if/endif conditional macros to remove options help
9163             messages from optionsTable when a port is not configured, added
9164             support for the PIc16 port in the ports table, when executing
9165             the compiler with no port specified on command line, a default
9166             port is selected with the new macro DEFAULT_PORT which is
9167             defined in port.h, in setDefaultOptions() linkOptions is removed
9168             from initialization assignment, since now it is a set,
9169             parseCmdLine uses setParseWithComma for linkOptions, in
9170             linkEdit() linkOptions are accessed with new function indexSet()
9171             which returns the i'th item of a set variable. See SDCCset.c, in
9172             linkEdit() when calling buildCmdLine(), added linkOptions as
9173             last argument. Now users can pass arguments to gplink via the
9174             -Wl option, main() uses pic16glue() to glue up pic16 programs
9175         * src/SDCCpeeph.c: various changes to support pic16
9176         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
9177             return the i'th item of the set
9178         * src/SDCCset.h: added function prototype for indexSet()
9179         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
9180         * src/clean.mk: added pic16 in CLEANALLPORTS variable
9181         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
9182             added macro DEFAULT_PORT
9183         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
9184         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
9185             generated
9186         * src/pic16/glue.c: commented out some error producing lines
9187         * src/pic16/main.c: __config directives are commented out to stop
9188             gpasm complaining and test the linkage with gplink, _linkCmd and
9189             _asmCmd changed to be more gplink and gpasm friendly
9190         * src/pic16/peeph.def: peep rule 3 is commented out, since it
9191             produced an error when parsed, peep rule 12 is added to utilize
9192             movff, but it is commented out since the pCode does not support
9193             yet a command with 2 address arguments
9194
9195 2003-05-18    <johan AT balder>
9196
9197         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
9198         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
9199 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
9200
9201         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
9202   Added feature to script commands from file.
9203
9204 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
9205
9206         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
9207         * src/SDCCutil.c: include ctype.h for win32
9208
9209 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
9210
9211         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
9212
9213 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
9214
9215         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
9216   Fixed so you can set breakpoints prior to run, run does not stop
9217   on entry now.  Add tbreak.  Other enhancements and fixes for use
9218   with ddd.
9219
9220 2003-05-12  Borut Razem <borut.razem AT siol.net>
9221
9222         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
9223
9224 2003-05-11  Borut Razem <borut.razem AT siol.net>
9225
9226         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
9227         the path of bin directory, so that PATH is the only env. variable, which has to be set
9228         in case of standard installation.
9229         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
9230         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
9231         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
9232
9233 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
9234
9235         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
9236         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
9237         temp files are in the port dir; clean the gen/test directory when
9238         generating new test.c
9239         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
9240         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
9241         * support/regression/tests/zeropad.c: added
9242
9243 2003-05-09    <johan AT balder>
9244
9245         * src/SDCCglue.c: fixed bug #597940
9246
9247 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
9248
9249         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
9250   cache sfr, optimize next,step, fix off by one sourceline,
9251   support ddd list function.
9252         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
9253
9254 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
9255
9256         * support/regression/HTMLgen.py: added compare_s2f()
9257         * support/regression/Makefile: redo 1.27
9258         * support/regression/generate-cases.py: redo 1.5
9259
9260 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
9261
9262         * support/regression/tests/float.c: workaround 33 bit hex constant
9263         * support/regression/tests/simplefloat.c: fix division for host
9264
9265 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
9266
9267         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
9268         that tame's the PIC's over-aggressive optimizer.
9269
9270 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9271
9272          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
9273          support for MSVC.
9274
9275 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
9276
9277         Initial support for DS80C400. "Hello world" runs on TINIm400
9278         (with polled I/O).
9279
9280 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
9281
9282          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
9283          * Some notes on ddd usage added in debugger/README
9284          Martin Helmling adding more features and fixes for ddd GUI debugger.
9285          Code added for nexti, stepi, up, down, and other adjustments.
9286
9287 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
9288
9289         * src/pic/pCodepeep.c non-wildcard asmops are now handled
9290         * src/pic/peeph.def Added two rules to optimize carry manipulation
9291         * src/pic/* removed debug printfs
9292
9293 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
9294
9295         * debugger/mcs51/cmd.c: added header newalloc.h
9296
9297 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
9298
9299         * as/Makefile: new EXEEXT
9300         * as/z80/Makefile: remove trailing slash of BUILDIR
9301         * as/z80/clean.mk: new EXEEXT
9302         * Makefile.common.in: add to CFLAGS (and others), don't replace it
9303         * support/cpp2/Makefile.in: new EXEEXT
9304         * src/pic/glue.c (pic14emitRegularMap): fixed warning
9305
9306 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
9307
9308         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
9309         EXEEXT was introduced to fix all related problems with targets
9310         "clean", "install" and "uninstall"; a couple of further flaws
9311         especially with "clean" have been fixed too
9312         * as/mcs51/Makefile.in
9313         * as/mcs51/clean.mk
9314         * as/z80/Makefile
9315         * Makefile
9316         * clean.mk
9317         * debugger/mcs51/Makefile.in
9318         * debugger/mcs51/clean.mk
9319         * link/z80/Makefile
9320         * link/z80/Makefile.in
9321         * link/z80/clean.mk
9322         * link/Makefile
9323         * packihx/Makefile.in
9324         * packihx/clean.mk
9325         * sim/ucsim/Makefile
9326         * sim/ucsim/clean.mk
9327         * sim/ucsim/avr.src/Makefile.in
9328         * sim/ucsim/avr.src/clean.mk
9329         * sim/ucsim/s51.src/Makefile.in
9330         * sim/ucsim/s51.src/clean.mk
9331         * sim/ucsim/xa.src/Makefile.in
9332         * sim/ucsim/xa.src/clean.mk
9333         * sim/ucsim/z80.src/Makefile.in
9334         * sim/ucsim/z80.src/clean.mk
9335         * sim/ucsim/main_in.mk
9336         * sim/ucsim/packages_in.mk
9337         * sim/ucsim/gui.src/Makefile.in
9338         * sim/ucsim/gui.src/serio.src/Makefile.in
9339         * sim/ucsim/gui.src/serio.src/clean.mk
9340         * src/Makefile.in
9341         * src/clean.mk
9342         * support/cpp2/Makefile.in
9343         * support/cpp2/clean.mk
9344         * support/makebin/Makefile
9345         * support/makebin/clean.mk
9346         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
9347         * doc/sdccman.lyx: --program-suffix no longer needed
9348
9349 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
9350
9351          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
9352          Martin Helmling added support for ddd GUI debugger.
9353          Code added to display assembly, set variables, and other commands
9354          to interface to ddd.
9355
9356 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
9357
9358         * as/Makefile: fix target clean
9359         * as/clean.mk: fix target clean
9360         * as/z80/clean.mk: fix target clean
9361
9362 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
9363
9364         * Makefile.common.in: added  AT EXEEXT AT
9365         * configure.in: removed all mingw32 stuff
9366         * configure: rebuilt from configure.in
9367         * doc/sdccman.lyx: updated section "installation"
9368         * support/scripts/sdcc_mingw32: adapted to configure
9369         * support/scripts/sdcc_cygwin_mingw32: added
9370
9371 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
9372
9373         * src/pic Added object file support for the PIC port
9374         * src/pic Applied patch from Craig Franklin (this started the object file support)
9375         * src/regression Updated the PIC regression tests for object files
9376
9377 2003-04-20  Borut Razem <borut.razem AT siol.net>
9378
9379         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
9380           lklex.c: In function `getfid':
9381           lklex.c:203: warning: array subscript has type `char'
9382         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
9383           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
9384         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
9385           stack handling macros
9386
9387 2003-04-19  Borut Razem <borut.razem AT siol.net>
9388
9389         * "handling space characters in file path" task:
9390         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
9391         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
9392         * support/Util/MySystem.h: make it self-sufficient
9393         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
9394           src/z80/main.c, sdcc/as/mcs51/lklex.c:
9395           handling space characters in file path
9396         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
9397           (it will be used by assemblers, which have their own includes, e.g. gpasm)
9398         * support/Util/MySystem.c: handling space characters in executable's path
9399
9400 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
9401
9402         * as/z80/Makefile: fix permanent rebuild of z80
9403         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
9404         * support/regression/tests/bitfields.c: added Johan's bitfields.c
9405
9406 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
9407
9408         * src/SDCCopt.c: add special case optimization to replace modulo by
9409           a power of two with a bitwise AND.
9410
9411 2003-04-18    <johan AT balder>
9412
9413         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
9414
9415 2003-04-17    <johan AT balder>
9416
9417         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
9418         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
9419
9420 2003-04-13  Borut Razem <borut.razem AT siol.net>
9421
9422         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
9423         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
9424           fixed mingw problem in adl_NORMALIZE_PATH
9425
9426 2003-04-12  Borut Razem <borut.razem AT siol.net>
9427
9428         * fixed "#pragma SAVE/RESTORE can not be nested":
9429         * src/SDCC.lex: reworked pragma handling functions
9430         * sdcc/src/SDCCglobl.h: reworked stack handling macros
9431         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
9432
9433 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9434
9435         * src/SDCCutil.c (pathEquivalent): defined but not used
9436         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
9437         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
9438         * configure: rebuilt from configure.in
9439         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9440         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9441         * device/include/Makefile.in: replace sdcc_datadir
9442         * device/lib/Makefile.in: replace sdcc_datadir
9443         * Makefile.common.in: add LDFLAGS from configure
9444         * packihx/Makefile.in: use LDFLAGS
9445         * src/Makefile.in: use LDFLAGS
9446         * support/cpp2/Makefile.in: add LDFLAGS from configure
9447         * support/makebin/Makefile: use LDFLAGS
9448         * .version: bumped version number to 2.3.5
9449
9450 2003-04-12  Borut Razem <borut.razem AT siol.net>
9451
9452         * completed "different paths" task:
9453         * src/SDCCmacro.c: fixed bug in handling quotes
9454         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
9455         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
9456
9457 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9458
9459         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
9460
9461 2003-04-11 kevin Vigor <kevin AT vigor.nu>
9462
9463         * ds390/gen.c ds390/peeph.def: fix bug 706781
9464
9465 2003-04-11  Borut Razem <borut.razem AT siol.net>
9466
9467         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
9468
9469 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
9470
9471         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
9472         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
9473          set - this bit used to not be set...).
9474         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
9475           bad code in PIC Port
9476         * src/regression/and2.c added to test bug 609268
9477         * src/regression/Makefile added and2.c to regression test
9478
9479
9480 2003-04-08    <johan AT CP255758-A>
9481
9482         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
9483         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
9484         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
9485
9486 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
9487
9488         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
9489         fix bug #487815
9490         * support/cpp2/Makefile.in: fix bug #487815
9491         * configure: rebuilt from configure.in
9492         * Makefile.common.in: docdir changed, new path suffixes
9493         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9494         * sdcc_vc_in.h: reflect changes from sdccconf.h
9495         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
9496         * src/SDCCutil.h: remove BINDIR hack
9497         * doc/sdccman.lyx: update new path hierarchy
9498
9499 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9500
9501         * src/SDCCpeeph.c: added okToRemoveSLOC test
9502
9503 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9504
9505         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
9506
9507 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9508
9509         * src/SDCCpeeph.c: added labelIsReturnOnly test
9510         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
9511
9512 2003-04-05    <johan AT balder>
9513
9514         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
9515         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
9516         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
9517         * src/SDCCast.c: fixed a warning
9518         * src/SDCCast.h: fixed a warning
9519         * src/SDCCicode.c (operandFromAst): fixed a warning
9520
9521 2003-04-04    <johan AT balder>
9522
9523         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
9524         * src/SDCCast.c (decorateType): fixed bug #715076
9525         * src/SDCC.y: fixed bug #702907
9526
9527 2003-04-03    <johan AT balder>
9528
9529         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
9530         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
9531         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
9532         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
9533         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
9534
9535 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
9536
9537         * _decdptr.c: fix return values
9538         * _gptrget.c: fix return values
9539         * _gptrgetc.c: fix return values
9540         * _gptrput.c: fix return values
9541         * _mulint.c: fix return values
9542         * as/z80/Makefile: fix 'make -j' problem
9543
9544 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
9545
9546         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
9547         * configure.in: big cleanup, updated to autoconf 2.5x
9548         * configure: rebuilt from configure.in
9549         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9550         * sdcc_vc_in.h: reflect changes from sdccconf.h
9551         * doc/Makefile: fixed a flaw in "make install"
9552
9553 2003-04-02    <johan AT balder>
9554
9555         * src/ds390/gen.c (genCmp): no comments
9556         * src/mcs51/gen.c (genCmp): no comments
9557         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
9558         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
9559
9560 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
9561
9562         * support/regression/generate-cases.py: place generated file in given sub directory
9563         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
9564         * support/regression/Makefile: improvements for 'make -j';
9565         side effect: it's simpler and faster now
9566
9567 2003-03-31  Borut Razem <borut.razem AT siol.net>
9568
9569         * src/z80/main.c: link-{port} and as-{port} defined without path
9570         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
9571
9572 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
9573
9574         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
9575
9576 2003-03-30  Borut Razem <borut.razem AT siol.net>
9577
9578         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
9579           changed type of list parameter to set
9580         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
9581         * src/port.h: changed type of do_assemble() parameter to set
9582         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
9583           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
9584           definition of "cppoutfilename" macro with NULL value in preProcess()
9585         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
9586         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
9587         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
9588           replaced with set *binPathSet
9589         * shash_add() deallocates the item, if allready exsists, before adding the new one
9590         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
9591
9592 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
9593
9594         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
9595           a nested for loop bug in the PIC port
9596         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
9597           for loops
9598
9599 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
9600
9601         * support/Util/dbuf.h: remove C++ stuff to make it portable
9602
9603 2003-03-28  Borut Razem <borut.razem AT siol.net>
9604
9605         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
9606           literal strings in stringLiteral()
9607         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
9608         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
9609           to the project
9610
9611 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
9612
9613         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
9614
9615 2003-03-26    <johan AT balder>
9616
9617         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
9618         * src/ds390/gen.c (saveRegisters): catched symbol abuse
9619         * src/SDCCast.c (decorateType): fixed " -v < 3"
9620
9621 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
9622
9623         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
9624         Added Lenny Story's debug infrastructure changes:
9625         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
9626         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
9627         * src/cdbFile.c: added
9628         * src/SDCCdebug.c: added
9629         * src/SDCCdebug.h: added
9630         * src/SDCCast.c (createFunction)
9631         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
9632         * src/SDCCmain.c (parseCmdLine, main)
9633         * src/SDCCmem.c (redoStackOffsets)
9634         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
9635         * src/SDCCsymt.h
9636         * src/common.h
9637         * src/avr/gen.c (genAVRCode)
9638         * src/ds390/gen.c (gen390Code)
9639         * src/mcs51/gen.c (gen51Code)
9640         * src/pic/gen.c (genpic14Code)
9641         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
9642         * src/xa51/gen.c (genXA51Code)
9643         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
9644
9645 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9646
9647         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
9648         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
9649
9650 2003-03-22    <johan AT balder>
9651
9652         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
9653
9654 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
9655
9656         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
9657         * doc/cdbfileformat.lyx: added, written by Lenny Story
9658         * doc/Makefile: added cdbfileformat.lyx
9659         * doc/clean.mk: added cdbfileformat.lyx
9660
9661 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
9662
9663         * src/mcs51/peeph.def: fix bug #705773
9664
9665 2003-03-20    <johan AT balder>
9666
9667         An sfr/sbit can have an "at #" AND an initializer
9668         * src/SDCCsymt.c (checkSClass):
9669         * src/SDCCmem.c (allocGlobal):
9670         * src/SDCCmem.c (allocLocal):
9671         * src/SDCCast.c (createBlock):
9672
9673 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
9674
9675         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
9676
9677 2003-03-16    <johan AT balder>
9678
9679         Undid the hackup of const and volatile, the problem is much bigger
9680         * src/SDCC.y:1.65
9681         * src/SDCCast.c:1.171
9682         * src/SDCCglue.c:1.138
9683         * src/SDCCicode.c:1.146
9684         * src/SDCCsymt.c:1.150
9685         * src/SDCCval.c:1.65
9686
9687 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
9688
9689         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
9690         * src/ds390/gen.c (genAddrOf): fixed bug #704087
9691
9692 2003-03-13    <johan AT balder>
9693
9694         Hackup const and volatile modifiers in type chains a bit:
9695         * src/SDCC.y:1.63
9696         * src/SDCCast.c:1.169
9697         * src/SDCCglue.c:1.136
9698         * src/SDCCicode.c:1.143
9699         * src/SDCCsymt.c1.146
9700         * src/SDCCsymt.h1.59
9701         * src/SDCCval.c:1.63
9702
9703 2003-03-12    <johan AT balder>
9704
9705         * src/SDCCBBlock.h: more LRH debugging junk
9706         * src/SDCCcflow.h: more LRH debugging junk
9707         * src/SDCCloop.c: more LRH debugging junk
9708         * src/SDCC.y (struct_declaration): fixed bug #697590
9709         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
9710         * src/ds390/gen.c (aopForRemat): fixed bug #700031
9711         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
9712
9713 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9714         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
9715         test function names must now match exactly).
9716         * src/SDCCcse.c: added special case in findCheaperOp to allow
9717         extending a short integer. Makes less awful code for bug 700121 test case.
9718
9719 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9720
9721         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
9722         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
9723
9724 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9725
9726         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
9727         actually called (operandsNotEqual() was called for all
9728         operandsNotEqualX tests).
9729
9730 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9731
9732         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
9733         with shorter literals. Fixes bug 700121.
9734
9735 2003-03-11    <johan AT balder>
9736
9737         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
9738
9739 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
9740
9741         * src/SDCCloop.c (mergeRegions): an evil beast is dead
9742         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
9743
9744 2003-03-10  Borut Razem <borut.razem AT siol.net>
9745
9746         * src/SDCCmain.c: pipe preprocessor's output
9747         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9748         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9749         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9750         which closes all pipes in pipeSet set
9751         * src/SDCCset.c: free deleted item in function deleteSetItem()
9752         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9753         moved from z80 to src subproject
9754         * .version: increased version number to 2.3.4
9755
9756 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
9757
9758         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
9759         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
9760         * support/regression/ports/xa51/spec.mk: fix typo
9761
9762 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
9763
9764         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
9765
9766 2003-03-09  Borut Razem <borut.razem AT siol.net>
9767
9768         * src/SDCCmain.c: pipe preprocessor's output
9769         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9770         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9771         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9772         which closes all pipes in pipeSet set
9773         * src/SDCCset.c: free deleted item in function deleteSetItem()
9774         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9775         moved from z80 to src subproject
9776
9777 2003-03-09  Borut Razem <borut.razem AT siol.net>
9778
9779         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
9780         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
9781         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
9782         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
9783         * src/SDCCglobl.h: unification of WIN32 native definitions
9784
9785 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9786
9787         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
9788
9789 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9790
9791         * src/configure.in:   check for endianess (even while cross-compiling)
9792         * src/configure:      check for endianess (even while cross-compiling)
9793         * src/configure_in.h: check for endianess (even while cross-compiling)
9794         * src/avr/gen.c:        remove old endianess stuff
9795         * src/mcs51/gen.c:      remove old endianess stuff
9796         * src/ds390/gen.c:      remove old endianess stuff
9797         * src/pic/gen.c:        remove old endianess stuff
9798         * src/pic/genarith.c:   remove old endianess stuff
9799         * src/pic/glue.c:       fix endianess check
9800         * src/pic16/gen.c:      remove old endianess stuff
9801         * src/pic16/genarith.c: remove old endianess stuff
9802         * src/pic16/glue.c:     fix endianess check
9803         * src/xa51/gen.c:       remove old endianess stuff
9804         * src/z80/gen.c:        fix endianess check
9805         * src/SDCCglue.c:       fix endianess check
9806         * src/ds390/peeph.def: fix bug 700036
9807
9808 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9809
9810         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
9811         * src/configure: find appropriate data-types on host for SDCC's int and long
9812         * src/configure.in: find appropriate data-types on host for SDCC's int and long
9813         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
9814         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
9815
9816 2003-03-07    <johan AT balder>
9817
9818         Just a big NOOP:
9819                 some minor cleanups before the big shot
9820                 OP_DEFS and OP_USES now use Kevin's protection
9821                 new option --nolabelopt
9822
9823         * src/SDCCBBlock.c:
9824         * src/SDCCast.c,:
9825         * src/SDCCcflow.c:
9826         * src/SDCCcse.c:
9827         * src/SDCCicode.c:
9828         * src/SDCCicode.h:
9829         * src/SDCClabel.c:
9830         * src/SDCCloop.c:
9831         * src/SDCCmain.c:
9832         * src/ds390/ralloc.c:
9833         * src/mcs51/ralloc.c:
9834         * src/pic/ralloc.c:
9835         * src/xa51/ralloc.c:
9836         * src/z80/ralloc.c:
9837
9838 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
9839
9840         * src/pic/pcode.c (get_op): fix 64 bit warnings
9841         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
9842         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
9843         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
9844         * support/regression/tests/malloc.c: fix 64 bit warnings
9845
9846 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
9847
9848         * src/mcs51/gen.c (genMinus): fixed bug 696436
9849
9850 2003-03-02  Borut Razem <borut.razem AT siol.net>
9851
9852         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
9853
9854 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
9855
9856         * configure.in: test for mkstemp
9857         * sdccconf_in.h: add HAVE_MKSTEMP
9858
9859 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
9860
9861         * device/include/ctype.h: removed warning while using --stack-auto
9862         * device/include/malloc.h: removed warning while using --stack-auto
9863         * device/include/string.h: removed warning while using --stack-auto
9864
9865 2003-02-23  Borut Razem <borut.razem AT siol.net>
9866
9867         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
9868         because NDEBUG is defined (see man assert)
9869         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
9870
9871 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9872
9873         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
9874         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
9875
9876 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9877
9878         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
9879         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
9880
9881 2003-02-18    <johan AT balder>
9882
9883         * as/mcs51/asmain.c (asmbl): module can start with a digit
9884         * as/z80/asmain.c (asmbl): module can start with a digit
9885
9886 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
9887
9888         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
9889         * src/asm.c: fix pipe() for Mingw32
9890
9891 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
9892
9893         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
9894         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
9895         make -V work again; --c1mode reads now from stdin
9896         * doc/sdccman.lyx: added --c1mode
9897         * support/Util/SDCCerr.c: new messages for c1 mode
9898         * support/Util/SDCCerr.h: new messages for c1 mode
9899         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
9900
9901 2003-02-15    <johan AT balder>
9902
9903         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
9904
9905 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
9906
9907         * doc/sdccman.lyx: Environment variables, -o and other minor things
9908
9909 2003-02-14    <johan AT balder>
9910
9911         * src/xa51/main.c: before anyone really tries to use it :)
9912
9913         * Install doc's in share/sdcc/doc
9914         * removed some obsolete files
9915         * Do a proper make distclean and uninstall
9916         M Makefile.common.in
9917         R sdccbuild.sh
9918         M as/Makefile
9919         M device/include/Makefile.in
9920         M device/lib/Makefile.in
9921         M doc/sdccman.lyx
9922         M link/Makefile
9923         M sim/ucsim/doc/Makefile.in
9924         M src/clean.mk
9925         R src/avr/peeph.rul
9926         R src/xa51/peeph.rul
9927         M support/cpp2/Makefile.in
9928         M support/makebin/Makefile
9929
9930
9931 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
9932
9933         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
9934
9935 2003-02-10  Borut Razem <borut.razem AT siol.net>
9936
9937         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
9938         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
9939         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
9940         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
9941         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
9942         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
9943         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
9944         src/z80/Makefile.bcc: Borland Makefile cleanup
9945         * as/z80/Makefile.bcc: Added Borland Makefile
9946         * support/cpp2/borland.h: Removed
9947
9948 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
9949
9950         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
9951         * src/SDCC.lex: new pragma NOIV
9952         * src/SDCCglobl.h: new pragma NOIV
9953         * src/SDCCmem.c: new pragma NOIV
9954
9955 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9956
9957         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
9958
9959 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9960
9961         * src/SDCCmain.c: signal handling is switched off by --debug
9962         * doc/Makefile: small fix for install; use clean.mk again
9963         * doc/clean.mk: clean *.pdf and *.html too
9964
9965 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
9966
9967         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
9968         * device/lib/printfl.c: fix a ds390 bug by making it portable
9969         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
9970         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
9971         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
9972         * debugger/mcs51/cmd.c: converted multi-line string literals
9973         * sim/ucsim/globals.cc: converted multi-line string literals
9974         * src/SDCCmain.c: introduced signal handler to remove temp files
9975         * doc/Makefile: small tweaks, implement clean
9976         * doc: removed generated files
9977
9978 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9979
9980         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
9981         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
9982         Address Record is not correctly generated for DS390."
9983
9984 2003-02-02  Borut Razem <borut.razem AT siol.net>
9985
9986         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
9987         * as/mcs51/asm.h: fixed compilation with Borland C
9988         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
9989         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
9990         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
9991         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
9992         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
9993         src/z80/Makefile.bcc: delete $(LIB) only if exist
9994         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
9995
9996 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
9997
9998         * device/include/malloc.h: introduced NULL
9999         * device/include/string.h: introduced NULL
10000         * device/include/stdlib.h: introduced NULL
10001         * device/lib/_memcpy.c: removed NULL
10002         * device/lib/_strcat.c: removed NULL
10003         * device/lib/_strchr.c: removed NULL
10004         * device/lib/_strcmp.c: removed NULL
10005         * device/lib/_strcpy.c: removed NULL
10006         * device/lib/_strcspn.c: removed NULL
10007         * device/lib/_strlen.c: removed NULL
10008         * device/lib/_strncat.c: removed NULL
10009         * device/lib/_strncmp.c: removed NULL
10010         * device/lib/_strncpy.c: removed NULL
10011         * device/lib/_strpbrk.c: removed NULL
10012         * device/lib/_strrchr.c: removed NULL
10013         * device/lib/_strspn.c: removed NULL
10014         * device/lib/_strstr.c: removed NULL
10015         * device/lib/_strtok.c: removed NULL
10016         * device/lib/malloc.c: removed NULL, include own header
10017
10018 2003-02-02    <johan AT balder>
10019
10020         * 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
10021         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
10022         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
10023         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
10024         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
10025         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
10026
10027 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10028
10029         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
10030         area 'DATA'"
10031
10032 2003-02-01    <johan AT balder>
10033
10034         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
10035
10036 2003-01-31    <johan AT CP255758-A>
10037
10038         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
10039
10040 2003-01-30    <johan AT balder>
10041
10042         * src/SDCCBBlock.c: automatic bug detection
10043         * src/SDCCicode.c: automatic bug detection
10044
10045 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10046
10047         * src/SDCCglobl.h:   now --xram-size 0 works
10048         * src/SDCCmain.c:    now --xram-size 0 works
10049
10050 2003-01-29    <johan AT balder>
10051
10052         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
10053
10054 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10055
10056         * as/mcs51/aslink.h: Added options --xram-size and --code-size
10057         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
10058         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
10059         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
10060         * src/SDCCglobl.h:   Added options --xram-size and --code-size
10061         * src/SDCCmain.c:    Added options --xram-size and --code-size
10062
10063 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
10064
10065         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
10066         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
10067
10068 2003-01-27    <johan AT balder>
10069
10070         * src/SDCC.y: fixed bug #613764
10071
10072 2003-01-26    <johan AT balder>
10073
10074         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
10075         * src/SDCCsymt.h: fixed bug #673374
10076         * src/SDCCglue.c: fixed bug #661910
10077         * src/SDCCast.c: fixed bug #458099 and 673374
10078
10079 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
10080
10081         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
10082         * as/mcs51/strcmpi.h: added
10083         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
10084         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
10085         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
10086         * as/mcs51/assym.c: strcmpi -> as_strcmpi
10087         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
10088         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
10089         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
10090         * as/mcs51/Makefile.aslink: new module strcmpi
10091         * as/mcs51/Makefile.asx8051: new module strcmpi
10092         * as/mcs51/Makefil.bcc: new module strcmpi
10093         * as/mcs51/Makefile.in: new module strcmpi
10094         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
10095
10096 2003-01-26    <johan AT balder>
10097
10098         * src/SDCCglue.c: reverted back to 1.124
10099         * src/SDCCast.c: reverted back to 1.156
10100         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
10101
10102 2003-01-25    <johan AT balder>
10103
10104         * src/SDCCglue.c: A better fix for bug #661910
10105         * src/SDCCast.c: A better fix for bug #661910
10106         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
10107
10108 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
10109
10110         * src/Makefile.in: remove spawn.o
10111         * src/SDCCmain.c: remove spawn.h
10112         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
10113         * src/spawn.c: removed
10114         * src/spawn.h: removed
10115         * support/regression/ports/ds390/spec.mk: link with -r
10116
10117 2003-01-24    <johan AT CP255758-A>
10118
10119         * src/ds390/gen.c (aopOp): fixed bug #667458
10120         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
10121         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
10122         (createIvalCharPtr): an ival doesn't always have a storage class anymore
10123
10124 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
10125
10126         * src/mcs51/peeph.def: better assembler identation by Frieder
10127         * src/mcs51/gen.c: better assembler identation by Frieder
10128
10129 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
10130
10131         * as/z80/string.h: removed for gcc 3.2
10132         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
10133         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
10134
10135 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
10136
10137         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
10138         * src/SDCCpeeph.c (replaceRule): fix bug #663503
10139         * support/regression/Makefile: separate temp files for ports
10140         * support/regression/generate-cases.py: separate temp files for ports
10141         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
10142         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
10143
10144 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
10145
10146         * moved tinitalk to device/examples/ds390
10147
10148 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
10149
10150         * as/mcs51/lkmem.c: rflag is for DS390
10151         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
10152         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
10153                          (linkEdit): move mem- and map-files the same way as ihx-files
10154         * src/z80/main.c (_setDefaultOptions): removed --generic
10155         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
10156         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
10157         * src/pic/glue.c (picglue): --c1mode works again
10158         * src/pic16/glue.c (pic16glue): --c1mode works again
10159         * src/asm.c (printCLine): fix #660034
10160
10161 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
10162
10163         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
10164         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
10165         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
10166         * as/mcs51/lkmem (summary): better fix for sp problem
10167         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
10168         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
10169         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
10170                                               remove --stack-after-data
10171
10172 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
10173
10174         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
10175         * src/SDCCutil.c (join): ugly bug: missing '\0'
10176         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
10177
10178 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
10179
10180         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
10181         * src/port.h: typo
10182         * src/pic/main.c (_asmCmd): gpasm supports -o
10183         * src/z80/main.c: more general macros
10184         * device/lib/Makefile.in: remove intermediate files
10185
10186 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
10187
10188         * .version: Bumped version number to 2.3.3
10189         * src/SDCCBBlock.c: new option -o
10190         * src/SDCCglobl.h: new option -o
10191         * src/SDCCglue.c: new option -o
10192         * src/SDCCmain.c: new option -o
10193         * src/asm.c: new option -o
10194         * src/ds390/main.c: new option -o
10195         * src/pic/glue.c: new option -o
10196         * src/pic/pcode.c: new option -o
10197         * src/pic/ralloc.c: new option -o
10198         * src/pic16/glue.c: new option -o
10199         * src/pic16/pcode.c: new option -o
10200         * src/pic16/ralloc.c: new option -o
10201         * src/z80/main.c: new option -o
10202         * device/lib/Makefile.in: use -o
10203         * support/regression/ports/ds390/spec.mk: use -o
10204         * support/regression/ports/gbz80/spec.mk: use -o
10205         * support/regression/ports/mcs51/spec.mk: use -o
10206         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
10207         * support/regression/ports/z80/spec.mk: use -o
10208         * support/regression/ports/ucz80/spec.mk: use -o
10209         * support/regression/ports/xa51/spec.mk: use -o
10210         * support/regression/fwk/lib/timeout.c: fix usage string
10211
10212 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
10213         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
10214
10215 2003-01-07    <johan AT balder>
10216
10217         * src/SDCCast.c (decorateType): fixed bug #600035
10218
10219 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
10220         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
10221         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
10222         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
10223         * src/pic/pcode.c: outcommented unused variable to remove warnings
10224         * src/pic/ralloc.c: outcommented unused variable to remove warnings
10225
10226 2003-01-06    <karl AT turbobit.com>
10227         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
10228    regression tests.
10229
10230 2003-01-06    <johan AT balder>
10231
10232         * src/SDCCicode.c: fixed array add
10233
10234 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
10235         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
10236         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
10237
10238 2003-01-04    <johan AT balder>
10239
10240         * src/SDCCval.c (getNelements): fixed the initialized array of structures
10241
10242 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10243         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
10244
10245 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
10246         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
10247         * support/regression/tests/bug-524697.c: fit mem usage into 8032
10248
10249 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
10250         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
10251
10252 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
10253         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
10254
10255 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
10256         * src/mcs51/main.c: removed {bindir}{sep} from aslink
10257
10258 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10259
10260     * in \sdcc\as\mcs51\ changed these files in order to create an
10261     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
10262     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
10263     following files to include the previous two files: aslink.dsp,
10264     Makefile.aslink, Makefile.bcc, and Makefile.in.
10265
10266     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
10267     .adb instead of .cdb
10268
10269 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10270
10271         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
10272         value from option --iram-size.
10273
10274 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10275
10276         * \sdcc\as\mcs51\lklist.c: added boundary check before using
10277         dram[] array.
10278
10279 2002-09-18    <wiml AT hhhh.org>
10280
10281         * SDCClrange.h: exposed setFromRange() and setToRange()
10282         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
10283           packRegsForAccUse() (bug 542397)
10284         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
10285           multiple times and emitting the fetch operations more than once
10286           added aopGetUsesAcc() function to allow binary operators to
10287           fetch their operands in the correct order; made genMinus() emit
10288           compact code for X = LITERAL - Y
10289
10290 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10291         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
10292         sprintf() in line 1267.
10293
10294 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10295         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
10296         like ports.
10297
10298 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10299         Changes to aslink (All the changes are marked with 'JCF'):
10300
10301         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
10302         summary().
10303
10304         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
10305         area BSEG.  Also moves, if possible, the DATA area down into the internal
10306         ram so more space is available.
10307
10308         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
10309         sflag.
10310
10311         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
10312         not bytes.  Function summary() which creates a memory usage summary
10313         file with extension .mem.  Reports of overlaping stack and small stack
10314         size.  If the space for the stack is less than 16 bytes aslink trows a
10315         warning.
10316
10317         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
10318         the 8051.  Option 'y' for memory summary output file.
10319
10320         Changes to sdcc (All the changes are marked with 'JCF'):
10321
10322         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
10323
10324         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
10325         overlaying area for it (uses RegBankUsed[4]).
10326
10327         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
10328         bank zero as used by default.  By default aslink locates the stack
10329         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
10330         the creation of the .mem file.  Delegates the allocation of data area
10331         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
10332         the begining of the stack area to aslink.
10333
10334         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
10335         glue() in SDCCglue.c creates an area for it.
10336
10337 2002-09-03  Borut Razem <borut.razem AT siol.net>
10338         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
10339         sdcc/src/pic/glue.c:
10340         introduced atexit() handler for teporay files removal in case of
10341         errors, assertions, ...
10342
10343 2002-08-29  Borut Razem <borut.razem AT siol.net>
10344         * sdcc/support/cpp2/auto-host_vc_in.h:
10345         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
10346         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
10347         Maybe there is a similar problem with BORLANDC? It should be checked!
10348
10349         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
10350         corrected improper use of assert: the assignment to clr variable was done inside the assert.
10351         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
10352         was not executed, and the compiler (cl) launched a warning:
10353         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
10354
10355 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
10356         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
10357
10358 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
10359         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
10360
10361         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10362           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
10363           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
10364           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10365           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
10366           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
10367           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
10368         - added Release configuration in VS projects
10369         - review of compiler an linker options
10370         - VC .exe files are generated in bin_vc directory, not to interfere
10371           with binaries generated from other projects (cygwin, mingw, bcc ...)
10372
10373         * sdcc/src/yacc.dsp: added
10374
10375         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
10376         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
10377         and insert the version number definitions from .version
10378
10379         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
10380
10381         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
10382         added - genarate auto-host.h using auto-host_vc_in.h as template
10383
10384         * sdcc/sdcc_vc.h,
10385         removed from CVS, generated automatically
10386
10387 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
10388         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
10389
10390 2002-08-11  Borut Razem <borut.razem AT siol.net>
10391         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
10392
10393 2002-08-10  Borut Razem <borut.razem AT siol.net>
10394         * src/SDCCmain.c (main):
10395         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
10396         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
10397         The consequence was that some temporary files were not removed.
10398
10399         * src/SDCCglue.c:
10400         unification of code in functions tempfilename() and tempfile():
10401         function tempnam() is defined in Visual Studio 6.0 and .NET
10402
10403         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
10404
10405         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10406           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
10407         - removed compiler command line option /WX: Treats all warnings as errors
10408         - update a list of source files, included into the project
10409
10410         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10411           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
10412         changed project type to Generic Project so that can be correcly converted to VS.NET project
10413
10414         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
10415
10416         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
10417
10418         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
10419
10420         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
10421         added return 0 statements after assert() to make compiler happy
10422
10423         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
10424         added newline in the def file to keep MSC compiler satisfied
10425
10426         * sdcc/src/z80/gen.c:
10427         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
10428           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
10429         - solved MSC error in function aopDump()
10430
10431         * sdcc_vc.h: define PREFIX as "\\sdcc"
10432
10433 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
10434         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
10435
10436 2002-06-22  Scott Dattalo <scott AT dattalo.com>
10437         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
10438         - Rewrote the register banking algorithm.
10439         - Added pCode live-range analysis to registers (for now, only non-used and
10440         singly-used registers optimized away)
10441
10442         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
10443
10444         * 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.
10445
10446 2002-05-10  Scott Dattalo <scott AT dattalo.com>
10447         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
10448
10449 2002-04-22  Michael Hope  <michaelh AT vroom>
10450
10451         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
10452
10453         * configure.in (DD_COPT): Added include support required for gbdk.
10454
10455         * .version: Bumped version number just to increase it.
10456
10457         * src/SDCCmain.c: Added -nostdinc to the default options.
10458
10459 2002-04-15  Michael Hope  <michaelh AT vroom>
10460
10461         * device/lib/z80/printf.c (sprintf): Added.
10462
10463         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
10464
10465         * src/z80/peeph.def: Added transpose redundent load rule.
10466
10467         * src/z80/main.c: Added force callee saves for jaune.
10468
10469         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
10470
10471         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
10472
10473 2002-03-28  Johan Knol  <johan AT balder>
10474
10475         * src/SDCCval.c: fixed bug #532436
10476
10477 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10478         * /src/port.h:
10479         Added "char *Processor" field to the port structure.
10480
10481         * /src/SDCCmain.c:
10482         Added -p option. Allows port dependent processor to be specified.
10483
10484         * all ports:
10485         Initialized the new field char *Processor field to NULL in all ports
10486
10487         * /src/pic/*:
10488         Compiler generated registers for interrupt context saving
10489         were not getting allocated.
10490
10491 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
10492
10493         * /src/SDCCast.c:
10494         Fixed left shift. Will promote the left side of a left shift
10495         if a) left shifting more than size of operand or b) when assigned
10496         to something size > size of left side
10497
10498 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10499         * src/pic/*
10500         tons of changes. Register allocation has been
10501         rewritten. Added customization for the various PICs. Flow
10502         analysis is restructured. ...
10503
10504         * src/pic/device.h:
10505         Added
10506
10507         * src/pic/device.c:
10508         Added. device.c is a PIC port hack to accomodate variations
10509         in PIC devices.
10510
10511 2002-03-13  Michael Hope  <michaelh AT vroom>
10512
10513         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
10514
10515 2002-03-04  johanknol  <johanknol AT manik>
10516
10517         * /src/SDCCval.c: fixed
10518
10519         const unsigned char arr[][2] = { { 0, 1 } };
10520         t18.c:1: error: Initializer element is not constant
10521
10522 2002-03-04  bela  <bela AT manik>
10523
10524         * /device/include/mcs51reg.h:
10525         ds89c420 register definition update
10526
10527 2002-03-03    <johan AT FRIJA>
10528
10529         * support/Util/SDCCerr.c: did something, but don't no why anymore
10530
10531         * support/regression/tests/bug-524691.c: made it a little less shy
10532
10533         * src/SDCCast.c (decorateType): fixed bug #524697
10534
10535         * src/SDCCast.c: made some lineno improvements
10536
10537         * src/SDCCval.c (getNelements): changed warning to error
10538
10539         * src/SDCCglue.c (printIvalArray): changed warning to error
10540
10541         * src/SDCCicode.c: fixed a warning for mingw
10542
10543         * src/SDCCast.c (decorateType): fixed the << promotion for ops
10544
10545         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
10546
10547 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
10548
10549         * src/ds390/peeph.def:
10550         Added some more peephole rules
10551
10552         * src/ds390/gen.c: Various fixes & enhancements
10553
10554         * src/SDCClrange.c, src/SDCClrange.h:
10555         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
10556
10557         * src/ds390/ralloc.c:
10558         various fixes & enhancements (ds390) specific
10559
10560         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
10561         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
10562         from rallocs.
10563
10564         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
10565
10566 2002-03-02    <johan AT FRIJA>
10567
10568         * src/SDCCast.c (decorateType): fixed bug #524708
10569
10570         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
10571
10572         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
10573
10574 2002-03-01  Michael Hope  <michaelh AT vroom>
10575
10576         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
10577
10578         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
10579
10580 2002-03-01    <johan AT FRIJA>
10581
10582         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
10583
10584         * src/SDCCast.c (decorateType): fixed bug #524209
10585
10586         * src/SDCCval.c (valNot): fixed bug #524195
10587
10588 2002-02-26    <johan AT balder>
10589
10590         * src/xa51/gen.c: fixed a warning
10591
10592         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
10593
10594         * src/SDCCast.c (decorateType): fixed bug #522534
10595
10596 2002-02-23    <johan AT balder>
10597
10598         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
10599
10600 2002-02-22    <johan AT balder>
10601
10602         * src/SDCCast.c: fixed bug #514865
10603
10604         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
10605
10606 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
10607
10608         * sdcc/src/SDCCloop.c:
10609         Previous fix was not good. basic blocks that have "break" or "return" are
10610         not really partof a loop , but live ranges used in these blocks should
10611         be live thru the entire loop, so set partOfLoop but don't add them to
10612         loop region
10613
10614 2002-02-21    <johan AT FRIJA>
10615
10616         * src/SDCCcse.c: fixed bug #514308
10617
10618 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
10619
10620         * src/SDCCloop.c:
10621         Fixed BUG #519583. If a conditional block ended in a return/break
10622         statement inside a loop, it was not being considered part of the loop.
10623
10624         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
10625
10626 2002-02-10  Karl Bongers <karl AT turbobit.com>
10627
10628         * debugger/*:
10629         Fixed up SDCDB debugger somewhat.  Updated debugger/README
10630         with lots of comments and notes.
10631
10632         * device/examples/test2.c:
10633         Fix bug, "red" variable not being initialized(compiler complained).
10634
10635         * device/examples/Makefile, examples/test3.c:
10636         Add Makefile in device/examples folder, compiles test3.c
10637         for use as a multiple module SDCDB test case.
10638
10639         * sim/ucsim/cmd.src/cmdset.cc:
10640         Took out debug printfs in ucsim "next" command.
10641
10642         * sim/ucsim/xa.src:
10643         Karl and Johan start ucsim XA support.  Most dissassembly working,
10644         about 75% emulation done(plenty of work remaining).
10645
10646         * sim/ucsim/z80.src:
10647         Add Z80 support to ucsim, add test-ucz80 regression test,
10648         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
10649         Notice z80 compiler fails on examples/test3.c/crc code.
10650
10651 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
10652
10653         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
10654         Added support for --parms-in-bank1
10655
10656         * src/ds390/peeph.def:
10657         added a few more peephole optimzations
10658
10659         * src/ds390/main.c:
10660         1) added __builtin_inp & __builtin_outp used to read in data of given length
10661            from a memory mapped port
10662         2) added __builtin_memcmp
10663         3) added __builtin_swapw swap bytes of a short
10664
10665         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
10666         1) handle multiple send & receives from register bank1
10667         2) ralloc can now allocate DPTR1 to some liveRanges
10668
10669         * src/SDCCsymt.c, src/SDCCsymt.h:
10670         changes to handle multiple sends & receives
10671
10672         * src/SDCCptropt.h:
10673         added some pointer arithmetic optimization
10674
10675         * src/SDCCptropt.c:
10676         added some pointer arithmetic optimizations but not stable yet so not
10677         called from anywhere (will get this working shortly)
10678
10679         * src/SDCCopt.c: fixed for multiple sends & receives
10680
10681         * src/SDCCmain.c:
10682         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
10683         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
10684            set preprocessor defines (depending on options)
10685
10686         * src/SDCCicode.c, src/SDCCicode.h:
10687         changes made to handle multiple sends & receives
10688
10689         * src/SDCCglobl.h:
10690         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
10691
10692         * src/SDCCcse.c, src/SDCCcse.h:
10693         added function findbackward def (to be used in upcoming optimization)
10694
10695         * src/SDCCcflow.c, src/SDCCcflow.h:
10696         added function returnAtEnd - to determine if a basic block terminates with
10697         a RETURN iCode
10698
10699         * src/SDCCast.c, src/SDCCast.h:
10700         added option parms-in-bank1
10701
10702         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
10703         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
10704         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
10705         adjusted for --parms-in-bank1 option
10706
10707         * device/include/string.h:
10708         donot redefine "reentrant" keyword
10709
10710         * device/include/ds80c390.h: Added some more SFRs
10711
10712 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
10713
10714         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
10715
10716 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
10717
10718         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
10719
10720 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
10721
10722         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
10723
10724 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
10725
10726         * Added --xram-movc option
10727
10728 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
10729
10730         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
10731
10732 2002-01-11  Johan Knol
10733
10734         * Added math lib of Jesus Calvino-Fraga
10735
10736 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
10737
10738         * src/SDCCmain.c (processFile): fix processing of ../../src.c
10739         * support/regression/Makefile: new target test-mcs51-stack-auto
10740         * support/regression/ports/mcs51-stack-auto/spec.mk: added
10741
10742 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10743
10744         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
10745
10746 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10747
10748         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
10749
10750 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
10751
10752         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
10753
10754         * src/SDCCglue.h: add definition for printIvalChar()
10755
10756 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10757
10758         * src/SDCCast.c: fix #498138 by Johan
10759
10760         * src/SDCCglue.c: fix #498138 by Johan
10761
10762 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10763
10764         * support/regression/Makefile: fix clean
10765
10766         * support/regression/ports/ds390/support.c: fix transmission of last character
10767
10768 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
10769
10770         * /sdcc/src/ds390/gen.c:
10771         a) improved computing address of stack variable
10772         b) took out some #if 0 code
10773         c) improved parmBytes adjustment
10774         d) improved genPlusIncr & genMinusIncr
10775         e) genCmp could generate bad code (when left assigned to DPTR)
10776         f) Fixed bug in hasInc
10777
10778         * /sdcc/src/ds390/ralloc.c:
10779         a) packRegsForSupport could mess up live information (Fixed)
10780         b) packRegsDPTRuse could be incorrect for left & right shift
10781
10782         * /sdcc/src/mcs51/ralloc.c:
10783         packRegsForSupport could mess up the live information (Fixed)
10784
10785         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
10786
10787         * /sdcc/src/SDCCast.c:
10788         can reverse a loop even if function call is present as long
10789         as the loop control variable is local & is not passed as parameter
10790
10791 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10792
10793         * /sdcc/ChangeLog: *** empty log message ***
10794
10795         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
10796         More builtin function additions for TININative
10797
10798         * /sdcc/src/ds390/ralloc.c:
10799         Had broken the regression testsuite
10800
10801         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
10802
10803         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
10804         Added funcattr hasStackParms will be set for reentrant functions when there
10805         are paramteres on the stack, this helps in minimizing frame pointer generation
10806         typeFromStr can handle function pointers now
10807
10808         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
10809         *** empty log message ***
10810
10811 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10812
10813         * /src/ds390/gen.c, /src/ds390/main.c:
10814         More builtin function additions for TININative
10815
10816         * /src/ds390/ralloc.c:
10817         Had broken the regression testsuite
10818
10819         * /src/SDCCast.c: Fixed a bug in dumptree
10820
10821         * /src/SDCCsymt.c, /src/SDCCsymt.h:
10822         Added funcattr hasStackParms will be set for reentrant functions when there
10823         are paramteres on the stack, this helps in minimizing frame pointer generation
10824         typeFromStr can handle function pointers now
10825
10826         * /doc/builtins.txt, /doc/TININative.txt:
10827         *** empty log message ***
10828
10829
10830 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10831
10832         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
10833         ALPHA version for -mTININative
10834
10835         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
10836         updated to reflect changes in the port structure
10837
10838         * /src/port.h:
10839         added function do_assemble (similar to do_link) if non-null this function
10840         will be called to do assembly (-mTININative) requires a multi command
10841         assembly
10842         added function genAssemblerEnd will be called to generate assembler Epilogue
10843
10844         * /src/SDCCsymt.c:
10845         added _JavaNative to debug info printing
10846
10847         * /src/SDCCmain.c: added option --tini-libid
10848         added port->do_assemble function (-mTININative) has a multi command assemble
10849
10850         * /src/SDCCglue.c: Disabled "constExpr" check
10851         added port->genAssemblerEnd function
10852
10853         * /src/SDCCglobl.h: Added option --tini-libid value
10854
10855         * /src/SDCCast.h:
10856         tookout optimizeCompare from the header (has no external references)
10857
10858         * /src/SDCCast.c: made one more function "static"
10859
10860 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
10861
10862         * src/z80/mappings.i: Added z80asm support.
10863
10864         * src/z80/main.c: Added z80asm support on --asm=z80asm
10865
10866         * src/z80/gen.c: Fixed asm portability issues.
10867
10868         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
10869
10870         * src/SDCCglue.c (printExterns): Added global/extern split.
10871
10872 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
10873
10874         * support/regression/Makefile: added test for mcs51 model large
10875
10876         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
10877
10878         * support/regression/ports/gbz80/spec.mk: added -mgbz80
10879
10880 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
10881
10882         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
10883
10884 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
10885
10886         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
10887
10888         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
10889
10890 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
10891
10892         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
10893
10894         * support/regression/tests/simplefloat.c: Port to mcs51.
10895
10896 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
10897         * support/regression/tests/bug-485362.c: Added.
10898
10899         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
10900
10901         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
10902
10903         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
10904
10905         * src/z80/gen.c (aopDump): Added a dump function.
10906
10907 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
10908         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
10909
10910         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
10911
10912         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
10913
10914         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
10915
10916         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
10917
10918         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
10919
10920         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
10921
10922         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
10923
10924         * support/regression/ports/ds390/support.c: Use tinibios.
10925
10926         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
10927
10928 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
10929
10930         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
10931         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
10932
10933         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
10934
10935         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
10936
10937 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
10938
10939         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
10940
10941         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
10942         (packRegsForIYUse): Created and optimised.
10943
10944 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10945
10946         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
10947 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
10948
10949         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
10950
10951         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
10952
10953         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
10954
10955 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10956
10957         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
10958
10959         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
10960
10961 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10962
10963         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
10964
10965         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
10966
10967         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
10968
10969 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10970
10971         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
10972         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
10973         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
10974
10975         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
10976
10977         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
10978         (genNotFloat): Added.
10979         (genUminusFloat): Added.
10980
10981         * device/lib/z80/Makefile: Added floating pt stubs.
10982
10983         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
10984
10985         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
10986
10987         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
10988
10989 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10990
10991         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
10992
10993         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
10994
10995         * sdcc/support/regression/Makefile: Add port ds390.
10996
10997         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
10998
10999         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
11000
11001         * sdcc/support/regression/ports/ds390/spec.mk: Added.
11002
11003         * sdcc/support/regression/ports/ds390/support.c: Added.
11004
11005         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
11006
11007         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
11008
11009         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
11010
11011 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
11012
11013         * device/include/malloc.h: Added z80 and gbz80 support.
11014
11015         * device/lib/gbz80/heap.s: Added.
11016
11017         * device/lib/z80/heap.s: Added.
11018
11019         * device/lib/malloc.c: Added z80 and gbz80 support.
11020
11021         * support/regression/tests/malloc.c (testMalloc): Added.
11022
11023         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
11024
11025         * support/regression/tests/bug-478094.c: Added.
11026
11027         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
11028
11029 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
11030
11031         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
11032
11033         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
11034
11035         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
11036
11037         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
11038
11039         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
11040
11041 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
11042
11043         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
11044
11045 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
11046
11047         * support/regression/tests/bug-477927.c: Added.
11048
11049         * src/z80/peeph.def: Added minor rules.
11050
11051         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
11052
11053         * src/z80/peeph.def: Added jump optimisation modification.
11054
11055 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
11056
11057         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
11058
11059 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
11060
11061         * support/regression/tests/funptrs.c: Added.
11062
11063 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
11064
11065         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
11066
11067 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
11068
11069         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
11070
11071         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
11072
11073         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
11074         (movLeft2ResultLong): Created.
11075
11076         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
11077         (joinPushes): Added.  Joins two char pushes into a word push.
11078
11079 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
11080
11081         * support/cpp2/Makefile.in (install): Added creation of dest dir.
11082
11083         * support/makebin/Makefile (install): Added creation of dest dir.
11084
11085 2001-10-24 Karl Bongers <karl AT turbobit.com>
11086
11087         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
11088
11089 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
11090
11091         * src/z80/ralloc.c: Turned off faulty pack for one use.
11092
11093         * src/z80/peeph-gbz80.def: Removed redundent restart options.
11094
11095         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
11096
11097 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
11098
11099         * support/regression/Makefile: Improved clean
11100
11101         * support/regression/ports/gbz80/spec.mk: Added clean
11102
11103         * support/regression/ports/host/spec.mk: Added clean
11104
11105         * support/regression/ports/z80/spec.mk: Added clean
11106
11107         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
11108
11109         * support/regression/ports/mcs51/timeout.c: little improvements
11110
11111 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
11112
11113         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
11114
11115         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
11116
11117         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
11118
11119 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
11120
11121         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
11122
11123         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
11124
11125 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
11126         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
11127
11128         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
11129
11130         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
11131
11132         * src/mcs51/main.c (_linkCmd): Added bin path to command.
11133
11134         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
11135
11136         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
11137
11138         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
11139
11140         * support/regression/tests/longor.c: Added.
11141
11142 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
11143
11144         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
11145
11146         * as/mcs51/aslink.h: define PATH_MAX
11147
11148         * as/mcs51/asm.h: define PATH_MAX
11149
11150         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
11151
11152         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
11153
11154         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
11155
11156         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
11157
11158         * src/SDCCglobl.h: define PATH_MAX
11159
11160         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
11161
11162         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
11163
11164 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
11165
11166         * src/z80/gen.c (gencjneshort): Fixed
11167
11168         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
11169
11170 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
11171
11172         * support/regression/tests/bug-469671.c: Added.
11173
11174         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
11175
11176 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
11177
11178         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
11179
11180         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
11181
11182 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
11183
11184         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
11185
11186         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
11187
11188         * src/device/lib/_mullong.c : removed hint: nooverlay bug
11189
11190         * src/device/lib/_divuint.c : removed hint: nooverlay bug
11191
11192         * src/device/lib/_divulong.c: removed hint: nooverlay bug
11193
11194         * src/device/lib/_moduint.c : removed hint: nooverlay bug
11195
11196         * src/device/lib/_modulong.c: removed hint: nooverlay bug
11197
11198 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
11199
11200         * 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.
11201
11202         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
11203
11204         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
11205
11206 2001-10-07    <johan AT FRIJA>
11207
11208         * device/lib/gets.c (gets): fixed the return value.
11209
11210 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
11211         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
11212
11213         * 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.
11214
11215         * 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.
11216
11217         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
11218
11219         * src/pic/gen.c: Removed Safe_strdup.
11220
11221         * configure.in: Added option to enable libgc support.
11222
11223         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
11224         (bitVectUnion): Optimised.
11225         (bitVectIntersect): Optimised.
11226         (bitVectBitsInCommon): Optimised.
11227         (bitVectCplAnd): Optimised.
11228
11229         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
11230
11231 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11232
11233         * src/SDCCmain.c: distinguish between assembler debug and plain options
11234
11235         * src/avr/main.c:   remove standard assembler options
11236
11237         * src/ds390/main.c: remove standard assembler options
11238
11239         * src/mcs51/main.c: remove standard assembler options
11240
11241         * src/port.h: removed "PENDING" comment
11242
11243 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11244
11245         * src/device/lib/_mulint.c  : new, with assember functions
11246
11247         * src/device/lib/_mullong.c : new, with assember functions
11248
11249         * src/device/lib/_divuint.c : with assember functions
11250
11251         * src/device/lib/_divsint.c : with assember functions
11252
11253         * src/device/lib/_divulong.c: with assember functions
11254
11255         * src/device/lib/_divslong.c: with assember functions
11256
11257         * src/device/lib/_moduint.c : with assember functions
11258
11259         * src/device/lib/_modsint.c : with assember functions
11260
11261         * src/device/lib/_modulong.c: with assember functions
11262
11263         * src/device/lib/_modslong.c: with assember functions
11264
11265         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
11266
11267         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
11268
11269         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
11270                                       replaced _mululong.c and _mulslong.c by _mullong.c
11271
11272 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11273
11274         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
11275
11276 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
11277
11278         * src/SDCCglue.c: test, if win32api is available for MINGW
11279
11280 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
11281
11282         * src/SDCCsymt.c: no more _modifier in printTypeChain()
11283         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
11284         * support/regression/ports/gbz80/spec.mk: removed GENERIC
11285         * support/regression/ports/host/spec.mk: removed GENERIC
11286         * support/regression/ports/mcs51/spec.mk: removed GENERIC
11287         * support/regression/ports/z80/spec.mk: removed GENERIC
11288
11289 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
11290
11291         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
11292
11293         * support/regression/tests/bug-467035.c: Created.
11294
11295 2001-10-01    <johan AT FRIJA>
11296
11297         * src/SDCC.y: fixed bug #466586 part 1
11298
11299 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
11300
11301         * SDCCicode.c: z80 has no generic pointers
11302         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
11303
11304 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
11305
11306         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
11307
11308 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
11309
11310         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
11311
11312         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
11313
11314 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
11315
11316         * configure.in: Fixed up so that ucsim is only configured once.
11317
11318         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
11319
11320         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
11321         (getPathDifference): As above.
11322
11323         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
11324
11325         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
11326
11327 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
11328         * .version: Updated to 2.3.1
11329
11330         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
11331         Added copyright header.
11332
11333         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
11334         (assemble): Added support for macro based assembler commands.
11335         (linkEdit): Added support for macro based linker commands.
11336         (preProcess): Changed the pre-processor to use macros.
11337         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
11338         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
11339
11340         * device/lib/z80/crt0.s: Added module name for debugging.
11341
11342 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
11343
11344         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11345
11346         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
11347
11348         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
11349
11350         * src/Makefile.in: Added SDCCmacro and SDCCutil
11351
11352 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
11353
11354         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11355
11356 2001-09-16    <johan AT FRIJA>
11357
11358         * 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.
11359
11360 2001-09-15    <johan AT FRIJA>
11361
11362         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
11363         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
11364
11365 2001-09-11    <johan AT FRIJA>
11366
11367         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
11368
11369 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
11370
11371         * support/regression/tests/bug-460444.c: Added test case.
11372
11373         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
11374         (genCast): Added justification for all of the asserts.
11375
11376 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
11377
11378         * support/regression/support.c: _xdata replaced by xdata
11379
11380         * support/regression/spec.mk: removed _generic
11381
11382 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
11383
11384         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
11385
11386         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
11387         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
11388
11389         * src/z80/peeph.def: Added a rule to optimise shift then compare.
11390
11391         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
11392
11393         * support/regression/tests/bug-460010.c: Added test case.
11394
11395         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
11396
11397 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
11398
11399         * support/regression/Makefile: inter-port-clean adjusted for mcs51
11400
11401         * support/regression/testfwk.c: removed workaround for bug #436344
11402
11403         * support/regression/tests/bp.c: use less memory with mcs51
11404
11405         * support/regression/tests/bug-441448.c: use less memory
11406
11407         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
11408
11409         * support/regression/collate-results.py: typo
11410
11411 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
11412
11413         * support/regression/tests/fetchoverlap.c: Added new test case.
11414
11415         * support/regression/tests/bp.c: Added new test case.
11416
11417         * support/regression/tests/bug-448984.c: Added new test case.
11418
11419         * support/regression/tests/pow2shifts.c: Added new test case.
11420
11421         * src/z80/gen.c: Turned off the noise it normally generates for the release.
11422         (genlshTwo): Fixed right shift for count > 8.
11423
11424         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
11425
11426 2001-09-08    <johan AT FRIJA>
11427
11428         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
11429
11430 2001-09-07    <johan AT FRIJA>
11431
11432         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
11433
11434         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
11435
11436 2001-09-06    <johan AT FRIJA>
11437
11438         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
11439         * bernhard noted me at this: "() equals to (void)" (1.38)
11440
11441 2001-09-05    <johan AT FRIJA>
11442
11443         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
11444
11445 2001-09-04    <johan AT FRIJA>
11446
11447         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
11448
11449
11450 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
11451
11452         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
11453
11454 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
11455
11456         * link/z80/aslink.h: Fixed path for PATH_MAX
11457
11458 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
11459
11460         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
11461
11462         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
11463
11464         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
11465
11466         * 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.
11467
11468 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
11469
11470         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
11471         (genCmp): Fixed up genCmp for the GB with longs.
11472
11473         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
11474
11475         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
11476
11477         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
11478
11479         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
11480
11481 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
11482
11483         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
11484
11485 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
11486
11487         * 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.
11488
11489         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
11490
11491 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
11492
11493         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
11494
11495         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
11496
11497 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
11498
11499   * sim/ucsim/configure:    little improvement of Cygwin-detection
11500   * sim/ucsim/configure.in: little improvement of Cygwin-detection
11501   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
11502   * support/regression/tests/bug-221100.c: small changes for mcs51
11503   * support/regression/tests/bug-221168.c: small changes for mcs51
11504   * support/regression/tests/bug-227710.c: small changes for mcs51
11505   * support/regression/tests/staticinit.c: small changes for mcs51
11506   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
11507   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11508   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11509
11510 $Revision$