* src/SDCCmain.c: fixed --help
[fw/sdcc] / ChangeLog
1 2006-05-30 Maarten Brock <sourceforge.brock AT dse.nl>
2
3         * src/SDCCmain.c (optionsTable, parseCmdLine): handle --use-stdout
4           immediately when encountered,
5           (printUsage): always use stderr even on windows
6
7 2006-05-30 Bernhard Held <bernhard AT bernhardheld.de>
8
9         * src/SDCCast.c (isLoopCountable): fixed bug #1478316
10         (processParms): fixed bug #1247551
11         * src/SDCCmain.c (printVersionInfo, printOptions, printUsage,
12         parseCmdLine, main): print '--version' to stdout,
13         print 'help' to stdout if --help is given,
14         print 'help' to stderr and exit with EXIT_FAILURE if no or bad
15         arguments are given; fixed --help
16
17 2006-05-27 Bernhard Held <bernhard AT bernhardheld.de>
18
19         * src/SDCCcse.c (findPointerSet): fixed bug #1493710
20         * support/regression/tests/bug-1493710.c: added
21
22 2006-05-27 Borut Razem <borut.razem AT siol.net>
23
24         * support/regression/fwk/lib/testfwk.c: define array in _printn() as
25           static instead auto
26         * support/regression/ports/pic16/support.c: increase stack size
27           from default 64 bytes to 128 bytes
28         * support/regression/tests/staticinit.c,
29           support/regression/tests/float.c: regression tests fully enabled
30           for pic16 port by putting the initialized data arrays into the code
31           section
32         * support/regression/ports/pic16/spec.mk: don't link default libraries.
33           This was changed by mistake in the previous version.
34
35 2006-05-28 Vangelis Rokas <vrokas AT users.sourceforge.net>
36
37         * src/pic16/gen.c (genFunction, genEndFunction): some
38         beautifications, fixed bug with falsely restoring FSR2 in large
39         stack model, thanks to Beau E. Cox for reporting the bug
40
41 2006-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
42
43         * debugger/mcs51/break.c,
44         * debugger/mcs51/cmd.c (throughout): removed unused variables and labels,
45           use %p to print pointers, made address variables unsigned
46         * debugger/mcs51/cmd.c (infoSymbols): added missing parameter to printf
47         * debugger/mcs51/symtab.c (parseSymbol): must return something
48         * src/mcs51/gen.c (aopForSym): small optimization,
49            moved declarations mcs51_ptrRegReq and mcs51_nRegs to ralloc.h,
50           (freeAsmop): added missing break,
51           (aopPut): removed parameter bvolatile, determine it inside the function,
52           (saveRegisters, unsaveRegisters): small optimization,
53           (genIpush): removed pointless check,
54           (throughout): replaced Safe_calloc, strcpy with Safe_strdup,
55           replaced sprintf with SNPRINTF,
56           replaced strcpy with strncpyz,
57           updated aopPut calls,
58           replaced D(emitcode("; genXXX", "")) with D(emitcode(";", "genXXX"))
59         * src/mcs51/ralloc.h:  added declarations mcs51_ptrRegReq and mcs51_nRegs
60
61 2006-05-24 Borut Razem <borut.razem AT siol.net>
62
63         * support/regression/tests/bug-221100.c: fixed xdata problem caused by
64           modification of test for the pic16 port, put the array to the code
65           memory for pic16port; thanks to Maarten Brock and Frieder Ferlemann
66
67 2006-05-23 Jesus Calvino-Fraga <jesusc at ece.ubc.ca>
68
69         * src/pic/gen.c: MSC 6 does not have <stdint.h>.  Use pstdint.h instead.
70         * support/Util/pstdint.h: added
71
72 2006-05-22 Borut Razem <borut.razem AT siol.net>
73
74         * src/regression/Makefile: removed bool2.c test, added -q linker option
75         * src/regression/add2.c, src/regression/add3.c, src/regression/bool1.c,
76           src/regression/bool3.c, src/regression/nestfor.c, src/regression/ptrfunc.c,
77           src/regression/compare.c, src/regression/or1.c, src/regression/compare2.c,
78           src/regression/while.c, src/regression/compare3.c, src/regression/compare4.c,
79           src/regression/compare5.c, src/regression/sub2.c, src/regression/rotate1.c,
80           src/regression/rotate2.c, src/regression/rotate3.c, src/regression/rotate4.c,
81           src/regression/switch1.c, src/regression/rotate5.c, src/regression/for.c,
82           src/regression/add.c, src/regression/sub.c, src/regression/call1.c:
83           define SUPPORT_BIT_TYPES 0, removed unused bit variables
84
85 2006-05-22 Raphael Neider <rneider AT web.de>
86
87         * src/pic16/gen.c (pic16_storeForReturn): fragile fix for
88           bug #1492360 (problematic due to generic pointers, see code)
89
90 2006-05-22 Borut Razem <borut.razem AT siol.net>
91
92         * support/regression/ports/pic16/specs.mk: removed stack size linker
93           directive
94         * support/regression/tests/array.c,
95           support/regression/tests/bitopcse.c,
96           support/regression/tests/bug-908454.c,
97           support/regression/tests/malloc.c: modified for pic16 regression test
98         * support/regression/tests/bitfields.c:
99           pic16 - excluded bitfileds of size > 8
100         * support/regression/tests/bp.c: pic16 - reduced data size
101         * support/regression/tests/bug-221100.c: pic16 - reduced data size
102         * support/regression/tests/bug-460010.c:
103           pic16 - used the absolute address the fits in memory
104         * support/regression/tests/bug-716242.c:
105           bug [ 1443651 ] pic 16: redefining symbol that cannot be redefined.
106         * support/regression/tests/float.c:
107           pic16 - excluded - data size too big
108         * support/regression/tests/onebyte.c:
109           pic16 - bug [ 1444425 ] onebyte.c regression tes fails on pic16
110         * support/regression/tests/shifts.c:
111           pic16 - function names probably have to differ in first X characters
112           (gpasm limitation?)
113         * support/regression/tests/staticinit.c:
114           pic16 - excluded some tests due error: no target memory available for
115           section ".idata"
116
117 2006-05-22 Borut Razem <borut.razem AT siol.net>
118
119         * support/Util/dbuf.c: fixed bug #1489008 fix dbuf_c_str(),
120           second try. Thanks Stas Sergeev once more.
121
122 2006-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
123
124         * src/hc08/gen.c (transferAopAop): aop forced to stack was not restored,
125           (genLeftShift, genRightShift): fixed bug 1491627
126         * src/hc08/peeph.def (rules 7, 8.x): added
127         * support/regression/tests/shifts.c (ShiftLeftByParam,
128           ShiftRightByParam, testShiftByParam): added to test variable shifting
129
130 2006-05-20 Raphael Neider <rneider AT web.de>
131
132         * src/pic/gen.c (bitpatternFromVal): fixed for 64-bit machines
133         * src/pic16/ralloc.c (newReg): use correct name in hashtable,
134           (allocReg): add only new registers to dynAllocRegs,
135           (pic16_assignRegisters): do not reset dynrIdx, fixes bugs
136             #1489055, #1445850, and probably #1483693
137
138 2006-05-19 Vangelis Rokas <vrokas AT users.sourceforge.net>
139
140         * src/pic16/glue.c (pic16_emitConfigRegs, pic16_emitIDRegs): fixed
141         bug in for-loop that didn't emit the last of CONFIG and ID registers
142
143 2006-05-18 Maarten Brock <sourceforge.brock AT dse.nl>
144
145         * src/mcs51/gen.c (genCodePointerGet): inc dptr instead of loading acc
146           with offset
147         * src/mcs51/peeph.def (186.x): updated and reenabled to fix bugs
148           1489016, 1434401 and 1490124
149         * src/ds390/peeph.def (186.x, 227.x): updated and reenabled to fix bugs
150           1489016, 1434401 and 1490124
151
152 2006-05-17 Borut Razem <borut.razem AT siol.net>
153
154         * support/Util/dbuf.c: fixed bug #1489008 fix dbuf_c_str(),
155           thanks Stas Sergeev
156
157 2006-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
158
159         * device/include/mcs51/P89c51RD2.h,
160         * device/include/mcs51/P89LPC901.h,
161         * device/include/mcs51/P89LPC922.h,
162         * device/include/mcs51/P89LPC932.h: added, thanks Omar Espinosa
163
164 2006-05-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
165
166         * device/lib/pic16/libsdcc/stack/{stack.S, Makefile.in}: add workaround
167         to fix missing stack pragma in compiled binary object file,
168
169 2006-05-14 Bernhard Held <bernhard AT bernhardheld.de>
170
171         * support/packihx/configure.in,
172         * support/packihx/configure: removed warning, autoconf >= 2.5x can
173         determine sizeof basic types even while cross compiling
174
175 2006-05-13 Bernhard Held <bernhard AT bernhardheld.de>
176
177         * src/avr/gen.c (aopop),
178         * src/ds390/gen.c (aopOp),
179         * src/hc08/gen.c (aopOp),
180         * src/mcs51/gen.c (aopop),
181         * src/pic16/gen.c (pic16_aopOp),
182         * src/pic/gen.c (aopOp),
183         * src/z80/gen.c (aopop): fix for bug #1479882; use new, exclusive asmop
184         if size of operand is smaller than spill location
185
186 2006-05-12 Borut Razem <borut.razem AT siol.net>
187
188         * *.dsw, *.dsp: changed property svn:eol-style to CRLF since they
189           have to have CR/LF line endings even if they are checked out on *nix
190           or on WIN32 in cygwin binmode
191
192 2006-05-12 Maarten Brock <sourceforge.brock AT dse.nl>
193
194         * doc/sdccman.lyx: documented numeric ranges, WEBDOC #1442369
195         * device/include/ds80c390.h: added sfr16 definitions
196         * src/ds390/gen.c,
197         * src/ds390/gen.h,
198         * src/ds390/main.c,
199         * src/ds390/ralloc.c,
200         * src/ds390/ralloc.h: changes all over the place to sync with mcs51
201           fixing several bugs and adding sfr16/sfr32, reentrant bit params,
202           bit returning functions
203         * support/regression/tests/sfr16.c: enabled test on ds390
204
205 2006-05-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
206
207         * src/hc08/gen.c (asmopToBool, genIfx): fix for bug #1429722
208         * src/hc08/gen.c (storeRegToAop): fix for bug #1439894
209
210 2006-05-11 Maarten Brock <sourceforge.brock AT dse.nl>
211
212         * sim/ucsim/sim.src/memcl.h: added get_decoder() to cl_address_space
213         * sim/ucsim/sim.src/mem.cc: implemented cl_address_space::get_decoder,
214           (cl_address_space constructor): removed expensive initialization,
215           (cl_address_space::get_cell): extended for late initialization,
216           (cl_address_space::*): use late initialization,
217           (cl_address_decoder::activate): removed expensive initialization,
218           This reduced regression test running time by 25%
219
220 2006-05-11 Bernhard Held <bernhard AT bernhardheld.de>
221
222         * packihx/,
223         * configure.in,
224         * configure,
225         * sdcc.dsw,
226         * Makefile.bcc,
227         * Makefile.in,
228         * support/packihx/Makefile.in,
229         * support/packihx/clean.mk,
230         * support/packihx/Makefile.bcc,
231         * support/packihx/PackIhx.dsp: moved packihx to support/packihx
232
233 2006-05-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
234
235         * src/SDCCval.c (valNot): fix for regression test failure
236           of not.c on big endian hosts
237
238 2006-05-10 Maarten Brock <sourceforge.brock AT dse.nl>
239
240         * device/inlcude/mcs51/msc1210.h: new, added, thanks Philippe Latu
241
242 2006-05-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
243
244         * device/lib/mcs51/Makefile.in: changed string comparison operator
245           to = for POSIX compliance; == is bash extension
246
247 2006-05-10 Maarten Brock <sourceforge.brock AT dse.nl>
248
249         * device/lib/hc08/_mulint.c: applied patch 1485428, thanks
250           kosmonaut_pirx
251
252 2006-05-09 Vangelis Rokas <vrokas AT users.sourceforge.net>
253
254         * src/pic16/gen.c (pic16_freeAsmop): release any temp registers
255         allocated by aopForSym thus fixing bug #1478657 about failed testfwk.c
256         * src/pic16/main.c (_pic16_keywords): added 'sfr16' keyword,
257         * src/pic16/ralloc.c (pic16_allocWithIdx): also a fix for bug exposed by
258         bug report #1478657,
259
260 2006-05-05 Borut Razem <borut.razem AT siol.net>
261
262         * doc/Makefile.in: remove of WARNINGS and labels.pl immediately after
263           making the html
264
265 2006-05-02 Borut Razem <borut.razem AT siol.net>
266
267         * doc/Makefile.in: removed *.ind dependency since there is no rule to
268           create *.ind, which made make to fail if invoked with -j 2
269
270 2006-05-01 Maarten Brock <sourceforge.brock AT dse.nl>
271
272         * src/SDCCglue.c (emitRegularMap): partial fix for bug 1477149, thanks
273           Hubert Sack for patch 1479782
274
275 2006-05-01 Vangelis Rokas <vrokas AT users.sourceforge.net>
276
277         * src/pic16/glue.c (pic16_printIvalStruct): fixed bug #1445929
278
279 2006-05-01 Raphael Neider <rneider AT web.de>
280
281         * src/pic/device.c (sanitise_processor_name): only remove p(ic) prefix,
282           (create_pic): store only prefix-free device name,
283           (init_pic): check for device names with "16" prefix,
284           (list_valid_pics),
285         * src/pic/device.h (struct PIC_device),
286         * src/pic/main.c (_pic14_genAssemblerPreamble): adapted to single
287             stored device name,
288         * device/include/pic/pic12f{635,675,629,683}.h,
289         * device/lib/pic/libdev/pic12f{635,675,629,683}.c: NEW device libraries
290         * device/lib/pic/libdev/Makefile.in: allow pic12* devices,
291         * device/include/pic/pic16f505.h,
292         * device/lib/pic/libdev/pic16f505.c: removed
293         * device/include/pic/pic14devices.txt: added support for pic12f
294             devices, removed unsupported non 16-bit devices
295             [above changes provided by patch from Zik Saleeba]
296         * src/pic/*, src/pic16/*, device/include/pic16/*,
297           device/lib/pic/**, device/lib/pic16/**: obfuscated email address
298
299 2006-05-01 Borut Razem <borut.razem AT siol.net>
300
301         * configure.in, configure, doc/Makefile.in:
302           sync with nightly build makefile - latex, dvipdf and dvips
303           not needed any more
304
305 2006-04-30 Bernhard Held <bernhard AT bernhardheld.de>
306
307         * support/scripts/sdcc.nsi: removed all Readmes and Makefiles
308         in the library source
309
310 2006-04-30 Maarten Brock <sourceforge.brock AT dse.nl>
311
312         * support/regression/ports/hc08/spec.mk: fixed bug 1478892
313
314 2006-04-28 Raphael Neider <rneider AT web.de>
315
316         * src/pic16/pcode.c (pic16_newpCodeOpLit12),
317         * src/pic16/gen.c (pic16_popGetLit12): NEW, create 12 bit literal,
318           (pic16_loadFSR0): handle 12 bit literals correctly, fixes #1440527
319         * src/pic16/pcode.h: added prototype for pic16_newpCodeOpLit12()
320
321 2006-04-28 Bernhard Held <bernhard AT bernhardheld.de>
322
323         * device/lib/pic/libdev/Makefile.in,
324         * device/lib/hc08/Makefile.in,
325         * device/lib/gbz80/Makefile.in,
326         * device/lib/z80/Makefile.in,
327         * device/lib/ds390/Makefile.in,
328         * device/lib/ds400/Makefile.in: added srcdir to include search path,
329         thanks to Borut for the bug report
330         * configure.in,
331         * configure: always create doc/Makefile independent from --enable-doc
332         * Makefile.in: always install from directory doc independent from
333         --enable-doc
334         * device/lib/pic/Makefile.in: added libdev again, it was erroneously
335         removed
336         * device/lib/pic/libdev/Makefile.in: fixed VPATH build
337         * doc/Makefile.in: install *.txt if present
338         * device/include/Makefile.in (install): added installation of pic/*.inc
339         and pic/*.txt files again, they were erroneously removed
340
341 2006-04-28 Raphael Neider <rneider AT web.de>
342
343         * src/pic/{gen.c,main.h,pcode.c},
344         * src/pic16/{gen.c,pcode.c}: quietened compiler warnings
345             concerning signedness with casts
346
347 2006-04-28 Raphael Neider <rneider AT web.de>
348
349         * src/pic/gen.c (genFunction): set global pic14_hasInterrupt on
350             definition of an interrupt handler,
351         * src/pic/glue.c (pic14_emitInterruptHandler): moved output of
352             interrupt handler stuff from picglue() to separate routine,
353           (picglue): enabled definition of intr handlers in files w/o main()
354
355 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
356
357         * support/librarian/sdcclib.c: moved include <limits.h> up to enable
358           compilation with MSVC 2005 Express Edition (VC8)
359
360 2006-04-26 Bernhard Held <bernhard AT bernhardheld.de>
361
362         * device/lib/Makefile: fixed build of gbz80 lib
363
364 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
365
366         * support/regression/tests/bug-460010.c,
367         * support/regression/tests/bug-524691.c,
368         * support/regression/tests/bug-716242.c: removed conditional defines
369           that are already in testfwk.h
370
371 2006-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
372
373         * src/ds390/gen.c (AccAXRrl1, AccAXLrl1): changed to real rotate by 1,
374           (AccAXRsh1): added, shift right by 1,
375           (AccAXLsh, AccAXRsh, AccAXRshS): updated for AccAXRrl1, AccAXRsh1 and
376            AccAXLrl1
377         * support/regression/tests/rotate.c: use <stdint.h> and enabled ds390
378
379 2006-04-25 Bernhard Held <bernhard AT bernhardheld.de>
380
381         * src/SDCCast.c (decorateType): partial fix for RFE 1475769,
382         remove cast to same type
383         * src/SDCCast.c (decorateType): fix for RFE 1475742,
384         optimize 'ifx (op == 0)' resp. 'ifx (op != 0)'
385         * as/z80/Makefile,
386         * link/z80/Makefile: removed, they have moved to
387         Makefile.in files
388         * configure,
389         * configure.in: replaced duplicate message about ucsim by missing sdcpp
390         * install-sh: fix bug #1204398 by setting umask 0022
391         * device/lib/Makefile: separate build of z80 and gbz80 lib
392
393 2006-04-24 Bernhard Held <bernhard AT bernhardheld.de>
394
395         Enabled VPATH feature: changed nearly all Makefiles (149 files).
396         See sdccman.lyx '2.4.10 VPATH feature' about how to use it.
397
398         One basic decision: e.g. src/clean.mk includes further files. In order
399         to make this work there are two solutions:
400         - rename another dozen clean.mk to clean_in.mk, add srcdir to them and
401           run configure on them. This way they can use
402           'include $(srcdir)/port-clean.mk'
403         - always include clean.mk by the Makefile at the same level. To avoid
404           that `make clean` tries to include and build Makefile.dep the
405           MAKECMDGOALS are examined (see e.g. src/Makefile.in). This has been
406           implemented, because now even `make uninstall` doesn't create
407           Makefile.in. clean.mk could be eliminated by pasting it in
408           Makefile.in.
409
410         * debugger/mcs51/Makefile.in: build own objects from library sources
411         (SLIB, SDCC) in current directory
412
413         * configure, configure.in: renamed --disable-device-lib-build in
414         --disable-device-lib; added --enable-doc, the required tools are
415         searched by configure; added result message; the toolchain for the
416         belonging ports are now only built, if the port is enabled.
417
418         * support/regression/*: all output is written in directory gen, because
419         the fwk and ports directories don't livet in the build tree using vpath
420
421         * doc/sdccman.lyx: renamed --disable-device-lib-build to
422         --disable-device-lib, added --enable-doc, added section VPATH
423
424         * sim/ucsim/configure.in,
425         * sim/ucsim/configure.in: hc08 couldn't be disabled, now hc08 and
426         z80 are enabled by default
427
428 2006-04-24 Raphael Neider <rneider AT web.de>
429
430         * src/pic/device.c (pic14_assignConfigWordValue): remember assignments
431             to config word, "pic14_"-prefixed some extern functions
432           (pic14_emitConfigWord): emit __config directive(s) if assignment to
433             config word has been found
434         * src/pic/device.h: added prototypes
435         * src/pic/pcode.c: added "pic14_"-prefix where needed
436         * src/pic/ralloc.c (IS_CONFIG_ADDRESS,pic14_assignRegisters): cosmetic
437             fixup
438         * src/pic/glue.c (pic14_constructAbsMap): handle assignments to config
439             words,
440           (pic14emitRegularMap): ignore config words,
441           (pic14createInterruptVect): moved generating __config directives away
442           (picglue): have __config directives emitted
443
444 2006-04-24 Borut Razem <borut.razem AT siol.net>
445
446         * doc/Makefile: sync with nightly build makefile
447
448 2006-04-24 Raphael Neider <rneider AT web.de>
449
450         * src/pic/pcoderegs.c (OptimizeRegUsage): do not optimize
451             registers that have not been assigned proper liveranges,
452             fixes #1469504 and #1474602,
453           (pCodeRegOptimizeRegUsage): fixed typo in comment
454
455 2006-04-24 Borut Razem <borut.razem AT siol.net>
456
457         * device/examples/main8051.c: deleted - it was removed from CVS
458           24.mar.2000 and after that modified 18.feb.2001, so it reappered
459           after the transition to Subversion
460         * src/SDCCalloc.h: deleted - it was removed  from CVS
461           3.feb.2001 and after that modified 18.feb.2001, so it reappered
462           after the transition to Subversion
463         * sim/ucsim/cpu.gif, sim/ucsim/interrupt.gif, sim/ucsim/new.gif,
464           sim/ucsim/serial1.gif, sim/ucsim/serial2.gif,
465           sim/ucsim/term_cpuopt.gif, sim/ucsim/timers.gif, sim/ucsim/wins.gif,
466           sim/ucsim/post.jpg, sim/ucsim/UCsim.jpg: corrected
467
468 2006-04-22 Maarten Brock <sourceforge.brock AT dse.nl>
469
470         * as/asx8051.dsp: added mcs51/strcmpi.h
471         * as/hc08/as_hc08.dsp: added asm.h, m6808.h, strcmpi.h
472         * as/hc08/aslink.h: updated lnksect prototype
473         * as/hc08/asm.h,
474         * as/mcs51/asm.h: added a_addr to struct area and s_org to struct sym
475         * as/hc08/asmain.c,
476         * as/mcs51/asmain.c (asmbl): init dot.s_org for S_ORG,
477           (newdot): handle A_ABS
478         * as/hc08/asout.c,
479         * as/mcs51/asout.c (outarea): output address
480         * as/hc08/lkaomf51.c,
481         * as/mcs51/lkaomf51.c: disabled unused array UsageType
482         * as/hc08/m08pst.c,
483         * as/mcs51/i51pst.c,
484         * as/z80/z80pst.c: "ABS" is not A_OVR
485         * as/hc08/lkarea.c (newarea): read a_addr,
486           (lnkarea): added codemap array, sort absolute areas to the front,
487            combine all GSINITx/GSFINAL,
488           (find_empty_space, allocate_space): new functions,
489           (lnksect): return next address, handle absolute sections
490         * as/mcs51/lkarea.c (newarea): read a_addr,
491           lnksect2 prototype changed,
492           (lnkarea2): define codemap unsigned, combine all GSINITx/GSFINAL,
493           (find_empty_space, allocate_space): new, factored out of lnksect2,
494           (lnksect2): return next address, handle absolute sections
495         * as/hc08/lkhead.c,
496         * as/mcs51/lkhead.c (newhead): head is absolute but not overlay
497         * as/hc08/lklibr.c (addfile, fndsym),
498         * as/mcs51/lklibr.c (addfile, buildlibraryindex, fndsym): prevent
499           index out of range and detect both '\' and '/'
500         * device/include/mcs51/c8051f200.h: added _XPAGE, removed bad comment
501         * device/include/stdbool.h: removed SDCC_ds390 from check to pass
502           regression tests (ds390 cannot return bool yet)
503         * doc/sdccman.lyx: changed version number, document changed --no-peep,
504           document critical interrupts on z80, document changed SDCC define
505         * src/asm.c (_asxxxx_mapping): fixed .org directive,
506           (_a390_mapping): added .org directive
507         * src/hc08/gen.c (transferAopAop): made bytemask log to fix warning,
508           (genMultOneByte): fixed warnings
509         * src/hc08/hc08.dsp: lowered warning level to 2 to suppress pedantic
510           ones
511         * src/pic16/device.c: removed newReg prototype, removed BYTE_IN_LONG
512         * src/pic16/gen.c (pic16_popGetLabel): made parameter key signed,
513           (pic16_genLeftShiftLiteral, genRightShiftLiteral): fixed warnings
514         * src/pic16/gen.h: changed prototype for pic16_popGetLabel
515         * src/pic16/main.c: removed newReg prototype
516         * src/pic16/pcode.c,
517         * src/pic16/pcode.h (pic16_emitDB): changed parameter c to int to fix
518           warnings
519         * src/pic16/pic16.dsp: lowered warning level to 2 to suppress pedantic
520           ones
521         * src/pic16/ralloc.c
522         * src/pic16/ralloc.h (newReg): changed type to int and size to unsigned
523           to fix warnings
524         * src/pic/pcode.c (allocInternalRegister): changed parameter optype
525           from short to PIC_OPTYPE
526         * src/pic/pic.dsp: lowered warning level to 2 to suppress pedantic ones
527         * src/pic/ralloc.c (newReg, allocInternalRegister): changed parameter
528           optype from short to PIC_OPTYPE
529         * src/port.h: made int_size unsigned to fix warnings
530         * src/SDCC.y: fixed warning on MSVC
531         * src/SDCCicode.c (getArraySizePtr): return unsigned int
532         * src/SDCCopt.c (convertToFcall): fixed warnings
533         * src/SDCCsymt.h: removed double prototype for genSymName
534         * src/xa51/ralloc.c (allocReg): made size unsigned int, type int and
535           offset int to fix warnings
536
537 2006-04-22 Borut Razem <borut.razem AT siol.net>
538
539         * doc/sdccman.lyx, */Makefile, */Makefile.in:
540           references to CVS replaced with Subversion
541
542 2006-04-21 Borut Razem <borut.razem AT siol.net>
543
544         * doc/sdccman.lyx, */Makefile, */Makefile.in:
545           references to CVS replaced with Subversion
546
547 2006-04-19 Borut Razem <borut.razem AT siol.net>
548
549         * src/version.awk: adapted for svn
550         * /asxxxx/asxhtml/*.gif: set property svn:mime-type to image/gif
551           sim/ucsim/doc/*.gif: set property svn:mime-type to image/gif
552           sim/ucsim/doc/*.jpg: set property svn:mime-type to image/jpeg
553           /binutils-avr/etc/*.vi, *.jin: removed all properties
554           support/scripts/sdcc.ico: set property svn:mime-type to image/x-icon
555
556 2006-04-19 Borut Razem <borut.razem AT siol.net>
557
558         * CVS to Subversion migration completed
559
560 2006-04-18 Borut Razem <borut.razem AT siol.net>
561
562         * support/scripts/sdcc.nsi: removed unexisting ${DEV_ROOT}\lib\pic\*.o,
563           ${DEV_ROOT}\lib\src\pic\libdev\*.S, ${DEV_ROOT}\lib\src\pic\libdev\*.inc
564
565 2006-04-17 Borut Razem <borut.razem AT siol.net>
566
567         * device/include/Makefile.in: added pic/*.inc to the installation
568
569 2006-04-15 Bernhard Held <bernhard AT bernhardheld.de>
570
571         * support/regression/collate-results.py: fixed output in case of
572         a valdiag error
573         * support/regression/generate-cases.py: fixed splitting of pathnames
574         with dots
575         * as/hc08/lklibr.c (addfile),
576         * as/mcs51/lklibr.c (addfile): fixed off-by-one bug
577
578 2006-04-11 Raphael Neider <rneider AT web.de>
579
580         * src/pic16/gen.c (getFreePtr, pic16_popRegFromString),
581         * src/pic16/ralloc.c (pic16_allocregWithName): removed debug output
582         * src/pic16/pcode.c (assignValnums): fixed #1460578
583
584 2006-04-11 Raphael Neider <rneider AT web.de>
585
586         * device/lib/pic/libdev/*.c,
587         * device/include/pic/*.h: replaced sfr and data with __sfr and __data,
588           fixes #1468739, enables compilation in --std-c99 mode
589         * support/scripts/inc2h.pl: emit __sfr/__data instead of sfr/data
590
591 2006-04-11 Raphael Neider <rneider AT web.de>
592
593         * src/pic/device.c (find_device): removed debug output
594           (list_valid_pics): enabled verbose listing of supported devices
595         * device/include/stdbool.h: define bool as char for pic14/16 as well
596
597 2006-04-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
598
599         * src/SDCC.y: allow using brackets here: "__interrupt (1) __using (1)"
600
601 2006-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
602
603         * .version: bumped version to 2.5.6
604         * src/pic/ralloc.c (newReg): MSVC doesn't support __builtin_return_address
605
606 2006-04-06 Raphael Neider <rneider AT web.de>
607
608         * .version: bumped version to 2.5.6 (pic14 ABI changed)
609         * src/SDCCmain.c: add -DSDCC_PROCESSOR=<id> for pic14 port
610         * src/pic/glue.c (emitSymbolToFile,pic14_constructAbsMap,
611           pic14emitRegularMap,pic14emitMaps): moved output for absolute symbols to
612             pic14_constructAbsMap
613           (pic14printPublics): declare absolute global symbols as global
614           (pic14createInterruptVect),
615         * src/pic/ralloc.c (IS_CONFIG_ADDRESS): support second config word,
616           (newReg): assume new registers unused, use correct name in
617             hashtable (reg->name instead of name), more debugLog output
618         * src/pic/device.h (PIC_device): added fields for verbose output
619         * src/pic/device.c: moved device definition to pic14devices.txt,
620             added routines for runtime parsing of pic14devices.txt,
621             added support for second config word
622         * src/pic/main.c (_process_pragma): removed #pragma maxram,
623           (_pic14_keywords): no longer accept "bit" and "sbit" keywords
624           (_pic14_initPaths): add search paths with "pic" suffix (not "pic14")
625           (_pic14_parseOptions): moved pCodeInitRegisters here
626           (_pic14_do_link): add "pic$(ARCH).lib" to linker arguments
627         * src/pic/pcode.c (AnalyzeBanking): bail out on unset processor,
628           (pCodeInitRegisters): rewrapped comments, perpared new approach to
629             handling the pseudo stack
630         * device/lib/Makefile.in: ignore failures in objects-pic16,
631         * device/lib/pic/{configure,configure.in,Makefile}: added libdev/
632         * device/lib/pic/NEWS: document new dependency on picXXX.lib
633         * device/lib/pic/Makefile.subdir,
634         * device/lib/pic16/Makefile.subdir: improved clean rules
635         * device/lib/pic/libdev/: NEW, pic14 device libraries
636         * device/lib/pic/libsdcc/_gptr{get,put}{1,2,3,4}.S: use _X not X
637         * device/lib/pic/libsdcc/macros.inc: use _X not X, declare default SFRs
638         * device/include/Makefile.in: create subdir and install pic14 headers
639         * device/include/pic/p16f_common.inc: removed unused declarations
640         * device/include/pic/pic16*.h: added header files for 100+ 14 bit
641             PICs from inc2h.pl v1.6,
642             replaced BIT_AT macros with struct declarations
643         * device/include/pic/pic14devices.txt: definition of supported devices,
644             all above improvements contributed by Zik Saleeba, thanks
645         * support/scripts/inc2h.pl: removed BIT_AT, replaced with structs
646         * support/scripts/sdcc.nsi: also install pic14 device libraries and
647             headers
648
649 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
650
651         * device/include/mcs51/c8051f410.h: added interrupt numbers,
652         * device/include/mcs51/c8051f200.h: old SiLabs mcu completes the list,
653           thanks to Charles Olds
654
655 2006-04-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
656
657         * debugger/mcs51/cmd.c (infoRegisters): show return address on stack
658
659 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
660
661         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug 1464657
662         * src/mcs51/gen.c (genJumpTab): fixed bug in medium model
663         * support/regression/bug1464657.c: added, new test
664
665 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
666
667         * src/SDCCmain.c (preProcess): implemented RFE 1449908, define SDCC as the
668           version number
669
670 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
671
672         * src/SDCCpeeph.c (initPeepHole): implemented RFE 1460196, when both
673           --no-peep and --peep-file <file> are used don't use default rules but
674           do use the <file>
675
676 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
677
678         * src/mcs51/gen.c (genCall): fixed bug 1457608
679
680 2006-03-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
681
682         * doc/sdccman.lyx: reverted to version 1.129 of december as my latest
683         changes seem to cause (trigger?) problems with the build system.
684
685 2006-03-29 Maarten Brock <sourceforge.brock AT dse.nl>
686
687         * src/SDCCpeeph.c (operandsLiteral): new, added,
688           (callFuncByName): inserted operandsLiteral
689         * src/mcs51/peeph.def: reenabled 132.e, added extra check to 132.x
690
691 2006-03-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
692
693         * doc/sdccman.lyx: added paragraph "Use of SDCC in Education"
694         * src/mcs51/peeph.def: disabled rule 132.e fixing bug #1453093
695
696 2006-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
697
698         * src/z80/gen.c (genFunction, genEndFunction): fixed bug 1160666,
699           implemented patch 1120823 Thanks to Willy De la Court (normal
700           interrupts need an interrupt number now if they are made critical),
701           and enabled nesting of critical functions though not for gbz80
702           (genCritical, genEndCritical): added functions
703           (genZ80Code): added cases for CRITICAL and ENDCRITICAL
704         * src/z80/mappings.i: added "ei" to all mappings
705
706 2006-03-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
707
708         * sim/ucsim/cmd.src/newcmdcl.h: applied patch fixing GCC 4.1 build
709         submitted by the Debian SDCC maintainer Aurelien Jarno:
710         "Credits goes to Martin Michlmayr, who rebuilt the whole Debian
711         archive with gcc 4.1 on mips and wrote the patch"
712
713 2006-03-16 Raphael Neider <rneider AT web.de>
714
715         * src/pic16/genarith.c (genAddLit): simplified and fixed case where
716           the left operand is shorter than the result (c* = lit-c* + int),
717           fixes bug #1450796
718         * src/pic16/gen.c (genRightShift): check IS_SYMOP before accessing
719           OP_SYMBOL
720
721 2006-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
722
723         * src/.version: increased version number to 2.5.5
724         * src/SDCCmain.c (linkEdit): do not test for PIC16 target since, PIC16
725         linking is done manually in pic16 port's _linkEdit,
726         * src/SDCCsymt.c (compStructSize): for target PIC16 and shell variable
727         PIC16_PACKED_BITFIELDS, compact bitfield structures as much as possible,
728         * src/pic16/gen.c (aopForSym): when direct register name is WREG then
729         allocate asmop as AOP_ACC,
730         (aopForRemat): added parameter 'bool result' in function declaration,
731         (pic16_aopGet): return AOP_ACC when accessing WREG,
732         (pic16_popGetTempReg): minor modification,
733         (pic16_popRegFromIdx): first try with 'pic16_regWithIdx' then with
734         'pic16_allocWithIdx',
735         (genPcall): removed ftype, usage of OP_SYM_TYPE asserted error when
736         calling function in absolute addresses,
737         (genAssign): take into account AOP_ACC asmop,
738         * src/pic16/pcode.c (pic16_newpCodeOpReg): minor modifications,
739         * src/pic16/pcoderegs.c: some debug functions and lines added,
740         * src/pic16/ralloc.c (decodeRegType): added but commented out,
741         * (pic16_typeRegWithIdx): search 'pic16_dynInternalRegs' for given
742         register too,
743         * (pic16_findFreeReg, pic16_findFreeRegNext): allocate new register via
744         call to allocReg, not by manually allocating a new one,
745         (pic16_assignRegisters): now before going through the register
746         allocating functions mark all registers as free. This eliminates some
747         side effects resulting from peephole parser done earlier in the backbone
748
749 2006-03-13 Maarten Brock <sourceforge.brock AT dse.nl>
750
751         * src/SDCCicode.c (geniCodeLogic),
752         * src/SDCCast.c (decorateType): applied patch by Bernhard for rfe 1422617
753
754 2006-03-10 Maarten Brock <sourceforge.brock AT dse.nl>
755
756         * src/mcs51/gen.c (sameReg): new, checks if two aop regs are the same,
757           (genSend): bugfix, do not allocate and free twice,
758           (shiftRLong): handle partially overlapping aops
759         * support/regression/tests/bitopcse.c: fixed warning redefined idata
760
761 2006-03-08 Borut Razem <borut.razem AT siol.net>
762
763         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata
764           for pic16
765
766 2006-03-08 Maarten Brock <sourceforge.brock AT dse.nl>
767
768         * support/regression/tests/bug1409955.c: new, added
769         * src/mcs51/gen.h: changed asmop.freed:1 to asmop.allocated for tracking
770         * src/mcs51/gen.c (newAsmop): set asmop.allocated to 1,
771           (aopForSym, aopOp): increment asmop.allocated if reused,
772           (freeAsmop): decrement asmop.allocated and check for zero instead of
773           using asmop.freed,
774           (freeForBranchAsmop): use asmop.allocated instead of asmop.freed,
775           (genNot, genCpl, genUminus, genMinus, genMult, genDiv, genMod, genCmpGt,
776            genCmpLt, genAndOp, genOrOp, genAnd, genOr, genXor, genRRC, genRLC,
777            genGetHbit, genGetAbit, genGetByte, genGetWord, genSwap,
778            genLeftShiftLiteral, genLeftShift, genRightShiftLiteral,
779            genSignedRightShift, genRightShift, genDataPointerGet,
780            genPagedPointerGet, genFarPointerGet, genCodePointerGet,
781            genGenPointerGet, genDataPointerSet, genAssign, genCast): free asmop's
782             in reverse order from allocation,
783           (genPlus, genCmpEq): free asmop's in reverse order from allocation and
784             added swappedLR to keep track
785         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata,
786           pdata & code for GCC, z80, gbz80 & hc08
787         * support/regression/tests/zeropad.c: moved defines to testfwk.h
788
789 2006-03-08 Raphael Neider <rneider AT web.de>
790
791         * src/pic16/main.c (_hasNativeMulFor): fixed bug #1444425
792
793 2006-03-07 Maarten Brock <sourceforge.brock AT dse.nl>
794
795         * device/include/mcs51/c8051f410.h: new SiLabs mcu
796         * src/ds390/peeph.def: disabled 186.d and 227.a as fix for #1434401
797         * support/regression/tests/array.c: added parenthesis, made arrays unsigned
798
799 2006-03-06 Borut Razem <borut.razem AT siol.net>
800
801         * support/regression/ports/pic16/spec.mk: link with libm18f.lib,
802           made the linker quiet
803
804 2006-03-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
805
806         * src/pic16/gen.c (genPcall): fixed bug #1443644
807         * src/pic16/device.h (struct pic16_options_t): added 'int CATregs' flag
808         which dumps before the function entry point a data byte which represents
809         the number of the local variables used by the specified function, added
810         'xinst' for initial support for Extended Instruction Support,
811         * src/pic16/gen.c (aopForSym, pic16_aopGet): beautifications,
812         (pic16_testStackOverflow): do not prefix GSTACK_TEST_NAME with
813         port->fun_prefix anymore (may change later),
814         (genFunction, genEndFunction): do not store/restore local registers for
815         _main (this should take care the --main-return command line option in
816         the future),
817         (genOr): removed some legacy pic-port instructions,
818         * src/pic16/genarith.c (genAddLit): re-enabled old code because
819         performing operations with SFR's causes data to be written more than
820         once to each SFR. Perhaps SFRs should be handled in special cases...
821         * src/pic16/glue.c: macros BIG_ENDIAN and BYTE_IN_LONG are moved to
822         pcode.h
823         * src/pic16/main.c (_process_pragma): stack bound checking did not take
824         into account for stack starting position,
825         (struct OPTIONS pic16_optionsTable): added command line argument
826         --extended or -y for Extended Instruction Support,
827         * src/pic16/ralloc.c (pic16_decodeOp): added case for FUNCTION,
828         (deassignLRs): *** perhaps the most important change, old 'for' code
829         (commented out for reference), didn't account for some registers which
830         were left marked 'not free' after a pointer operation. The change
831         reduces register usage a lot in some cases
832
833 2006-03-04 Borut Razem <borut.razem AT siol.net>
834
835         * support/regression/ports/hc08/spec.mk: remove *.asm in traget
836           _clean
837         * support/regression/tests/bug-524697.c: decreased array size for
838           mcs51 to fit into the internal RAM
839         * support/regression/Makefile.in: a little bit more verbose
840
841 2006-03-03 Borut Razem <borut.razem AT siol.net>
842
843         * support/regression/fwk/lib/testfwk.c,
844           support/regression/fwk/include/testfwk.h: introduced function
845           _prints(), nonrecursive _printn(), call _initEmu() from main()
846         * support/regression/ports/gbz80/support.asm,
847           support/regression/ports/ucz80/support.asm,
848           support/regression/ports/z80/support.asm,
849           support/regression/ports/ds390/support.c,
850           support/regression/ports/hc08/support.c,
851           support/regression/ports/host/support.c,
852           support/regression/ports/mcs51/support.c,
853           support/regression/ports/xa51/support.c: added empty _initEmu()
854           function
855         * support/regression/ports/pic16/gpsim.cmd,
856           support/regression/ports/pic16/spec.mk,
857           support/regression/ports/pic16/support.c,
858           support/regression/Makefile.in: added pic16 regression test
859
860 2006-03-01 Raphael Neider <rneider AT web.de>
861
862         * src/pic16/gen.c (genPcall,pic16_derefPtr,genGenPointerGet,
863           genConstPointerGet): use safe way of generating MOVFF to cover
864             literals as well as registers, fixes bug #1440527
865         * src/pic16/glue.c (pic16_printIvalBitFields): prevent NULL pointer
866             dereference
867           (pic16_printIvalUnion,pic16_isUnion): NEW, handle initialized unions
868             more correctly, fixes bug #1232186
869           (pic16_printIval): use pic16_printIvalUnion() for initialized unions
870         * src/pic16/main.c (_pic16_linkEdit): reorder linker arguments to make
871             gplink guess the correct processor in more cases, applied patch
872             from Till Riedel attached to and fixing bug #1436552
873
874 2006-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
875
876         * support/regression/tests/array.c: added, contains check for #1434401
877         * src/mcs51/peeph.def: disabled 186.d as temporary fix for #1434401
878
879 2006-02-16 Maarten Brock <sourceforge.brock AT dse.nl>
880
881         * device/include/mcs51/at89s8253.h: new, thanks to Krzysztof Polomka
882         * device/include/mcs51/at89S8252.h: fixed, thanks to Krzysztof Polomka
883         * device/include/mcs51/c8051f326.h,
884         * device/include/mcs51/c8051f340.h: new SiLabs mcu's
885         * device/include/mcs51/c8051f000.h,
886         * device/include/mcs51/c8051f018.h,
887         * device/include/mcs51/c8051f020.h: used () with __at, renamed IDLE,STOP to
888           PCON_IDLE,PCON_STOP and added sfr16 definitions
889
890 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
891
892         * src/mcs51/gen.c (genPlus, genMinus, genMult, genGetAbit, genGetByte,
893           genGetWord): fixed bug 1409955
894
895 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
896
897         * device/include/hc08/mc68hc908gp32.h,
898         * device/include/hc08/mc68hc908jb8.h: removed AWUL, added PTA6 & PTA7
899
900 2006-02-13 Maarten Brock <sourceforge.brock AT dse.nl>
901
902         * src/SDCCast.c (constExprValue): return NULL if not a value
903         * src/SDCCglue.c (printIvalArray): fixed bug 1225568
904         * src/hc08/gen.c(genUnpackBits, genUnpackBitsImmed): fixed bug 1019480
905         * support/regression/tests/bitfields.c: enabled signed bitfield for all
906
907 2006-02-13 Borut Razem <borut.razem AT siol.net>
908
909         * src/regression/ptrarg.c: added, fails due to bug #1430967
910         * src/regression/Makefile: ptrarg.c added, ...
911
912 2006-02-12 Maarten Brock <sourceforge.brock AT dse.nl>
913
914         * src/z80/gen.c (genUnpackBits): fixed bug 1019480
915         * support/regression/tests/bitfields.c: enabled signed bitfield for z80
916
917 2006-02-11 Borut Razem <borut.razem AT siol.net>
918
919         * src/SDCCmain.c: Added "sdcc: Calling linker..." if --verbose,
920           print "Processor: xxx" message to stdout only if --verbose
921
922 2006-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
923
924         * src/SDCCglue.c (printIvalStruct): fixed bug 1426356 union initializer
925         * support/regression/tests/bug1426356.c: added
926         * support/regression/tests/bitfields.c: removed 2 tests
927
928 2006-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
929
930         * device/include/mcs51/at89c51snd1c.h: updated comments, see patch 1428901
931         * device/include/mcs51/c8051f330.h,
932         * device/include/mcs51/c8051f350.h: used () with __at, renamed IDLE,STOP to
933           PCON_IDLE,PCON_STOP and added sfr16 definitions
934         * device/lib/_divsint.c,
935         * device/lib/_divuint.c,
936         * device/lib/_divulong.c,
937         * device/lib/_divulong.c: renamed a,b to x,y to avoid confusion, fixed
938           register bank bug for small stackauto
939
940 2006-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
941
942         * support/regression/fwk/lib/timeout.c: include <stdlib.h> for exit()
943
944 2006-02-08 Maarten Brock <sourceforge.brock AT dse.nl>
945
946         * support/regression/ports/mcs51-xstack-auto/spec.mk: forgot -I(...)/mcs51
947         * all.dsp: corrected several bin paths
948         * device/include/mcs51/c8051f120.h,
949         * device/include/mcs51/c8051f300.h,
950         * device/include/mcs51/c8051f310.h: used () with __at and renamed IDLE,STOP
951           to PCON_IDLE,PCON_STOP
952         * device/include/mcs51/c8051f320.h: see above, also added sfr16 definitions
953         * device/lib/printf_large.c (output_float): fixed bug 1388703
954         * support/regression/tests/bug1057979.c: added test for bug 1388703
955
956 2006-02-08 Raphael Neider <rneider AT web.de>
957
958         * src/pic/pcode.c (pciTRIS): fixed typo,
959           (BuildFlow,LinkFlow_pCode): added (disabled) debug output,
960           (LinkFlow): fixed handling of flows that end in a call,
961           (ReuseReg): perform safety check earlier
962         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed
963             to work with flows at the beginning of a pBlock,
964             fixes #1426557 (Symbol not previously defined),
965           (pic14_ReMapLiveRanges): NEW, destroy and rebuild register
966             usage information
967           (RemoveUnusedRegisters): update register usage info
968         * src/pic/ralloc.c (newReg): prevent duplicate registers from being
969             created, reuse existing ones instead
970         * src/pic/gen.c (genPcall): fixed #1424719
971
972 2006-02-07 Bernhard Held <bernhard AT bernhardheld.de>
973
974         * link/z80/lkmain.c,
975         * link/z80/lklex.c,
976         * link/z80/lkdata.c,
977         * link/z80/aslink.h: fixed build on current cygwin:
978         replaced getline() by lk_getline()
979
980 2006-02-01 Borut Razem <borut.razem AT siol.net>
981
982         * src/regression/add.c, src/regression/add2.c, src/regression/add3.c,
983           src/regression/add4.c, src/regression/and1.c, src/regression/and2.c,
984           src/regression/arrays.c, src/regression/b.c, src/regression/bank1.c,
985           src/regression/bool1.c, src/regression/bool2.c,
986           src/regression/bool3.c, src/regression/call1.c,
987           src/regression/compare.c, src/regression/compare10.c,
988           src/regression/compare2.c, src/regression/compare3.c,
989           src/regression/compare4.c, src/regression/compare5.c,
990           src/regression/compare6.c, src/regression/compare7.c,
991           src/regression/compare8.c, src/regression/compare9.c,
992           src/regression/configword.c, src/regression/for.c,
993           src/regression/inline.c, src/regression/mult1.c,
994           src/regression/nestfor.c, src/regression/or1.c,
995           src/regression/pointer1.c, src/regression/ptrfunc.c,
996           src/regression/rotate1.c, src/regression/rotate2.c,
997           src/regression/rotate3.c, src/regression/rotate4.c,
998           src/regression/rotate5.c, src/regression/rotate6.c,
999           src/regression/rotate7.c, src/regression/string1.c,
1000           src/regression/struct1.c, src/regression/sub.c,
1001           src/regression/sub2.c, src/regression/switch1.c,
1002           src/regression/while.c, src/regression/xor.c,
1003           src/regression/create_stc, src/regression/simulate,
1004           src/regression/rt.sh, src/regression/Makefile: reenabled Scott's PIC14
1005           regression tests
1006         * src/regression/gpsim_assert.h: added
1007
1008 2006-01-28 Bernhard Held <bernhard AT bernhardheld.de>
1009
1010         * src/ds390/gen.c (unsaveRegisters): fixed literal function pointer
1011         ((void (code *) (void)) 0) ();
1012         * as/hc08/aslex.c,
1013         * as/hc08/aslink.h,
1014         * as/hc08/asm.h,
1015         * as/hc08/asmain.c,
1016         * as/hc08/lkdata.c,
1017         * as/hc08/lklex.c,
1018         * as/hc08/lkmain.c,
1019         * as/mcs51/aslex.c,
1020         * as/mcs51/aslink.h,
1021         * as/mcs51/asm.h,
1022         * as/mcs51/asmain.c,
1023         * as/mcs51/lkdata.c,
1024         * as/mcs51/lklex.c,
1025         * as/mcs51/lkmain.c,
1026         * as/z80/aslex.c,
1027         * as/z80/asm.h,
1028         * as/z80/asmain.c: fixed build on current cygwin:
1029         replaced getline() by as_getline()
1030
1031 2006-01-27 Bernhard Held <bernhard AT bernhardheld.de>
1032
1033         * src/SDCC.y: fixed bug #716242, exchanged pointer and function
1034         declarator in the symbol chain
1035         * src/SDCCsymt.h,
1036         * src/SDCCsymt.c (processFuncPtrArgs): added, removes "(void)"
1037         parameter list for function pointers
1038         * src/SDCCast.c (decorateType): added call of processFuncPtrArgs()
1039         * support/regression/tests/bug-716242.c: added
1040
1041 2006-01-20 Bernhard Held <bernhard AT bernhardheld.de>
1042
1043         * src/SDCCicode.c (geniCodeAdd, geniCodeArray): use char for array
1044         offset if possible
1045         * src/SDCCast.c (getLeftResultType): 255 fits in char, not 256
1046
1047 2006-01-18 Bernhard Held <bernhard AT bernhardheld.de>
1048
1049         * src/SDCCast.c (backPatchLabels): fixed bug #1408066: made it
1050         inifinitely recurseable, added static
1051         * support/regression/tests/bug-1408066.c: added
1052
1053 2006-01-17 Bernhard Held <bernhard AT bernhardheld.de>
1054
1055         * src/SDCCicode.h,
1056         * src/SDCCicode.c (newiTempPreheaderLabel, newiTempLoopHeaderLabel):
1057         renamed, added possibility to create "postLoopLbl"-labels
1058         * src/SDCCBBlock.c (iCodeBreakDown): renamed newiTempPreheaderLabel to
1059         newiTempLoopHeaderLabel
1060         * src/SDCCloop.c (newInduction, newRegion, backEdges, insertIntoLoop,
1061         isNotInBlocks, addToExitsMarkDepth, createLoop, dominatedBy,
1062         addDefInExprs, assignmentsToSym, isOperandInvariant, pointerAssigned,
1063         hasNonPtrUse, loopInvariants, addressTaken, findInduction,
1064         findDefInRegion, mergeRegions, ifMerged, mergeInnerLoops): made static,
1065         (pinduction, pregion, hasIncomingDefs, findLoopEndSeq): disabled,
1066         (basicInduction): fixed bug #136564, made static,
1067         (loopInduction): changed parameter of basicInduction, made static,
1068         (addPostLoopBlock): added
1069         * src/SDCCloop.h: removed backEdges, pregion, pinduction,
1070         loopOptimizations, addressTaken, findDefInRegion, hasIncomingDefs,
1071         findLoopEndSeq
1072         * support/regression/tests/bug-136564.c: added
1073         * support/regression/ports/mcs51-xstack-auto/spec.mk: added
1074         --std-sdcc99 to LIBSDCCFLAGS
1075
1076 2006-01-16 Bernhard Held <bernhard AT bernhardheld.de>
1077
1078         * src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false
1079         while loop
1080         * support/regression/tests/bug-1406131.c: added
1081
1082 2005-12-31 Bernhard Held <bernhard AT bernhardheld.de>
1083
1084         * src/SDCCast.c (decorateType): fix promotion of unary minus
1085         * src/SDCCsymt.c (computeType): beautified
1086         * src/SDCCval.c (cheapestVal): beautified, old non-Ansi version removed,
1087         (valUnaryPM, valComplement): fix sign and promotion,
1088         (valNot): ANSI: result type is int (SDCC: unsigned char)
1089         * support/regression/tests/uminus.c: speedup by removing superflous
1090         test case 'int'
1091         * support/regression/tests/onebyte.c: added promotion and signedness
1092         tests for unary minus
1093         * support/regressions/tests/bug-477927.c: disable warning about
1094         uninitialized variables
1095         * support/regression/tests/not.c: added
1096
1097 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
1098
1099         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
1100         * src/mcs51/gen.c (gen51Code): show final register usage after
1101         fillGaps in asm with --i-code-in-asm
1102         * src/SDCClrange.c (sequenceiCode, setLiveFrom, setLiveTo,
1103         markLiveRanges, markAlive, findNextUseSym, findNextUse, unvisitBlocks,
1104         incUsed, rliveClear, adjustIChain): made static,
1105         (setFromRange): excluded because it's unused,
1106         (findPrevUseSym, markWholeLoop): added,
1107         (findPrevUse): rewritten; fixes bug 895992; now a complete search
1108         through all branches of predecessors enables sdcc to emit the warning
1109         W_LOCAL_NOINIT, marking of outermost loop was incomplete,
1110         (rlivePoint): made static, added parameter emitWarnings which is only
1111         true during the first run out of two,
1112         (findRecursiveSucc, findRecursivePred): removed,
1113         (computeLiveRanges): made static, added parameter emitWarnings,
1114         (dumpIcRlive): added for debugging only
1115         * src/SDCClrange.h: added boolean parameter to computeLiveRanges(),
1116         removed prototype of setFromRange()
1117         * src/SDCCopt.c (eBBlockFromiCode): added new parameter emitWarnings
1118         in call of computeLiveRanges()
1119         * support/regression/tests/bug-895992.c: added
1120         * support/regression/tests/bug-971834.c: added
1121         * support/valdiag/tests/bug-895992.c: added
1122         * support/valdiag/tests/bug-971834.c: added
1123
1124 2005-12-18 Raphael Neider <rneider AT web.de>
1125
1126         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
1127           (genUnpackBits): improved code for direct operands,
1128           (genPackBits): improved code for literal assignment to bitfields
1129             and for direct destination operands (no FSR indirection),
1130             prevented redundant AND, fixes #1362800,
1131           (AccLsh): added parameter to disable masking of the result
1132         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
1133           skip instructions with side-effects (like incfsz),
1134           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
1135         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
1136         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
1137           fixes #1375263
1138
1139 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
1140
1141         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
1142         volatile variables as spill location
1143
1144 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
1145
1146         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
1147         replacing literals
1148         * support/regression/tests/bug-1376320.c: added
1149
1150 2005-12-08 Raphael Neider <rneider AT web.de>
1151
1152         * src/pic/device.c: renamed is_shared to pic14_is_shared
1153         * src/pic/gen.c (genIfx): re-enabled handling of sbits
1154         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
1155           (is_valid_identifier): added for above workaround
1156
1157 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
1158
1159         * device/lib/Makefile.in: fixed to enable port-specific-objects
1160         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
1161           char, thanks Hubert Sack
1162         * doc/sdccman.lyx: documented --xstack-loc,
1163           elaborated a bit more on interrupts and pitfalls,
1164           removed "setjmp/longjmp unsupported",
1165           documented some unsupported C99 features
1166         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
1167         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
1168           if, thanks Hubert Sack
1169         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
1170         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
1171           make make_library
1172         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
1173           regression tests can report resource usage (rfe 700441)
1174         * support/regression/collate-results.py: report resource usage
1175         * support/regression/ports/ds390/spec.mk,
1176         * support/regression/ports/hc08/spec.mk,
1177         * support/regression/ports/mcs51/spec.mk,
1178         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
1179         * support/regression/ports/ds390/uCsim.cmd,
1180         * support/regression/ports/hc08/uCsim.cmd,
1181         * support/regression/ports/mcs51/uCsim.cmd,
1182         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
1183         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
1184           library, use the default one
1185         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
1186           building the library
1187
1188 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
1189
1190         * config.dsp: added dependency on .version and configure_vc.awk
1191         * device/include/setjmp.h: updated for --stack-auto and --xstack
1192         * device/include/mcs51/at89c51snd1c.h: corrected line endings
1193         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
1194         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
1195         * device/lib/libsdcc.lib: added _setjmp
1196         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
1197           (decorateType): fixed bug 1372851,
1198           (optimizeGetHbit): fixed warning
1199         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
1200           array initialisation
1201         * support/regression/tests/bug1057979.c: added test for bug 1358192
1202         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
1203
1204 2005-12-03 Borut Razem <borut.razem AT siol.net>
1205
1206         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
1207           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
1208
1209 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
1210
1211         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
1212         createIval): implement symbol independant "flexible array member",
1213         (createIvalCharPtr): implemented flexible array initialisation with a
1214         string
1215         * src/SDCCsymt.c (copyStruct): removed,
1216         (getSize): fixed misleading comment,
1217         (getAllocSize): removed, the additional allocation size is now in
1218         sym->flexArrayLength,
1219         (checkStructFlexArray): new, syntax checks for flexible array members,
1220         (compStructSize): added syntax checks for "flexible array members"
1221         (copyStruct): removed,
1222         (copyLinkChain): removed inefficient fix for bug 770487
1223         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
1224         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
1225         symbol->flexArrayLength
1226         * src/SDCCerr.c,
1227         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
1228         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
1229         * support/regression/tests/structflexarray.c: added
1230         * support/valdiag/tests/structflexiblearray.c: added
1231
1232 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
1233
1234         * src/SDCCast.c (decorateType): fixed bug 1368489
1235         * support/Util/SDCCerr.c,
1236         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
1237
1238 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1239
1240         * device/include/mcs51/at89c51snd1c.h: added file submitted by
1241           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
1242
1243 2005-11-27 Borut Razem <borut.razem AT siol.net>
1244
1245         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
1246           support/cpp2/mkdeps.h: added command line option
1247           -obj-ext=<extension> to SDCPP to define object file externion, used
1248           for generation of make dependencies (-M)
1249         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
1250
1251 2005-11-26 Borut Razem <borut.razem AT siol.net>
1252
1253         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
1254           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
1255           added pic and pic16 libraries
1256
1257 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1258
1259         * device/include/float.h: Corrected typo in prototype of __fsgt
1260
1261 2005-11-25 Borut Razem <borut.razem AT siol.net>
1262
1263         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
1264           added creation of model-mcs51-stack-auto libraries
1265
1266 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
1267
1268         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
1269         and fields-list too
1270         * src/SDCCast.c (createIvalArray): removed obsolete comment
1271
1272 2005-11-24 Borut Razem <borut.razem AT siol.net>
1273
1274         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
1275           added missing device/lib/mcs51/crt*.asm sources
1276
1277 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
1278
1279         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
1280
1281 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
1282
1283         * device/lib/_fs2schar.c,
1284         * device/lib/_fs2sint.c,
1285         * device/lib/_fs2slong.c: optimized inline asm
1286
1287 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1288
1289         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
1290           Better handling of floats between -1.0 and 0.0.
1291
1292 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1293
1294         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
1295           (the missing "if"s prohibited removal of redundant labels)
1296
1297 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1298
1299         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
1300           Properly convert floats between -1.0 and 0.0 to long, int, and char
1301           types (max integer value of negative floats tends to zero).
1302         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1303           Removed changes made so to work properly with floats between
1304           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
1305           and _fs2char.c
1306
1307 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1308
1309         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
1310         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
1311         (genCast) cosmetic change
1312         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
1313         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
1314         from mcs51
1315         * support/regression/tests/bitfields (testSignedBitfields): added
1316
1317 2005-11-18 Borut Razem <borut.razem AT siol.net>
1318
1319         * sdcc/device/lib/Makefile.in: remove all unnecessary files
1320         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
1321           introduced SILENT option to make building of pic16 libraries less
1322
1323 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1324
1325         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1326           Now they work properly with floats between -1.0 and 0.0
1327         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
1328
1329 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
1330
1331         * src/SDCCicode.c (printOperand): added missing else
1332
1333 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1334
1335         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
1336         reformatted for better readability
1337         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
1338         signed bitfields
1339
1340 2005-11-17 Borut Razem <borut.razem AT siol.net>
1341
1342         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
1343           introduced SILENT option to make building of pic16 libraries less
1344           verbose - used for nightly snapshot build
1345         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
1346           available on Win32 platforms.
1347         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
1348           medium, large, pic and pic16
1349
1350 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1351
1352         * device/lib/printf_large.c: Temporary patch for bug 1358192:
1353           printf("%f"...) sets fraction to zero.
1354
1355 2005-11-16 Raphael Neider <rneider AT web.de>
1356
1357         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
1358           fixes #1357221
1359         * src/pic/gen.c (genIfx): implemented for CARRY bit
1360         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
1361           to generic pointers, fixes #1357332,
1362           (pic16_movLit2f): NEW,
1363           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
1364
1365 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
1366
1367         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
1368
1369 2005-11-11 Raphael Neider <rneider AT web.de>
1370
1371         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
1372         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
1373           compute pointer's type from operand,
1374           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
1375           improved single bit reads, fixes bug #1353379
1376
1377 2005-11-09 Borut Razem <borut.razem AT siol.net>
1378
1379         * support/scripts/sdcc.nsi: added lib/pic to the package
1380
1381 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
1382
1383         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
1384
1385 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
1386
1387         * support/regression/tests/bug1348008.c: added
1388         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
1389         * support/regression/tests/bug1337835.c: updated comment
1390
1391 2005-11-06 Borut Razem <borut.razem AT siol.net>
1392
1393         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1394           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1395           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1396           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1397           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
1398           dynamic construction of cl_error_class and derivates - 2.nd try
1399
1400 2005-11-05 Borut Razem <borut.razem AT siol.net>
1401
1402         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
1403           bug, which caused Bus Errors on sparc solaris
1404
1405 2005-11-04 Borut Razem <borut.razem AT siol.net>
1406
1407         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1408           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1409           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1410           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1411           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
1412           and derivates to resolve the initialization problem on OSX
1413
1414 2005-11-02 Borut Razem <borut.razem AT siol.net>
1415
1416         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1417           corrected typo - #include <winsock2.h>
1418
1419 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
1420
1421         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
1422           (_asxxxx_mapping): added org directive for future enhancements
1423
1424 2005-11-01 Borut Razem <borut.razem AT siol.net>
1425
1426         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1427           enabled sockets on WIN32
1428         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
1429
1430 2005-10-31 Borut Razem <borut.razem AT siol.net>
1431
1432         * support/regression/generate-cases.py: escape backslashes in {testcase}:
1433           WIN32 backslash path delimiters should be escaped when used in C strings
1434         * support/regression/tests/bitfields.c: exclude failing assertions for
1435           __CYGWIN32__ and __MINGW32__ hosts
1436
1437 2005-10-30 Borut Razem <borut.razem AT siol.net>
1438
1439         * src/SDCCutil.c: corrected double comparison typo
1440
1441 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
1442
1443         * device/lib/medium/Makefile: added for new memory model medium
1444         * device/include/asm/mcs51/features.h: updated for medium/pdata
1445         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
1446           added Multiply & Accumulate sbit's and MAC0_PAGE define
1447         * device/include/mcs51/c8051f300.h: added sfr16 definitions
1448         * device/include/mcs51/c8051f310.h: added sfr16 definitions
1449         * device/lib/_mullong.c: update for medium model
1450         * device/lib/incl.mk: added medium model
1451         * doc/sdccman.lyx: documented medium model
1452         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
1453         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
1454         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
1455         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
1456           (allocParms): set SCLS and OCLS to pdata for medium model
1457         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
1458           for pdata,
1459           (powof2): return <0 if not power of 2
1460         * src/avr/gen.c (genBitWise): use updated powof2
1461         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
1462           (shiftR2Left2Result): small optimization in setup, save acc when storing,
1463           (shiftLLeftOrResult): use B if necessary
1464         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
1465         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
1466         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
1467         * support/regression/Makefile.in: added test-mcs51-medium
1468         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
1469
1470 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
1471
1472         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
1473         specifier unsigned
1474         * device/lib/time.c (mktime): fixed bug 1334315
1475
1476 2005-10-28 Raphael Neider <rneider AT web.de>
1477
1478         * device/include/pic/p16f_common.inc: added common declarations
1479         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
1480
1481 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1482
1483         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
1484           (aopPutUsesAcc): added to predict accumulator use,
1485           (assignResultValue): save acc if necessary,
1486           (genMinusDec): store result if indirectly addressed,
1487           (genDivOneByte):  save acc if necessary,
1488           (movLeft2Result): bugfix if left already in acc,
1489           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
1490             attention to accumulator use (esp. pdata),
1491           (genReceive): receive pdata correctly
1492         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
1493         * src/SDCCicode.h: added isOperandInPagedSpace prototype
1494
1495 2005-10-27 Raphael Neider <rneider AT web.de>
1496
1497         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
1498
1499 2005-10-27 Raphael Neider <rneider AT web.de>
1500
1501         * .version: changed version to 2.5.4
1502         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
1503         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
1504           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
1505             arithmetics support routines
1506         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
1507         * device/lib/Makefile.in: also create installdir for pic
1508
1509         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
1510           pic14 port as well
1511         * src/pic/device.c (dump_sfr): rewritten to delegate register
1512           placement to the linker (use `extern sym' rather than sym EQU addr),
1513           (validAddress): fixed to check last specified address
1514         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
1515           (popGetLit): truncate literal value to 8 bit,
1516           (popGet): moved assert to more appropriate place
1517           (popGetExternal): create pCode operand from and mark the according
1518             symbol as being `extern'
1519           (popGetAddr): added sanity check on immediate's offset, provide
1520             GPOINTER tag on demand
1521           (aopPut): fixed for immediates,
1522           (mov2w_op): move operand's address or contents to WREG (depending on
1523             operand type), safer variant of mov2w,
1524           (movwf,call_libraryfunc): NEW, handy abbreviations,
1525           (get_argument_pcop,get_return_val_pcop,pass_argument,
1526           get_returnvalue): interface for accessing function parameters and
1527             return values,
1528           (assignResultValuei,genRet): use new parameter/return value interface
1529           (pic14_getDataSize): back to old version handling generic pointers,
1530           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
1531             provided implementation and/or fixed old one,
1532           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
1533             calls, removed legacy 8051 reference code
1534           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
1535           (loadSignToC): NEW, move the operands sign bit to CARRY,
1536           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
1537             genRightShiftSigned, accepts negative shift counts,
1538           (setup_fsr): load FSR and adjust IRP (indirect memory access),
1539           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
1540             generic pointers, __data pointers and __code pointers,
1541           (genUnpackBits,genPackBits): rewritten to work with generic pointers
1542             and signed bitfields, limit bitfields to 8 bit,
1543           (genDataPointerGet): fixed number of bytes read,
1544           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
1545           (genPointerGet,genPointerSet): fixed handling of __code pointers,
1546             pointers to constant data are no longer assumed to point to __code
1547             space, removed invalid pointer types,
1548           (bitpatternFromVal): retrieve the PICs representation of an integer
1549             or float literal,
1550           (genDataPointerSet): fixed assigning to po_immediate operands,
1551           (genGenPointerSet): implemented as library call,
1552           (genIfx): fixed incorrect condition,
1553           (genAddrOf): limit generic pointers' addresses to 2 bytes,
1554             provide GPOINTER tag according to destination's storage class,
1555           (genCast): added code to handle casting to generic pointers, added
1556             sign-/zero extension of the result
1557           (aop_isLitLike,op_isLitLike): fixed handling of immediates
1558         * src/pic/gen.h: added macros to access IRP bit in STATUS register
1559         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
1560           extend the result
1561         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
1562           address/register resides in the shared banks
1563           (emitSymbolToFile): improved to handle global and `pinned' symbols,
1564             put all variables into separate sections (have the linker arrange
1565             them)
1566           (picglue): put init code and interrupt handlers in separate sections
1567         * src/pic/main.c: added port specific options table, modified to PORT
1568           structure to make GPOINTERs 3 byte, added pic14_options
1569           (_pic14_do_link): private linking routine (update paths to libraries,
1570             add libsdcc.lib by default)
1571         * src/pic/main.h: declare pic14_options
1572         * src/pic/pcode.c: fixed instructions i/o relations,
1573           (RegCond): reverted to correct version,
1574           (newpCodeOpLit): truncate literals to 8 bit,
1575           (genericPrint): added debug output,
1576           (getRegFromInstruction): fixed for various operand types, simplified
1577           (BuildFlow): fixed broken handling of isntructions with labels
1578           (LinkFlow): start at last instruction in flow (skip trailing comments),
1579             pass the flow on to the next instruction after CALL
1580           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
1581           (insertPCodeInstruction): fixed inserting after a skip instruction,
1582           (DoBankSelect): fixed for labeled instructions
1583           (OptimizepBlock): honor --nopeep switch
1584           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
1585         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
1586         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
1587           (pCodeOptime2pCodes): allow disabling this optimization via
1588             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
1589             but is still buggy), started implementation of a dataflow based
1590             pCode optimization (CSE + dead code elimination)
1591           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
1592         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
1593           names are independant of the stack location and therefore portable across
1594           devices
1595
1596 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1597
1598         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
1599           (selectSpil): fixed bug 1337835 by not spilling bit variables
1600         * support/regression/tests/bug1337835.c: added test for this bug
1601         * src/mcs51/peeph.def: restart after rule 3.c,
1602           addded rules 263.x to optimize loading constants
1603
1604 2005-10-26 Raphael Neider <rneider AT web.de>
1605
1606         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
1607         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
1608           (genAssign): emit warning when casting literals to generic pointer
1609             type, also applies when taking the address of a fixed variable,
1610           (genCast): improved casting to generic pointers
1611         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
1612           extern variables, added verbose error message
1613         * device/include/pic16/{string.h,errno.h}: added #pragma library c
1614
1615 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
1616
1617         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
1618         carry must be complemented too
1619         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
1620         could be emitted by genMinus
1621         * src/SDCCval.c (constVal): fixed bug 1305065
1622
1623 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
1624
1625         * src/SDCCast.c (addCast): added promotion for bit variables
1626         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
1627         promotion casts + optimisation
1628         (optimizeGetWord): fix warning 'i' might be used uninitialized
1629         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
1630         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
1631
1632 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
1633
1634         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
1635         all chars are promoted to int; promotion should be handled in SDCCast.c
1636
1637 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1638
1639         * device/lib/_strcmp.c: Fixed bug 1326457
1640
1641 2005-10-11 Raphael Neider <rneider AT web.de>
1642
1643         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
1644         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
1645
1646 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
1647
1648         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
1649         * support/regression/tests/sfr16.c: added test for the sfr32 bug
1650
1651 2005-10-04 Raphael Neider <rneider AT web.de>
1652
1653         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
1654           device/lib/pic16/pics.all: added pic18f1320
1655         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
1656
1657 2005-09-30 Raphael Neider <rneider AT web.de>
1658
1659         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
1660         * src/pic16/devices.inc: NEW, provides device descriptions
1661         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
1662
1663 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
1664
1665         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
1666           GETHBIT
1667
1668 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
1669
1670         * doc/sdccman.lyx: updated Highest Order Bit documentation,
1671           documented Any Order Bit, Higher Order Byte and Higher Order Word
1672         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
1673         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
1674           (optimizeGetAbit): new, to get any bit, not only the high bit,
1675           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
1676           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
1677           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
1678           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
1679             RIGHT_OP: also try GETBYTE, GETWORD optimization,
1680             GETABIT, GETBYTE, GETWORD: decorate them,
1681           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
1682           (ast_print): added GETABIT, GETBYTE, GETWORD
1683         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
1684         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
1685           (geniCodeBinary): new generic binary icode,
1686           (ast2iCode): added GETABIT, GETBYTE, GETWORD
1687         * src/port.h: updated comment for PORT.hasExtBitOp
1688         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
1689           (genGetByte): new, to get a single byte,
1690           (genGetWord): new, to get a word from a long,
1691           (gen51Code): added GETABIT, GETBYTE, GETWORD
1692         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
1693
1694 2005-09-23 Raphael Neider <rneider AT web.de>
1695
1696         * configure.in, configure: have device/lib/pic configured
1697         * device/lib/Makefile.in: added model-pic14
1698         * device/lib/clean.mk: added pic/ to clean rule
1699         * device/lib/pic: added rudimentary pic14 library providing support
1700           functions for multiplication/division/generic pointer access
1701         * src/SDCCopt.c (convilong): mark support functions as extern
1702           for pic14 port as well
1703         * src/pic/gen.c (genMult): added assertions,
1704           (genpic14Code): emit warning on unhandled iCodes
1705         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
1706         * src/pic/pcode.c (pCodeOpCopy),
1707         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
1708           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
1709           SFR_REGISTER}), made safe for future extensions
1710         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
1711           instructions even if preceeded by SKIP instructions (also remove
1712           them); removed unused code
1713         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
1714           prevents leaving parts of the structure uninitialized after copying
1715
1716 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
1717
1718         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
1719           ago by me
1720         * support/regression/tests/addsub.c: added test for the bug
1721
1722 2005-09-21 Raphael Neider <rneider AT web.de>
1723
1724         * device/include/pic16/pic18f1220.h,
1725           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
1726         * device/lib/pic16/Makefile.rules: added missing opening paren
1727         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
1728           are provided in genutils.c,
1729           (genUminusFloat,genUminus,genCmpEq): added asserts on different
1730           operand/result sizes,
1731           (genCmp): assert on NULL pointers first, then check deref'ed values
1732         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
1733           result size
1734
1735 2005-09-18 Raphael Neider <rneider AT web.de>
1736
1737         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
1738           as these are now unused,
1739           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
1740         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
1741           local, avoids uninitialized pointer dereference on r->name
1742         * src/pic16/ralloc.c (newReg): fixed indentation
1743
1744 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
1745
1746         * src/SDCCval.c (constVal): fixed bug 730366
1747         * support/Util/SDCCerr.c,
1748         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
1749
1750 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
1751
1752         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
1753
1754 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
1755
1756         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
1757
1758 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
1759
1760         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
1761           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1762         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
1763           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1764         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
1765         * packihx/packihx.c (hexDigit): made c unsigned char
1766         * as/mcs51/lklibr.c (fndsym),
1767         * link/z80/lkgb.c (gb),
1768         * link/z80/lklibr.c (fndsym),
1769         * link/z80/lkrloc.c (relr),
1770         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
1771         * src/SDCC.lex (checkCurrFile, process_pragma),
1772         * src/SDCCglue.c (spacesToUnderscores),
1773         * src/SDCCmain.c (setParseWithComma, processFile),
1774         * src/asm.c (tvsprintf, printCLine),
1775         * src/avr/gen.c (emitcode, aopPut),
1776         * src/ds390/gen.c (emitcode),
1777         * src/hc08/gen.c (emitcode, emitinline),
1778         * src/mcs51/gen.c (emitcode, genInline),
1779         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1780           tokenizeLineNode),
1781         * src/pic/ralloc.c (debugLog),
1782         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1783           tokenizeLineNode),
1784         * src/pic16/ralloc.c (debugLog),
1785         * src/z80/main.c (_process_pragma):
1786            made all ctype.h function calls safe
1787         * src/SDCCopt.c: include math.h for fabs
1788         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
1789           and used them throughout the code to make ctype.h function calls safe
1790         * src/ds390/main.c (asmLineNodeFromLineNode),
1791         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
1792         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
1793            unsigned char*
1794         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
1795           (newpCodeAsmDir): made ctype.h function calls safe
1796         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
1797           pic16_emitcode):  made lbp unsigned char*
1798         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
1799           (pic16_newpCodeAsmDir): made ctype.h function calls safe
1800         * src/xa51/gen.c (emitcode),
1801         * src/z80/gen.c (_emit2): made lbp unsigned char*
1802         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
1803            char*
1804
1805 2005-09-05 Raphael Neider <rneider AT web.de>
1806
1807         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
1808           access bank splitpoint
1809
1810 2005-09-05 Raphael Neider <rneider AT web.de>
1811
1812         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
1813
1814 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
1815
1816         * .version: changed to version 2.5.3
1817         * doc/sdccman.lyx: changed version to 2.5.3,
1818           documented --codeseg and --constseg and pragma codeseg and constseg,
1819           documented bit parameters (reentrant) and bit returning
1820         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
1821            currFunc->recvSize, but is this ok for all ports?
1822           (ast2iCode): result of ~ on unsigned char must be cast to int for
1823            bool to work
1824         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
1825           function pointers in bit space
1826         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
1827           (processFuncArgs): call port.reg_parm() with reentrancy info
1828         * src/port.h,
1829         * src/avr/main.c,
1830         * src/ds390/main.c,
1831         * src/hc08/main.c,
1832         * src/pic/main.c,
1833         * src/pic16/main.c,
1834         * src/xa51/main.c,
1835         * src/z80/main.c: port.reg_parm prototype extended with
1836           "bool reentrant" parameter
1837         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
1838           options.stackAuto for allocating bit register parameters
1839         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
1840           (genSend): set BitBankUsed if it is,
1841           (selectRegBank): factored out of genCall for use in genPcall,
1842           (genCall): removed redundant dtype assignmen, use selectRegBank,
1843           (genPcall): handle returning in Carry properly, save in F0 if needed,
1844           (genReceive): handle bit register parameters
1845         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
1846           (mcs51_assignRegisters): enable bit registers for all reentrant
1847            functions and don't set BitBankUsed unconditionally
1848         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
1849         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
1850         * support/regression/tests/funptrs.c: added tests for BOOL and for return
1851
1852 2005-08-27 Borut Razem <borut.razem AT siol.net>
1853
1854         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
1855         ppc-osx (Darwin) does not support -u option. It seems that it is
1856         supported only on Linux - GNU cp
1857
1858 2005-08-25 Borut Razem <borut.razem AT siol.net>
1859
1860         * sim/ucsim/gui.src/serio.src/Makefile.in,
1861           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
1862           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1863           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
1864           install and strip, since the strip at /usr/ccs/bin should be used
1865           on solaris
1866
1867 2005-08-24 Borut Razem <borut.razem AT siol.net>
1868
1869         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
1870
1871 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
1872
1873         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
1874         ffffffffu
1875
1876 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
1877
1878         * as/mcs51/aslink.h: completed lkrloc.c prototypes
1879         * as/mcs51/lkmain.c (link_main): fixed warning
1880         * device/include/stdbool.h: ds390 has no advanced bit support yet
1881         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
1882         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
1883         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
1884           and updated their macros
1885         * src/SDCCval.c (constVal): updated comment for renamed b_long
1886
1887 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
1888
1889         * as/mcs51/asdata.c: changed ctype['['] to BINOP
1890         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
1891           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
1892           (oprio): set priority for '['
1893         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
1894            and adb_24_bit
1895         * as/mcs51/asm.h: added defines R_BIT and S_BIT
1896         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
1897         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
1898         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
1899           added overlayable BIT_BANK area
1900         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
1901           (summary2): explain 'T' in legenda
1902         * as/mcs51/lkrloc.c: replaced old K&R style,
1903           (relr): added R_BIT processing,
1904           (errmsg): added "Bit-addressable relocation error",
1905           (adb_bit): added for converting from byte- to bit-addressable space,
1906           (adb_24_bit): added for converting from byte- to bit-addressable space
1907         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
1908            used in reentrant functions now even as return value
1909         * device/lib/_gptrput.c (_gptrput): removed obsolete code
1910         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
1911           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
1912         * src/SDCCglobl.h: added indicator BitBankUsed
1913         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
1914            the bit registers b0-b7
1915         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
1916           (geniCodeCast): fixed bug 1263853,
1917           (geniCodeLogicAndOr): put result in bool or char,
1918           (geniCodeReceive): added parameter func for accessing the return type,
1919           (geniCodeFunctionBody): pass func to geniCodeReceive
1920         * src/SDCCmain.c: added indicator BitBankUsed
1921         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
1922         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
1923           (checkSClass): don't put automatic bool/bit on stack,
1924           (checkFunction): removed check on function cannot return bit
1925         * src/SDCCsymt.h: added newBoolLink prototype
1926         * src/mcs51/gen.c (rb1regs): added bit registers,
1927           (movc): created for assigning to carry,
1928           (pushReg, popReg): created for pushing registers,
1929           (sameRegs): check both AOP_REG and AOP_CRY types,
1930           (aopOp): handle bit registers,
1931           (aopPut): optimization no self-assign,
1932           (saveRegisters): push reg->base (bits) only once for bit registers,
1933            and use pushReg,
1934           (unsaveRegisters): pop reg->base only once and use popReg,
1935           (assignResultValue): added parameter func and return in carry for bits,
1936           (genIpush): optimization no reload in A if not changed,
1937           (genSend): bit parameters in reentrant functions are passed in bit
1938            registers by first assigning to bits in B, then save registers and
1939            copy B to bits,
1940           (genCall): handle returning in Carry properly, save it in F0 if needed,
1941           (genPcall): updated assignResultValue call, this is not safe yet for bit
1942            returning function !!!
1943           (genFunction): don't generate equ's for bit registers and use pushReg,
1944           (genEndFunction): take care of bit returning functions and use popReg,
1945           (genRet): return bit in Carry,
1946           (genIfx): optimize bit registers and other directly addressable bits,
1947           (genReceive): updated assignResultValue call
1948         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
1949           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
1950            registers when using stack-auto
1951         * src/mcs51/ralloc.c (_G): added allBitregs,
1952           (regs8051): added the bit registers,
1953           (createStackSpil): use macro IS_BIT,
1954           (getRegBit): added to allocate a bit register, else spill,
1955           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
1956           (updateRegUsage): factored out to ease stepping while debugging,
1957           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
1958            also allocate bit registers,
1959           (fillGaps): handle bit registers,
1960           (findAllBitregs): added to create bit vector with all bit registers,
1961           (mcs51_allBitregs): returns this bit vector,
1962           (mcs51_assignRegisters): when using stack-auto use bit registers for
1963            passing parameters and creating local variables
1964         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
1965
1966 2005-08-22 Borut Razem <borut.razem AT siol.net>
1967
1968         * device/lib/Makefile.in: replaced find option -or with -o
1969           to make it run on solaris
1970
1971 2005-08-22 Raphael Neider <rneider AT web.de>
1972
1973         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
1974           fixes #1265442 (crash on Solaris)
1975
1976 2005-08-20 Borut Razem <borut.razem AT siol.net>
1977
1978         * configure, configure.in: added tests for libsocket and libnsl libraries,
1979           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
1980           from support/regression/Makefile.in
1981         * support/regression/Makefile.in: added
1982         * device/lib/pic16/Makefile.common.in: force make to use bash shell
1983         * sim/ucsim/libtool: regenerated on sparc-solaris
1984         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1985           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
1986           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
1987           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
1988           sparc-solaris, which doesn't use GNU ld linker
1989         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
1990         * as/Makefile: find on sparc-solaris does not support -maxdepth option
1991
1992 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
1993
1994         * src/mcs51/peeph.def: updated comments
1995
1996 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1997
1998         * device/lib/_gptrget.c,
1999         * device/lib/_gptrput.c: slightly shorter
2000         * doc/sdccman.lyx: incremented version
2001         * src/mcs51/peeph.def: moved peephole comments to the line of first
2002           change to better keep line correlation, reanimated 186.e
2003         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
2004
2005 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
2006
2007         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
2008           David Saxton with quotes around file name.
2009
2010 2005-08-15 Borut Razem <borut.razem AT siol.net>
2011
2012         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
2013           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
2014           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
2015           make tests run on x86_64 platform
2016
2017 2005-08-13 Raphael Neider <rneider AT web.de>
2018
2019         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
2020           as it might be executed DURING a build (parallel make is wonderful)
2021
2022 2005-08-13 Raphael Neider <rneider AT web.de>
2023
2024         * device/lib/Makefile.in (port-specific-objects-pic16):
2025           revert to cp $(PORT)/bin/*.* $(PORTDIR)
2026         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
2027           dependency
2028         * device/lib/pic16/Makefile.rules: build subdirs before creating
2029           the library, removed builddir rule, create $(builddir) early in
2030           recurse rule, use empty recurse rule for leaf directories
2031         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
2032           mkdir errors (race condition), removed duplicate suffix "hex"
2033           from clean rules
2034         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
2035         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
2036           prevents mkdir -p from aborting on Alpha
2037
2038 2005-08-12 Raphael Neider <rneider AT web.de>
2039
2040         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
2041           db-statements in order to allow for arrays of pointers in code
2042           sections to be placed without interspersed 0-padding, fixes
2043           bug #1256215
2044         * (emitStatistics): fixed division by zero for pic18f1220
2045         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
2046           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
2047         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
2048         * (pic16_pCodeConstString): keep track of already emitted string
2049           literals to prevent "duplicate definitions of symbol _str_NR"
2050         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
2051           debug message
2052         * device/lib/Makefile.in: ignore failing PIC16 library builds
2053         * device/lib/pic16/Makefile: do not build if gputils are missing
2054         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
2055
2056 2005-08-10 Raphael Neider <rneider AT web.de>
2057
2058         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
2059           my last commit)
2060
2061 2005-08-10 Raphael Neider <rneider AT web.de>
2062
2063         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
2064           Rokas' patch to add the new fixed point type "__fixed16x16"
2065         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
2066           functions for __fixed16x16 arithmetics
2067         * device/lib/pic16: reimplemented the build system to support
2068           a separate build directory, better handling of libio (create
2069           the library in a separate subdir for each architecture) and
2070           easier configuration (centralized in Makefile.common)
2071
2072 2005-08-07 Raphael Neider <rneider AT web.de>
2073
2074         * src/pic16/gen.c (genrshTwo): fixed sign extension
2075         * src/pic16/device.c: added pic18f2320, 4220 and 4320
2076         * device/include/pic16/pic18f2220.h: changed some bit definitions,
2077           added T0CONbits
2078         * device/include/pic16/pic18f4220.h: NEW, header for
2079           pic18f4220 and pic18f4320
2080         * device/include/pic16/pic18fregs.h: added new devices,
2081           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
2082         * device/include/pic16/signal.h: resolved name clashes
2083           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
2084           to also allow testing for interrupt enable bits, added
2085           comments on how to use the macros
2086         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
2087         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
2088           register definitions for the devices
2089         * device/lib/pic16/pics.all: added new devices
2090         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
2091           allocated memory
2092         * device/lib/pic16/libc/stdlib/memfree: do not count
2093           the block header as free memory
2094         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
2095           simplified and added missing end-of-blocklist-marker
2096           (reported by Peter Onion, fixes #1252814)
2097         * (_mergeHeapBlock): fixed loop condition
2098         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
2099           len==0, restructured code
2100         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
2101           up a bit, reduced bitfield accesses, prevent endless loops
2102           in case of heap corruption
2103         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
2104           "unreferenced arguments/must return a value" warnings
2105         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
2106           replaced BAUDREG with SPBRG
2107         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
2108           device/lib/pic16/debug/gstack/gstack.c: replaced
2109           _naked, _asm, _endasm with __naked, __asm, __endasm
2110
2111 2005-08-05 Raphael Neider <rneider AT web.de>
2112
2113         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
2114           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
2115
2116 2005-08-05 Borut Razem <borut.razem AT siol.net>
2117
2118         * device/lib/Makefile.in: added missing ';'
2119         * configure: removed ^M characters
2120
2121 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2122
2123         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
2124           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
2125           License
2126
2127 2005-08-04 Borut Razem <borut.razem AT siol.net>
2128
2129         * configure.in: pic16 libraries build 2nd try - enable running
2130           configure in device/lib/pic16
2131         * configure: regenerated from configure.in
2132         * device/lib/Makefile.in: create $(PORT)/bin directory
2133
2134 2005-08-03 Raphael Neider <rneider AT web.de>
2135
2136         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
2137           to get/set values via pointers
2138         * (genUnpackBits,genPackBits): changed detection of
2139           ptr->bitfield vs. sym.bitfield, fixed access via generic
2140           pointers, removed dead (wrong) code for multibyte bitfields
2141         * (genNearPointerGet, genGenPointerGet): removed useless code,
2142           fixed bitfield detection, fixes #1250594
2143         * (genNearPointerSet): removed useless code
2144         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
2145           and introduced macro pic16_emitpcode that conditionally emits
2146           the origin of the following pCode (useful for debugging SDCC)
2147         * src/pic16/pcode.c: changed (and disabled) some debug outputs
2148         * (createDefmap): fixed handling of LFSR for --optimize-df
2149
2150 2005-08-02 Borut Razem <borut.razem AT siol.net>
2151
2152         * device/lib/Makefile.in: pic16 libraries build enabled since
2153           gputils-0.13.2 are now localy installed at sourceforge's compile farm
2154
2155 2005-08-02 Raphael Neider <rneider AT web.de>
2156
2157         * src/pic16/gen.c (genPackBits): removed deprecated warning
2158         * (genGenPointerSet): fixed bitfield detection
2159
2160 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2161
2162         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
2163
2164 2005-07-31 Raphael Neider <rneider AT web.de>
2165
2166         * device/lib/pic16/libdev/pic18f458.c,
2167           device/include/pic16/pic18f458.h: added missing T0CONbits
2168
2169 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
2170
2171         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
2172
2173 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
2174
2175         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
2176
2177 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2178
2179         * device/include/mcs51/at89c51ed2.h: added.
2180
2181 2005-07-23 Raphael Neider <rneider AT web.de>
2182
2183         * src/pic/gen.h: added emitpcode macro for debugging
2184         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
2185           and replace by macro adding debug information on demand
2186         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
2187         * (gencjne): tried to fix; replaced with correct (slower) code
2188         * (gen{Unp,P}ackBits): fixed single bit access
2189         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
2190         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
2191           previous instruction
2192         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
2193           register has to be handled with care (forbidding movement
2194           of assignments/uses, removing assignments completely, ...)
2195         * (pCodeOptime2pCodes): make use of regIsSpecial
2196         * added lots of debugging output (commented out)
2197         * src/pic/rallloc.c (deassignLRs): prevent operand registers
2198           from being reused as result UNLESS it is known to work
2199
2200 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
2201
2202         * support/Util/dbuf.h: include <stddef.h> for size_t
2203         * .version: changed to version 2.5.2
2204
2205 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2206
2207         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
2208
2209 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2210
2211         * src/hc08/gen.c (genMinus): fixed bug #1241835,
2212           (genModOneByte): removed needless psha/pula
2213
2214 2005-07-22 Raphael Neider <rneider AT web.de>
2215
2216         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
2217           have PIC14 handled like PIC16, fixes broken pic14 linker calls
2218         * src/pic/gen.c (resolveIfx): do not "invent" labels
2219         * (genSkipc): changed to positive logic
2220         * (genSkipCond): removed as no longer needed
2221         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
2222           backport from PIC16
2223         * (genLeftShift): check operands are in different registers
2224         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
2225           INCF does not update CARRY...
2226         * src/pic/main.c: fixed _linkCmd
2227         * src/pic/pcode.c (unlinkpCode): added inactive code
2228         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
2229           alive (do not assign result and operand overlapping registers)
2230
2231 2005-07-22 Raphael Neider <rneider AT web.de>
2232
2233         * src/pic/device.c (dump_sfr): replaced register declaration with
2234           call to emitSymbolToFile() to avoid duplicate symbols
2235         * (assignRelocatableRegisters): do not declare external symbols
2236         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
2237           right (take size of type, not etype)
2238         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
2239         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
2240         * (packRegsForAccUse): disabled assignment of WREG as
2241           the result reg to prevent occurence of just fixed #1235003,
2242           fixes #1242954
2243         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
2244           symbols (avoids duplicate symbols in .asm file)
2245         * (pic14emitRegularMap): use emitSymbolToFile()
2246         * src/pic/gen.c (aopOp): fixed spillLocation handling
2247         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
2248         * (genDataPointerSet): removed unneccessary variables/output
2249
2250 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
2251
2252         * as/mcs51/lkarea.c: enlarged codemap for banked memory
2253         * device/lib/mcs51/crtbank.asm: added # to 0x0F
2254
2255 2005-07-21 Raphael Neider <rneider AT web.de>
2256
2257         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
2258           architecture cannot handle them efficiently, fixes bug #1235003
2259         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
2260           check for empty sets before using them (fixes bug #1232190)
2261
2262 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
2263
2264         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
2265           (lnksect2): generate warnings for memory overlap
2266         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
2267           constseg to set the name of these segments so you can instruct the linker
2268           to place them in banks
2269         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
2270         * src/SDCCglobl.h: added MODEL_HUGE to enum,
2271           added code_seg and const_seg to options
2272         * src/SDCCglue.c (emitMaps): use options.const_seg,
2273           (createInterruptVect): put interrupt vectors in segment HOME,
2274           (glue): put HOME before static segment and put the main glue in HOME,
2275           (glue): use options.code_seg
2276         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
2277         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
2278           these segments so you can instruct the linker to place them in banks
2279           (linkEdit): use code_loc for HOME segment which should be the first
2280           segment in code memory now
2281         * src/SDCCmem.c: fixed more stuff like bug 1238386
2282         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
2283           (changePointer): don't change function pointers to code pointers for
2284           banked functions,
2285           (compareType): added exceptional check for banked function pointers
2286         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
2287         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
2288           after static in code memory
2289         * src/mcs51/gen.c: added aopLiteralLong prototype,
2290           (aopForSym): use getSize for functions,
2291           (genCall): generate banked calls over one trampoline __sdcc_banked_call
2292           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
2293           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
2294           the segment,
2295           (genPcall): use call for literal function pointers and generate banked
2296           calls over the one trampoline so there's only one place for the user to
2297           modify according to his/hers hardware,
2298           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
2299           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
2300         * src/mcs51/main.c: added keyword banked,
2301           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
2302         * support/Util/SDCCerr.c,
2303         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
2304           needed for passing the bank and address to the trampoline
2305         * device/lib/mcs51/crtbank.asm: added for bankswitching
2306         * device/lib/mcs51/Makefile: added crtbank
2307
2308 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2309
2310         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
2311           for fields at offset 0 of a struct or union as reported
2312           on 2005-07-07 in the developer mailing list.
2313
2314 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
2315
2316         * src/SDCCmem.c: fixed bug 1238386
2317
2318 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2319
2320         * src/mcs51/peeph.def: added labelrefcounting for peepholes
2321           (patch #1144962), added peephole 300, enabled 259.x
2322         * doc/sdccman.lyx: removed screenshot and provided link instead
2323
2324 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2325
2326         * doc/sdccman.lyx: added section about debugging with ddd
2327         * doc/figures/ddd_example.eps: screenshot of debugging session
2328
2329 2005-07-04 Raphael Neider <rneider AT web.de>
2330
2331         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
2332           like CODE pointers, fixes #1115683
2333         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
2334           call, fixes bugs #1232211, #1228110,
2335           fixed wrong casts to pCodeFlow from pCodeInstructions
2336
2337 2005-07-04 Raphael Neider <rneider AT web.de>
2338
2339         * src/pic/gen.c (popGet): changed assert to allow for
2340           bit operands
2341         * (popGetAddr): changed signature to provide
2342           an additional index, patched all call sites
2343         * (genCmpEq): handle literal-like operands correctly
2344         * (genAddrOf): added sanity checks on __code/__data pointers
2345         * (genAssign): added handling of symbols from __code section
2346         * (gencjne): do not generate code for comparisons whose result
2347           is neither stored nor used, fixes bug #1171114
2348         * (AccLsh, AccRsh): operate on operand instead of WREG
2349         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
2350           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
2351           by known count
2352         * rewrote complete shift-by-literal logic, commented unused
2353           functions out
2354         * (genConstPointerGet): get multiple bytes (if result size > 1),
2355           fixed handling of non-immediate addresses
2356         * (genPointerGet): handle CODE pointers like CONST pointers
2357         * (genpic14Code): insert C-SRC lines as Cource-pCodes
2358         * ({aop,op}_isLitLike): NEW, single place to decide whether an
2359           operand is to be treated as a literal or not
2360         * (mov2w,genPcall,genCmpEq),
2361           src/pic/genarith.c: use aop_isLitLike() to decide between
2362           literal/register contents
2363         * (addSign): added missing offset
2364         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
2365           only emit comment in debug-mode,
2366           use {aop,op}_isLitLike throughout the file
2367         * src/pic/glue.c: fix initializers for pointers (work in progress)
2368         * src/pic/pcode.c (get_op): honor index on _const symbols
2369         * ({reset,dump}pCodeStatistics): NEW, estimate code size
2370         * (dumppBlock): added pCode size estimation
2371         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
2372           check for IS_SYMOP before OP_SYMBOL'ing
2373         * fixed indentation, compacted switch-statements
2374         * (allocReg): find free register and allocate it instead of
2375           allocating new registers all the time
2376         * (deassignLRs): prevent POINTER_GET's from being assigned the same
2377           registers as its operands (necessary only for multibyte GETs)
2378
2379 2005-07-01 Raphael Neider <rneider AT web.de>
2380
2381         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
2382           debugging .asm-output macros FENTRY + FEXIT
2383         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
2384           way... I wonder...
2385         * (emitpComment): NEW, printf to pCode
2386         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
2387           offset handling
2388         * (popGetAddr): NEW, variant of popGet to access an immediates
2389           high(er) bytes instead of the n'th byte of memory they reference,
2390           replaced popGet with popGetAddr where neccessary
2391         * (genDataPointerGet): reactivated and fixed implementation
2392         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
2393           accesses
2394         * (genDataPointerSet): fixed multibyte assignments
2395         * (genpic14Code): fixed --i-code-in-asm handling
2396         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
2397         * (genPlus): fixed index-out-of-bounds error
2398         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
2399         * src/pic/ralloc.c: added debugging output macro FENTRY2
2400         * (spillThis): fixed indentation, enbraced for-body for clarity
2401         * (rematStr): commented out as now unused
2402         * (regTypeNum): commented out special spill case (overwrites
2403           arbitrary values)
2404         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
2405
2406 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
2407
2408         * doc/sdccman.lyx: documented sfr16/sfr32,
2409           added example for using storage class with function pointers
2410         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
2411
2412 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
2413
2414         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
2415         * device/lib/_itoa.c,
2416         * device/lib/_ltoa.c: optimized codesize
2417         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
2418           but don't know how to suppress the double warning.
2419         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
2420         * support/Util/SDCCerr.c,
2421         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
2422
2423 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
2424
2425         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
2426           fixed old K&R prototypes
2427         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
2428         * device/lib/_gptrget.c,
2429         * device/lib/_gptrgetc.c,
2430         * device/lib/_gptrput.c: changed versions for new memory indicator values,
2431           also new versions for small generic pointers and banked generic pointers
2432         * src/port.h: added const_name
2433         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
2434         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
2435         * src/SDCCcse.c (findPrevIc): check all associative operators
2436         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
2437         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
2438         * src/SDCCmem.c: updated comments,
2439           set far-space to 0 for pdata, results in optimized code
2440         * src/SDCCmem.h: added macro CONST_NAME
2441         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
2442           moving the info into the highest bits, see also gptrget/gptrput
2443         * src/src.dsp: added sdcc.ico to project files
2444         * src/avr/gen.c (genCast): fixed bug 0x%d
2445         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
2446         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
2447           relation between ptr_type and DCL_TYPE,
2448           (genCast): fixed bug 0x%d
2449         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
2450           (CODE)" for const_name
2451         * src/hc08/gen.c (genCast): fixed bug 0x%d
2452         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
2453           (hc08_port): added "CONST (CODE)" for const_name
2454         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
2455           (aopForRemat, adjustArithmeticResult): disconnected direct relation
2456           between ptr_type and DCL_TYPE,
2457           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
2458           operand* and took AOP() inside function so sfr-ness can be checked,
2459           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
2460           new prototype,
2461           (genFunction, genEndFunction): optimized stack setup,
2462           (genMinus): optimized for literals with ending zeroes (in bytes),
2463           (genCast): fixed bug 0x%d
2464         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
2465           (mcs51_port): added "CONST (CODE)" for const_name
2466         * src/mcs51/peeph.def: made rule 226 more generic
2467         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
2468         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
2469         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
2470         * src/z80/main.c (z80_port): added NULL for const_name,
2471           (gbz80_port): added NULL for const_name
2472         * support/regression/tests/bug663539.c,
2473         * support/regression/tests/sfr16.c: new tests
2474
2475 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2476
2477         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
2478
2479 2005-06-24 Raphael Neider <rneider AT web.de>
2480
2481         * device/lib/pic16/libdev/pic18f[68][567]20.c:
2482           corrected typos...
2483         * device/include/pic16/signal.h: added USBIF
2484           and SIG_USB
2485
2486 2005-06-24 Raphael Neider <rneider AT web.de>
2487
2488         * device/lib/pic16/libdev/pic18f2455.c,
2489           device/include/pic16/pic18f2455.h: NEW
2490         * device/include/pic16/pic18fregs.h,
2491           device/lib/pic16/pics.all,
2492           src/pic16/device.c: added 18f2455
2493         * device/lib/pic16/libdev/pic18f[68][567]20.c,
2494           device/include/pic16/{pic18f[68][567].h,usart.h}:
2495           replaced MULTIPLE_USARTS define with more relaible
2496           compatibility sfrs (for USART access)
2497
2498 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
2499
2500         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
2501           and the output asm file line is printed on two lines.
2502
2503 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2504
2505         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
2506           BGT, BLE, BHI, and BLS instructions
2507         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
2508           genCmpEq): removed
2509         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
2510           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
2511           fixes bug #1216342
2512         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
2513
2514 2005-06-15 Raphael Neider <rneider AT web.de>
2515
2516         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
2517         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
2518         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
2519           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
2520           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
2521
2522 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2523
2524         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
2525           Marcel Telka in bug #1215704
2526
2527 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
2528
2529         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
2530           located in shared memory bank.
2531
2532 2005-05-31 Raphael Neider <rneider AT web.de>
2533
2534         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
2535           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
2536           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
2537
2538 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
2539
2540         * device/lib/_strncpy.c: fixed the fix
2541
2542 2005-05-26 Raphael Neider <rneider AT web.de>
2543
2544         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
2545           initializers with \0, bug #1208187
2546         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
2547           intializers with \0, bug #1208187
2548
2549 2005-05-26 Raphael Neider <rneider AT web.de>
2550
2551         * src/pic16/glue.c (pic16_printIvalChar): fixed string
2552           initializers with \0, bug #1208187
2553         * src/pic16/main.c (_process_pragma): added sanity checks
2554           for stack position and size, emit warnings when appropriate
2555
2556 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
2557
2558         * device/lib/_strncpy.c: fixed not filling with \0
2559
2560 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2561
2562         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
2563           createFunction),
2564         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
2565           compound_statement),
2566         * src/SDCCsymt.h,
2567         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
2568
2569 2005-05-24 Raphael Neider <rneider AT web.de>
2570
2571         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
2572
2573 2005-05-24 Raphael Neider <rneider AT web.de>
2574
2575         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
2576           TRISE definitions, closes bug #1162453
2577
2578 2005-05-22 Raphael Neider <rneider AT web.de>
2579
2580         * src/pic16/main.c (_process_pragma): check for missing
2581           arguments to pragmas code and udata
2582         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
2583           consistency fixes to match other headers (thanks to Jim Paris)
2584         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
2585
2586 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
2587
2588         * src/SDCCicode.c (isOperandEqual): fixed missing ;
2589
2590 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
2591
2592         * support/regression/tests/bug1198642.c: new test
2593         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
2594         * src/SDCCcse.c (findPrevIc): added comment, please have a look
2595         * support/scripts/resource.h,
2596         * support/scripts/resource.rc,
2597         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
2598         * support/scripts/sdcc.ico: added 32x32 icon
2599
2600 2005-05-18 Raphael Neider <rneider AT web.de>
2601
2602         * device/lib/pic16/libdev/pic18f*.c,
2603         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
2604           keywords to "__sfr" and "__at (X)"
2605         * device/include/pic16/pic18fregs.h: added pic18f4520
2606         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
2607           #1203088 (MPLAB compatibility)
2608
2609 2005-05-17 Raphael Neider <rneider AT web.de>
2610
2611         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
2612         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
2613         * device/lib/pic16/pics.all: added new devices
2614         * src/pic16/device.c: added support for pic18f4520
2615
2616 2005-05-16 Raphael Neider <rneider AT web.de>
2617         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
2618         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
2619         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
2620           convenience function for bit access
2621
2622 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
2623
2624         * device/lib/printf_large.c: fixed bug 1193299
2625         * support/regression/tests/bug1057979.c: added test %3.3s
2626
2627 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2628
2629         * device/include/mcs51/8051.h,
2630         * device/include/mcs51/8052.h: made parseable with lint
2631         * device/include/mcs51/lint.h: added include file for (sp)lint
2632         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
2633         * doc/cdbfileformat.lyx,
2634         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
2635
2636 2005-05-14 Raphael Neider <rneider AT web.de>
2637
2638         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
2639         * device/lib/pic16/libc/stdlib/itoa.c (new)
2640         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
2641         * device/lib/pic16/libio/Makefile: exclude subdir according to
2642           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
2643         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
2644         * src/pic16/gen.c (genFunction): prevent annoying warning
2645         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
2646           nameclashes on BeOS
2647         * support/cpp2/cppmain.c (cpp_output_string): new
2648         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
2649           fixes bug 1116802
2650
2651 2005-05-13 Borut Razem <borut.razem AT siol.net>
2652
2653         * src/SDCCmain.c (linkEdit): fixed bug 1195202
2654
2655 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2656
2657         * .version: changed to version 2.5.1; back to bleeding edge development
2658
2659 2005-05-11 Borut Razem <borut.razem AT siol.net>
2660
2661         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
2662           generate PDF version 1.3 documents
2663
2664 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2665
2666         * .version: changed to version 2.5.0
2667
2668 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2669
2670         * doc/sdccman.lyx: updated weblinks, index and smaller updates
2671
2672 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2673
2674         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
2675         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
2676         well as many smaller updates.
2677         * .version: changed to version 2.5.0-pre1
2678
2679 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2680
2681         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
2682
2683 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
2684
2685         * support/regression/tests/bug1185672.c: added
2686         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
2687           bug 1185672
2688         * src/mcs51/gen.c (genCall): added comments, made it look safer
2689         * src/mcs51/gen.c (genEndFunction): simplified
2690
2691 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
2692
2693         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
2694
2695 2005-04-14 Borut Razem <borut.razem AT siol.net>
2696
2697         * fixed bug 1045046 - SIGSEGV with really simple code?:
2698           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
2699           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
2700
2701 2005-04-14 Borut Razem <borut.razem AT siol.net>
2702
2703         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
2704           src/pic16/device.h: temporarily disabled experimental #inline pragma
2705           for 2.5.0 release
2706
2707 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
2708
2709         * device/include/z80/stdio.h,
2710         * device/include/z80/string.h: removed these highly incomplete files so
2711           SDCC can use the default ones in device/include/
2712
2713 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2714
2715         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
2716         gcc warning.
2717         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
2718         fix sdcpp warnings.
2719
2720 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2721
2722         * device/include/malloc.h: removed redundant __reentrant prototypes
2723         * device/lib/_mullong.c: added working xstack variant in asm (C version
2724           doesn't pass regression tests)
2725         * device/lib/bpx.c: used __data and made bpx char for mcs51
2726         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
2727           (createFunction): fixed bug with xstackPtr
2728         * src/SDCCcse.c: corrected comments
2729         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
2730           (killDeadCode, eBBlockFromiCode): removed unused code
2731         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
2732           corrected comments
2733         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
2734           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
2735           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
2736           (genModOneByte): fixed warning in MSVC
2737         * src/mcs51/main.c (): added comments
2738         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
2739
2740 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2741
2742         * src/SDCCmain.c (linkEdit): oops, changed one line too many
2743
2744 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
2745
2746         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
2747
2748 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
2749
2750         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
2751         characters arrays of larger size than the declared one.
2752
2753 2005-04-10 Borut Razem <borut.razem AT siol.net>
2754
2755         * src/pic/gen.c (genInline),
2756           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
2757           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
2758           (findNextInstruction), (findPrevInstruction),
2759           (findInstructionUsingLabel),
2760           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
2761         * src/pic/pcode.c (findLabel): added missing '\n'
2762         * src/src.dsp: added SDCCdwarf2.c to the project
2763
2764 2005-04-09 Borut Razem <borut.razem AT siol.net>
2765
2766         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
2767
2768 2005-04-08 Raphael Neider <rneider AT web.de>
2769
2770         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
2771           into the chain after a given one) and mergeDefmapSymbols (combine
2772           defmap entries for each symbol per pcode)
2773         * (createDefmap): have defmap entries merged in the end
2774         * (defmapReplaceSymRef): split defmap entries covering two accesses to
2775           a symbol before replacing one access type's symbol, merge symbols in
2776           the end (replacement symbol might already have an entry)
2777         * (assignValnums): keep reference to written WREG intact
2778
2779 2005-04-08 Raphael Neider <rneider AT web.de>
2780
2781         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
2782           Alpha)
2783
2784 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
2785
2786         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
2787         bytes
2788
2789 2005-04-07 Raphael Neider <rneider AT web.de>
2790
2791         * device/include/pic16/usart.h: added compatibility defines for
2792           devices with more than one USART
2793         * device/include/pic16/pic18f[68][567]20.h: activated above defines
2794
2795 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2796
2797         * device/lib/Makefile.in: updated for port specific include
2798
2799 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2800
2801         * support/regression/ports/mcs51/spec.mk: added mcs51 include
2802
2803 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2804
2805         * device/include/8051.h,
2806         * device/include/8052.h,
2807         * device/include/at89S8252.h,
2808         * device/include/at89c55.h,
2809         * device/include/at89x051.h,
2810         * device/include/at89x51.h,
2811         * device/include/at89x52.h,
2812         * device/include/mcs51reg.h,
2813         * device/include/reg51.h,
2814         * device/include/reg764.h,
2815         * device/include/regc515c.h,
2816         * device/include/sab80515.h: (re)moved these 12 files
2817         * device/include/mcs51/8051.h,
2818         * device/include/mcs51/8052.h,
2819         * device/include/mcs51/at89S8252.h,
2820         * device/include/mcs51/at89c55.h,
2821         * device/include/mcs51/at89x051.h,
2822         * device/include/mcs51/at89x51.h,
2823         * device/include/mcs51/at89x52.h,
2824         * device/include/mcs51/mcs51reg.h,
2825         * device/include/mcs51/reg51.h,
2826         * device/include/mcs51/reg764.h,
2827         * device/include/mcs51/regc515c.h,
2828         * device/include/mcs51/sab80515.h: and added them here
2829
2830 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
2831
2832         * device/include/stdarg.h: changed SDCC specific keywords to double
2833           underlined form.
2834         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
2835           mcs51 and ds390.
2836         * device/include/hc08/mc68hc908gp32.h,
2837         * device/include/hc08/mc68hc908jb8.h,
2838         * device/include/hc08/mc68hc908jkjl.h,
2839         * device/include/hc08/mc68hc908qy.h: fixed comments
2840         * device/include/mcs51/README: updated
2841         * device/include/mcs51/c8051f120.h: added PINRSF
2842         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
2843         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
2844           amidst code. Also inline is not supported.
2845
2846 2005-04-06 Raphael Neider <rneider AT web.de>
2847
2848         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
2849         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
2850           callers stack/frame pointers
2851
2852 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
2853
2854         * device/include/pic16/usart.h: added, missing in previous commit,
2855         * device/include/pic16/adc.h: fixed typo,
2856         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
2857         commit,
2858         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
2859         <p18fxxx.inc>
2860         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
2861         uninitialized because a bug appears with gplink
2862         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
2863         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
2864         complains for unrecognised option
2865
2866 2005-04-05 Raphael Neider <rneider AT web.de>
2867
2868         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
2869           structs as well (using memcpy)
2870         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
2871           on ISRs (GOTO has no label)
2872         * src/pic16/device.h: added OF_OPTIMIZE_DF
2873         * src/pic16/main.c: added compiler switch --optimize-df to enable the
2874           new data flow analysis/optimization
2875         * src/pic16/pcode.c: added (prototypes for and implementation of)
2876           dataflow analysis functions, fixed pCodeInstructions' inCond and
2877           outCond values, made RCALL a branch instruction
2878         * (pic16_unlinkpCode): keep C line if possible
2879         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
2880           C line moved if possible
2881         * (pic16_getRegFrompCodeOp): NEW, improved version of...
2882         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
2883           to use new pic16_getRegFrompCodeOp (works for more SFRs)
2884         * (pic16_BuildFlow): fixed skip instructions with label (did not start
2885           new flow)
2886         * (pic16_getJumptabpCode): NEW, needed in...
2887         * (LinkFlow): fixed handling of jumptables, calls and conditional
2888           branches
2889         * (pic16_InsertCommentAfter): NEW
2890         * (pic16_pCodeReplace): made verbose and flow preserving
2891         * (AnalyzeFlow): added call to data flow analysis
2892         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
2893         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
2894         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
2895
2896 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2897
2898         * src/SDCCast.c (decorateType): fixed bug #1105626
2899
2900 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
2901
2902         * device/include/asm/pic16/features.h,
2903         * pic18f*.h headers,
2904         * device/include/pic16/adc.h,
2905         * device/include/pic16/delay.h,
2906         * device/include/pic16/i2c.h,
2907         * device/include/pic16/malloc.h,
2908         * device/include/pic16/stdio.h,
2909         * device/include/pic16/stdlib.h,
2910         * device/include/pic16/string.h,
2911         * device/lib/pic16/libc/stdio/printf_tiny.c,
2912         * device/lib/pic16/libc/stdio/printf_small.c,
2913         * device/lib/pic16/libc/stdio/strmgpsim.c,
2914         * device/lib/pic16/libc/stdio/strmmssp.c,
2915         * device/lib/pic16/libc/stdio/strmusart.c,
2916         * device/lib/pic16/libc/stdio/vfprintf.c,
2917         * device/lib/pic16/libc/stdlib/ltoa.c,
2918         * device/lib/pic16/libc/stdlib/putchar.c,
2919         * device/lib/pic16/libc/stdlib/x_ftoa.c,
2920         * device/lib/pic16/libc/stdlib/memchrpgm.c,
2921         * device/lib/pic16/libc/stdlib/memchrram.c,
2922         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
2923         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
2924         * device/lib/pic16/libio/adc/adcbusy.c,
2925         * device/lib/pic16/libio/adc/adcread.c,
2926         * device/lib/pic16/libio/adc/adcsetch.c,
2927         * device/lib/pic16/libio/usart/ubaud.c,
2928         * device/lib/pic16/libio/usart/ubusy.c,
2929         * device/lib/pic16/libio/usart/udrdy.c,
2930         * device/lib/pic16/libio/usart/uopen.c,
2931         * device/lib/pic16/libio/usart/uputc.c,
2932         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
2933         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
2934         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
2935         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
2936         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
2937         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
2938         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
2939         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
2940         specific keywords to double underlined form,
2941         * device/lib/pic16/libc/Makefile.rules,
2942         * device/lib/pic16/libsdcc/Makefile.rules,
2943         * device/lib/pic16/libm/Makefile,
2944         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
2945         to compile with C standard set in Makefile.common
2946         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
2947         rand.c and crc.c in compilation process,
2948         * device/lib/pic16/libsdcc/int/divuint.c,
2949         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
2950         `c' from signed to unsigned,
2951         * device/lib/pic16/startup/crt0.c,
2952         * device/lib/pic16/startup/crt0i.c,
2953         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
2954         keywords to double underlined form, bug fixes in _do_cinit function
2955         which prevented the correct initialization of the .idata segment,
2956         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
2957         core to enter a infinite loop
2958         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
2959
2960 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2961
2962         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
2963
2964 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2965
2966         * device/include/Makefile.in: add support for hc08 subdirectory
2967         * device/include/hc08/: new subdirectory
2968         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
2969         Lucas Loizaga, thanks!
2970         * device/include/hc08/mc68hc908qy.h,
2971         * device/include/hc08/mc68hc908gp32.h,
2972         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
2973         their own directory. Changed internal macro names to use the compiler
2974         reserved namespace. Changed SDCC specific keywords to double
2975         underlined form.
2976         * device/include/math.h,
2977         * device/include/malloc.h,
2978         * device/include/stdarg.h,
2979         * device/include/stdbool.h
2980         * device/include/string.h,
2981         * device/include/tinibios.h,
2982         * device/include/ds400rom.h,
2983         * device/include/8051.h,
2984         * device/include/8052.h,
2985         * device/include/80c51xa.h,
2986         * device/include/at89c55.h,
2987         * device/include/at89S8252.h,
2988         * device/include/at89x51.h,
2989         * device/include/at89x52.h,
2990         * device/include/ds80c390.h,
2991         * device/include/reg764.h,
2992         * device/include/regc515c.h,
2993         * device/include/sab80515.h,
2994         * device/include/mcs51/c8051f000.h,
2995         * device/include/mcs51/c8051f018.h,
2996         * device/include/mcs51/c8051f020.h,
2997         * device/include/mcs51/c8051f040.h,
2998         * device/include/mcs51/c8051f060.h,
2999         * device/include/mcs51/c8051f120.h,
3000         * device/include/mcs51/c8051f300.h,
3001         * device/include/mcs51/c8051f310.h,
3002         * device/include/mcs51/c8051f320.h,
3003         * device/include/mcs51/c8051f330.h,
3004         * device/include/mcs51/c8051f350.h,
3005         * device/include/z180.h: Changed SDCC specific keywords to double
3006         underlined form.
3007
3008 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
3009
3010         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
3011         18F4455,
3012         * (pic16_assignConfigWordValue): disable testing of configuration
3013         register value with config mask,
3014         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
3015         function with port->fun_prefix,
3016         * (genFunction): when generating a naked interrupt function never
3017         create an absolute segment placed in interrupt vector address, place
3018         the actual interrupt function at IVA instead, when an interrupt
3019         function is generated with unspecified interrupt then do not create
3020         the absolute section,
3021         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
3022         code for generating a call to generic pointer get/put function with
3023         a call to function pic16_callGenericPointer(),
3024         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
3025         the call to the generic pointer get/put functions with prefixing the
3026         function name with port->fun_prefix,
3027         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
3028         * src/pic16/main.c (_process_pragma): prefix function with
3029         port->fun_prefix,
3030         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
3031         calling assembler, old 18Fxxxx macro is deprecated,
3032         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
3033         PC_ASMDIR in while condition,
3034         * (findInstruction): add PC_ASMDIR in while condition,
3035         * (buildCallTree): prefix main with port->fun_prefix,
3036         * (pic16_pCode2str): fixed bug that didn't emit the memory access
3037         identifier for variable with banked access in instructions BTFSS,
3038         BTFSC, BCF, BSF, BTG
3039         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
3040         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
3041         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
3042         perform optimization when enviroment variable NO_REG_OPT is set,
3043         * (insideLRBlock): NEW, return 1 if register is inside an
3044         INF_LOCALREGS block,
3045         * (RemoveRegFromLRBlock): remove a register that is completely
3046         eliminated by register optimization, but it is still left in local
3047         register store/restore in/from stack block,
3048         * (Remove2pcodes): after removing register, check to see if it
3049         should be removed from local register store/restore in/from stack
3050         block,
3051         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
3052         DUMMY_READ_VOLATILE,
3053
3054         * device/include/pic16/adc.h: minor prototype modifications and
3055         update,
3056         * device/include/pic16/malloc.h: added GPL notice various
3057         modifications,
3058         * device/include/pic16/stdint.h: NEW, standard header for ints
3059         * device/include/pic16/delay.h: NEW, header for delay functions,
3060         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
3061         delay1mtcy,
3062         * device/include/pic16/signal.h: NEW, header providing helper macros
3063         for implementing signal handlers,
3064         * device/include/pic16/stdio.h: added prototypes for functions,
3065         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
3066         prototypes for stdin and stdout, added macro PUTCHAR to
3067         automatically implement putchar function prototype,
3068         * device/include/pic16/usart.h: modified and updated USART library,
3069         * device/lib/pic16/libio/adc/,
3070         * device/lib/pic16/libio/i2c: some modifications to improve library
3071         performance,
3072         * device/lib/pic16/libc/stdio/: modifications for the new printf*
3073         family of functions,
3074         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
3075         family of functions and other sources,
3076         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
3077         of the PIC18Fxx[28] devices,
3078         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
3079         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
3080         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
3081         _do_cinit function, because the previous failed when local variables
3082         where not placed in the same memory bank,
3083         * device/lib/pic16/libsdcc/char/: various modifications to improve
3084         library performance,
3085         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
3086         information on the new functions of the c library and more...
3087
3088 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3089
3090         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
3091
3092 2005-03-26 Raphael Neider <rneider AT web.de>
3093
3094         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
3095           if condition == CARRY)
3096         * (genCmp): adapted to new genSkipc semantics
3097         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
3098           on rIfx (genCmp was broken)
3099
3100 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3101
3102         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
3103         * src/z80/main.c (_keywords[]),
3104         * src/SDCCglobal.h (struct options),
3105         * src/SDCC.y,
3106         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
3107         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
3108         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
3109         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
3110         always available in leading double underscore form. The C99 support is
3111         mostly missing, but it's a start.
3112         * support/regression/tests/bug-227710.c: fixed nonconforming use of
3113         reserved identifier "__data".
3114
3115 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
3116
3117         * src/mcs51/peeph.def: fixed bug 1170013
3118
3119 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
3120
3121         * device/include/mcs51reg.h: fixed bug 842007
3122
3123 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3124
3125         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
3126         last time.
3127
3128 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3129
3130         * src/port.h (struct PORT),
3131         * src/avr/ralloc.c (avr_assignRegisters),
3132         * src/avr/main.c,
3133         * src/ds390/ralloc.c (ds390_assignRegisters),
3134         * src/ds390/main.c,
3135         * src/hc08/ralloc.c (hc08_assignRegisters),
3136         * src/hc08/main.c,
3137         * src/mcs51/ralloc.c (mcs51_assignRegisters),
3138         * src/mcs51/main.c,
3139         * src/pic/ralloc.c (pic14_assignRegisters),
3140         * src/pic/main.c,
3141         * src/pic16/ralloc.c (pic16_assignRegisters),
3142         * src/pic16/main.c,
3143         * src/xa51/ralloc.c (xa51_assignRegisters),
3144         * src/xa51/main.c,
3145         * src/z80/ralloc.c (z80_assignRegisters),
3146         * src/z80/ralloc.h,
3147         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
3148         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
3149         * src/SDCCcse.h,
3150         * src/SDCCdflow.c (computeDataFlow),
3151         * src/SDCCdflow.h,
3152         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
3153         * src/SDCCloop.h,
3154         * src/SDCCcflow.c (*),
3155         * src/SDCCcflow.h,
3156         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
3157         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
3158         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
3159         immedDom() returning wrong block; probably fixes bug #1160833)
3160
3161 2005-03-20 Borut Razem <borut.razem AT siol.net>
3162
3163         * support/scripts/inc2h.pl: WIN32 port
3164
3165 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
3166
3167         * device/lib/makefile.in: added abs.c and labs.c
3168
3169 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
3170
3171         * device/include/stdint.h: added
3172         * device/lib/abs.c: added
3173         * device/lib/labs.c: added
3174         * device/include/stdlib.h: added abs() and labs() prototypes
3175         * device/lib/libsdcc.lib: added abs and labs
3176         * device/include/float.h,
3177         * device/lib/_fsmul.c,
3178         * device/lib/printf_fast.c,
3179         * device/lib/printf_tiny.c: updated comments
3180
3181 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3182
3183         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
3184         bug #1164313
3185
3186 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3187
3188         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
3189         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
3190
3191 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
3192
3193         * device/lib/printf_large.c: removed inline assembly for portability and
3194           readability. Use printf_fast if speed or size are more important.
3195         * src/pic16/gen.c: removed conditions around use of DEBUGpc
3196         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
3197
3198 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
3199
3200         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
3201         prevent compiler warning
3202
3203 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
3204
3205         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
3206         moved to level 0 and declared as static. Also they are explicit
3207         placed in access bank. This was necessery because some times they
3208         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
3209         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
3210         optimizations. Currently only compare to unsigned char is implemented,
3211         * src/pic16/gen.c: added fReturnIdx array,
3212         * (struct resolvedIfx) is moved to gen.h and made public,
3213         * (struct _G): added sregsAlloc and sregsAllocSet fields,
3214         * (aopForSym): added an optimization to directly store in stack of
3215         the operand of a SEND iCode,
3216         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
3217         but as registers instead (AOP_REG) using the fReturnIdx array,
3218         * (pic16_freeAsmop): remove the freed register from the
3219         _G.sregsAlloc field,
3220         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
3221         a compare of 'WREG',
3222         * (pic16_popGetTempRegCond): changed function prototype, now
3223         function takes also a bitVector argument v which holds the current
3224         set of registers that are allocated for stack access by aopForSym,
3225         registers allocated in aopForSym for accessing stack symbols are not
3226         any more part of the functions usedRegs field,
3227         * (genCall): some times aopOp is called for a stack variable to be
3228         send, aopForSym might perform the push, if this is true make sure
3229         that genCall doesn't push the variable twice by testing _G.resDirect,
3230         * (genFunction): changed testing for unspecified interrupt number
3231         from 256 to INTNO_UNSPEC,
3232         * modified selection scheme of frame pointer generation. Previously
3233         if function did use local registers a frame pointer was generated,
3234         now a frame pointer is generated only if function has arguments
3235         (that need PLUSW2 register access), or has stack arguments, or the
3236         compiler is not instructed to omit the frame pointer,
3237         * (genEndFunction): before restoring local registers that were saved
3238         in the function preamble, also restore the registers that *might*
3239         have been allocated for stack access,
3240         * (genRet): removed some old comments,
3241         * (genCmp, the active (RN's) version): added a call to the
3242         pic16_genCmp_special function to perform the compare with a more
3243         robust and optimized way,
3244         * (genInline): a feature has been added in inline code generation,
3245         which allows a wildcard variable substitution when writing inline
3246         assembly. Code is incomplete and experimental therefore undocumented,
3247         * (genCast): changed order of aopOp for result and right to allow
3248         aopForSym to directly load the result if possible,
3249         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
3250         perform an optimized compare on some selected special occasions,
3251         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
3252         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
3253         generate an IVT any more,
3254         * src/pic16/main.c (pic16_optionsTable): added command line option
3255         --optimize-cmp,
3256         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
3257         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
3258         macros,
3259         * src/pic16/NOTES: Raphael Neider added in list of active developers
3260         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
3261         jumptable_end to prevent bug #,
3262         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
3263         inCond and outCond fields,
3264         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
3265         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
3266         turn off register spilling,
3267         * (packRegsForOneUse): synced with other ports' versions although it
3268         is not used currently,
3269         * (pic16_packRegisters): added an optimization while reading
3270         structure bitfields, some registers may be saved (malloc code is
3271         decreased by 80 bytes)
3272
3273 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
3274
3275         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
3276         left is a bitfield, if yes, then don't optimize assignment. Perhaps
3277         this can be optimized more?
3278
3279 2005-03-10 Raphael Neider <rneider AT web.de>
3280
3281         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
3282           genNearPointerGet): (hopefully) fixed access to bitfields via
3283           pointers (p->bitN = x; and x = p->bitN; failed)
3284
3285 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
3286
3287         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
3288
3289 2005-03-09 Raphael Neider <rneider AT web.de>
3290
3291         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
3292
3293 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
3294
3295         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
3296         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
3297           (regTypeNum): set REG_BIT type if necessary
3298         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
3299         * support/regression/tests/critical.c: check bug 1144613
3300
3301 2005-03-02 Raphael Neider <rneider AT web.de>
3302
3303         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
3304
3305 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3306
3307         * src/avr/ralloc.c (serialRegAssign),
3308         * src/ds390/ralloc.c (serialRegAssign),
3309         * src/hc08/ralloc.c (serialRegAssign),
3310         * src/mcs51/ralloc.c (serialRegAssign),
3311         * src/pic/ralloc.c (serialRegAssign),
3312         * src/pic16/ralloc.c (serialRegAssign),
3313         * src/xa51/ralloc.c (serialRegAssign),
3314         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
3315
3316 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
3317
3318         * src/SDCCast.c (decorateType): fixed bug 1124787
3319
3320 2005-02-20 Hubert Sack <sack AT digiplan.de>
3321         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3322
3323         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
3324         patch #1121755
3325
3326 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3327
3328         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
3329         to keep the correct label reference count when adding/removing references
3330         to labels. A peephole file using this is appended to patch #1144962.
3331
3332 2005-02-14 Raphael Neider <rneider AT web.de>
3333
3334         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
3335         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
3336         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
3337           retrievals of result operand's value on assignment
3338
3339 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
3340
3341         * device/include/pic16/string.h: modified prototype for memccpy()
3342         to memccpy(void *, void *, char, size_t)
3343         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
3344         check whether to omit frame pointer or not,
3345         * (genInline): convert all occurences of "\n" to LF in inline
3346         assembler blocks, this helps formatting the inline text,
3347         * (pic16_loadFSR0): modified prototype,
3348         * (genNearPointerGet, genNearPointerSet): reorganization of code,
3349         removed some 8051 legacy code,
3350         * (genPackBits): enabled handling bitfields exceeding one byte in size,
3351         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
3352         before allocating temporary registers in functions,
3353
3354 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
3355
3356         * support/regression/tests/bitvars.c: corrected the "fix"
3357
3358 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
3359
3360         * support/regression/tests/bitvars.c,
3361         * support/regression/tests/bitwise.c,
3362         * support/regression/tests/rotate.c: "fixed" problems on Alpha
3363
3364 2005-02-10 Raphael Neider <rneider AT web.de>
3365
3366         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
3367           different size for Alpha
3368         * src/pic16/gen.c (genCmpEq) : improved compare with 0
3369
3370 2005-02-09 Raphael Neider <rneider AT web.de>
3371
3372         * src/SDCC.lex(doPragma) : save and restore warning options as well
3373           (also added new stack plus clone- and copyAndFreeSDCCERRG())
3374         * have #pragma less_pedantic set the errorlevel to WARNING
3375           (fixes #1117001)
3376         * (cloneOptimize) : fixed wrong malloc's size
3377         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
3378           facilitate correct handling of #pragma (save|restore)
3379
3380 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
3381
3382         * src/mcs51/gen.c: removed non-standard C nameless struct/union
3383
3384 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
3385
3386         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
3387
3388 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
3389
3390         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
3391
3392 2005-02-02 Raphael Neider <rneider AT web.de>
3393
3394         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
3395         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
3396         * (pic16_storeForReturn): fixed to allow returning function pointers
3397         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
3398         * device/include/pic16/{stddef.h,stdbool.h}: added
3399
3400 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
3401
3402         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
3403
3404 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
3405
3406         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
3407         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
3408          appeared to be required
3409
3410 2005-01-31 Borut Razem <borut.razem AT siol.net>
3411
3412         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
3413           include/mcs51 and include/z80 directories to the package
3414
3415 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3416
3417         * src/hc08/gen.c (genFunction): fixed bug #1112752
3418
3419 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3420
3421         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
3422
3423 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3424
3425         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
3426
3427 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
3428
3429         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
3430
3431 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
3432
3433         * device/include/c8051fxxx.h: removed these 6 files
3434         * device/include/mcs51/c8051fxxx.h: added these 11 new files
3435
3436 2005-01-26 Raphael Neider <rneider AT web.de>
3437
3438         * src/pic16/gen.c (genAssign): fixed assignment from longs
3439           in codespace (were cut to three bytes)
3440         * (genDummyRead): implemented (except for CODESPACE...),
3441           fixed bug #1108575
3442         * src/pic16/glue.c (emitStatistics): beautified
3443         * device/lib/pic16/libm/Makefile: added include path
3444
3445 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3446
3447         * src/z80/gen.c (aopPut): fixed bug #1103902
3448
3449 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3450
3451         * device/lib/expf.c: fixed bug #1095792
3452
3453 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
3454
3455         * device/lib/pic16/libm: added Math library sources
3456
3457 2005-01-24 Raphael Neider <rneider AT web.de>
3458
3459         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
3460           to enable upcast to pCodeOpReg2 (there is no type tag to
3461           differenciate the two and pic16_popGet2p cast into PCOR2)
3462         * src/pic16/main.c (_process_pragma): fixed another malloc bug
3463           (sizeof(sectNames) changed to sizeof(sectName))
3464           Both patches fix segfaults under MinGW.
3465
3466 2005-01-23 Raphael Neider <rneider AT web.de>
3467
3468         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
3469           Safe_[mc]?alloc()'ed variables
3470         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
3471           of (byte sized) temporaries (assign them to WREG for now)
3472         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
3473           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
3474           this might fix SIGSEGVs on MinGW...
3475         * src/SDCCopt.c (killDeadCode): restored original behaviour
3476           (volatile operands might get thrown away though)
3477
3478 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
3479
3480         * src/pic16/gen.c: fixed bug #1106975,
3481         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
3482         pointer update, INTCON is saved, global interrupts are disabled and
3483         restored after updateing TOS.
3484         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
3485         * added function attribute 'shadowregs' to take advantage of shadow
3486         registers,
3487         * added function attribute 'wparam' as an alternative to the wparam
3488         pragma,
3489         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
3490         user declares a non-ISR function as 'shadowregs',
3491         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
3492
3493 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
3494
3495         * .version: bumped version number to 2.4.8
3496         * device/lib/pic16/pics.all: list of PIC18F devices supported by
3497         pic16 port,
3498         * device/lib/pic16/libio/i2c/: I2C module support library,
3499         * device/include/pic16/i2c.h: I2C support library header,
3500         * device/lib/pic16/libc/stdio/: standard IO support sources,
3501         * (printf_small.c): printf_small() source, supports float print,
3502         * (printf_tiny.c): printf_tiny() source, does not support floats,
3503         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
3504         enable global optimizations for entire library source, other
3505         Makefiles in the source tree are also modified to reflect this,
3506         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
3507         function,
3508         * doc/sdccman.lyx: updated to reflect new changes,
3509         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
3510         sym->onStack if-case,
3511         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
3512         sbit, idata, _idata, xdata, _xdata,
3513         * added pragma library, to link an external library, (see doc),
3514         * removed command line options, --pomit-config-words, --pomit-ivt,
3515         --pleave-reset-vector,
3516         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
3517         when calling assembler to reflect memory model used, also define
3518         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
3519         reflect stack model used,
3520         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
3521         on stack return NULL,
3522
3523 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3524
3525         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
3526           of the operands is volatile. Fixes #1020220
3527
3528 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3529
3530         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
3531         * (OptimizeRegUsage): make sure that there is really no other flow where
3532           the first pCode is used
3533
3534 2005-01-22 Raphael Neider <rneider AT web.de>
3535
3536         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
3537           to fix #1106967 (pCode->seq are not set up correctly)
3538
3539 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3540
3541         * src/SDCCglue.c (glue): make sure code area is declared before the
3542         static initialization area.
3543
3544 2005-01-21 Raphael Neider <rneider AT web.de>
3545
3546         * device/lib/Makefile.in: fixed test for pic16 install dir
3547         * device/lib/pic16/*/Makefile*: modified compile flags to enable
3548           optimizations
3549         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
3550           added --optimize-goto compiler switch and pragma wparam documentation
3551         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
3552         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
3553           and PRODH closing bug #1071770 (peephole optimizer)
3554
3555 2005-01-19 Raphael Neider <rneider AT web.de>
3556
3557         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
3558           cmdLine buffers (used when calling sdcpp...) are large enough
3559           (MAX_PATH=256 truncates arguments leading to system halts when
3560           used in MinGW...)
3561         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
3562         * (genUminus): rewritten to for efficiency
3563         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
3564           used uninitialized in some cases)
3565         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
3566           copy the third byte from the int -- now assumes 0x80 (data memory)
3567         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
3568           operands (genAddLit expects the iCode's operands to swapped as
3569           well), fixed leftover bytes (crashed for short left operands)
3570         * (pic16_genMinusDec): performance improvements, removed false
3571           PIC14 emitSKPNCs
3572         * (pic16_genMinus): fixed to cope with differently sized operands
3573         * src/pic16/glue.c (pic16_glue): added new banksel optimization
3574           for --obanksel > 1
3575         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
3576         * src/pic16/graph.[ch]: implementation of directed graphs, used by
3577           new banksel optimization
3578         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
3579           analysis for temporary registers (segfaults...)
3580         * src/pic16/peeph.def: added rule
3581
3582 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
3583
3584         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
3585         which converts a float number to its ASCII representation
3586         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
3587         functions to convert the fractional and integer part of a float to ASCII,
3588         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
3589         realloc.c): added _MALLOC_SPEC to explicit place variables in data
3590         ram
3591         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
3592         _STATMEM macros,
3593         * device/include/pic16/adc.h: added GPL info,
3594         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
3595         a pCodeOp as tested operand,
3596         * (genNearPointerGet): optimized bit testing, does not use
3597         intermediate register for bit value, test directly instead with
3598         BTFSS, BTFSC, works only for single bits,
3599         * (genpic16Code): dump the name of the iCode in the asm,
3600         * src/pic16/ralloc.c (decodeOp): removed static declaration and
3601         renamed to pic16_decodeOp,
3602         * (serialRegAssign): do not allocate a temporary register for iCode
3603         sequences that test a single bit for 1/0
3604
3605 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
3606
3607         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
3608         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
3609         access stack and frame pointers. They are initially assigned to
3610         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
3611         accessing SFRs. Updated all occurences of modification of stack or
3612         frame pointer in gen.c and pcode.c,
3613         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
3614         assigning of a literal value to pointers,
3615         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
3616         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
3617         selected
3618
3619 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
3620
3621         * doc/sdccman.lyx: update documentation about stack pragma, added
3622         some info for stack memory models
3623
3624 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3625
3626         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
3627
3628 2005-01-08 Raphael Neider <rneider AT web.de>
3629
3630         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
3631           udata sections to fix bug #1097823
3632
3633 2005-01-05 Raphael Neider <rneider AT web.de>
3634
3635         * src/pic16/gen.c (genGenericShift): added handling of differently
3636           sized left operand and result
3637
3638 2005-01-04 Raphael Neider <rneider AT web.de>
3639
3640         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
3641         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
3642           to hold the condition bit)
3643         * added new version of genCmp (old code available via #define)
3644         * added new version of genShiftLeft/genShiftRight in a generic
3645           way, now supports shifting by negative values
3646         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
3647           shiftCount (expected by genGenericShift)
3648         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
3649         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
3650           dump
3651         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
3652           is an invalid literal too...)
3653
3654 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
3655
3656         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
3657         from Raphael Neider,
3658         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
3659         for 8-bit literals. This fixes some literal operands which are sign
3660         extended to 16-bits ints when instruction needs only 8-bits.
3661
3662 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
3663
3664         * device/lib/logf.c: added mcs51 assembly version
3665         * device/lib/expf.c: added mcs51 assembly version
3666         * device/lib/_logexpf.c: new shared asm code for expf and logf
3667         * device/include/math.h: add defines for assembly math library
3668         * device/lib/Makefile.in: build new _logexpf.c
3669         * device/lib/libfloat.lib: use new _logexpf.c
3670
3671 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3672
3673         * src/pic/device.c
3674         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
3675           device types which have less than 0x7f registers.
3676
3677 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3678
3679         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
3680
3681 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3682
3683         * device/lib/printf_fast.c: only build on supported arch.
3684         * device/lib/printf_tiny.c: only build on supported arch.
3685         * device/lib/printf_fast_f.c: only build if asm float lib
3686         * device/lib/_fsget1arg.c: only build if asm float lib
3687         * device/lib/_fsget2args.c: only build if asm float lib
3688         * device/lib/_fsnormalize.c: only build if asm float lib
3689         * device/lib/_fsreturnval.c: only build if asm float lib
3690         * device/lib/_fsrshift.c: only build if asm float lib
3691         * device/lib/_fsswapargs.c: only build if asm float lib
3692         * device/include/stdio.h: don't provide print_fast,
3693           print_fast_f, print_tiny prototypes if --xstack used
3694
3695 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
3696
3697         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
3698         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
3699           to the SOURCES
3700
3701 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3702
3703         * device/lib/printf_fast_f.c: same as printf_fast, but
3704           with floating point enabled
3705         * device/lib/printf_fast.c: minor tweaks
3706         * device/include/stdio.h: add printf_fast_f
3707
3708 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3709
3710         * src/SDCCmain.c: make --float-reent default for mcs51
3711         * device/lib/_fsadd.c: added mcs51 assembly version
3712         * device/lib/_fssub.c: added mcs51 assembly version
3713         * device/lib/_fsmul.c: added mcs51 assembly version
3714         * device/lib/_fsdiv.c: added mcs51 assembly version
3715         * device/lib/_fseq.c: added mcs51 assembly version
3716         * device/lib/_fsneq.c: added mcs51 assembly version
3717         * device/lib/_fsgt.c: added mcs51 assembly version
3718         * device/lib/_fslt.c: added mcs51 assembly version
3719         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
3720         * device/lib/Makefile.in: add _fscmp to build
3721         * device/lib/libfloat.lib: add _fscmp to build
3722
3723 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3724
3725         * device/lib/_fs2slong.c: added mcs51 assembly version
3726         * device/lib/_fs2sint.c: added mcs51 assembly version
3727         * device/lib/_fs2schar.c: added mcs51 assembly version
3728         * device/lib/_fs2ulong.c: added mcs51 assembly version
3729         * device/lib/_fs2uint.c: added mcs51 assembly version
3730         * device/lib/_fs2uchar.c: added mcs51 assembly version
3731         * device/lib/_slong2fs.c: added mcs51 assembly version
3732         * device/lib/_sint2fs.c: added mcs51 assembly version
3733         * device/lib/_schar2fs.c: added mcs51 assembly version
3734         * device/lib/_ulong2fs.c: added mcs51 assembly version
3735         * device/lib/_uint2fs.c: added mcs51 assembly version
3736         * device/lib/_uchar2fs.c: added mcs51 assembly version
3737         * device/include/float.h: added #define to select asm vs c
3738
3739 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
3740
3741         * device/lib/printf_fast.c: improvements to float output
3742         * device/include/float.h: add defines for assembly float library
3743         * device/lib/_fsget1arg.c: receive 1 float arg
3744         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
3745         * device/lib/_fsnormalize.c: normalize a float
3746         * device/lib/_fsreturnval.c: return float, various helper routines
3747         * device/lib/_fsrshift.c: right shift a float's mantissa
3748         * device/lib/_fsswapargs.c: swap 2 floats
3749         * device/lib/Makefile.in: build these 6 new files for mcs51
3750         * device/lib/libfloat.lib: add these 6 files to the library
3751
3752 2004-12-26 Borut Razem <borut.razem AT siol.net>
3753
3754         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
3755           built by gcc 3.4.2
3756
3757 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
3758
3759         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
3760           and fully reentrant and register bank neutral.
3761         * device/lib/printf_fast.c: added float (not enabled by default),
3762           added compact/slower integer (also not enabled by default),
3763           improved size/speed of fast integer code, other minor changes
3764         * device/include/stdio.h, device/lib/Makefile.in,
3765           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
3766
3767 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
3768
3769         * src/pic16/pcode.c: declaring variables other than at the start of a
3770           block is not supported in C by VC6.
3771
3772 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
3773
3774         * applied a previous patch from Raphael Neider that wasn't included
3775         in the previous commits, which fixes infinite loops within jumptable
3776         improvements,
3777         * made some fixes that previous patches introduced
3778
3779 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
3780
3781         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
3782         that fixes an issue with AOP_PCODE asmop's offset,
3783         * (pic16_popCopyReg): update instance field too,
3784         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
3785         function of pic port,
3786         * (genCmp, genAnd, genAssign),
3787         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
3788
3789 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
3790
3791         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
3792         variables initial values to idata section,
3793         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
3794         variables in some functions. This utilizes parmBytes field of iCode
3795         structure to hold the offset of the variable in stack. (might be
3796         able to use the stack field too?)
3797         * applied patch from Raphael Neider # ### , # ###
3798         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
3799         variable initial values in idata section,
3800         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
3801         for static variables with initial value
3802         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
3803         applied fix in while loop from Raphael Neider.
3804
3805 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
3806
3807         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
3808         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
3809         * src/ds390/ralloc.c (serialRegAssign): spill bits
3810         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
3811         * support/Util/SDCCerr.c,
3812         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
3813         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
3814         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
3815
3816 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
3817
3818         * device/include/sdcc-lib.h: inserted LGPL, added includes
3819           asm/ds390/features.h and asm/mcs51/features.h
3820         * device/include/asm/default/features.h,
3821         * device/include/asm/gbz80/features.h,
3822         * device/include/asm/z80/features.h: added empty _AUTOMEM
3823           and _STATMEM
3824         * device/include/asm/ds390/features.h,
3825         * device/include/asm/mcs51/features.h: added files with defines for
3826           _AUTOMEM and _STATMEM indicating automatic and static storage class
3827         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
3828         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
3829         * src/SDCCicode.c (geniCodeCast),
3830         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
3831         * src/SDCCloop.c (loopInduction): removed unused variable lr
3832         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
3833           to convertToFcall to include char modulo (RFE 1065037), added check
3834           if left operand is unsigned and use abs of literal value
3835         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
3836           as it doesn't work after conversion from peephole.def to peephole.rul
3837         * src/mcs51/gen.c (toBoolean): added check for size,
3838           (genModOneByte): optimized code for signed char modulo a literal
3839           power of 2 (thanks to Hubert Sack),
3840           (genRRC): removed unnecessary "clr c",
3841           (genRLC): replaced "add a,acc" with cheaper "rlc a"
3842         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
3843           jump optimization,
3844           swapped rules 256.c and 256.d,
3845           extended 256.d by using new multiple checks (thanks Erik),
3846           added rules 256.e and 256.f,
3847           updated rule 261.a and 261.b to new generated code
3848         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
3849
3850 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3851
3852         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
3853           induction related bugs, including first part of bug #1074377
3854
3855 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
3856
3857         * applied patch from bug-report #1076292,
3858         * applied patches for genAnd and Goto-optimizations for Raphael
3859         Neider,
3860         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
3861         dump a less iCode information,
3862         * src/pic16/device.h (pic16_options_t): added field debgen,
3863         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
3864         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
3865         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
3866         puclic,
3867         * (various functions): added macros FENTRY and FENTRY2 to functions,
3868         to emit function prologue,
3869         * (various functions): fixed indentation,
3870         * (genNearPointerGet): fixed loading of FSR0,
3871         * (genPackBits): applied patch from Raphael Neider to fix updating
3872         of FSR0 and touching only the modified bits,
3873         * src/pic16/genarith.c (various functions): added macros FENTRY to
3874         emit function prologue in comments,
3875         * src/pic16/pcode.h: added functions debugf2, debugf3,
3876         * src/pic16/ralloc.c: partial fix for packForPush caused
3877         segmentation fault,
3878
3879 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3880
3881         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
3882           <stsp AT users.sourceforge.net> with reversed byte order
3883         * support/regression/tests/rotate.c: added (ds390 skips some tests)
3884
3885 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3886
3887         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
3888           bug #1074377
3889         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
3890         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
3891
3892 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3893
3894         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
3895
3896 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3897
3898         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
3899           conditions,
3900           (setFromConditionArgs): friendly operand parser for peephole rules,
3901           (operandBaseName, operandsNotRelated): new peephole condition
3902           "operandsNotRelated" -- similar to "operandsNotSame", but takes
3903           architecture specific register naming into account, handles n-way
3904           comparisons, and supports quoted literals
3905         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
3906
3907 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3908
3909         * src/mcs51/peeph.def: fixed bug #1076940
3910
3911 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3912
3913         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
3914
3915 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3916
3917         Adding support for replacing ljmps with sjmps in jumptables
3918         generated for switch statements. For now you need to set the
3919         environment variable SDCC_SJMP_JUMPTABLE to enable this.
3920         Now 4 algorithms for mcs51 jumptable generation are used:
3921         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
3922         addresses loaded pc-relative for up to 112 cases and stack-pushing
3923         target addresses loaded with offset from dptr for up to 256 cases.
3924
3925         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
3926         * src/mcs51/main.c: adapted constants for switch table generation
3927         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
3928
3929 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
3930
3931         * device/lib/printf_large.c (_print_format): fixed bug 1073386
3932         * support/regression/tests/bug1057979.c: added test for bug 1073386
3933
3934 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3935
3936         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
3937         compilers
3938
3939 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3940
3941         * src/pic16/device.h,
3942         * src/pic16/genarith.c,
3943         * src/pic16/glue.c,
3944         * src/pic16/main.c,
3945         * src/pic16/pcode.c: applied patches #1068154 and #1070213
3946
3947 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
3948
3949         Large cummulative patch for pic16 port.
3950         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
3951         to call when a stack overflow occurs,
3952         * (malloc.h): added CVS Id tag,
3953         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
3954         variable,
3955         * added libc directory. The current version of LibC contains string
3956         functions, ctype functions and macros and some functions of the
3957         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
3958         be extensively tested in the future. Standard disclaimer here.
3959         Library is not automatically build yet. But one can build it by
3960         invoking 'make' inside the libc directory.
3961         * added ADC library under libio. Preliminary version yet.
3962
3963         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
3964         * src/pic16/gen.c (aopForRemat): asmop size is filled by
3965         aopForRemat() now and not by pic16_aopOp(),
3966         * (pic16_popGetTempReg): removed warning messgae when allocating
3967         temporary registers, its a buggy feature and will be removed,
3968         * (pic16_popGet): set register instance field in AOP_CRY,
3969         * (pic16_outBitC): fixed for results in size greater than 1,
3970         * (genUminusFloat): fixed for pic16, ported code from mcs51,
3971         * (pic16_storeForReturn): optimized return of 0,
3972         * (genCmp): experimental code for new genCmp which uses PIC18's
3973         special compare&skip instructions. Initial tests fail some times
3974         with variables grater than 1 byte in size, so new code is disabled,
3975         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
3976         a single bit,
3977         * (genCast): began a fix to optimize the casting of a bit to another
3978         bit, now assigning a bitfield to another bitfield will fail, sorry,
3979         * src/pic16/main.c: disabled the use of lr-support feature,
3980         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
3981         * added some function prototypes, added function _debugf prototype,
3982         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
3983         bits with offset (case PO_GPR_BIT),
3984         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
3985         command line,
3986         * (isBankInstruction): modified to return 0 for no banking instruction,
3987         and 1 for banking instruction,
3988         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
3989         caused stop processing pCodes after a inline assembly block,
3990         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
3991         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
3992         registers when it shouldn't,
3993         * src/pic16/ralloc.c (allocReg): add preliminary support for
3994         supporting a limited set of temporary registers,
3995
3996 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3997
3998         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
3999           genDataPointerSet): ensure assignments always copy in MSB to LSB
4000           order,
4001           (loadRegFromAop): recognize CLRH optimization,
4002           (genFunction): optimize RECEIVE iCodes in reentrant functions
4003
4004 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4005
4006         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
4007           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
4008           selected.
4009         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
4010         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
4011           contiguous with data
4012
4013 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4014
4015         * device/lib/_gptrget.c (_gptrget),
4016         * device/lib/_gptrgetc.c (_gptrgetc),
4017         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
4018           instead of sjmp to ret
4019         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
4020           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
4021
4022 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
4023
4024         * .version: bumped version to 2.4.7
4025         * device/lib/_gptrget.c (_gptrget): is now _naked
4026         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
4027         * device/lib/_gptrput.c (_gptrput): is now _naked
4028         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
4029           (createFunction): fixed xstack
4030         * src/SDCCglue.c (emitMaps): set allocation required for bit area
4031         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
4032           or bit either,
4033           (geniCodeCritical): store original interrupt state in an iTemp bit
4034           var unless stack-auto
4035         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
4036         * src/SDCCmain.c (setIncludePath): added include/target to search path
4037         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
4038         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
4039           prototype,
4040           (processFuncArgs): put bit vars in bit area
4041         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
4042           unsaveRBank): fixed xstack,
4043           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
4044           (genFunction, genEndFunction): fixed xstack,
4045           (genAssign): optimization don't walk backwards through mem
4046         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
4047         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
4048         * support/regression/Makefile: also make library (for stack-auto) when
4049           making "all" and added "test-mcs51-xstack-auto"
4050         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
4051         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
4052         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
4053         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
4054         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
4055           make-library by MAKE_LIBRARY
4056         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
4057           regression tests for xstack
4058         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
4059         * support/regression/tests/critical.c: test for critical on mcs51
4060
4061 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4062
4063         * support/regression/ports/ucz80/spec.mk: use include and lib files from
4064           built version of sdcc instead of installed version
4065
4066 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
4067
4068         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
4069         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
4070           vprintf.c now
4071         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
4072         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
4073           WARNING: remove device/lib/build/z80/printf.o by hand when
4074           updating from previous build!
4075         * device/lib/z80/printf.c: updated comment
4076         * support/regression/tests/bug1057979.c: test all ports now
4077         * support/regression/tests/bug1065458.c: file added
4078
4079 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4080
4081         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
4082           *_start and *_end symbols for static functions
4083
4084 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
4085
4086         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
4087           and search crt0.o in all library paths,
4088           (setIncludePath): proper handling of --nostdinc,
4089           (setLibPath): proper handling of --nostdlib
4090         * support/regression/Makefile,
4091         * support/regression/ports/ds390/spec.mk,
4092         * support/regression/ports/gbz80/spec.mk,
4093         * support/regression/ports/hc08/spec.mk,
4094         * support/regression/ports/mcs51/spec.mk,
4095         * support/regression/ports/mcs51-large/spec.mk,
4096         * support/regression/ports/mcs51-stack-auto/spec.mk,
4097         * support/regression/ports/z80/spec.mk: use include and lib files from
4098           built version of sdcc instead of installed version
4099         * doc/sdccman.lyx: fixed typo in --nostdinc
4100
4101 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
4102
4103         * src/pic/pcode.c,
4104         * src/pic/device.c,
4105         * src/pic/ralloc.c,
4106         * src/pic/gen.c : added support to generate code for struct bit fields.
4107
4108 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
4109
4110         * as/xa51/xa_version.h,
4111         * device/include/errno.h,
4112         * device/include/regc515c.h,
4113         * device/lib/_itoa.c,
4114         * device/lib/_ltoa.c,
4115         * device/lib/ser_ir_cts_rts.c,
4116         * sim/ucsim/xa.src/glob.cc,
4117         * sim/ucsim/xa.src/inst_gen.cc,
4118         * sim/ucsim/xa.src/xa_bit.cc,
4119         * sim/ucsim/xa.src/xa_sfr.cc,
4120         * sim/ucsim/z80.src/inst_dd.cc,
4121         * sim/ucsim/z80.src/inst_fdcb.cc,
4122         * support/scripts/keil2sdcc.pl,
4123         * src/pic16/pic16.dsp,
4124         * src/pic16/pic16a.dsp: corrected cvs line endings
4125         * device/lib/printf_large.c: fixed bug 1057979
4126         * src/pic16/gen.c: fixed non-C standard code
4127         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
4128         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
4129         * support/regression/ports/mcs51/support.c: reload T1 asap
4130         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
4131           pdata use and clear idata startup behaviour
4132         * support/regression/tests/bug1057979.c: added
4133
4134 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
4135
4136         * device/examples/ds390/ow390/ad26.h,
4137         * device/examples/ds390/ow390/cnt1d.h,
4138         * device/examples/ds390/ow390/crcutil.c,
4139         * device/examples/ds390/ow390/ownet.h,
4140         * device/examples/ds390/ow390/owsesu.c,
4141         * device/examples/ds390/ow390/swt12.h,
4142         * device/examples/ds390/ow390/swtoper.c,
4143         * device/examples/ds390/ow390/temp10.h,
4144         * device/examples/ds390/ow390/thermodl.c,
4145         * device/examples/ds390/tinitalk/tinitalk.dsp,
4146         * device/examples/ds390/tinitalk/tinitalk.dsw,
4147         * device/examples/mcs51/clock/hw.h,
4148         * device/examples/mcs51/simple2/go.bat,
4149         * device/examples/serialcomm/windows/serial.h,
4150         * device/examples/xa51/dummy.c,
4151         * device/examples/xa51/hello.c,
4152         * device/include/80c51xa.h,
4153         * device/include/at89x051.h: corrected cvs line endings
4154
4155 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
4156
4157         * src/pic16/main.c (options): added command line --gstack, to trace
4158         stack over/under flows,
4159         * added pragma 'wparam' to allow passing first byte of function
4160         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
4161         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
4162         call to __gstack_test function and sets up the symbol as extern,
4163         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
4164         * popaop): added call to pic16_testStackOverflow,
4165         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
4166         wparamList list,
4167         * (genCall, genPcall): now all parameters are passed via stack
4168         except in functions that are pass to wparam pragma in which WREG is
4169         used too,
4170         * (genPcall): REENTRANT flag is checked to see if variable prototype
4171         contains reentrant keyword, don't call a non-reentrant function, via
4172         a reentrant function pointer or vice versa, functions are never
4173         passed via WREG,
4174         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
4175         D.Winkler,
4176         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
4177         SIGSEGV when accessing a NULL register stucture,
4178         * (pic16_printGPointerType): modified to handle UPPER modifier for
4179         function initializers, changed prototype of function to simpler one,
4180         * (pic16_printIvalFuncPtr): check to see if function is already
4181         added in externs list,
4182         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
4183         optimized a move from W to SFR with a move to the same register
4184         later after a CALL,
4185         * device/lib/pic16/debug: NEW directory, contains debug features
4186         which are enabled when linking with libdebug.lib, currently command
4187         line option --gstack enables stack pointer tracing for over/under
4188         flow, corresponding sources are in debug/gstack
4189
4190 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
4191
4192         * doc/sdccman.lyx: updated SDCC version,
4193         * (PIC16 port): update list of command line options,
4194         * src/pic16/device.h (structure pic16_options_t): added field gstack
4195         to enable stack overflow tracing on push/pops,
4196         * src/pic16/device.c (statistics structure): added statistics
4197         structure,
4198         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
4199         pic16_dump_int_registers): increase statistics counters for each
4200         * variable which is encountered
4201         * (pic16_dump_usection): emit each .udata variable to its own udata
4202         section,
4203         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
4204         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
4205         parameters via stack, otherwise use old scheme,
4206         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
4207         assembler output file,
4208         * src/pic16/main.c: added command line options --gstack to enable
4209         push/pop tracing for stack overflow,
4210         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
4211         instructions): added size of each instruction,
4212         * (pic16_countInstruction): estimate size of instructions in
4213         the_pFile list, inline assembly blocks are not counted,
4214         * (pic16_FixRegisterBanking): trace previous register usage, when
4215         banksel optimizations is greater than 0, don't emit a redudant
4216         banksel directive,
4217
4218 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
4219
4220         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
4221         * src/pic16/ralloc.c : applied same fix for pic16.
4222         * src/pic/gen.c : tidied it up a little.
4223
4224 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4225
4226         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
4227         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
4228
4229 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4230
4231         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
4232
4233 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4234
4235         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
4236         non-reentrant function __modsint in the interrupt function (thus
4237         corrupting math operations during serial I/O)
4238         * device/lib/ser_ir.c: as above, changed buffersize
4239         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
4240         256.c,d for zeroing
4241         * doc/Makefile: added option -t for rsync
4242
4243 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4244
4245         * src/SDCCast.h (struct ast),
4246         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
4247
4248 2004-10-20 Borut Razem <borut.razem AT siol.net>
4249
4250         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
4251         package
4252
4253 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
4254
4255         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
4256         makefile targets,
4257         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
4258         support functions to replace long sequences of MOVFF's from access
4259         bank registers to stack and vice versa,
4260         * src/pic16/device.h: added new field opt_flags, where optimization
4261         flags can be set to enable certain features,
4262         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
4263         * pBlock, (genFunction, genEndFunction): surroung loop for
4264         saving/loading used registers in stack with PC_INFO pCodes,
4265         INF_LREGS. Code in between can then be optimized by pCode optimizer
4266         to support function calls,
4267         * (genDataPointerSet): fixed bug which loaded float fields in
4268         structures with corrupt data,
4269         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
4270         in a standard way debug info on stderr. Feature used for developing
4271         and debugging only,
4272         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
4273         obsolete chunks of code,
4274         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
4275         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
4276         * pic16/src/pcode.c (pic16_newpCodeInfo,
4277         * (pic16_newpCodeOpLocalRegs),
4278         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
4279         feature,
4280         * (pic16_pCodeConstString): printing of the initial value of a
4281         symbol as a comment is inhibited since parsing was already done by
4282         copyStr and output is corrupt,
4283         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
4284
4285 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4286
4287         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
4288
4289 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
4290
4291         * as/mcs51/lkarea.c: removed old K&R style,
4292           (lnksect): changed check on boundary error,
4293           (lnksect2): changed check on boundary error,
4294           (lnksect2): extend XSTK to end of page if size = 1
4295         * as/mcs51/lkmain.c: removed old K&R style,
4296           (Areas51): create l_IRAM symbol
4297         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
4298         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
4299           model-mcs51-stack-auto, added model-mcs51-xstack-auto
4300         * device/lib/_mullong.c: added version to be compiled with xstack
4301         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
4302         * device/lib/mcs51/crtxclear.asm: clear pdata as well
4303         * device/lib/mcs51/crtxstack.asm: fixed comment
4304         * src/SDCCglue.c: maxInterrupts defaults to 0,
4305           (emitMaps): added pdata,
4306           (createInterruptVect): (re)moved default,
4307           (glue): added pdata,
4308           (glue): moved __start__xstack to XSTK with default size 1
4309         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
4310           and options.float_rent when options.stackAuto is set,
4311           (linkEdit): only write XDATA_NAME if provided on command line
4312         * src/SDCCmem.h,
4313         * src/SDCCmem.c: added pdata
4314         * src/port.h: added pdata_name to PORT
4315         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
4316           (saveRegisters, unsaveRegisters): removed usage of B,
4317           (genMinus): fixed accumulator clash,
4318           (genJumpTab): added comment, this needs another look
4319         * src/mcs51/gen.c: added check for "B in use" paranoia,
4320           added pushB() and popB()
4321         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
4322           chance
4323         * src/avr/main.c,
4324         * src/ds390/main.c,
4325         * src/hc08/main.c,
4326         * src/mcs51/main.c,
4327         * src/pic/main.c,
4328         * src/pic16/main.c,
4329         * src/xa51/main.c,
4330         * src/z80/main.c: (reset_regparms) made void parameter explicit and
4331           added PSEG (PAG,XDATA) or NULL to port specifier
4332         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
4333         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
4334           (_mcs51_genInitStartup): removed __start__xstack equ,
4335           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
4336         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
4337         * src/z80/gen.c (_rleAppend): fixed warnings
4338         * support/regression/tests/zeropad.c: added pdata test
4339         * .version: bumped to 2.4.6
4340
4341 2004-10-17 Borut Razem <borut.razem AT siol.net>
4342
4343         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
4344         as a part of nightly build
4345
4346 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
4347
4348         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
4349         WREG holds the first byte function parameters,
4350         * (aopForSym): take special case for symbols which are in FARSPACE
4351         but in CODESPACE too,
4352         * (assignResultValue): modified to take into account _G.useWreg,
4353         * (genCall): don't use wreg for parameter passing when function is
4354         declared as reentrant, too, added optimization INCF to stack
4355         pointer when stack parameter count is 1,
4356         * (genFunction, genEndFunction): refurnished and fixed to not using
4357         wreg for passing parameters when function has varargs or is
4358         reentrant, fixed bug with symbol name compare for generating
4359         functions in absolute address,
4360         * (pic16_storeForReturn): refurnished,
4361         * (genCmp): began writing a new version of the function, not ready
4362         yet, therefore it is disabled,
4363         * (genAssign): do not read code memory when assigning a function to
4364         a pointer function,
4365         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
4366         array of characters, not pointer,
4367         * (pic16initialComments): in debug mode emit an .ident directive for
4368         the assembler,
4369         * (_process_pragma): emit a new warning type (internal to pic16)
4370         when setting stack to default length, emit a similar warning when
4371         placing a function at absolute address and address is not word aligned
4372         * (_pic16_parseOptions): added 'return TRUE' statement,
4373         * (_pic16_linkEdit): if compiling a source, then add the source's
4374         file object, first in the list of objects to link,
4375
4376 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
4377
4378         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
4379         * src/pic/main.c : removed VC warning.
4380         * src/pic/gen.c : changed comment.
4381
4382 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
4383
4384         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
4385         reference to a deprecated symbol _GPTRREG was causing failure to
4386         link. Thanks G. M. Gallant for the info.
4387
4388 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
4389
4390         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
4391         comments for Bugs item #954788.
4392
4393 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
4394
4395         * src/pic16/device.c (pic16_dump_gsection,
4396         * pic16_groupRegistersInSection): handle symbols declared to be in
4397         access bank differently,
4398         * src/pic16/gen.c (struct _G): added field resDirect,
4399         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
4400         send values read from stack directly to result and don't allocate
4401         temporary values,
4402         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
4403         same registers,
4404         * (pic16_sameRegsOfs): NEW,
4405         * (freeAsmop): if _G.resDirect is set then do not mark registers as
4406         free because they were not allocated from temporary pool,
4407         * pic16_popRegFromString): workaround to fix a problem with
4408         allocating variables twice or never,
4409         * (genGenPointerGet): using PRODL instead of FSR0H,
4410         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
4411         instead of FSR0H,
4412         * (genAssign): take advantage of the _G.resDirect flag,
4413         * (genCast): around line 11844, use mov2f instead of directly
4414         MOVFF'ing between operands to account for literal values,
4415         * src/pic16/genutils.c: some new debug functions for gpsim have been
4416         added,
4417         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
4418         float with integer part only,
4419         * src/pic16/main.c (_process_pragma): handle pragma udata access to
4420         place variables in access bank
4421         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
4422         updated sources to reflect recent changes in gen.c
4423
4424 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
4425
4426         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
4427         sources that searched for headers in installation path, now the
4428         device/include/pic16 is used,
4429         * src/pic16/glue.c (pic16glue),
4430         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
4431         .line directives if not in debug mode, this suppresses assembler's
4432         warnings for ignored directives
4433
4434 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
4435
4436         * src/port.h: made reset_regparms prototype void parameter explicit.
4437         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
4438         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
4439         * doc/sdccman.lyx: documented warning disabling and how to use
4440           printf_large to make it print floats.
4441         * device/include/stdbool.h: NEW
4442         * device/lib/_atof.c,
4443         * device/lib/_divuint.c,
4444         * device/lib/_divulong.c,
4445         * device/lib/expf.c,
4446         * device/lib/printf_large.c,
4447         * device/lib/sincosf.c,
4448         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
4449         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
4450           a completely reentrant lib.
4451
4452 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
4453
4454         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
4455         * device/include/pic16/stdio.h: fixed bug with colon
4456
4457 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
4458
4459         * device/include/pic16/stdio.h,
4460         * device/include/pic16/stdlib.h,
4461         * device/include/pic16/math.h: NEW
4462         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
4463         declared as _naked to reduce overhead
4464         * device/lib/Makefile.in (target port-specific-objects-pic16):
4465         changed * to *.* so to ignore the CVS directory,
4466         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
4467         stacked variables back in stack,
4468         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
4469         corruption
4470
4471 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
4472
4473         * .version: bumped version number to 2.4.5
4474         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
4475         * support/Util/SDCCerr.c (messages structure): added entry for
4476         W_POSSBUG2
4477
4478         Large cumulative patch for pic16 port and libraries.
4479         * device/include/pic16/sdcc-lib.h,
4480         * device/include/pic16/stdarg.h,
4481         * device/include/asm/pic16/features.h,
4482         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
4483         * device/include/pic16/float.h: changes reentrant keyword with
4484         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
4485         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
4486         updated target build-libraries to include objects from gptr,
4487         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
4488         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
4489         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
4490         all function headings,
4491         * src/SDCCmain.c: added global parameter userIncDirsSet,
4492         * (parseCmdLine): when option -I is encountered add directory to
4493         userIncDirsSet too,
4494         * src/version.awk: added space between control and long,
4495         * src/pic16/NOTES: added some notes for the port,
4496         * src/pic16/gen.c: added prototype for mov2fp function,
4497         * (fReturnpic16[]): properly named return value registers,
4498         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
4499         * (aopForSym): added code to handle symbols with onStack flag set,
4500         symbols onStack are allocated PTRSIZE bytes,
4501         * (aopFreeAsmop): handles special case where asmops are stack objects,
4502         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
4503         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
4504         added argument lock to trace flaws in allocating temporary registers
4505         when developing port,
4506         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
4507         * (pic16_popRegFromString): reenabled allocating a direct register
4508         from string,
4509         * (assignResultValue): various beautifications,
4510         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
4511         referenced function argument,
4512         * (genIpush): reenabled to allow stacked arguments, handles only
4513         ic->parmPush iCodes,
4514         * (genCall, genPcall): major changes to allow for variable argument
4515         functions, fixed a bug with falsely restoring stack pointer after
4516         returning from call,
4517         * (genFunction): pending code for critical function,
4518         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
4519         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
4520         * (genNearPointerGet): fixed bug with indirect reading, was always
4521         reading from INDF0
4522         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
4523         pointers,
4524         * (genAddrOf): rewrote code to take address of a stacked function parameter
4525         * (genCast): fixed casting to generic pointer type,
4526         * src/pic16/gen.h: added AOP_STA,
4527         * (struct asmop): added field stk,
4528         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
4529         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
4530         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
4531         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
4532         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
4533         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
4534         generic pointers,
4535         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
4536         and library paths,
4537         * (pic16_port structure): generic pointer size is set to 3,
4538         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
4539         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
4540         compiler warning,
4541         * src/pic16/ralloc.c (allocReg): prevent allocating register when
4542         operand is an iTemp,
4543
4544 2004-09-24 Martin Helmling <mh AT octo-soft.de>
4545
4546         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
4547         * debugger/mcs51/simi.c: addapt new syntax of s51
4548
4549 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
4550
4551         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
4552         * src/pic16/pcode.c: commented out some calls to free() in order to
4553         fix bug #989576,
4554
4555 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4556
4557         * src/SDCCicode.h,
4558         * src/SDCCicode.c (isiCodeInFunctionCall),
4559         * src/avr/ralloc.c (selectSpil),
4560         * src/pic/ralloc.c (selectSpil),
4561         * src/pic16/ralloc.c (selectSpil),
4562         * src/ds390/ralloc.c (selectSpil),
4563         * src/hc08/ralloc.c (selectSpil),
4564         * src/xa51/ralloc.c (selectSpil),
4565         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
4566         stack in the middle of a function call sequence (fixes bug #1020268)
4567         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
4568         costs associated with the minimum switch case.
4569
4570 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4571
4572         * src/SDCC.lex: fixed bug #1030549
4573
4574 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4575
4576         * src/SDCCcse.h (struct cseDef),
4577         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
4578         over a function call if the CSE is derived from a symbol whose
4579         address has been taken (fixes bug #1029883)
4580         * support/regression/tests/bug-1029883: a new regression test for
4581         this bug
4582
4583 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4584
4585         * src/hc08/gen.c (emitinline): fixed bug #1029778
4586         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
4587         to a cast object is no longer a syntax error ("fixes" bug #1030006,
4588         and starts toward RFE #905167)
4589
4590 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
4591
4592         * src/pic16/gen.c (mov2f): New function to move an operand to
4593         another without considering if it is a literal or a register,
4594         * (pic16_sameRegs): don't check if they are both AOP_REG,
4595         * (AccRsh): removed andmask=0 lines,
4596         * (genLeftShift): duplicated to be improved in future versions,
4597         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
4598         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
4599         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
4600         * (pic16initMnemonics): added initialization for POC_INFSNZW,
4601         * (insertBankSwitch): fixed inserting banksel directives algorithm
4602         for instructions that follow a skip instruction, this fixes a report
4603         for broken subtraction code generation,
4604         * src/pic16/ralloc.c (deassignLRs): do not free register if current
4605         iCode is a left op, just in case result and right share the same
4606         registers
4607
4608 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4609
4610         * src/hc08/main.c,
4611         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
4612         preservation of HX
4613         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
4614         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
4615         on 2004-09-12; it was buggy
4616
4617 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
4618
4619         * src/SDCCsymt.h: removed RESULT_CHECK
4620         * src/SDCCast.c,
4621         * src/SDCCglue.c,
4622         * src/SDCCval.c,
4623         * src/pic/glue.c,
4624         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
4625
4626 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
4627
4628         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
4629         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
4630         configuration values no more rejected by compiler, they are assigned
4631         to configuration registers with a warning message instead,
4632         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
4633         the for-loop so last conf register is emitted too,
4634         * (_pic16_initPaths): link library libsdcc.lib by default,
4635         * (_hasNativeMulFor): modified test for multiplication according to
4636         Raphael Neider's remarks. Integer multiplication is also done with
4637         support functions,
4638         * device/include/pic16/pic18fregs.h: corrected type error in while
4639         testing and including 18f6720 header file
4640
4641 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
4642
4643         * src/pic16/device.h (pic16_options): removed field use_crt,
4644         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
4645         until an optimization to handle single bits is added,
4646         * (pic16_loadFSR0): moved before genUnpackBits,
4647         * (genAnd): some white lines removed,
4648         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
4649         leave_reset flags in pic16_options when using crt modules,
4650
4651 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
4652
4653         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
4654           for bugs 898889 & 979599. Also used some safer print instructions.
4655
4656 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
4657
4658         * src/pic16/device.h (pic16_options_t): added field use_crt,
4659         crt_name, no_crt,
4660         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
4661         catch a probable future bug,
4662         * src/pic16/gen.c: aopIdx function commented out,
4663         * (genAssign): commented out old code which used aopIdx,
4664         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
4665         code, added if conditionals to take into account the --use-crt
4666         command line options,
4667         * src/pic16/main.c (pic16_optionsTable): added new command line
4668         options, --use-crt= and --no-crt,
4669         * (_pic16_linkEdit): now the proper crt object is added in the
4670         linker command line except than when --no-crt is specified,
4671         * src/pic16/pcode.c,
4672         * src/pic16/pcode.h: added some structures and functions for a new
4673         optimization scheme to compansate for instruction overhead between
4674         same iCodes, this scheme is currently under development and is not
4675         working in any way,
4676         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
4677         to && operator,
4678         * device/lib/pic16/startup/crt0i.c,
4679         * device/lib/pic16/startup/crt0iz.c: added global char variable
4680         __uflags to force the generation of an idata section
4681
4682 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
4683
4684         * doc/Makefile,
4685         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
4686         * doc/sdccman.lyx: updated sdcc version to 2.4.4
4687
4688 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4689
4690         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
4691         Frieder) and clarified the default code optimization mode
4692
4693 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4694
4695         * src/SDCC.lex (doPragma, process_pragma),
4696         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
4697         "opt_code_size", and "opt_code_balanced"
4698         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
4699         regrouped options by category, added support for category headers
4700         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
4701         and "--opt-code-size"
4702         * doc/sdccman.lyx: documented these new options and pragmas
4703         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
4704         preference into account
4705
4706 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4707
4708         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
4709           geniCodePreDec): Fixed bug 904237 by generating a warning
4710         * src/SDCCerr.h,
4711         * src/SDCCerr.c: added warning W_SIZEOF_VOID
4712
4713 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
4714
4715         * src/pic/device.c : When no max ram set validate full memory range.
4716         * src/pic/pcode.c,
4717         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
4718
4719 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4720
4721         * device/lib/_gptrget.c,
4722         * device/lib/_gptrput.c: updated comment
4723         * device/lib/calloc.c,
4724         * device/lib/free.c,
4725         * device/lib/malloc.c,
4726         * device/lib/realloc.c: added LGPL, made them reentrant-safe
4727         * src/SDCCcse.c (cseBBlock),
4728         * src/SDCCicode.c (printOperand, geniCodeArray),
4729         * src/SDCCicode.h (struct operand): fixed bug 868103
4730         * support/regression/tests/bug-868103.c: added
4731         * src/SDCCast.c (searchLitOp),
4732         * src/SDCCcse.h (struct cseDef),
4733         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
4734         * src/SDCCicode.h (struct operand),
4735         * src/SDCCsymt.h (struct sym_link),
4736         * src/avr/gen.c (hasInc),
4737         * src/ds390/gen.c (hasInc),
4738         * src/hc08/gen.c (genPlusIncr, hasInc),
4739         * src/mcs51/gen.c (hasInc),
4740         * src/pic16/glue.c (pic16_printIvalChar),
4741         * src/pic16/ralloc.c (regWithIdx),
4742         * src/xa51/gen.c (hasInc) : removed warnings
4743         * src/SDCCast.c (createBlock): added comment ???
4744         * src/hc08/ralloc.c: updated comments
4745
4746 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4747
4748         * doc/sdccman.lyx: updated section on switch statements, added
4749         section about semaphore locking
4750         * doc/Makefile: added option -info for latex2html
4751         * device/lib/_gptrget.c,
4752         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
4753
4754 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4755
4756         * src/pic/device.h,
4757         * src/pic/device.c,
4758         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
4759          maxram is less than 0x100.
4760
4761 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4762
4763         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
4764
4765 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4766
4767         * src/port.h,
4768         * src/mcs51/main.c,
4769         * src/ds390/main.c,
4770         * src/z80/main.c,
4771         * src/hc08/main.c,
4772         * src/pic/main.c,
4773         * src/pic16/main.c,
4774         * src/avr/main.c,
4775         * src/xa51/main.c
4776         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
4777         a jump table is the best form for a switch statement, including
4778         automatic insertion of missing cases to make the case range
4779         continuous. Developed in collaboration with Frieder Ferlemann.
4780
4781 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4782
4783         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
4784         accumulator result if it needs sign extension
4785
4786 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4787
4788         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
4789
4790 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4791
4792         * device/lib/gbz80/printf.c,
4793         * device/lib/z80/printf.c: removed define for NULL
4794
4795 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4796
4797         * as/xa51/xa_link.c,
4798         * device/examples/ds390/ow390/ad26.c,
4799         * device/examples/ds390/ow390/cnt1d.c,
4800         * device/examples/ds390/ow390/counter.c,
4801         * device/examples/ds390/ow390/ds2480.h,
4802         * device/examples/ds390/ow390/ds2480ut.c,
4803         * device/examples/ds390/ow390/findtype.c,
4804         * device/examples/ds390/ow390/gethumd.c,
4805         * device/examples/ds390/ow390/owllu.c,
4806         * device/examples/ds390/ow390/ownetu.c,
4807         * device/examples/ds390/ow390/swt12.c,
4808         * device/examples/ds390/ow390/swtloop.c,
4809         * device/examples/ds390/ow390/temp.c,
4810         * device/examples/ds390/ow390/temp10.c,
4811         * device/examples/ds390/ow390/thermo21.c,
4812         * device/examples/ds390/ow390/tinilnk.c,
4813         * device/examples/ds390/ow390/tstfind.c,
4814         * device/examples/serialcomm/windows/serial.cpp,
4815         * device/examples/serialcomm/windows/test_serialcomm.cpp,
4816         * device/include/reg51.h: fixed line endings for cvs
4817
4818 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4819
4820         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
4821         packRegsForAccUse, packRegisters): new accumulator register
4822         packing algorithm
4823         * support/regression/ports/hc08/support.c (_putchar): suppress
4824         warning of unused variable
4825         * src/SDCCicode.c: added SWAP entry to codeTable
4826
4827 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
4828
4829         * device/lib/sprintf.c: forgot to add this file before previous commit
4830
4831 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
4832
4833         * src/pic16/gen.c (genPackBits): added operand right in function
4834         parameters, load result directly if p_type is POINTER (that is
4835         called by genNearPointerSet)
4836         * (genUnPackBits): added operand left in function parameters,
4837         * (genNearPointerGet, genNearPointerSet): prevent the loading of
4838         FSR0 if accessing bitfields,
4839
4840 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
4841
4842         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
4843           _print_format; updated printf, sprintf, vsprintf
4844         * device/include/asm/default/features.h: corrected comment/define
4845         * device/lib/Makefile.in: added sprintf.c
4846         * device/lib/libsdcc.lib: added sprintf module
4847         * device/lib/printf_large.c,
4848         * device/lib/vprintf.c,
4849         * device/lib/sprintf.c: totally refactored printf_large and vprintf
4850           into these 3 files
4851         * support/regression/Makefile: changed ALL_PORTS into a usefull default
4852         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
4853         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
4854           hc08 test
4855         * support/regression/tests/zeropad.c: define idata as data for hc08
4856
4857 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4858
4859         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
4860         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
4861         labels are referenced at least once (even if a reference is not found)
4862         * src/hc08/gen.c (emitcode): set isComment flag for comments
4863         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
4864         loads), rules 6a..6b (optimize jumps to return)
4865
4866 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4867
4868         * device/lib/acosf.c (acosf),
4869         * device/lib/asinf.c (asinf),
4870         * device/lib/atanf.c (atanf),
4871         * device/lib/ceilf.c (ceilf),
4872         * device/lib/cosf.c (cosf),
4873         * device/lib/coshf.c (coshf),
4874         * device/lib/cotf.c (cotf),
4875         * device/lib/fabsf.c (fabsf),
4876         * device/lib/floorf.c (floorf),
4877         * device/lib/log10f.c (log10f),
4878         * device/lib/logf.c (logf),
4879         * device/lib/sinf.c (sinf),
4880         * device/lib/sinhf.c (sinhf),
4881         * device/lib/sqrtf.c (sqrtf),
4882         * device/lib/tanf.c (tanf),
4883         * device/lib/tanhf.c (tanhf),
4884         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
4885         replaced all instances of "reentrant" in the library functions
4886         defined in math.h with this macro.
4887         * support/regression/tests/float_trans.c: reenabled test for hc08
4888
4889 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
4890
4891         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
4892         erroneously deleted
4893
4894 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4895
4896         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
4897         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
4898         multi-byte volatile operands are used
4899         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
4900         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
4901         initialization to area GSINIT0 so that it would always precede
4902         any static initializers in GSINIT
4903         * support/regression/tests/zeropad.c: fixed idata define for hc08
4904         * support/regression/tests/bug-927659.c,
4905         * support/regression/tests/float_trans.c: disabled tests for hc08
4906         pending missing library routines
4907         * .version: increased version number to 2.4.4 - hc08 port now passes
4908         regression tests
4909
4910
4911 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
4912
4913         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
4914         * Makefile.common.in,
4915         * as/Makefile,
4916         * as/hc08/Makefile.in,
4917         * as/mcs51/Makefile.in,
4918         * as/z80/Makefile.in,
4919         * debugger/mcs51/Makefile.in,
4920         * device/include/Makefile.in,
4921         * device/lib/Makefile.in,
4922         * doc/Makefile,
4923         * link/Makefile,
4924         * link/z80/Makefile.in,
4925         * packihx/Makefile.in,
4926         * sim/ucsim/main_in.mk,
4927         * sim/ucsim/avr.src/Makefile.in,
4928         * sim/ucsim/doc/Makefile.in,
4929         * sim/ucsim/gui.src/serio.src/Makefile.in,
4930         * sim/ucsim/hc08.src/Makefile.in,
4931         * sim/ucsim/s51.src/Makefile.in,
4932         * sim/ucsim/xa.src/Makefile.in,
4933         * sim/ucsim/z80.src/Makefile.in,
4934         * src/Makefile.in,
4935         * support/cpp2/Makefile.in,
4936         * support/librarian/Makefile,
4937         * support/makebin/Makefile: added DESTDIR to the install path proposed
4938         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
4939         * doc/sdccman.lyx: added DESTDIR documentation
4940
4941 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
4942
4943         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
4944         instruction for interrupt handlers, use fast returns when returning
4945         from high priority interrupts
4946
4947 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4948
4949         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
4950         code generation
4951         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
4952         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
4953         bugs, ported much of Bernhard's code from mcs51
4954         * src/mcs51/gen.c (genSend),
4955         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
4956         than one when calling a reentrant function
4957         * device/lib/_mullong.c: defined an alternate struct layout for big
4958         endian ports (hc08)
4959
4960 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4961
4962         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
4963         test
4964
4965 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4966
4967         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
4968         are sane and complete before asking the port its prefered parameter
4969         passing method (fixes bug #1017633)
4970         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
4971         and _ret3
4972
4973 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4974
4975         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
4976         problem in bitfields >= 8 bits.
4977
4978 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4979
4980         * src/SDCCsymt.c: undid changes that were not meant to be committed
4981
4982 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4983
4984         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
4985
4986 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4987
4988         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
4989           copied and wrong bit got inverted
4990
4991 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4992
4993         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
4994         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
4995         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
4996         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
4997         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
4998         assignments to bitfields at known addresses
4999         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
5000         reads from bitfields at known addresses
5001         * src/hc08/ralloc.c (packRegisters),
5002         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
5003         genhc08Code): optimize pointer get values used as conditionals
5004         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
5005         and branch
5006
5007 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5008
5009         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
5010         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
5011         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
5012         as conditionals
5013
5014 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5015
5016         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
5017
5018 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5019
5020         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
5021         related problems
5022
5023 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
5024
5025         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
5026
5027 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5028
5029         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
5030         mcs51 port
5031
5032 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
5033
5034         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
5035
5036 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5037
5038         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
5039         cases use more compact code.
5040
5041 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
5042
5043         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
5044
5045 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5046
5047         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
5048
5049 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5050
5051         * src/SDCCsymt.h,
5052         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
5053         parameter of changePointer() from symbol* to sym_link*
5054         * src/SDCCast.c (decorateType): call changePointer() for CAST op
5055         * src/SDCCsymt.c (compareType): void* type is castable to other
5056         pointers, but not necesarily an exact match.
5057         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
5058         is no longer blindly treated as an exact match.
5059         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
5060
5061 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
5062
5063         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
5064
5065 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
5066
5067         * src/pic/gen.c,
5068         * src/pic/pcode.c,
5069         * src/pic/ralloc.h,
5070         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
5071
5072 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
5073
5074         * src/pic/device.c,
5075         * src/pic/device.h,
5076         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
5077
5078 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5079
5080         * src/mcs51/gen.c (emitcode): fixed bug #992819
5081
5082 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
5083
5084         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
5085           there's no need to make it worse
5086
5087 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5088
5089         * src/mcs51/ralloc.c (deassignLR),
5090         * src/ds390/ralloc.c (deassignLR),
5091         * src/hc08/ralloc.c (deassignLR),
5092         * src/z80/ralloc.c (deassignLR),
5093         * src/pic/ralloc.c (deassignLR),
5094         * src/pic16/ralloc.c (deassignLR),
5095         * src/avr/ralloc.c (deassignLR),
5096         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
5097         rlivePoint): fixed another part of bug #971834
5098
5099 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5100
5101         * src/z80/main.c: enabled "critical" keyword
5102         * src/z80/mappings.i,
5103         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
5104         functions (fixes bug #979646)
5105         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
5106
5107 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5108
5109         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
5110           such as c:\mydir.
5111
5112 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
5113
5114         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
5115           doesn't disable too much optimizations
5116
5117 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
5118
5119         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
5120
5121 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
5122
5123         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
5124
5125 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
5126
5127         * src/pic/gen.c tidied up tabs
5128         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
5129         * src/pic/main.c tidied up tabs
5130         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
5131         * src/pic/pcoderegs.c tidied up tabs
5132         * src/pic/ralloc.c tidied up tabs
5133
5134 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
5135
5136         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
5137         to S_FIXED for pic16 port and when symbol is not in level 0,
5138         allocate for S_REGISTER storage class and pic16 port, too,
5139         * src/pic16/device.h: prototype for checkSym,
5140         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
5141         * (pic16_assignConfigWordValue): test the value and the mask to
5142         validate that the value is suitable for the configuration word,
5143         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
5144         collect extern declared symbols, don't emit symbol twice, check
5145         first if symbol is in publics set first,
5146         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
5147         * added command line '--fstack' which enables an experimental
5148         feature for stack access, too buggy to be used yet...
5149         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
5150         * (pic16_allocDirReg): when register has storage class S_REGISTER
5151         allocate in pic16_dynAccessRegs,
5152         * device/include/pic16/pic18f????.h: modified configuration word
5153         naming convention, words started as CONFIG0H but should be CONFIG1H
5154
5155 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
5156
5157         * device/include/mcs51reg.h: fixed bug 970993
5158
5159 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
5160
5161         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
5162         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
5163         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
5164         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
5165         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
5166         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
5167           error/warning numbers,
5168           added function setWarningDisabled()
5169         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
5170         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
5171           _memcmp.c _memmove.c calloc.c realloc.c free.c
5172         * support/regression/tests/malloc.c: added tests for new functionality
5173         * support/regression/tests/zeropad.c: added tests for truncated initializers
5174           and initialized char arrays starting with '\x0'
5175         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
5176
5177 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
5178
5179         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
5180
5181 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5182
5183         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
5184         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
5185         peephole 177.e. Thanks to anonymous
5186
5187 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
5188
5189         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
5190         function isn't used in the source but referenced as a
5191         variable initializer then declare it as extern in .asm file
5192
5193 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
5194
5195         * .version: increased version number to 2.4.3
5196
5197         Adding version extension according to ChangeLog CVS revision
5198         * src/Makefile.in (target all): added dependency 'version.h'
5199         * (rule version.h): added rule to create version.h from ChangeLog,
5200         * (rule dep): added dependency version.h,
5201         * src/version.awk: AWK script to create version.h
5202         * src/SDCCdwarf2.c (dwWriteModule),
5203         * src/SDCCglue.c (initialComments),
5204         * src/SDCCmain.c (printVersionInfo): modified to write after
5205         version string the version extension number,
5206         * src/SDCCutil.c: included "version.h"
5207         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
5208         number,
5209         * src/SDCCutil.h: added prototype for getBuildNumber
5210
5211         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
5212         includeDirsSet, too,
5213         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
5214         const char [] is found in function prototype...
5215
5216         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
5217         moving to WREG with source is already in WREG,
5218         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
5219         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
5220         * (aopForSym): stack'ed symbols are partially supported, added
5221         if-clause to support symbols in FARSPACE,
5222         * (sameRegs): added test for AOP_ACC to see if registers are same,
5223         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
5224         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
5225         * (pic16_popRegFromString): will not allocate a new register if it
5226         doesn't find one by name, bug may have introduced...
5227         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
5228         * (genIpush): revived to use pic16 port's stack,
5229         * (genAddrOf): added incomplete case for stack'ed operand,
5230         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
5231         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
5232         can handle multibyte operands,
5233         * src/pic16/glue.c (pic16_printIval*): some debug info added,
5234         * (pic16initialComments): added message for MPLAB compatibility
5235         mode enabled,
5236         * src/pic16/main.h: prototype for pic16_mplab_comp,
5237         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
5238         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
5239         * (_pic16_linkEdit): NEW, handles link stage, transferred here
5240         because of increased complexity of procedure,
5241         * (_process_pragma): stack pragma changed to format 'stack pos len',
5242         emit symbol '_stack_end' to conform with gplink,
5243         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
5244         to search for register,
5245         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
5246         PO_GPR_REGISTER,
5247         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
5248         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
5249         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5250         case for PO_GPR_REGISTER,
5251         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
5252         dies, the new era is ahead !...
5253         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
5254         pic16_dynInternalRegs,
5255         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
5256         * (pic16_allocDirReg): minor optimizations and bug fixes,
5257         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
5258
5259         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
5260         load stack and frame pointer with address of 'stack_end' symbol
5261
5262 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
5263
5264         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
5265         without source code but only variable initializers
5266
5267 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
5268
5269         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
5270         external are not declared as extern to reduce overhead while linking
5271
5272 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
5273
5274         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
5275
5276 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
5277
5278         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
5279           Yee Keat for the patch
5280         * src/SDCCast.c (decorateType): fixed bug #979599
5281         * src/ds390/gen.h: removed local fReturnSizeDS390
5282         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
5283         * src/ds390/gen.c (genAnd, genOr, genXor),
5284         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
5285
5286 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
5287
5288         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
5289         add relFilesSet to $3, manipulate $2 to handle linking of object
5290         files without source files in command line,
5291         * device/include/pic16 (all headers): added ID location macros,
5292         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
5293         entries for ID location bytes,
5294         * (pic16_assignIdByteValue): NEW,
5295         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
5296         added field dumpcalltree to pic16_options_t,
5297         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
5298         is used instead of pic16_Gstack_base_addr, check if (ifx) before
5299         emitting rFalseIfx label after check_carry label,
5300         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
5301         pic16_emitDIRegs), NEW
5302         * (pic16glue): dump .calltree file when option --calltree found,
5303         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
5304         * (_pic16_genAssemblerPreamble): emit ID locations after
5305         configuration registers,
5306         * (pic16_linkCmd): modifications of the link command,
5307         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
5308         * (pic16_pCodeInitRegisters): don't init stack registers,
5309         * (pic16_findPrevInstruction): fixed bug,
5310         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
5311         bug with immediate registers,
5312         * (buildCallTree): traces stack push and pop,
5313         * (pct2): dump also stack usage for each function,
5314         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
5315         * (pic16_allocDirReg): various modifications,
5316         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
5317         fixed to 1,
5318
5319 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
5320
5321         * src/pic16/pcode.c: removed buggy double colon
5322
5323 2004-07-01 Borut Razem <borut.razem AT siol.net>
5324
5325         * support/scripts/sdcc.nsi: added include/pic16 to setup
5326
5327 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
5328
5329         * device/lib/Makefile.in: fixed bug in target objects-pic16,
5330         * device/lib/pic16/Makefile: prefixed with dash (-) command under
5331         target 'clean',
5332         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
5333         specific command line arguments. Also added sample lkr script
5334         for placing a variable at a specific memory bank.
5335         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
5336         at a specific memory bank,
5337         * (pic16_dump_isection): fixed bug which caused string literals to
5338         be omitted when dumping idata section,
5339         * (pic16_groupRegistersInSection): added code to handle registers
5340         in specific memory banks,
5341         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
5342         public, all references are renamed too,
5343         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
5344         AOP_DPTR2,
5345         * (pic16_storeForReturn): added case to handle when dest is WREG,
5346         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
5347         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
5348         pic16_rel_udata, check to see if that register is marked as being
5349         a member of a specific memory bank,
5350         * (pic16_printIvalCharPtr): added code to add string literals either
5351         to code or the idata sections,
5352         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
5353         also accept the 'udata' pragma,
5354         * src/pic16/main.h: new structure types sectName and sectSym
5355         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
5356         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
5357         * (pic16_findPrevInstruction): fixed, it returned nothing,
5358         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
5359         instruction combinations,
5360         * (pic16_FixRegisterBanking): heavily reorganised,
5361         * (pic16_AnalyzeBanking): if generating banksel directives is
5362         disabled, then don't call FixRegisterBanking at all,
5363         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
5364         completely removed,
5365         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
5366
5367 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
5368
5369         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
5370         Phuah Yee Keat <yk.phuah AT nestac.com>
5371
5372 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5373
5374         * src/pic16/glue.c (pic16createInterruptVect): function now emits
5375         correctly the IVT even if it is relocated to some other location
5376
5377 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5378
5379         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
5380         * device/include/pic16/pic18f2220.h: NEW,
5381         * device/lib/pic16/libdev/pic18f2220.c: NEW,
5382         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
5383         * src/pic16/device.c (struct Pics16): added info for 18f2220,
5384         * src/pic16/device.h (struct pic16_options): added ivt_loc and
5385         nodefaultlibs, ivt_loc is the location of the interrupt vector
5386         table, and nodefaultlibs signs that default libraries should not be
5387         linked in link stage,
5388         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
5389         according to --ivt-loc argument,
5390         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
5391         when pragma stack is found,
5392
5393 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5394
5395         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
5396         256 (range check), 257 (do while), 258.a-f (bit banging
5397         f.e. on 3-wire SPI bus)
5398
5399 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5400
5401         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
5402         variables used exclusively within a loop
5403
5404 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
5405
5406         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
5407
5408 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5409
5410         * src/SDCClrange.c (computeClash): fixed bug #971834
5411
5412 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5413
5414         * src/mcs51/gen.c (genCmp): fixed bug #975903
5415         * src/hc08/gen.c (operandsEqu),
5416         * src/ds390/gen.c (operandsEqu),
5417         * src/z80/gen.c (operandsEqu),
5418         * src/pic/gen.c (operandsEqu),
5419         * src/pic16/gen.c (operandsEqu),
5420         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
5421         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
5422
5423 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5424
5425         * src/SDCCcse.c (cseBBlock): fixed bug #966963
5426
5427 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
5428
5429         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
5430         default case in switch statement,
5431         * glue.c (pic16_initPointer): expr is initialised via decoarteType
5432         to eliminate problem with initialisation of pointers, but problem
5433         still exists,
5434         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
5435         * (emitStaticSegment): removed various lines emitting debug info,
5436         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
5437         added processor registers for utilizing EEPROM,
5438         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
5439         configurable and set 8
5440
5441 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
5442
5443         * .version: increased version number to 2.4.2,
5444
5445         Cumulative patch for pic16 port
5446         * src/pic16/device.c: changed scheme to dump initial values for
5447         variables in idata segment, all print_idata* functions were removed,
5448         now the pic16_printIval* will be called,
5449         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
5450         * _pic16_printPointerType, pic16_printPointerType,
5451         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
5452         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
5453         NEW, similar to the respective functions in SDCCglue.c,
5454         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
5455         way, emitting hex bytes,
5456         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
5457
5458 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5459
5460         * src/avr/ralloc.c (serialRegAssign),
5461         * src/xa51/ralloc.c (serialRegAssign),
5462         * src/pic/ralloc.c (serialRegAssign),
5463         * src/pic16/ralloc.c (serialRegAssign),
5464         * src/hc08/ralloc.c (serialRegAssign),
5465         * src/z80/ralloc.c (serialRegAssign),
5466         * src/ds390/ralloc.c (serialRegAssign),
5467         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
5468
5469 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5470
5471         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
5472         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
5473
5474 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
5475
5476         Cumulative patch for pic16 port:
5477         * src/pic16/device.h (typedef PIC16_device) modified fields for
5478         defining microcontrollers,
5479         * src/pic16/device.c: added new info for all devices in Pics16 array,
5480         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
5481         to be optimised out by the pCode optimiser,
5482         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
5483         specially, bug reported by G.M. Gallant,
5484         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
5485         as force'd so that cannot be optimised out by pCode optimiser,
5486         * src/pic16/pcode.c,
5487         * src/pic16/pcodepeeph.c,
5488         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
5489         they are disabled by default, but can be enabled explicit with
5490         command argument --denable-peeps, for testing,
5491         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
5492         --pomit-ivt in COMPILE_FLAGS
5493
5494 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5495
5496         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
5497           compilation on MSVC
5498
5499 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5500
5501         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
5502
5503 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5504
5505         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
5506         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
5507
5508 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
5509
5510         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
5511         would only assign 0x300001 register.
5512
5513 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
5514
5515         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
5516         in COMPILE_FLAGS. Thanks to G. Gallant for report.
5517
5518 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5519
5520         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
5521         for ds80c400
5522         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
5523         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
5524         added peephole 254 (left shift), 255 (jump table)
5525
5526 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
5527
5528         * device/lib/Makefile.in: removed comment line with model-pic16,
5529         * (target port-specific-objects-pic16): the libraries and objects
5530         are copied to the build directory form the device/lib/pic16/bin
5531         directory
5532
5533         Cumulative patch concerning pic16 port:
5534         * library directory has been re-organized,
5535         * added support for PIC18F1220,
5536         * added headers and library sources for chips 18f1220,18f6520,
5537         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
5538
5539         * configuration registers setting has changed, now each supported
5540         device has a complete description of the registers it uses,
5541         * all initialisations are moved to idata sections, these section
5542         can be absolute or relocatable,
5543         * fixed initialisation of codespace variables,
5544         * fixed warning about PCLATU and gpsim,
5545         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
5546         * (genAssign): use table reads when assigning from variables in codespace,
5547         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
5548         char/int variables placed in codespace,
5549         * (pic16_emitConfigRegs): NEW, emits a list with configuration
5550         registers set in .asm file, no need for --pomit-config-words anymore,
5551         * (pic16glue): some 8051 legacy segments are commented out
5552         (to be removed completely),
5553         * added support for alternative assembler and linker with --asm=
5554         and --link= command line arguments,
5555         * peepholes are disabled automatically in the port, no need to
5556         specify on command line,
5557         * port supports natively char/int/long multiplication, but converts
5558         all divisions to support functions,
5559         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
5560         to the file set in variable $2,
5561         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
5562         strings in ASCII format and not in hex,
5563         * ralloc.c (serialRegAssign): added a triplet of conditional calls
5564         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
5565         allocate proper register if iCodes aren't temporary,
5566
5567 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
5568
5569         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
5570
5571 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
5572
5573         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
5574         is commented out
5575
5576 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5577
5578         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
5579         computed address is reused
5580         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
5581         multi-byte bitfields
5582
5583 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5584
5585         * src/z80/gen.c: (genArrayInit): must check for pointers too
5586
5587 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5588
5589         * support/regression/tests/zeropad.c: never meant to commit the
5590           nestedstruct test: removed, added check for GCC version
5591
5592 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
5593
5594         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
5595         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
5596         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
5597           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
5598           bugs 928906 and 954082 half-empty initializers
5599         * src/SDCCsymt.h,
5600         * src/SDCCsymt.c (getAllocSize): added for above fix
5601         * src/z80/gen.c (genArrayInit): fixed bug 741044
5602         * support/regression/tests/zeropad.c: added tests
5603
5604 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
5605
5606         * src/pic16/device.c (pic16_dump_section): corrected bug which
5607         caused some symbols of the libraries to be misplaced
5608
5609 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
5610
5611         * src/pic16/glue.c,
5612         * src/pic16/ralloc.h,
5613         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
5614         to fix conflict with pic port
5615
5616 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
5617
5618         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
5619         externs configuration variables,
5620         * src/pic16/ralloc.h,
5621         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
5622         prototype in header, commented out some debug messages
5623
5624 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
5625
5626         * src/pic16/glue.c,
5627         * src/pic16/main.c,
5628         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
5629         for gpasm COFF object generation. Thanks to D. Hawkins for
5630         his patch info
5631
5632 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5633
5634         * src/ds390/main.c,
5635         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
5636         Brock for spotting this)
5637         * src/ds390/gen.c (genEndFunction),
5638         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
5639         interrupt handler and critical. Disable push/pop optimizations when
5640         peephole optimizations disabled.
5641
5642 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
5643
5644         Updated pic16 library sources and headers.
5645         * device/lib/pic16/pic18f*/ ,
5646         * device/include/pic16/*.h: modified to handle structured SFR
5647         definitions
5648
5649 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
5650
5651         * src/port.h (PORT structure): added hook initPaths, now each
5652         port can declare its own default search paths,
5653         which can been seen with the --print-search-dirs option,
5654         see pic16 port for example,
5655         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
5656         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
5657         * (doPrintSearchDirs): NEW, replaces in a central manner the
5658         printing of search dirs which was split in set*Paths functions,
5659         * (main): added call to port->initPaths and doPrintSearchDirs,
5660         * src/avr/main.c,
5661         * src/ds390/main.c,
5662         * src/hc08/main.c,
5663         * src/izt/i186.c,
5664         * src/izt/tlcs900h.c,
5665         * src/mcs51/main.c,
5666         * src/pic/main.c,
5667         * src/pic16/main.c: modified port structures to reflect addition of
5668         initPaths hook,
5669
5670         * src/pic16/device.c (regCompare): registers are finally sorted by name,
5671         * (pic16_dump_section): for registers in same address reserve memory once,
5672         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
5673         to no_banksel,
5674         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
5675         result is greater in size than right or left,
5676         * (pic16_genUMult8X8_8): there are some cases where the result can
5677         be 16 bits size, so handle these,
5678         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
5679         * (pic16_outBitC): modified to emit pcodes,
5680         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
5681         or not,
5682         * (genDivOneByte): implemented algorithm to divide 8-bits,
5683         * (genCmp): uncommented goto, but issues still exist,
5684         * (genAnd): fixed a bug with variables >8bits,
5685         * (genPackBits): optimization added that uses BCF/BSF to change a
5686         single bit,
5687         * (genAssign): fixed bug when assigning floating point literals,
5688         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
5689         __sdcc_gsinit_startup label,
5690         * src/pic16/main.c (_pic16_init): removed search directory
5691         initialisations,
5692         * (_pic16_initPaths): NEW, used to initialise search directories,
5693         * (_hasNativeMulFor): support functions for all except char/int
5694         multiplication, and char division,
5695         * (PIC16_port struct): modified entry for native mul support,
5696         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
5697         no_banksel option,
5698         * (buildCallTree): call to register_usage is ifdef'ed out,
5699
5700 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5701
5702         * device/include/string.h: applied Stas Sergeev's patch to make this
5703         header file compatible with the preprocessor -Wundef option
5704         * src/SDCCmain.c (main): abort compilation if preprocessor reports
5705         failure (fixes bug #941458)
5706
5707 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5708
5709         * src/SDCCopt.c (killDeadCode): fixed bug #907733
5710         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
5711         that the variable, not the function, should be static
5712         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
5713         to be consistent with non-literal case
5714
5715 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5716
5717         * src/SDCCast.c (isConformingBody): fixed bug #949967
5718         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
5719         convilong): fixed bug #952086
5720
5721 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5722
5723         * src/SDCCmem.c (allocVariables): fixed bug #955321
5724
5725 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5726
5727         * src/hc08/main.c (_hc08_genAssemblerEnd),
5728         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
5729         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
5730         completely eliminated the use of a temporary file
5731         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
5732         when more than one file linked
5733         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
5734
5735 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5736
5737         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
5738         which fixes bug #543481
5739         * support/regression/tests/bug-751703.c: fixed comments left from a
5740         cut and paste error
5741         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
5742         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
5743         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
5744         scopes
5745         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
5746         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
5747         are now changed to underscores in moduleName
5748
5749 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5750
5751         * as/mcs51/lkmem.c: better fix for bug #954173
5752
5753 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
5754         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5755
5756         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
5757         * device/include/c8051f000.h,
5758         * device/include/c8051f120.h,
5759         * device/include/c8051f300.h,
5760         * device/include/c8051f310.h,
5761         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
5762         PWM16) and detab'ed
5763
5764 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5765
5766         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
5767         and mailing lists, doc'ed --no-peep-comments, removed reference
5768         to knoppix (newest version has no LyX/LaTeX), other minor changes
5769         * src/SDCCglue.c (glue): save 2 bytes stack space with
5770         option --main-return. The ljmp could probably be avoided too
5771
5772 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5773
5774         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
5775
5776 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5777
5778         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
5779         * src/SDCCopt.c (isLocalWithoutDef),
5780         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
5781         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
5782         (credit to Maarten Brock for patch #949363, on which this is based)
5783         * support/regression/tests/bug-751703.c: some test cases of extern used
5784         within inner scopes.
5785
5786 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5787
5788         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
5789         SPEC_STRUCT
5790         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
5791         struct definitions
5792         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
5793         dwWriteLabel): fix to create valid debugger symbols even when
5794         the module name has non-alphanumeric symbols in it
5795         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
5796         when a variable's allocation has been optimized away
5797
5798
5799 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5800
5801         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
5802         * src/hc08/main.c,
5803         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
5804         * src/mcs51/main.c,
5805         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
5806         * src/ds390/main.c,
5807         * src/z80/gen.c (z80_emitDebuggerSymbol),
5808         * src/z80/main.c,
5809         * src/pic/gen.c (pic14_emitDebuggerSymbol),
5810         * src/pic/main.c,
5811         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
5812         * src/pic16/main.c,
5813         * src/avr/gen.c (avr_emitDebuggerSymbol),
5814         * src/avr/main.c,
5815         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
5816         * src/xa51/main.c,
5817         * src/SDCCdebug.c (emitDebuggerSymbol),
5818         * src/SDCCdebug.h,
5819         * src/port.h: added a debugger struct to the port struct. Added a
5820         callback for defining debugger symbols
5821
5822         * src/SDCCast.c (createLabel),
5823         * src/SDCC.y (labeled_statement): mark all compiler generated labels
5824         with isitmp = 1
5825         * src/SDCCicode.h,
5826         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
5827         iCode back to the ast for the function
5828
5829         * src/hc08/ralloc.c (hc08_assignRegisters),
5830         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
5831         unneeded fields from the regs struct.
5832         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
5833         pushReg() & pullReg() functions instead of emitcode()
5834
5835         * src/hc08/gen.c (genLabel, genhc08Code),
5836         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
5837
5838         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
5839         debugger hooks
5840
5841         * src/hc08/gen.c (genEndFunction, genhc08Code),
5842         * src/hc08/gen.h,
5843         * src/mcs51/gen.c (genEndFunction, gen51Code),
5844         * src/mcs51/gen.h,
5845         * src/ds390/gen.c (genEndFunction, gen390Code),
5846         * src/ds390/gen.h,
5847         * src/z80/gen.c (genEndFunction, genZ80Code),
5848         * src/z80/gen.h,
5849         * src/z80/z80.h,
5850         * src/pic/gen.c (genEndFunction, genpic14Code),
5851         * src/pic/gen.h,
5852         * src/pic16/gen.c (genEndFunction, genpic16Code),
5853         * src/pic16/gen.h,
5854         * src/avr/gen.c (genEndFunction, genAVRCode),
5855         * src/avr/gen.h,
5856         * src/xa51/gen.c (genEndFunction, genXA51Code),
5857         * src/xa51/gen.h,
5858         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
5859         specific code to cdbFile.c and out of the backend code generators
5860
5861         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
5862         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
5863         starting address is now 0
5864
5865         * as/hc08/asm.h,
5866         * as/hc08/m08pst.c,
5867         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
5868         assembler directive for DWARF support
5869         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
5870
5871         * src/src.dsp,
5872         * src/Makefile.in,
5873         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
5874
5875 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5876
5877         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
5878         and inappropriate peephole optimization in jump tables
5879
5880 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5881
5882         * as/hc08/m08pst.c,
5883         * src/SDCCglue.c: sdccopt works for the hc08 port now
5884
5885 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
5886
5887         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
5888
5889 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5890
5891         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
5892
5893 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5894
5895         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
5896         rules
5897         * src/SDCCmain.c,
5898         * src/SDCCglobl.h,
5899         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
5900         comments from the peephole optimizer replacement rules
5901         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
5902         symbols
5903         * src/SDCCcse.c (updateSpillLocation),
5904         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
5905         equivalents
5906         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
5907         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
5908         objects far pointers
5909
5910 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5911
5912         * src/SDCCsymt.h: a missing part of my last change
5913         * src/pic/ralloc.c (regTypeNum),
5914         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
5915
5916 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5917
5918         * src/SDCCicode.h,
5919         * src/SDCCicode.c (aggrToPtrDclType),
5920         * src/SDCCptropt.h,
5921         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
5922         ptrPseudoSymConvert),
5923         * src/pic/ralloc.c (regTypeNum),
5924         * src/pic16/ralloc.c (regTypeNum),
5925         * src/hc08/ralloc.c (regTypeNum),
5926         * src/ds390/ralloc.c (regTypeNum),
5927         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
5928         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
5929
5930 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5931
5932         * link/z80/lkmain.c (afile),
5933         * as/hc08/lkmain.c (afile),
5934         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
5935         prevent a pointer problem when a filename has no directory and
5936         no extension specified.
5937
5938 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5939
5940         * link/z80/lkmain.c (afile): allow periods in directory names
5941         * link/z80/lkmain.c (afile),
5942         * as/mcs51/lkmain.c (afile),
5943         * as/hc08/lkmain.c (afile): allow linker script file to have an
5944         extension other than ".lnk"
5945         * link/z80/lklex.c (getfid),
5946         * link/z80/lkmain.c (parse),
5947         * as/mcs51/lklex.c (getfid),
5948         * as/mcs51/lkmain.c (parse),
5949         * as/hc08/lklex.c (getfid),
5950         * as/hc08/lkmain.c (parse): Support comments in the linker script
5951         file on lines by themselves and after filenames
5952
5953 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5954
5955         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
5956
5957 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5958
5959         * src/z80/peeph-z80.def: removed some peephole rules that don't
5960         work with multibyte arithmetic (fixed bug #937126)
5961         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
5962         to registers and not global variables
5963         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
5964         geniCodePreInc, geniCodePostDec, geniCodePreDec,
5965         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
5966         checking for assignments not internally generated (fixed bug #931895)
5967         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
5968         structure member (fixed bug #930072)
5969
5970 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5971
5972         * src/SDCCmain.c (linkEdit),
5973         * src/hc08/main.c (_hc08_parseOptions),
5974         * as/hc08/Makefile.in,
5975         * as/hc08/aslink.h,
5976         * as/hc08/asm.h,
5977         * as/hc08/m08pst.c,
5978         * as/hc08/lkrloc.c (relr, rele),
5979         * as/hc08/lkarea.c (lnkarea)
5980         * as/hc08/lkmain.c (afile, parse),
5981         * as/hc08/lkelf.c: support for ELF output
5982         * as/hc08/lks19.c (s19),
5983         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
5984
5985 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5986
5987         * as/mcs51/lkihx.c: Fixed bug #899105.
5988
5989 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5990
5991         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
5992         .dsp files from Unix to DOS.
5993
5994 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5995
5996         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
5997         function pointers; we have been compliant for several months now.
5998         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
5999         change that was accidently commented out
6000         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
6001         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
6002         bug #922319
6003
6004 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6005
6006         * src/hc08/gen.c: output of all of the internal debugging information
6007         is now controlled by the D() macro; it is disabled by default
6008
6009 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6010
6011         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
6012         harder to keep the same registers during a CAST iCode
6013         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
6014         long via int can be done in a single cast, if the signedness is
6015         correct.
6016         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
6017         putchar() in tinibios.c in ds390's library
6018
6019 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
6020
6021         * src/SDCCast.c (decorateType): fixed bug #898889,
6022         cast result of a literal complement too
6023         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
6024         fixed check for bitfields
6025
6026 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
6027
6028         * src/SDCCicode.c (geniCodeLogic): made it static,
6029         (geniCodeLogicAndOr): added in order to fix bug #905492,
6030         (ast2iCode): fixed bug #905492
6031         * support/regression/tests/bug-905492.c: added
6032         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
6033         (processParms): fixed bug #927659: don't copy parms, this will clear
6034         decorated flag
6035         * support/regression/tests/bug-927659.c: added
6036
6037 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
6038
6039         * src/SDCCast.c (addCast): don't cast float to char
6040         * device/lib/libsdcc.lib: added _memmove
6041
6042 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
6043
6044         * device/lib/large/Makefile: fixed parallel execution by
6045         replacing `make` by `$(MAKE)`
6046
6047 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6048
6049         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
6050         offsets (fixes bug #923936)
6051
6052 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
6053
6054         * device/lib/small/Makefile: fixed parallel execution by
6055         replacing `make` by `$(MAKE)`
6056
6057 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
6058
6059         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
6060
6061 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
6062
6063         * src/pic/gen.c (genCpl): multi-byte complements were not working.
6064         * src/regression/Makefile: Regression test was not running.
6065
6066 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
6067
6068         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
6069         complement if possible
6070         * src/SDCCval.c (valComplement),
6071         * src/SDCCicode.c (operandOperation): fixed complement of literal
6072         * support/regression/tests/onebyte.c (testComplement): added
6073
6074 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
6075
6076         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
6077         return an optimized tree; actually replace actParm with the new tree
6078         * src/SDCCast.h: added some parantheses to remove side effects
6079         * support/regression/tests/bug-920866.c
6080
6081 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
6082         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
6083         Bit operands were not being handled properly in the pic14 port.
6084         (now src/regression/add.c passes again).
6085
6086 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6087
6088         * src/SDCC.y (labeled_statement): case and default no longer require
6089         a following statement (RFE #893037)
6090
6091 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6092
6093         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
6094         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
6095         disabled (fixes bug #916294)
6096         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
6097         "mov a,acc"; patch provided by Lenny Story
6098         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
6099
6100 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6101
6102         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
6103         functions
6104         * src/ds390/gen.c (genFunction, genEndFunction),
6105         * src/ds390/ralloc.c (ds390_assignRegisters),
6106         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
6107         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
6108         pushed if there are parameters passed on the stack. Also, a cleaner
6109         way to decide if r0/r1 should be pushed/popped. (Together they fix
6110         bug #918693)
6111
6112 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6113
6114         * doc/sdccman.lyx,
6115         * device/lib/mcs51/crtpagesfr.asm,
6116         * device/lib/mcs51/crtxinit.asm,
6117         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
6118         to avoid confusion with Si Lab's SFRPAGE register.
6119
6120 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6121
6122         * src/SDCCglue.c (emitMaps): allow public sfr variables
6123         * src/SDCCglue.c (initialComments): include compiler build date
6124         with compiler version and put the timestamp of the generated
6125         assembly file on a serperate line to be less confusing.
6126         * src/port.h: added genInitStartup hook
6127         * src/avr/main.c,
6128         * src/ds390/main.c,
6129         * src/hc08/main.c,
6130         * src/pic/main.c,
6131         * src/pic16/main.c,
6132         * src/xa51/main.c,
6133         * src/z80/main.c: genInitStartup initialize as NULL (default to
6134         historical behaviour)
6135         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
6136         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
6137         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
6138         library instead of hard coding it into the compiler.
6139         * support/regression/ports/mcs51-stack-auto/spec.mk,
6140         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
6141         * device/lib/mcs51/Makefile,
6142         * device/lib/small/Makefile,
6143         * device/lib/large/Makefile,
6144         * device/lib/mcs51/crtpagesfr.asm,
6145         * device/lib/mcs51/crtstart.asm,
6146         * device/lib/mcs51/crtxclear.asm,
6147         * device/lib/mcs51/crtxinit.asm,
6148         * device/lib/mcs51/crtclear.asm,
6149         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
6150         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
6151         and into user configurable files.
6152         * device/lib/clean.mk: clean mcs51 directory too
6153         * support/regression/tests/longlit.c: added static to T1 declaration
6154         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
6155         accesses in the initialization code
6156
6157 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6158
6159         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
6160         OSCTRIMVAL as noted in bug #916008
6161
6162 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6163
6164         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
6165         in loops with multiple exits (reported as incorrect registers
6166         used by Martin Helmling in Sdcc-user list)
6167
6168 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6169
6170         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
6171         made ds390 register extensions look less like error messages
6172
6173 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6174
6175         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
6176         reported by Adam Wozniak in Sdcc-user list
6177
6178 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
6179
6180         * src/SDCCast.c (decorateType): fixed with bug and promotion in
6181         arithmetic optimizations, added debug output
6182
6183 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
6184
6185         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
6186         * sdcc.spec: updated and split sdcc into 3 rpms
6187         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
6188         needed for literals of LEFT_OP and '+'
6189         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
6190         introduced RESULT_TYPE_NOPROM
6191         (geniCodeMultiply): fixed logic for decision if mul is optimized to
6192         left shift
6193         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
6194         limited promotion to int only for '*'
6195         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
6196
6197 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
6198
6199         * src/pic16/gen.c (genSkip),
6200         (genc16bit2lit), (gencjneshort): commented out
6201         (is_LitOp): new helper function, checks operand type
6202         (genCmpEq): rewritten
6203
6204 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
6205
6206         * support/regression/tests/bug-908454.c: added
6207
6208 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
6209
6210         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
6211         * src/SDCCicode.c (usualBinaryConversions): op needs int type
6212         (geniCodeCast): cosmetic, don't preserve bit storage class
6213         (geniCodeLeftShift): added promotion
6214         (geniCodeLogic): fixed regression
6215         * src/SDCCsymt.c (computeTypeOr): accept bits too
6216         (compareType): 2nd part of fix for bug #908454, needed for bitfields
6217
6218 2004-03-07  Borut Razem <borut.razem AT siol.net>
6219
6220         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
6221
6222 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
6223
6224         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
6225         version of pic16_genPackRegisters which does not check if ic is a
6226         CAST operator,
6227         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
6228         function cause string1.c regression test fails
6229
6230 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
6231
6232         * sim/ucsim/configure.in,
6233         * sim/ucsim/configure,
6234         * sim/ucsim/doc/Makefile.in: use docdir
6235         * src/SDCC.y: fixed sbit atrributes
6236         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
6237         * src/SDCCast.c (decorateType): |^& need special promotion handling
6238         * src/SDCCast.h,
6239         * src/SDCCsymt.h: moved definition of RESULT_TYPE
6240         * src/SDCCsymt.h (computeType),
6241         * src/SDCCicode.c: computeType() needs op
6242         * src/SDCCsymt.c (checkTypeSanity),
6243         * doc/sddman.lyx: "plain" bitfields are unsigned
6244         * src/SDCCsymt.c (computeTypeOr): added
6245         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
6246         |^& ops
6247         * src/SDCCval.c (val*): computeType() needs op
6248         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
6249         * support/regression/tests/onebyte.c: added tests for |^&
6250
6251 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
6252
6253         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
6254         for writing icode into asm output.
6255
6256 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
6257
6258         * src/pic16/device.c: added some debug lines enabled
6259         with macro DEBUG_CHECK,
6260         * src/pic16/genarith.c: more debug in genPlus,
6261         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
6262         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
6263         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
6264         * (aopForSym): onStack symbols are re-placed in data memspace,
6265         and onStack flag is cleared,
6266         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
6267         copy temporary pcodeop,
6268         * (genPcall): added warning for not updating PCLATU,
6269         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
6270         always true for pic16 port,
6271         * (genMultOneWord): NEW, supports integer multiplication,
6272         * (genMult): modified to call genMultOneWord,
6273         * (ifxForOp): added warning when return NULL,
6274         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
6275         flag is set before call to operandFromSymbol for implicit
6276         added structures,
6277         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
6278         options.intlong_rent are set by default,
6279         * (_hasNativeMulFor): modified to allow port generation of integer
6280         multiplication,
6281         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
6282         set regtype to REG_SFR for all registers, restricting seting the
6283         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
6284
6285 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6286
6287         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
6288         more than 500 times in the regression tests
6289
6290 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6291
6292         * support/Util/SDCCerr.h,
6293         * support/Util/SDCCerr.c,
6294         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6295         enumerator_list),
6296         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
6297         for symbol conflicts.
6298         * support/valdiags/tests/enum.c,
6299         * support/valdiags/tests/tentdecl.c,
6300         * support/valdiags/tests/struct.c: expect possible error messages
6301         referring to original symbol definitions.
6302         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
6303         * src/SDCCsymt.h,
6304         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
6305
6306 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
6307
6308         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
6309
6310 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
6311
6312         * src/pic16/ralloc.c (newReg): fixed bug #908929
6313
6314 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6315
6316         * src/ds390/gen.c: added missing #include "main.h"
6317
6318 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
6319
6320         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
6321         checking if symbol is already in set,
6322         * src/pic16/device.h: prototype for checkAddSym,
6323         * src/pic16/gen.c: (_G): added entry interruptvector,
6324         * (assignResultValue): removed some commented out lines,
6325         * (genFunction): check for ISR via sym->type, absolute section for
6326         interrupt code is created via a new pBlock, the goto instruction is
6327         placed now correctly at the interrupt vector position, changed all
6328         references from ivec to _G.interruptvector,
6329         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
6330         is the interrupt is a high priority one, same for return from ISR,
6331         * src/pic16/glue.c: changed all calls of addSetHead for publics and
6332         externs to calls of checkAddSym,
6333         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
6334         pic16_pcode_verbose flag is set,
6335         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
6336         * src/pic16/pcoderegs.c: message about how many registers are saved
6337         will only be emitted if pic16_pcode_verbose flag is set,
6338
6339 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6340
6341         * src/ds390/ralloc.h,
6342         * src/ds390/ralloc.c (ds390_regWithIdx),
6343         * src/ds390/gen.c (emitcode),
6344         * src/ds390/main.h,
6345         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
6346         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6347         ds390operandCompare, getRegsRead, getRegsWritten,
6348         initializeAsmLineNode): customized instruction size calculation for
6349         ds390, started basis for some register optimizations
6350         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
6351         corresponding assembly output
6352         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
6353         missing push/pop of r0/r1. Optimized push/pops
6354
6355 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6356
6357         * src/mcs51/main.c (instructionSize): fixed ACALL size
6358         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
6359
6360 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
6361
6362         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
6363         the sorting of rlist with NULL elements
6364         * (print_idataType, print_idata): NEW to create idata sections
6365         * src/pic16/device.h: idataSymSet new variable
6366         * src/pic16/gen.c (genFunction): fixed some bugs in string
6367         comparing, improved the absolute section creation for ISRs,
6368         added FSR0L/FSR0H in registers that are saved in an ISR,
6369         * (genInline): fixed the processing of inline snippets,
6370         now they undergo no process by the peephole optimizer
6371         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
6372         are placed in idataSymSet,
6373         * (pic16emitStaticSeg): extern symbols are added in externs,
6374         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
6375         switching when aboslute variables are placed in access bank memory
6376         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
6377         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
6378         commented out with #if,
6379         * (pic16_packRegisters): reintroduce the check for CAST because some
6380         symbols are not correctly handled,
6381         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
6382         pCodeInstruction instead of pCode,
6383         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
6384         pCodeAsmDir definition,
6385         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
6386         directive, then the argument directive is emitted without the leading
6387         tab, hack for inline labels which must be in the first column,
6388         * (compareLabel,pic16_findNextInstruction),
6389         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
6390         * (insertBankSwitch): modified for the new pCodeAsmDir,
6391
6392 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6393         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
6394
6395         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
6396         instance,
6397         * (pushSide): commented out with #if,
6398         * (assignResultValue): fixed some typos in saving
6399         registers,
6400         * (genPcall): FIXED and sync'ed with genCall,
6401         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
6402         * (genNearPointerGet): fixed to handle some more cases,
6403         implementation scheme via table reads,
6404         * (genConstPointerGet): modified to access code memory correct,
6405         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
6406         and improved to handle some cases
6407         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
6408         instead of "RETLW" for init data
6409         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
6410         not IN_DIRSPACE, work around to reduce bank switching when aboslute
6411         variables are placed in access bank memory (<0x80 and >=0xf80),
6412         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
6413         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
6414         TBLWT_POSTDEC,TBLWT_PREINC
6415         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
6416         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
6417         directives
6418         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
6419         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
6420         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
6421         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
6422
6423 2004-02-29  Borut Razem <borut.razem AT siol.net>
6424
6425         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
6426         support/Util/findme.h, support/Util/system.h: enhance binary relative
6427         search for lib and include by using findProgramPath()
6428
6429 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6430
6431         * src/SDCCpeeph.h,
6432         * src/SDCCpeeph.c (pcDistance),
6433         * src/port.h,
6434         * src/mcs51/ralloc.h,
6435         * src/mcs51/ralloc.c (mcs51_regWithIdx),
6436         * src/mcs51/main.h,
6437         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
6438         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6439         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
6440         size calculation port specific, started basis for some register
6441         optimizations
6442         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
6443         missing push/pop of r0/r1. Optimized push/pops
6444         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
6445         * device/lib/_modsint.c (_modsint),
6446         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
6447         and stack version so regression tests pass
6448
6449 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
6450
6451         * src/Makefile.in (dep): include SLIBOBJS in dependency check
6452         * src/SDCCast.c (decorateType): catch another small optimization
6453         with '?' operator
6454         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
6455         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
6456         modified to finally use computeType() all over SDCC,
6457         see Feature Request #877103
6458         * src/SDCCval.h: cosmetic
6459         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
6460         valCompare(); regression tested in muldiv.c
6461         * support/regression/tests/muldiv.c (testMod): mod sign follows
6462         dividend only
6463
6464 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
6465
6466         * src/SDCCast.c (decorateType): fixed bug #902362
6467         * doc/INSTALL.txt: fixed install instructions for win32
6468
6469 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
6470
6471         * device/include/Makefile.in (install): fixed by replacing spaces
6472         by tabs
6473         * doc/README.txt,
6474         * doc/INSTALL.txt: updated for release
6475         * doc/sdccman.lyx: added warning for --xstack being buggy
6476
6477 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
6478
6479         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
6480         to eliminate build warnings.
6481         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
6482
6483 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
6484            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6485
6486         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
6487         removed -penable-stack, added comment for stack pragma, added
6488         warning for not initializing the stack/frame registers, removed
6489         comment at interrupts section
6490
6491         Stack is made permanent, there is no ability to disable stack usage.
6492         * src/pic16/device.h,
6493         * src/pic16/device.c: removed all references to USE_STACK macro,
6494         * src/pic16/device.c (pic16_dump_section): when no elements in
6495         rlist, free rlist before return,
6496         * (pic16_dump_int_registers): NEW, internal registers are a new set
6497         of general purpose registers reused by each function,
6498         * (checkAddReg): returns 1 if registers is added to set,
6499         * (pic16_groupRegistersInSection): when a registers is of type
6500         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
6501         * src/pic16/device.h: memRange and Assigned Memory are deleted,
6502         SRCASECMP macro is moved here from device.c
6503         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
6504         PO_PCLATU, PO_PRODL, PO_PRODH,
6505         * (pic16_pCodeOpType, genMinus,
6506         changed compares to "a" register, with AOP_ACC,
6507         * (pic16_genPlus): fixed some bugs and indented properly,
6508         * (pic16_addSign): changed size to size+offset in the MOVWF
6509         instruction,
6510         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
6511         multiply 8-bit operand by literal, result is 8-bit,
6512         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
6513         multiply 2 8-bit operand, result is 8-bit,
6514         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
6515         genUMult8X*_16,
6516         * src/pic16/gen.c: changed accUse to contain WREG only,
6517         * (pic16_emitcomment): renamed to pic16_emitpcomment,
6518         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
6519         true, do not use immediate addressing any more unless sym is a
6520         pointer in codespace,
6521         * (aopForRemat): do not use immediate addressing when symbol not in
6522         codespace and when symbol's address is requested,
6523         * (aopOp): for-loop in if(sym->accUse) is modified for the new
6524         accUse size (= 1),
6525         * (aopGet): added case for AOP_ACC and don't return "accumulator
6526         bug" but WREG instead,
6527         * (popGetTempReg): pushes contents of temporary register in stack,
6528         * (popReleaseTempReg): pops contents of temporary register from
6529         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
6530         * (pic16_popGet): separated case AOP_ACC to return register WREG
6531         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
6532         or PO_IMMEDIATE and initializes their instance/offset appropriately,
6533         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
6534         the use of immediate pointers to certain cases only.
6535
6536         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
6537         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
6538         * (assignResultValue, genCall, genRet): modified to use the new
6539         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
6540         genPcall is still broken,
6541         * (genFunction): added code to create 'A' type pBlocks when
6542         interrupt functions are generated, code not extensively tested yet,
6543         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
6544         * (genEndFunction): modified so ISRs pop stored registers from stack,
6545         * (genMultOneByte): cleanup,
6546         * (AccRsh): added flag andmask, to and result with appropriate mask,
6547         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
6548         * (genDataPointerGet): fixed and reenabled its use,
6549         * (genNearDataPointerGet): bugs fixed,
6550         * (genDataPointerSet): bugs fixed,
6551         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
6552         pic16_DumpSymbol, pic16_DumpOp,
6553         * src/pic16/genutils.h: function prototypes for the above functions,
6554         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
6555         pointers,
6556         * (pic16emitRegularMap): many many many improvements, but needs a
6557         major cleanup,
6558         * src/pic16/main.c: enable_stack in pic16_options is removed,
6559         * (_pic16_parseOptions): removed command line options -penable-stack,
6560         * (_process_pragma): emit stack symbol only when stack pragma is
6561         processed,
6562         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
6563         redirected to FSR0L/FSR0H pair,
6564         * (pic16_get_op, pic16_get_op2): modifications and improvements,
6565         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
6566         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
6567         for immediates,
6568         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
6569         * (dumpPicOptype): NEW,
6570         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
6571         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
6572         with movff instruction,
6573         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
6574         added pic16_int_regs, some packRegsFor* functions are commented out,
6575         because produce errors,
6576         * src/pic16/NOTES: minor modifications
6577
6578 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6579
6580         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
6581         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
6582         --pack-iram.
6583         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
6584         * as/mcs51/lkaomf51.c: fixed bug #895763
6585
6586 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
6587
6588         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
6589
6590 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6591
6592         * doc/sdccman.lyx: added details about the HC08 storage classes and
6593         interrupts, fixed the register usage info for z80 & gbz80
6594
6595 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
6596
6597         * doc/sdccman.lyx: added more pic16 port documentation
6598         * device/include/pic16/: added header pic18fregs.h
6599
6600 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
6601
6602         * doc/sdccman.lyx: added Vangelis' contribution
6603
6604 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6605
6606         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
6607         extend to the next CALL or PCALL, not just to the next CALL.
6608
6609 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
6610
6611         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
6612
6613 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6614
6615         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
6616         bug #895752 and a better fix for bug #716790
6617
6618 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6619
6620         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
6621
6622 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6623
6624         * doc/sdccman.lyx: minor changes, minor changed
6625
6626 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
6627
6628         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
6629         which can't handle SDCC_NEWONEBYTEOPS,
6630         (geniCodeMultiply): removed conversion from mult to shift for pic14
6631         and pic16
6632
6633 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6634
6635         * src/hc08/gen.h,
6636         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
6637         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
6638         thus fixing bug #895406
6639
6640 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
6641
6642         * device/lib/_modsint.c,
6643         * device/lib/_modslong.c: sign follows divisor only
6644         * src/hc08/gen.c (genMultOneByte): if result size is 1,
6645         signs or signedness can be ignored
6646         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
6647         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
6648         added optimization for IFX,
6649         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
6650         arguments;
6651         reenabled optimization for IFX, which was removed on 2004-01-11
6652         * src/SDCCast.h: added return type IFX
6653         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
6654         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
6655         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
6656         SDCC_OLDONEBYTEOPS selects the old behaviour
6657         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
6658         changed again and commented promotion rule
6659         * src/SDCCval.c (valDiv): promotion no longer necessary
6660         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
6661         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
6662         rewritten
6663         * support/regression/tests/onebyte.c: added
6664
6665 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
6666
6667         * gen.c (genInline): reverted to old code for assemnling inline
6668         code because of bug reported James Chadd
6669
6670 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
6671
6672         * ralloc.h: missing declarations from previous patch,
6673         seems that patch for ralloc.h was never applied, fixed
6674
6675 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6676            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6677
6678         * pcode.c,
6679         * pcode.h,
6680         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
6681         indirect addressing. Marked FSR0 as deprecated
6682         * gen.c (pointerCode): commented out, not needed now
6683         (pic16_popGet2p): new MOVFF helper function
6684         (genGenPointerGet),
6685         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
6686         (shiftRLong): removed duplicate debugging info
6687
6688 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6689
6690         * src/ds390/gen.c (genNearPointerGet),
6691         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
6692         optimization with bits, but not bitfields.
6693         * src/ds390/ralloc.c (packRegisters),
6694         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
6695
6696 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
6697
6698         * src/SDCCcse.c (algebraicOpts): copy operands before modification
6699
6700 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6701
6702         * src/SDCCsymt.h,
6703         * src/SDCCicode.c (operandFromSymbol),
6704         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
6705         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
6706         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
6707         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
6708         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
6709         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
6710         bug #892038
6711         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
6712         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
6713         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
6714         * src/SDCCsymt.c (newSymbol),
6715         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6716         enumerator_list),
6717         * src/SDCCval.h,
6718         * src/SDCCval.c (newiList): fixed bug #885705
6719
6720 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6721
6722         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
6723         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
6724
6725 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6726
6727         * device/include/c8051f120.h,
6728         * device/include/c8051f300.h,
6729         * device/include/c8051f310.h: added/updated header files for Silicon
6730         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6731         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
6732         in new section Submitting patches
6733
6734 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6735
6736         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
6737         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6738         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6739         genGenPointerSet),
6740         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
6741         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6742         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6743         genGenPointerSet),
6744         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
6745         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6746         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6747         genGenPointerSet),
6748         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
6749         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6750         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6751         genGenPointerSet): fixed bug #892400
6752         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
6753         to eliminate build warnings.
6754         * src/SDCCast.c (processParms),
6755         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
6756         fixed bug 751859
6757         * support/valdiag/valdiag.py: added GCC to the list of defines active
6758         when compiling with gcc
6759
6760 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6761
6762         * support/Util/SDCCerr.h,
6763         * support/Util/SDCCerr.c,
6764         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
6765         with an incomplete type (fixed bug #883734)
6766         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
6767
6768 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6769
6770         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
6771
6772 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6773
6774         * src/SDCCast.c (decorateType),
6775         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
6776         function pointer implementation
6777         * support/regression/tests/funptrs.c: added tests to verify both forms
6778         of function pointers work correctly. Added tests to verify parameters
6779         are passed in the correct order.
6780
6781 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
6782
6783         * device.c (regCompare): registers are sorted by ascending
6784         address and increasing size,
6785         * main.c (_pic16_finaliseOptions): removed the declaration
6786         of compiler macro MCU. Now a macro of the format pic18fxxxx
6787         will be defined from the command line
6788
6789 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6790             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6791
6792         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
6793         PCOP_RLCF was overwritten!
6794         * gen.c (genSkip): commented out calls to pic16_emitcode,
6795         * (genCmpEQ): fixed "long" compares, only high word did get compared,
6796         * (genlshTwo),
6797         * (genRRC): added debugging info,
6798         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
6799         overwritten while shifting,
6800         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
6801         overwritten while shifting,
6802         * (AccLsh),
6803         * (AccRsh),
6804         * (shiftLLeftOrResult),
6805         * (shiftRLeftOrResult),
6806         * (shiftRLong),
6807         * (shiftLLong): Implemented with pic16_emitpcode
6808         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
6809         * (genLeftShift): Fixed bug, operand for shift by variable always
6810         was "and"ed with 0x0f,
6811         * (genLeftShiftLiteral),
6812         * (genrshTwo),
6813         * (genRightShiftLiteral): added debugging info,
6814         * (genrshFour): added comment,
6815         * (genRightShift): determined signedness from operand "left"
6816         instead of "result"
6817
6818 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6819
6820         * src/SDCCicode.c (geniCodeParms),
6821         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
6822         function pointers, fixed function pointer bugs #861242 and #861896
6823
6824 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6825
6826         * device/include/c8051f000.h,
6827         * device/include/c8051f120.h,
6828         * device/include/c8051f300.h: added header files for Silicon
6829         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6830
6831 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
6832
6833         * src/SDCCast.c (processParams): added new type flow and restructured
6834         (gatherAutoInit): added new type flow
6835         (addCast): cosmetic changes
6836         (getLeftResultType): added new type flow for array indices, patch
6837         provided by Stas, see FR #877103
6838         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
6839         array index patch by Stas
6840         * src/SDCCast.h: added prototype getResultTypeFromType()
6841         * src/SDCCval.h,
6842         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
6843         * src/pic/glue.c (pic14emitStaticSeg),
6844         * src/pic16/glue.c (pic16emitStaticSeg),
6845         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
6846         for initialization of symbols
6847         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
6848         * support/Util/SDCCerr.h:
6849         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
6850         * .version: bumped version number to 2.3.8
6851         * device/include/Makefile.in (install),
6852         * doc/Makefile (install): changed to 'rm `find ...`' construct to
6853         avoid warnings
6854
6855 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
6856
6857         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
6858         Slade Rich fixed an optimization bug
6859         * src/pic/pcodepeep.c,
6860         * src/pic/pcoderegs.c
6861         * doc/Makefile (install): added test for directory
6862
6863 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6864
6865         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
6866         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
6867         * src/pic/ralloc.c (getRegPtr, getRegGpr),
6868         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
6869         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
6870         * as/mcs51/asexpr.c (term),
6871         * as/hc08/asexpr.c (term): fixed bug #887146
6872
6873 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6874
6875         * src/z80/gen.c (genMult): handle single byte result product
6876         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
6877         DUMMY_READ_VOLATILE (fixed bug #886367)
6878
6879 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6880
6881         * support/regression/tests/libmullong.c: fixed logic, on little endian
6882         hosts we ended without a mullong_wrapper()
6883
6884 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6885
6886         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
6887         virus/worm forged address usage.
6888
6889 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6890
6891         Fixed promotion, it should be done on AST level:
6892         * src/SDCCast.c (addCast): added promotion to int
6893         (decorateType): updated call to upCast()
6894         * src/SDCCicode.c (geniCodeLeftShift): removed call to
6895         usualUnaryConversions()
6896
6897 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
6898
6899         * support/regression/tests/literalop.c (mulWrapper): Added a
6900         wrapper to remove integer overflow warnings.
6901
6902         * support/regression/tests/float_trans.c: Made work on host.
6903
6904         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
6905         location of sz80.
6906
6907         * support/regression/generate-cases.py (main): Changed from inline
6908         to a main method.
6909
6910         * doc/Makefile (install): Changed to depth first to get rid of
6911         missing directory install warning.
6912
6913         * as/Makefile (install-doc): Made work on Mac.
6914
6915 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
6916
6917         * src/SDCCast.c: added an additional type flow in decorateType() of
6918         opposite direction, see feature request #860006; it's enabled at runtime
6919         by setting the environment variable SDCC_NEWTYPEFLOW
6920         * src/SDCCast.h: changed prototype of decorateType()
6921         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
6922         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
6923         'char' to 'int' can be omitted, if both operands are 'unsigned char';
6924         see feature request #877103
6925         * src/SDCCval.c: updated call of decorateType()
6926         (valBitwise): fixed bug #882876
6927         (valMinus): added promotion
6928         (valLogicAndOr): result is unsigned
6929         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
6930         * src/SDCCsymt.c (computeType),
6931         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
6932         must not cause an unsigned operation
6933         * src/pic/glue (pic14emitRegularMap),
6934         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
6935
6936 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
6937
6938         * src/pic/pcode.c (PCodeID): commented out left over debug code
6939
6940 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
6941
6942         * support/valdiag/tests/overflow.c: added shift tests
6943         * src/pic/device.c,
6944         * src/pic/gen.c,
6945         * src/pic/gen.h,
6946         * src/pic/glue.c,
6947         * src/pic/main.c,
6948         * src/pic/pcode.c,
6949         * src/pic/pcode.h,
6950         * src/pic/pcodepeep.c,
6951         * src/pic/pcoderegs.c,
6952         * src/pic/ralloc.c,
6953         * src/pic/ralloc.h: applied patch from Slade Rich;
6954         added support for multiple code pages and multiple RAM banks on the
6955         PIC 14 port. The ASM files now no longer simply assume all the
6956         code / RAM are in the same page / bank. This means the linker can
6957         safely allocate code/RAM of separate ASM files to different pages/banks.
6958         * doc/sdccman.lyx: added Slade's tips
6959         * src/mcs51/peeph.def: fixed bug #880768
6960
6961 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6962
6963         * src/hc08/ralloc.c (rematStr): fixed bug #879282
6964         * src/SDCCast.c (decorateType): fixed bug #880197
6965
6966 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
6967
6968         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
6969         getopt.h.
6970
6971         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
6972         strtof is not part of C89 and isn't included with Mac OS X.
6973
6974 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6975
6976         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
6977         shiftL2Left2Result): fixed bug #879326
6978         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
6979         (genMultOneByte): fixed bug in signed vs unsigned multiplication
6980         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
6981         address fetch for clr instruction
6982         * device/lib/hc08/_mulint.c: created optimized assembly version
6983         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
6984
6985 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
6986
6987         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
6988         proposed in FR #877103
6989
6990 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
6991
6992         * src/SDCCval.c (cheapestVal): added missing checks
6993         * src/SDCCicode.c (usualBinaryConversions): fixed condition
6994         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
6995
6996 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
6997
6998         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
6999         equal operands
7000
7001 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
7002
7003         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
7004         loaded with the linker search paths (-L arguments) and the libraries
7005         to be linked with the current source (-l arguments). Changes
7006         currently will affect only the pic16 port.
7007         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
7008         include path the port specific paths and port specific libraries,
7009         * gplink command now contains the $3 argument,
7010         * src/pic16/device.h,
7011         * src/pic16/device.c,: structure PIC_device is made public and
7012         renamed to PIC16_device, the same for variable Pics which is renamed
7013         to Pics16. Updated all references to them.
7014         * src/pic16/glue.c (pic16glue): corrected bug with code
7015         initialization which bypassed the variable initializations block.
7016
7017         * device/lib/pic16/Makefile.rules: removed --penable-stack from
7018         COMPILE_FLAGS and added the --nostdinc option
7019
7020 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7021
7022         * device/include/mc68hc908jb8.h: Register defs for another member
7023         of the hc08 family. Contributed by Bjorn Bringert - thanks!
7024
7025 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
7026
7027         Documenting changes from previous commits.
7028         * configure.in (version 1.56),
7029         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
7030         when generating output files to configure the pic16 library,
7031         but now I've commented it out, since gputils aren't installed in the
7032         SF compile farm, so library won't compile
7033
7034         * device/lib/Makefile.in (version 1.56): initially I've added in
7035         target 'all' the prerequestive 'model-pic16' so it compiled the
7036         pic16 library, but now I've commented it out for the same reasons
7037         above,
7038         * added targets 'model-pic16' and 'objects-pic16' to compile the
7039         library
7040         * added target 'port-specific-objects-pic16' to handle the
7041         generated libraries and copy them into the build/ directory
7042         * added target 'clean-intermediate-pic16' to clean intermediate
7043         files into pic16 directory
7044         * in target 'installdirs' added line to create directory pic16 in
7045         the installation path
7046
7047         * device/include/Makefile.in (version 1.11): in target 'install'
7048         added lines to copy all header files to installation path,
7049         * in target 'installdirs' added line create directory for pic16
7050         headers in the installation path
7051
7052 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
7053
7054         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
7055          a function call
7056
7057 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
7058
7059         * configure,
7060         * device/lib/configure.in,
7061         * device/lib/configure: fixed for autoconf 2.57
7062
7063 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7064
7065         * src/z80/main.c (_parseOptions): fixed the portmode= command line
7066         option so that it actually works. Made it specific to the z80, since
7067         the gbz80 doesn't have these kinds of I/O ports.
7068
7069 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7070
7071         * device/include/z180.h,
7072         * device/lib/_memcpy.c,
7073         * device/lib/_memmove.c,
7074         * device/lib/_mulint.c,
7075         * device/lib/ser_ir.c,
7076         * device/lib/ser_ir_cts_rts.c,
7077         * device/lib/_strcmp.c,
7078         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
7079         * src/z80/main.c (_process_pragma): add support for pragmas bank and
7080         portmode; added deprecation warning for bank= and protmode= forms.
7081         Also, guard against buffer overflow.
7082         * src/z80/gen.c (aopGet): generate better code for sfr banked read
7083
7084 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7085
7086         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
7087         changed interrupt vector table generation to only emit declared vectors.
7088         * device/include/Makefile.in: added missing backslash
7089         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
7090
7091 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
7092
7093         Mainly changes to support compilation of the device libraries
7094         * src/pic16/device.c: stack is allocated via symbol and not
7095         via literal number. The symbol is placed in the corresponding
7096         position of the data ram
7097         * (pic16_dump_section): relocatable and absolute uninitialized
7098         data are now emitted in sorted order to reduce section naming,
7099         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
7100         weren't marked as being in the access bank,
7101
7102 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
7103
7104         Added portion of GNU PIC Library under the directory
7105         device/include/pic16 and device/lib/pic16. These files
7106         contain the declarations of SFRs for the PIC18Fxx2 devices.
7107         The directory is initialized via configure from toplevel.
7108
7109 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
7110
7111         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
7112         the spilllocations to be compared correctly
7113
7114 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
7115
7116         * src/SDCCast.c (decorateType): fixed bug introduced today
7117
7118 2004-01-12  Borut Razem <borut.razem AT siol.net>
7119
7120         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
7121         doc/sdccman.lyx: upper case pragmas are deprecated
7122
7123 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
7124
7125         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
7126         in simpler and even better code
7127
7128 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
7129
7130         * src/SDCCicode.c (operandOperation): fixed bug #874819
7131         * src/SDCCast.c (decorateType): fixed
7132         char foo (unsigned long ul) { return ul > 0; }
7133
7134 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7135
7136         * doc/sdccman.lyx: Moved and added some sections, small changes
7137         all over. Telling LaTeX to be less strict with word spacing
7138         to better keep the right margin. Changed some notes about
7139         maintainance of the ports in section 3.2.1 - is it OK like this?
7140
7141 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
7142
7143         SDCC source changes:
7144         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
7145         convilong): modified to inform the pic16 port that builtin functions
7146         are external
7147
7148         PIC16 PORT specific changes:
7149         * src/pic16/device.c pic16_dump_equates() added,
7150         processor registers declared internally by the port are emitted in
7151         the translation as equates,
7152         * src/pic16/gen.c: inline code is passed unprocessed to the
7153         translation,
7154         * (pic16_popGetLit2): fnuction modified to take second operand as
7155         pCodeOp pointer and not as literal,
7156         * (popRegFromIdx): prefixed with pic16_,
7157         * (pic16_popCombine2): modified to receive already allocated pCode
7158         operands,
7159         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
7160         * (genFunction): initializes local stack frame and pushes on stack
7161         all the registers used by this function,
7162         * (genEndFunction): restores all registers from stack and restores
7163         stack frame,
7164         * src/pic16/glue.c (pic16emitRegularMap): various changes and
7165         improvements,
7166         * (pic16glue): changed the program startup sequence,
7167         * added new dbName code 'A' for functions placed in absolute section
7168         * src/pic16/main.c: added function attribute _naked,
7169         * added pragma 'code' to place a fnuction at an absolute address,
7170         * added command line arguments --debug-ralloc and --pcode-verbose,
7171         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
7172         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
7173         * (pic16_newpCodeOpLit2): modified to take the second operand as
7174         pCodeOp pointer,
7175         * (pic16_printpBlock): modified to emit each function in a separate
7176         section,
7177         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
7178         UPPER for immediate operands,
7179         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
7180         instruction,
7181         * src/pic16/peeph.def: all peepholes with movff are commented out,
7182         because there is a problem in the pcode peep optimizer,
7183         * src/pic16/ralloc.c: the register allocator can now reuse local
7184         function symbols for another function. This saves register usage.
7185         * src/pic16/ralloc.h: added flag isLocal in structure regs,
7186
7187         Added file src/pic16/NOTES with information about program writing on
7188         the current port version.
7189
7190 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7191
7192         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
7193         and peephole 252 (array access)
7194
7195 2004-01-09  Borut Razem <borut.razem AT siol.net>
7196
7197         * src/SDCCmain.c : fixed #872250: -l command line defined library
7198           files are scanned before standard library files
7199
7200 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7201
7202         * src/SDCCast.c (decorateType): fixed bug #874046
7203
7204 2004-01-09  Borut Razem <borut.razem AT siol.net>
7205
7206         * support/scripts/sdcc.nsi: remove previous installation
7207
7208 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7209
7210         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
7211         bytes for last interrupt vector (mcs51)
7212         * sdcc.spec: fixed typo
7213
7214 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7215
7216         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
7217         gen51Code): more efficient parameter receive for --model-large
7218         ("bug" #845294)
7219
7220 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7221
7222         * src/ds390/main.c,
7223         * src/z80/main.c: added missed needLinkerScript flags (more than
7224         one port structure defined in these file)
7225         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
7226         bug #795325
7227
7228 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
7229
7230         * src/SDCCmain.c: removed various references to DEFAULT_PORT
7231         * src/port.h: added flag needLinkerScript in port->linker
7232         structure to inform whether to create a .lnk file or not,
7233         * src/avr/main.c,
7234         * src/ds390/main.c,
7235         * src/hc08/main.c,
7236         * src/mcs51/main.c,
7237         * src/pic/main.c,
7238         * src/pic16/main.c,
7239         * src/xa51/main.c,
7240         * src/z80/main.c: changed appropriately to configure
7241         needLinkerScript flag
7242         * src/pic/gen.c,
7243         * src/pic16/gen.c (genAddrOf): fixed bug #863624
7244         * src/pic/glue.c: added variable udata_section_name to
7245         override default uninitialized data segment definition for
7246         devices only with SHAREBANK memory (reported from Erik Epetrich)
7247         * (pic14emitOverlay): modified to emit a commented overlay segment
7248         directive when no overlay data exist
7249         * (picglue): modified to emit uninitialized data segment
7250         according to udata_section_name
7251         * src/pic/main.c (_pic14_parseOptions): added command line
7252         options --udata-section-name=[name] to override default
7253         udata definition name
7254         * modified _linkCmd and _asmCmd to include compiler passed
7255         arguments via -W option
7256         * src/pic16/main.c: added $l in _asmCmd, changed extension for
7257         object file from '.rel' to '.o' in port->linker structure,
7258         changed size of fptr from 2 to 3 in port structure
7259
7260 2004-01-07  Borut Razem <borut.razem AT siol.net>
7261
7262         * support/scripts/sdcc.nsi: update PATH
7263         * support/scripts/sdcc.ico: craeted
7264
7265 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
7266
7267         * device/include/Makefile.in: fix install
7268         * doc/Makefile: fix install
7269
7270 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7271
7272         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
7273         in bug #860505
7274         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
7275         how the function variable allocation summary is displayed; also
7276         include information about variables allocated to the overlay
7277         segment
7278
7279 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7280
7281         * as/mcs51/lkmain.c: Help about -Y option
7282         * as/mcs51/lkarea.c: Fixed gcc warnings
7283
7284 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
7285
7286         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
7287         fixed warning
7288         * support/valdiag/tests/overflow.c: added
7289         * src/SDCCast.c (decorateType),
7290         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
7291         LEFT_OP (left shift)
7292
7293 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7294
7295         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
7296         (default behaviour).
7297
7298 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7299
7300         A python script to validate compiler diagnostic messages. It can be
7301         used to verify that sdcc complains about bad c source code and
7302         gives a good location of the error.
7303         * support/valdiag/Makefile,
7304         * support/valdiag/valdiag.py,
7305         * support/valdiag/tests/*
7306
7307 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7308
7309         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
7310         * src/SDCCsymt.c (newEnumType),
7311         * src/SDCCsymt.h
7312         * support/Util/SDCCerr.c,
7313         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
7314         enum related bugs.
7315         * support/regression/tests/enum.c: added test for enum values that
7316         require at least 2 bytes of storage.
7317
7318 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7319
7320         * src/common.h: added ifndef/define/endif macros
7321         around the header file.
7322         Bug reported from Jesus Calvino-Fraga
7323
7324 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
7325
7326         * sdcc.spec: updated
7327         * device/include/Makefile.in: don't install CVS directories
7328         * device/lib/Makefile.in: added removal of CVS directories after install
7329         * doc/Makefile: fixed install, added local_icons
7330         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
7331         * src/mcs51/gen.c (genRightShift): fixed bug #870788
7332         * src/ds390/gen.c (genRightShift): fixed bug #870788
7333         * src/SDCCast.c (decorateType): fixed bug #870781
7334
7335 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7336
7337         PIC16 port related changes:
7338         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
7339         added variable stackPos,
7340
7341         * gen.c: genCall, assignResultValue: added support for
7342         pushing/retrieving function parameters to/from stack,
7343         genFunction,genEndFunction: setup stack frame for the
7344         generated function,
7345         genAddrOf: will be changed according to bug 863624
7346
7347         * added files genutils.c and genutils.h which contain gen*
7348         debugged and optimised functions extracted from gen.c
7349
7350         * glue.c: added variable 'externs' which holds extern symbols,
7351         pic16emitRegularMap: is modified to properly handle relocatable
7352          symbols under the new scheme,
7353         pic16createInterruptVect: is modified
7354         pic16printPublics: is modified to emit 'global' assembler directives,
7355         added pic16_printExterns to print extern symbols,
7356         pic16glue: initializes stack/frame pointer in the beginning of
7357         the assembly output. Temporary hack, will be corrected later,
7358         because gplink yet does not support stack and SDCC does not
7359         yet support a type of crt0.o object to create the final binary.
7360
7361         * Removed many lines that contain 8051 legacy code.
7362         * The code is finally placed under a 'code' directive.
7363         * Added port specific options.
7364
7365         * _process_pragma: simplified since now we do not need *special*
7366         include file to define SFR registers. But a separate header
7367         will be needed. This will be developed later.
7368         * _pic16_parseOptions: added, parses port specific options:
7369         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
7370         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
7371         --preplace-udata-with=
7372
7373         * _pic16_setDefaultOptions: modified to initialize section names,
7374         but hack is temporarly out of order since it needs improvement.
7375         * _pic16_genAssemblerPreamble: configuration words are emitted by
7376         their address instead of their name. This part is incomplete and
7377         supports only the 18Fxx2 devices. Other devices will emit an error
7378         during assembly since they do not contain the same set of config
7379         registers
7380         * _pic16_genIVT: is modified,
7381
7382         * pcode.c: added definitions for some hardware registers that are needed
7383         for stack support
7384         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
7385         All PCI entries are updated. Now LFSR is supported.
7386         * Removed pic16_pciTRIS is mentioned by mdubuc in source
7387         * added pic16_newpCodeOpLit2 to support instructions with
7388         two literal arguments
7389         * pic16_pCode2str: corrected code that emits assembler instructions
7390         with two literal operands and those that have an access bit modifier
7391         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
7392         this fixes a bug which caused some labels to be lost, when an
7393         assembler directive was added, i.e. banksel,
7394         * pic16_FixRegisterBanking: improved logic that causes the insertion
7395         of bank switching,
7396         * InlineFunction: functions that are called once, are not any more
7397         inlined. This can be a port option in the future,
7398
7399         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
7400
7401         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
7402         hold the corresponding uninitialized symbols,
7403         * pic16_allocProcessorRegister: registers have explicit marked the
7404         accessBank field,
7405         * pic16_allocInternalRegister: registers are explicit marked as
7406         not used,
7407         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
7408         processing list, so bit registers were lost,
7409         *
7410
7411         * ralloc.h: added field 'accessBank' and original symbol operand
7412         in register definition,
7413         * removed the field isMapped from register definition,
7414
7415         ** Several functions have been removed from various sources:
7416         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
7417         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
7418         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
7419         pic16_assignRelocatableRegisters
7420
7421         ** others have been introduced:
7422         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
7423         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
7424
7425 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
7426
7427         * support/scripts/inc2h.pl: changed definition of BIT_AT
7428         to emit 'sbit at' instead of 'bit at'. This was a request.
7429
7430         PIC16 port related preliminary changes:
7431         * gen.c: prefixed function popRegFromString with
7432         pic16_ and all references to it corrected
7433         * pcode.c: all pic16_pc_* hardware registers prefixed
7434         with underscore (_),
7435         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
7436         * ralloc.c: newReg(): when register is REG_SFR then
7437         set address to rIdx,
7438         pic16_allocProcessorRegister(): marks register wasUsed=0
7439         pic16_writeUsedRegs(): added a call to assign processor
7440         registers via pic16_assignFixedRegisters
7441
7442 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7443
7444         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
7445         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
7446         variables in unused register banks.  Also the SSEG is placed
7447         wherever there is enough space for it, and IDATA can be anywhere
7448         in internal RAM.  For now compile using -Wl-Y[stack_size].
7449         The mem file is different for this option as well, since it
7450         makes no sense of talking about DSEG lenght.
7451
7452 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
7453
7454         * src/SDCClrange.c: fixed bug 869095 that caused segfault
7455         in certain cases, e.g. when ROM assignment, patch provided
7456         from Albert den Haan.
7457
7458 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
7459
7460         Many signedness and type propagation fixes:
7461         * src/SDCCicode.c: made geniCodeCast() static
7462         replaced SPEC_ by IS_ (cosmetic)
7463         (operandOperation): fixed div and mod operation
7464         (usualBinaryConversions): added support for promotion of char
7465         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
7466         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
7467         (geniCodeAdd): an array index will stay unsigned, even if promoted
7468         from char to int
7469         (geniCodeArray): ditto
7470         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
7471         * src/SDCCsymt.c (computeType): added more support for char;
7472         promotion of char is selectable by promoteCharToInt, fixed signedness
7473         for all cases
7474         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7475         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7476         * src/SDCCval (val*): replaced signedness calculation by
7477         computeType()
7478         rearranged if-branches (cosmetic)
7479         (valShift): added warning W_SHIFT_CHANGED
7480         (valCompare): fixed problem with different types
7481         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
7482         * support/regression/tests/literalop.c: added many cases
7483         * support/regression/tests/ast_constant_folding.c: changed finally to
7484         'unsigned int'
7485         * .version: new year, new version: 2.3.7
7486         * src/SDCCmain.c (main): applied patch #866468
7487         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
7488         provided by Scott Bronson
7489         * doc/sdccman.lyx: updated documentation for sdcdb
7490         updated and added chapter tips
7491
7492 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7493
7494         * src/SDCCsymt.h: missing from yesterday's commits
7495
7496 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7497
7498         * src/SDCC.y (struct_or_union_specifier),
7499         * support/Util/SDCCerr.c,
7500         * support/Util/SDCCerr.h: verify that struct & union tags are used
7501         as declared.
7502
7503 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7504
7505         * src/SDCCglobl.h: missing from yesterday's commits
7506
7507 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7508
7509         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
7510         sft_attributes, struct_declaration, parameter_declaration,
7511         type_name, start_block, declaration_list),
7512         * src/SDCC.lex (check_type): support redefinition of typedef names
7513
7514 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7515
7516         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
7517         aligned xdata arrays. Erik helped me with the if clause.
7518
7519 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7520
7521         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
7522         warning
7523
7524 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7525
7526         * src/SDCCast.h,
7527         * src/SDCCast.c (newAst_),
7528         * src/SDCCicode.h,
7529         * src/SDCCicode.c (ast2iCode, newiCode),
7530         * src/SDCCglobl.h,
7531         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
7532         expr, statement, expression_statement, selection_statement,
7533         iteration_statement, expr_opt, jump_statement): foundation for tracking
7534         sequence points
7535         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
7536         point code too)
7537
7538 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7539
7540         * support/Util/SDCCerr.c,
7541         * src/SDCCast.h,
7542         * src/SDCCast.c (createCase, createDefault, decorateType),
7543         * src/SDCClabel.c (labelUnreach),
7544         * src/SDCC.y (labeled_statement, jump_statement): More improvements
7545         to error messages.
7546         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
7547         (with thanks to Stas Sergeev)
7548         * device/include/time.h,
7549         * device/lib/time.c (CheckTime): suppress unreachable code warning
7550
7551 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7552
7553         * src/SDCCast.c (createIvalCharPtr),
7554         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
7555         bug #753752)
7556         * support/regression/tests/nullstring.c: tests for these two bugs
7557
7558 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7559
7560         * support/Util/SDCCerr.h,
7561         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
7562         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
7563         about storage class and 'at' used inside struct or union
7564         * src/SDCCBBlock.c (iCodeFromeBBlock),
7565         * src/SDCCcse.c (ifxOptimize),
7566         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
7567         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
7568         printIval, emitStaticSeg, emitOverlay),
7569         * src/SDCClabel.c (deleteIfx),
7570         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
7571         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
7572         gatherAutoInit, processParms),
7573         * support/Util/SDCCerr.h,
7574         * support/Util/SDCCerr.c (werrorfl): Support for better error location
7575         reporting for post-parse errors.
7576
7577 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7578
7579         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
7580         implicit casts via union; they don't work on big endian systems
7581         (possible fix for bug #861138)
7582
7583 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7584
7585         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
7586         * src/mcs51/main.c: fixed the fix for bug #737001
7587
7588 2003-12-15  Borut Razem <borut.razem AT siol.net>
7589
7590         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
7591
7592 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7593
7594         * support/makebin/makebin.c: put output in binary mode
7595
7596 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7597
7598         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
7599         xdata and data memory on startup. Set the environment variable
7600         SDCC_NOGENRAMCLEAR to disable this.
7601         * src/mcs51/peephole.def,
7602         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
7603         (allows non-interrupt and interrupt code to safely compete for a resource
7604         without the non-interrupt code having to disable interrupts)
7605
7606 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7607
7608         * src/SDCCicode.c (geniCodeAdd),
7609         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
7610         with valFromType if type might be a pointer and host is big endian).
7611         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
7612         types, not just integer types.
7613         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
7614         multiply defined with mismatching "at" address.
7615
7616 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7617
7618         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
7619         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
7620         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
7621         with embedded nulls (fixed bug #753752)
7622
7623 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7624
7625         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
7626         Apparently this did not see much testing (endless loop)
7627
7628 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7629
7630         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
7631
7632 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7633
7634         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
7635         gracefully handle NULL memmap pointers
7636
7637 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7638
7639         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
7640         instead of deleting the iCode when an operand is volatile
7641         * src/z80/gen.c (genDummyRead),
7642         * src/mcs51/gen.c (genDummyRead),
7643         * src/ds390/gen.c (genDummyRead),
7644         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
7645         not just IC_RIGHT
7646         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
7647         * src/SDCC.y: fixed bug #850420
7648
7649 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7650
7651         Applied z80 i/o port patch from Peter Townson and fixed some operators
7652         to better handle operands in A register.
7653         * device/include/z180.h
7654         * src/SDCC.y
7655         * src/SDCCglue.c
7656         * src/z80/gen.c
7657         * src/z80/gen.h
7658         * src/z80/main.c
7659         * src/z80/peeph-z80.def
7660         * src/z80/peeph.def
7661         * src/z80/z80.h
7662
7663 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7664
7665         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
7666
7667 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7668
7669         * device/lib/hc08/_mullong.c: Removed extra #endif
7670
7671 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7672
7673         * sim/ucsim/hc08.src/inst.cc,
7674         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
7675         carries from x to h
7676         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
7677         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
7678         * device/include/stdarg.h: fixed varargs for hc08
7679         * device/lib/Makefile.in,
7680         * device/lib/hc08/Makefile,
7681         * device/lib/hc08/_mulint.c,
7682         * device/lib/hc08/_mullong.c: fixed some endian problems
7683
7684 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7685
7686         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
7687         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
7688         * device/lib/_gptrget.c,
7689         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
7690
7691 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7692
7693         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
7694         * src/SDCCast.c (astErrors): fixed bug #846007
7695         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
7696
7697 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7698
7699         * src/SDCCast.c (decorateType): disabled a transformation I added in
7700         revision 1.188 (access to fields of a structure at an absolute address);
7701         it breaks with bitfields, extern declarations, and gcse analysis.
7702         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
7703         could be assigned through a pointer, so don't complain.
7704         * src/SDCCast.c (astErrors),
7705         * src/SDCCast.h,
7706         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
7707
7708 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
7709
7710         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
7711         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
7712         output of __config directives, since gpasm now supports them
7713         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
7714         pre-processor macro, i.e. -DMCU=p18f452
7715         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
7716         and modified to handle 'cast' icode similarly to '=' icode
7717         * src/pic16/device.h (typedef struct PIC_device): added field
7718         'extMIface' to indicate that chip has external memory interface
7719         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
7720         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
7721         18F8720
7722
7723 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7724
7725         * src/SDCC.y (pointer): fixed bug #846006
7726         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
7727         * src/SDCCast.c (decorateType): fixed bug #846009
7728         * src/ds390/peeph.def,
7729         * src/ds390/gen.c (genAnd, genOr),
7730         * src/mcs51/peeph.def,
7731         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
7732
7733 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7734
7735         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
7736         * src/SDCCdflow.c
7737         * src/SDCCcse.c
7738         * src/SDCCcse.h
7739         * src/SDCCBBlock.h
7740         * src/SDCCBBlock.c
7741
7742 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
7743
7744         fixed bug #845089
7745         * src/SDCCbitv.h,
7746         * src/SDCCbitv.c: added function to free a bitvector
7747         * src/SDCClrange.h,
7748         * src/SDCClrange.c: added function to recompute the liveranges
7749         * src/avr/ralloc.c,
7750         * src/ds390/ralloc.c,
7751         * src/hc08/ralloc.c,
7752         * src/mcs51/ralloc.c,
7753         * src/pic/ralloc.c,
7754         * src/pic16/ralloc.c,
7755         * src/xa51/ralloc.c,
7756         * src/z80/ralloc.c: recompute the liveranges after register packing
7757
7758 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
7759
7760         * src/SDCCloop.c (newInduction): fixed bug #845630
7761
7762 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7763
7764         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
7765         inadvertantly left behind from my 2003-11-12 change
7766
7767 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7768
7769         Updated headers I neglected to commit yesterday.
7770         * src/SDCClrange.h,
7771         * src/SDCCicode.h
7772
7773 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7774
7775         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
7776         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
7777         * src/SDCCopt.c (eBBlockFromiCode),
7778         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
7779         the creation of the key hash table from the sequencing so it can be used
7780         earlier (for some GCSE bug fixes still pending)
7781
7782 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7783
7784         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
7785         * support/regression/tests/addsub.c: testing genPlus shortcut
7786
7787 2003-11-15  Borut Razem <borut.razem AT siol.net>
7788
7789         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
7790
7791 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7792
7793         * src/SDCCcse.c (cseBBlock): fixed bug #527779
7794         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
7795         ordering is immaterial.
7796         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
7797
7798 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7799
7800         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
7801         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
7802         (SIGSEV) of bug #840381
7803         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
7804         unlink new file before rename if new and old filenames are the same)
7805
7806 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7807
7808         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
7809         uninitialized variables) for the mcs51. Set environment variable
7810         SDCC_GENRAMCLEAR to test.
7811         xdata initialization slightly shorter
7812
7813 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7814
7815         * src/SDCCsymt.h,
7816         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
7817         #838241 & 780691 (basicly the same bug)
7818         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
7819         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
7820
7821 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
7822
7823         * src/SDCCmain.c (linkEdit): "fix" #834252
7824
7825 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7826
7827         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
7828         * src/SDCCast.h,
7829         * src/SDCC.y: fixed bug #819403
7830
7831 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7832
7833         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
7834         the reentrant attribute.
7835         * src/hc08/gen.c (genPackBits): added missing stack readjustment
7836         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
7837         simulation
7838         * src/SDCCast.c (decorateType): fixed bug with storage class not being
7839         updated during pointer dereference; f.e. ~(((char *)1)*) was being
7840         erroneously reduced to a literal.
7841         * src/hc08/ralloc.c (packRegisters, rematStr),
7842         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
7843         some cases
7844
7845 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7846
7847         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
7848         * doc/sdccman.lyx: changed from 'article' to 'book'
7849         * doc/Makefile: readded test_suite_spec and cdbfileformat
7850
7851 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
7852
7853         * device/include/stdlib.h: include malloc.h to comply with ANSI
7854         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
7855
7856 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7857
7858         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
7859         * doc/clean.mk: also remove *.out files
7860         * doc/sdccman.lyx: some additions, larger top/bottom margins
7861
7862 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7863
7864         * src/SDCC.y: fixed bug #837365
7865         * support/regression/tests/bitopcse.c
7866         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
7867         a symbol (might be valop instead)
7868         * device/lib/Makefile.in: added errno.c to HC08SOURCES
7869         * device/lib/clean.mk: added hc08 to the cleaning list
7870
7871 2003-11-04  Borut Razem <borut.razem AT siol.net>
7872
7873         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
7874           made 2003-11-04
7875         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7876           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
7877           malloc is declared in standard stdlib.h
7878
7879 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7880
7881         * device/lib/hc08/Makefile: need to clean .rel not .o files
7882         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
7883
7884 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7885
7886         * src/port.h,
7887         * src/hc08/main.c,
7888         * src/mcs51/main.c,
7889         * src/ds390/main.c,
7890         * src/z80/main.c,
7891         * src/avr/main.c,
7892         * src/pic/main.c,
7893         * src/pic16/main.c,
7894         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
7895         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
7896         tests (which uses the port's oclsExpense function)
7897         * src/SDCC.y,
7898         * src/SDCCast.c,
7899         * src/SDCCicode.c,
7900         * src/hc08/gen.c,
7901         * src/ds390/gen.c,
7902         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
7903
7904 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7905
7906         * src/SDCCcse.c (ifxOptimize),
7907         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
7908         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
7909         deleting the IFX iCode.
7910         * src/hc08/ralloc.c: reduced unneeded slocs
7911         * src/hc08/gen.c: fixed bug in asmopToBoolean
7912
7913 2003-11-04  Borut Razem <borut.razem AT siol.net>
7914
7915         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
7916           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7917           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
7918           transferred to configure
7919
7920 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
7921
7922         Use headers defined in the C[++] standards:
7923         * sim/ucsim/gui.src/serio.src/fileio.cc
7924         * sim/ucsim/gui.src/serio.src/frontend.cc
7925         * sim/ucsim/gui.src/serio.src/main.cc
7926         * sim/ucsim/gui.src/serio.src/posix_signal.cc
7927         * support/Util/NewAlloc.c
7928         * as/hc08/lklibr.c
7929         * as/mcs51/lklibr.c
7930         * as/z80/aslist.c
7931         * as/z80/assym.c
7932
7933 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7934
7935         * Added MSVC projects for hc08 assembler and linker:
7936         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
7937         /as/hc08/link_hc08.dsp
7938
7939 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
7940
7941         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
7942
7943 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
7944
7945         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
7946
7947 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7948
7949         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
7950
7951 2003-10-31  Borut Razem <borut.razem AT siol.net>
7952
7953         * support/cpp2/cpplib.h,
7954           support/cpp2/cpplib.c,
7955           support/cpp2/cpplex.c,
7956           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
7957           to switch _asm block preprocessing on / off. Default is
7958           #pragma preproc_asm +
7959
7960 2003-10-31  Borut Razem <borut.razem AT siol.net>
7961
7962         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
7963           when outputting comment blocks (when executed with -C option) and
7964           _asm (SDCPP specific) blocks
7965
7966 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7967
7968         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
7969
7970 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
7971
7972         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
7973
7974 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
7975
7976         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
7977         * src/SDCCast.c (decorateType): fixed bug #832664
7978
7979 2003-10-31  Borut Razem <borut.razem AT siol.net>
7980
7981         * support\cpp2\cpplex.c: fixed for SDCPP:
7982           comments(when executed with -C option) and _asm blocks
7983           were included even if they where in skipped #if block.
7984           Applied solution from GCC cpp 3.3.2
7985
7986 2003-10-31  Borut Razem <borut.razem AT siol.net>
7987
7988         * src/SDCC.lex: sdcc now understands both formats:
7989           '# <line_number> <file_name>' and
7990           '#line <line_number> <file_name>'
7991         * support/cpp2/cppmain.c: sdcpp now generates the standard
7992           '# <line_number> <file_name>' instead of former
7993           '#line <line_number> <file_name>'
7994
7995 2003-10-30  Borut Razem <borut.razem AT siol.net>
7996
7997         * support/cpp2/cpphash.h,
7998         * support/cpp2/cpplib.h
7999         * support/cpp2/cpplex.c,
8000         * support/cpp2/cppmain.c,
8001         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
8002
8003 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8004
8005         Fixed a number of problems revealed by bug #827883.
8006         * src/SDCCloop.c (loopInvariants): Spill location of the
8007         result operand should be recomputed if extracted from
8008         a loop. Also, don't extract assignments of an iTemp
8009         from a literal.
8010         * src/SDCCast.c (isConformingBody): loop reversal should
8011         not occur if the control variable is involved with a
8012         relational operator.
8013
8014 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
8015
8016         * .version: bumped to 2.3.6 to reflect the big improvements
8017         made by Erik and Klaus. Thanks!
8018
8019 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
8020
8021         Replaced the livrange code.
8022         * src/SDCClrange.c: added new LR code
8023         * src/SDCCloop.c,
8024         * src/SDCCBBlock.h: removed remainig parts from old LR code
8025         * src/ds390/ralloc.c,
8026         * src/ds390/gen.c: minor fixes to make it work with new code
8027
8028 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8029
8030         * as/hc08/asm.h,
8031         * as/hc08/lkrloc.c,
8032         * src/hc08/gen.c,
8033         * src/hc08/ralloc.c: Fix various warnings related to the hc08
8034         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
8035         (tweaked fix for bug #818696)
8036
8037 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8038
8039         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
8040
8041 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8042
8043         * src/SDCCmain.c,
8044         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
8045         * src/mcs51/gen.c (gencjneshort),
8046         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
8047         more efficient (per Scott Bronson's suggestion)
8048
8049 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8050
8051         Extended the semantics of the critical keyword to include
8052         individual statements. See RFE #827755 and #799831
8053         * src/SDCC.y
8054         * src/SDCCicode.c
8055         * src/SDCCopt.c
8056         * src/SDCCast.c
8057         * support/Util/SDCCerr.c
8058         * support/Util/SDCCerr.h
8059         * src/mcs51/gen.c
8060         * src/ds390/gen.c
8061         * src/hc08/gen.c
8062
8063 2003-10-19  Borut Razem <borut.razem AT siol.net>
8064
8065         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
8066
8067 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8068
8069         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
8070         Fixed bug #818696
8071         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
8072         and predecrement operand is displayed
8073
8074 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
8075
8076         * src/SDCCval.c (valMinus): fixed bug #826041
8077
8078 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8079
8080         Some hc08 related updates that I missed earlier
8081         * sim/ucsim/stypes.h
8082         * support/regression/ports/hc08/spec.mk
8083
8084 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8085
8086         New target "hc08" for the Motorola 68hc08 family of micros
8087
8088         * configure
8089         * configure.in
8090         * Makefile
8091         * src/hc08/*
8092         * src/SDCCmain.c
8093         * src/port.h
8094         * sim/ucsim/hc08.src/*
8095         * sim/ucsim/configure.in
8096         * src/ucsim/configure
8097         * sim/ucsim/packages_in.mk
8098         * as/hc08/*
8099         * as/Makefile
8100         * device/include/mc68hc908qy.h
8101         * device/lib/hc08/*
8102         * device/lib/Makefile.in
8103         * support/regression/ports/hc08/*
8104         * support/regression/Makefile
8105
8106 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8107
8108         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
8109         regression test
8110         * src/ds390/gen.c (genCast): fixed bug #821957
8111
8112 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
8113
8114         * device/lib/logf.c: "fixed" overlay bug
8115         * support/regression/ports/host/spec.mk: added m library
8116         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
8117         * support/regression/tests/float_trans: added (for Eric)
8118
8119 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
8120
8121         * src/mcs51/gen.c (genCpl): fixed bug
8122         http://sf.net/mailarchive/message.php?msg_id=6263915
8123
8124 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
8125
8126         * src/SDCCast.c (decorateType): added extended constant folding
8127         * src/SDCCsymt.c (computeType): cleanup
8128         * src/SDCCval.c (valShift): minor optimization
8129         * support/regression/tests/ast_constant_folding.c: added
8130
8131 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8132
8133         * src/SDCCmain.c: removed some unintended changes
8134
8135 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8136
8137         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
8138         * src/z80/gen.c: fixed part of bug #817589
8139         * src/SDCCsymt.c (checkFunction): fixed bug #817895
8140
8141 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
8142
8143         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
8144         * src/SDCCcflow.c
8145         * src/SDCCcse.c
8146         * src/SDCCdflow.c
8147         * src/SDCClabel.c
8148         * src/SDCClrange.c
8149         * src/SDCCmem.c
8150         * src/SDCCopt.c
8151         * src/SDCCpeeph.c
8152         * src/SDCCset.c
8153         * src/avr/ralloc.c
8154         * src/ds390/ralloc.c
8155         * src/izt/ralloc.c
8156         * src/mcs51/ralloc.c
8157         * src/pic/ralloc.c
8158         * src/pic16/ralloc.c
8159         * src/xa51/ralloc.c
8160         * src/z80/ralloc.c
8161         * src/z80/gen.c: removed unused label "release:"
8162
8163 2003-10-06  Borut Razem <borut.razem AT siol.net>
8164
8165         * src/SDCC.lex: removed definition of unused variables
8166           save_optimize and save_options
8167
8168 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
8169
8170         * clean.mk: removed '=' in "-maxdepth=1"
8171         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
8172         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
8173
8174 2003-10-06  Borut Razem <borut.razem AT siol.net>
8175
8176         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
8177           my_unput() replaced by unput()
8178
8179 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
8180
8181         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
8182         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
8183         type-punned pointer will break strict-aliasing rules"
8184         Old LR behaviour is again default; Klaus' LR can be choosen by
8185         defining the environment variable LRKLAUS
8186         * src/SDCCBBlock.h
8187         * src/SDCCloop.c
8188         * src/SDCClrange.c
8189         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
8190         * clean.mk: fixed removal of files in bin/CVS/
8191         * device/lib/clean.mk: fixed removal of directories small and large
8192         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
8193         * src/SDCCicode.c,
8194         * src/SDCCval.c: removed superflous test for pedantic
8195
8196 2003-10-05  Borut Razem <borut.razem AT siol.net>
8197
8198         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
8199           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
8200           message "unmatched #pragma SAVE and #pragma RESTORE"
8201
8202 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8203
8204         * doc/sdccman.lyx: various additions and updates (interrupts, inline
8205           assembly, critical functions, atomic, nojtbound)
8206
8207 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
8208
8209         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
8210         * src/SDCCBBlock.h
8211         * src/SDCCloop.c
8212         * src/SDCCloop.h
8213         * src/SDCClrange.c
8214
8215 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8216
8217         * src/z80/gen.h,
8218         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8219         * src/mcs51/gen.h
8220         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8221         * src/ds390/gen.h
8222         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8223         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
8224         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
8225
8226 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8227
8228         * src/z80/gen.c (genRet): fixed bug #524753
8229         * src/z80/gen.c (genCast): fixed internal error on cast from
8230         pointer to long
8231         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
8232         fix for bug #477835 to the z80
8233         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
8234         for tracking iCodes in the peephole optimizer for z80
8235
8236 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8237
8238         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
8239         the other part of bug #814548
8240         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
8241
8242 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
8243
8244         * src/SDCCcse.c: fixed part of bug #814548
8245
8246 2003-09-28  Borut Razem <borut.razem AT siol.net>
8247
8248         * src/asm.c: rewrite of printILine() to use temporary file instead
8249           a pipe
8250         * src/xa51/main.c: commented out declaration of int rewinds
8251
8252 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8253
8254         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
8255
8256 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8257
8258         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
8259         * src/asm.c (printILine): Fixed bug #811015
8260
8261 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8262
8263         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
8264         freeing.
8265
8266 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8267
8268         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
8269         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
8270         to correctly handle general case of AOP_PAIRPTR
8271         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
8272
8273 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8274
8275         * src/mcs51/ralloc.c (fillGaps),
8276         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
8277         register positioning bug)
8278
8279 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
8280
8281         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
8282
8283 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8284
8285         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
8286         genCodePointerGet, genGenPointerGet, genFarPointerSet,
8287         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
8288         (ralloc doesn't intentionally do this now, but perhaps later)
8289         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
8290         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
8291         register positioning bugs (Fixed bug #762602 and #795325)
8292         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
8293         (Fixed bug #808779)
8294         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
8295         lines that --i-code-in-asm generates
8296
8297 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8298
8299         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
8300         trying to fclose a FILE* that was already closed.
8301
8302 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8303
8304         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
8305         of const struct should be treated as if const themselves)
8306
8307 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
8308
8309         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
8310
8311 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8312
8313         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
8314         Unix (/n) and DOS (/r/n) line terminations.
8315
8316 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8317
8318         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
8319         bug #613775
8320
8321 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8322
8323         * src/mcs51/gen.c (genFunction, genEndFunction),
8324         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
8325         and restore of EA so that stack offsets to parameters are
8326         correct when using both critical and reentrant/stack-auto.
8327         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
8328         size (can be triggered in error if sloc is shared between
8329         different sized objects)
8330         * device/include/float.h: fixed macros to explicitly use
8331         unsigned long where needed
8332
8333 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
8334
8335         Feature req. 799831: added code to allow nesting of critical functions
8336         * src/mcs51/gen.c (genFunction, genEndFunction)
8337         * src/ds390/gen.c (genFunction, genEndFunction)
8338
8339 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8340
8341         * src/SDCCsymt.c (sclsFromPtr),
8342         * src/SDCCsymt.h,
8343         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
8344         support for standard C idiom of memory mapped variables; for
8345         example, *((xdata int*)0x1234) = 1 is now internally equivalent
8346         to xdata int at 0x1234 tempvar = 1.
8347         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
8348         provided by Akiya ISHIDA
8349
8350 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
8351
8352         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
8353         * src/SDCCval.c (constVal): added reduction from int to char
8354         * src/SDCCval.c (valMult, valDiv): fixed sign handling
8355         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
8356         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
8357         to ignore the sign
8358         * support/regression/tests/shifts.c: fixed
8359
8360 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8361
8362         * src/z80/gen.c (genXor): Fixed bug #805445
8363
8364 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8365
8366         Fixed bug #621531 (const & volatile confusion in the type chain).
8367         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
8368         refer to the const or volatile state of the pointer itself.
8369
8370         * src/SDCCast.c
8371         * src/SDCCglue.c
8372         * src/SDCCicode.c
8373         * src/SDCCsymt.c
8374         * src/SDCCval.c
8375         * src/SDCC.y
8376         * src/SDCCsymt.h
8377         * src/pic/gen.c
8378         * src/pic/ralloc.c
8379         * src/pic16/gen.c
8380         * src/pic16/ralloc.c
8381         * support/regression/tests/const.c
8382
8383 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8384
8385         When checking for duplicated modules, use absolute paths
8386         instead of relative paths.  Files changed:
8387
8388         * as/mcs51/lklib.c
8389         * link/z80/lklib.c
8390
8391 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8392
8393         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
8394
8395 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8396
8397         * device/include/string.h: added size_t typedef, changed
8398         prototypes to use size_t, eliminated separate reentrant and
8399         non-reentrant declarations, added _memmove declaration
8400         * device/lib/_memcpy.c: changed to use size_t instead of int,
8401         changed /4 to >>2 to avoid division library call
8402         * device/lib/_memcmp.c,
8403         * device/lib/_memset.c,
8404         * device/lib/_strncat.c,
8405         * device/lib/_strncpy.c,
8406         * device/lib/_strncmp.c: changed to use size_t instead of int
8407         * device/lib/_memmove.c: new file (fixed bug #772294)
8408         * device/lib/Makefile.in: added _memmove.c
8409         * device/lib/z80/asm_strings.s: fixed bug #772290
8410         * support/regression/tests/bitfields.c: attempt to fix host assertion
8411         failure on amd64-unknown-linux2.2
8412
8413 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8414
8415         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
8416         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
8417         * as/z80/asmain.c (main): fixed bug #801766
8418
8419 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
8420
8421         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
8422         compilers
8423
8424 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8425
8426         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
8427         reported in bug #800609
8428
8429 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
8430
8431         * Top header beautifications in src/pic16 directory:
8432           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
8433           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
8434           pcoderegs.h, ralloc.c, ralloc.h
8435         * main.c: added top header and GPL license notice
8436         * pcode.c: fixed the if-conditional warning
8437
8438 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
8439
8440         * device/lib/_mullong.c: replaced int by short for gcc
8441
8442 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8443
8444         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
8445         and JUMPTABLE iCodes properly now (worked by accident before)
8446         * src/mcs51/gen.c (leftRightUseAcc),
8447         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
8448         iCode properly now. Use getSize instead of nRegs since a & b
8449         aren't part of the nRegs tally.
8450
8451 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
8452
8453         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
8454         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
8455           before instructions that use the _STATUS register
8456
8457 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
8458
8459         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
8460         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
8461         fetching of the pointer
8462         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
8463         copied from genNearPointerSet()
8464         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
8465         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
8466         If they pop r0/r1 they must be called in the opposite order than aopOp().
8467         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
8468         (resp. --stack-auto), prepared for --xstack
8469
8470 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8471
8472         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
8473
8474 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8475
8476         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
8477         these ports have their own __sdcc_external_start()
8478
8479 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
8480
8481         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8482         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
8483         type for bits was changed. It resulted in bit variables becoming
8484         global, which is not permitted in PIC 14 assembly output.
8485
8486 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8487
8488         * doc/sdccman.lyx: various additions and updates. Rearranged sections
8489
8490 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8491
8492         Z80 and MCS51 linkers complaint if a public symbol is defined
8493         in more than one library module:
8494
8495         * as/mcs51/lklib.c
8496         * link/z80/lklib.c
8497         * as/mcs51/Makefile.in
8498
8499 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8500
8501         A few small changes that speed up the peephole optimizer.
8502
8503         * src/SDCCpeeph.c
8504
8505 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8506
8507         Try to make the peephole optimizer smarter by maintaining
8508         an association between the assembly source code and the
8509         iCodes that originated them. Put this information to use
8510         with a new peephole rule condition "notVolatile" so that
8511         the rules can be aggressive yet still safe.
8512
8513         * src/SDCCpeeph.c
8514         * src/SDCCpeeph.h
8515         * src/mcs51/gen.c
8516         * src/mcs51/peeph.def
8517
8518 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8519
8520         Fixed bug #741761
8521
8522         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
8523         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
8524         if the left or right operand symbols have the accuse flag set.
8525
8526 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8527
8528         Changed the type of the result of the ! (NOT) operator to char;
8529         previously it returned the same type as the source. This allows
8530         us to eliminate all the genFloatNot functions (all of its target
8531         implementations were very buggy) since !float can use the same
8532         code as !long now.
8533
8534         * src/SDCCicode.c (ast2iCode): ! returns char
8535         * src/mcs51/gen.c (genNot, genNotFloat),
8536         * src/ds390/gen.c (genNot, genNotFloat),
8537         * src/z80/gen.c (genNot, genNotFloat),
8538         * src/pic/gen.c (genNot, genNotFloat),
8539         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
8540
8541 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
8542
8543         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8544         1. Interrupt would not compile properly. Ensure PCLATH register is saved
8545            during interrupts. Ensure WSAVE is located at a shared bank address.
8546         2. Fixed page selection in some places
8547         3. Fixed BTFSS/C to where necessary use registers directly and not simply
8548            the registers name strings.
8549         4. Fixed "signed / unsigned compare" compiler warnings.
8550         5. The PIC port manages its own allocation of the general purpose
8551            registers, but makes no attempt to reuse them. As a result when
8552            compiling it soon runs out of general purpose registers. Some
8553            additional code was added to the files pcode.c and device.c to walk
8554            through the function call tree and rename the registers so that they
8555            get reused.
8556
8557         * src/pic/device.c
8558         * src/pic/gen.c
8559         * src/pic/glue.c
8560         * src/pic/pcode.c
8561         * src/pic/pcode.h
8562         * src/pic/ralloc.c
8563         * src/pic/ralloc.h
8564         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
8565         genPlus() & genMinus() when the result is the same as left or right
8566
8567 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8568
8569         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
8570
8571 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8572
8573         Made bitfield a distinct type from bit so that bitfields
8574         convert as per ANSI C and bits retain their traditional
8575         boolean style behaviour. Implemented bitfield support in
8576         the z80 port.
8577
8578         * src/SDCCsymt.h,
8579         * src/SDCCsymt.c,
8580         * src/SDCCast.c,
8581         * src/cdbFile.c,
8582         * src/mcs51/gen.c,
8583         * src/ds390/gen.c: bit v bitfield split
8584         * src/z80/gen.c: New support for bitfields
8585         * support/regression/tests/bitfields.c: reenabled z80,
8586         added more tests
8587
8588 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8589
8590         Rules 246.x, 247.x relate to bitfields, the others speed up
8591         access to xdata mapped I/O devices.
8592
8593         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
8594
8595 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8596
8597         Cleaned up genPackBits and genUnpackBits and added two helper
8598         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
8599         for literal assignments in genPackBits (thanks to Frieder for
8600         reminding me).
8601
8602         * src/mcs51/gen.c
8603         * src/ds390/gen.c
8604
8605 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8606
8607         Fixed bug #748310 (pointer to function type mishandled when the
8608         function name is omitted). Also fixed a SIGSEGV when a function
8609         attribute (reentrant, etc) is used on a non-function or on a
8610         function but misplaced before the parameter list.
8611
8612         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
8613         bug #748310
8614         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
8615         * support/Util/SDCCerr.h,
8616         * support/Util/SDCCerr.c: Added func attr misuse error msg
8617
8618 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
8619
8620         Fixed bug #787649 by anonymous
8621         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
8622         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
8623
8624 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8625
8626         Fixed numerous bitfield problems.
8627
8628         * src/SDCC.y: More bitfield related error checking
8629         * src/SDCCsymt.h,
8630         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
8631         * support/Util/SDCCerr.h,
8632         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
8633         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
8634         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
8635         * support/regression/tests/bitfields.c: tests added
8636
8637 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8638
8639         Made the constant following the "interrupt" keyword optional. If
8640         omitted, the function will not automatically be given an entry
8641         in the interrupt vector table (similar to #pragma NOIV, but
8642         less syntacticly kludgy). The interrupt number is also now
8643         range checked. Also fixed a bug in the high order bit example
8644         in the manual.
8645
8646         * src/SDCC.y
8647         * src/SDCCmem.c
8648         * src/SDCCglue.c
8649         * src/SDCCsymt.h
8650         * support/Util/SDCCerr.c
8651         * support/Util/SDCCerr.h
8652         * doc/sdccman.lyx
8653
8654 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
8655
8656         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
8657         * src/SDCCicode.c (operandOperation): rewritten some ops
8658         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
8659         * src/SDCCsymt.c (computeType): literals are handled the same way as any
8660         other type
8661         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
8662         be re-activated by defining REDUCE_LITERALS)
8663         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
8664         unsigned, but are signed by default
8665         * src/SDCCval.c (constVal): rearranged
8666         * src/SDCCval.c (valMod): preliminary fix
8667         * src/SDCCval.c (valCastLiteral): use TYPE_* types
8668         * support/regression/literalop.c: added, work in progress
8669
8670 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8671
8672         Generate warnings for useless declarations like "char data;"
8673         that don't do what new users expect.
8674
8675         * src/SDCC.y
8676         * support/Util/SDCCerr.h
8677         * support/Util/SDCCerr.c
8678
8679 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
8680
8681         * src/SDCCval.c (valMult): fix overflow detection of negative int
8682
8683 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8684
8685         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
8686
8687         Changes to support big endian targets:
8688
8689         * src/ports.h
8690         * src/SDCCglue.c
8691         * src/avr/main.c
8692         * src/ds390/main.c
8693         * src/izt/i186.c
8694         * src/mcs51/main.c
8695         * src/pic/main.c
8696         * src/pic16/main.c
8697         * src/xa51/main.c
8698         * src/z80/main.c
8699
8700 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
8701
8702         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
8703         * device/lib/time.c: fixed warning "integer overflow in expression"
8704
8705 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
8706
8707         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
8708         * src/SDCCval.c (constVal): changed default to signed; hex and octal
8709         constants are unsigned; added recognition of "u" flag for unsigned
8710         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
8711         * src/SDCCval.c (valDiv, valMod): fixed signdness
8712         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
8713         signedness of modulo, left and right shift
8714         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
8715         * support/Util/SDCCerr.h: added warning W_INT_OVL
8716         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
8717         * src/SDCCast.c (ast_print): improved output of constants
8718
8719 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8720
8721         Fixed some warnings when building with MSVC:
8722
8723         * as\mcs51\asdata.c
8724         * as\z80\asdata.c
8725         * as\mcs51\asm.h
8726         * as\z80\asm.h
8727         * link\z80\aslink.h
8728         * link\z80\lkdata.c
8729         * link\z80\lkeval.c
8730         * link\z80\lkgb.c
8731         * link\z80\lkihx.c
8732         * link\z80\lks19.c
8733         * link\z80\lksym.c
8734         * support\cpp2\cpplib.c
8735         * src\ds390\gen.c
8736         * src\mcs51\gen.c
8737
8738 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
8739
8740         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
8741
8742 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8743
8744         * support\librarian\clean.mk: Do not remove Makefile.
8745         * support\librarian\Makefile: added.
8746
8747 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8748
8749         Added librarian to MSVC build:
8750         * all.dsp
8751         * sdcc.dsw
8752         * support\librarian\librarian.dsp
8753
8754         'configure' not needed for librarian, removed:
8755         * support\librarian\configure
8756         * support\librarian\configure.in
8757         * support\librarian\config_in.h
8758         * support\librarian\Makefile.in
8759
8760         Hopefully these ones built the librarian and the rest of sdcc properly:
8761         * Makefile
8762         * Makefile.common.in
8763
8764         Messed up 'configure', so revert to previous version:
8765         * configure
8766         * configure.in
8767
8768 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
8769
8770         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
8771         there, while the mantissa of a double is "only" 53 bits wide.
8772
8773 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8774
8775         Adding sdcclib to the build.  MSVC project coming soon.
8776         Files added/changed:
8777
8778         * support\librarian\clean.mk
8779         * support\librarian\configure
8780         * support\librarian\configure.in
8781         * support\librarian\config_in.h
8782         * support\librarian\Makefile.bcc
8783         * support\librarian\Makefile.in
8784         * support\librarian\sdcclib.c
8785         * Makefile.bcc
8786         * Makefile
8787         * Makefile.common.in
8788         * configure
8789         * configure.in
8790
8791 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8792
8793         Linker now complaints if linked modules have conflicting options, for
8794         example, one compiled using --model-large and another one compiled with
8795         --model-small.  The following files were modified:
8796
8797         * as\mcs51\asdata.c
8798         * as\mcs51\aslink.h
8799         * as\mcs51\asm.h
8800         * as\mcs51\asmain.c
8801         * as\mcs51\asout.c
8802         * as\mcs51\i51pst.c
8803         * as\mcs51\lkdata.c
8804         * as\mcs51\lklibr.c
8805         * as\mcs51\lkmain.c
8806         * as\z80\asdata.c
8807         * as\z80\asm.h
8808         * as\z80\asmain.c
8809         * as\z80\asout.c
8810         * as\z80\z80pst.c
8811         * link\z80\aslink.h
8812         * link\z80\lkdata.c
8813         * link\z80\lklibr.c
8814         * link\z80\lkmain.c
8815         * src\SDCCglue.c
8816
8817 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8818
8819         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
8820         as/mcs51/lklibr.c: Generate a warning when a library is not found.
8821
8822 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
8823
8824         * src/z80/mappings.i: fix _mul[us][int,long] entries
8825
8826 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8827
8828         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
8829
8830 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8831
8832         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
8833         * support/regression/tests/bitopcse.c: added
8834         fixed warning:
8835         * src/avr/gen.c:
8836         * src/pic/gen.c:
8837         * src/pic16/gen.c:
8838         * src/z80/gen.c:
8839         * src/xa51/gen.c:
8840
8841 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8842
8843         added support for new library format to z80, gbz80 linkers:
8844         *link/z80/aslink.h
8845         *link/z80/lklex.c
8846         *link/z80/lklib.c
8847         *link/z80/lklist.c
8848
8849 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8850
8851         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
8852         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
8853
8854 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
8855
8856         added DUMMY_READ_VOLATILE:
8857         * src/SDCC.y:
8858         * src/avr/gen.c:
8859         * src/xa51/gen.c:
8860         * src/z80/gen.c:
8861         * src/pic/gen.c:
8862         * src/pic16/gen.c:
8863         * src/mcs51/gen.c:
8864         * src/ds390/gen.c:
8865         * src/SDCCcse.c (algebraicOpts): many improvements
8866         * src/SDCCcse.h: removed algebraicOpts()
8867         * src/SDCCicode.c (picDummyRead): added
8868
8869 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8870
8871         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
8872         "Insufficient space in data memory".
8873
8874 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8875
8876         * src/mcs51/gen.c: fixed bug #771358
8877         * src/z80/gen.c: fixed bug #759087
8878
8879 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
8880
8881         * src/pic16/glue.c: minor cleanup by Vangelis
8882
8883 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8884
8885         * device/include/regc515c.h: fixed #758477
8886         * device/lib/_gptrget.c: saving some cycles in generic pointer get
8887         * device/lib/_gptrput.c: saved a few bytes
8888         * my tab spacing is 8, yours too?)
8889         * device/lib/_ser.c: process RX bytes earlier than TX bytes
8890         * device/lib/serial.c: process RX bytes earlier than TX bytes
8891         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
8892
8893 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8894
8895         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
8896
8897 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8898
8899     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
8900
8901 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
8902
8903         * device/lib/Makefile.in: bad fix, reverted to 1.43
8904
8905 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
8906
8907         * device/lib/Makefile.in: added missing z80 object files
8908
8909 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
8910
8911         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
8912         pic16 progress by Vangelis:
8913         * src/SDCCglobl.h:
8914         * src/SDCCmain.c:
8915         * src/pic/Makefile:
8916         * src/pic:
8917         * pic/Makefile:
8918         * pic16/device.c:
8919         * pic16/device.h:
8920         * pic16/gen.c:
8921         * pic16/gen.h:
8922         * pic16/genarith.c:
8923         * pic16/glue.c:
8924         * pic16/main.c:
8925         * pic16/pcode.c:
8926         * pic16/pcode.h:
8927         * pic16/pcodepeep.c:
8928         * pic16/peeph.def:
8929
8930 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8931
8932     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
8933
8934 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8935
8936     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
8937     added gbz80 build to MSVC project.
8938     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
8939     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
8940     from 8051 stuff and setup so it links using a .lnk file.
8941
8942 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8943
8944     * support/librarian/sdcclib.c: sdcc librarian.
8945     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
8946     with sdcclib.
8947
8948 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8949
8950     * as/mcs51/lkmain.c: properly handle extensions in function afile.
8951
8952 2003-07-02  Borut Razem <borut.razem AT siol.net>
8953
8954         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
8955         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
8956         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
8957         src/xa51/main.c, src/z80/main.c:
8958         virtualization of glue() function: each port has it's own glue function,
8959         which is accessed by do_glue function pointer in PORT.general structure
8960
8961 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
8962
8963         * DS800C400 fun, improved ROM interface and tinibios.
8964
8965 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
8966
8967         * More support for DS80C400. Now includes beginning of interface to ROM.
8968
8969 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
8970
8971         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
8972
8973 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8974
8975         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
8976
8977 2003-06-19  Borut Razem <borut.razem AT siol.net>
8978
8979         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
8980
8981 2003-06-19  Borut Razem <borut.razem AT siol.net>
8982
8983         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
8984         fixed Z80 port - crt0.o: cannot open.
8985
8986 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
8987
8988         * support/Util/MySystem.c (merge_command): revert bad fix
8989
8990 2003-06-18  Borut Razem <borut.razem AT siol.net>
8991
8992         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
8993
8994 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8995
8996         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8997         option --use-stdout sends errors to stdout instead of stderr.
8998
8999 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
9000
9001         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
9002
9003 2003-06-15  Borut Razem <borut.razem AT siol.net>
9004
9005         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
9006         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
9007         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
9008         fixed width array of pointers replaced with sets;
9009         multiple include and lib paths ared transferred to preprocessor and linker
9010         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
9011         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
9012         fixed width array of pointers
9013         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
9014         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
9015         fixupPath(), getPathDifference()
9016         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
9017         fixed width array of pointers
9018
9019 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
9020
9021         * src/pic16/ralloc.c: fix warnings
9022         * src/pic16/pcode.c: fix warning
9023
9024 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
9025
9026          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
9027         know all the details, but essentially this set of changes enable
9028         the pic16 port to generate movff instructions and generate assembler
9029         directives,
9030         * src/SDCCmain.c:
9031         * src/pic16/gen.c:
9032         * src/pic16/glue.c:
9033         * src/pic16/pcode.c:
9034         * src/pic16/device.c:
9035         * src/pic16/main.c:
9036         * src/pic16/pcode.h:
9037         * src/pic16/pcoderegs.c:
9038         * src/pic16/ralloc.c:
9039         * src/pic16/ralloc.h:
9040
9041 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9042
9043         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
9044         added option --vc, so sdcc errors and warnings are compatible with
9045         Microsoft Visual Studio.
9046
9047 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9048
9049         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
9050           device/lib/libfloat.lib: added atof function.
9051
9052 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
9053
9054         * doc/sdccman.lyx: updated to Lyx 1.3
9055         * doc/cdbfileformat.lyx: updated to Lyx 1.3
9056         * doc/test_suite_spec.lyx: updated to Lyx 1.3
9057         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
9058
9059 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
9060
9061         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
9062
9063 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9064
9065         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
9066           additions to the "related tools/documentation" section
9067
9068 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
9069
9070         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
9071
9072 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
9073
9074         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
9075         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
9076
9077 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
9078
9079         * doc/sdccman.lyx: fix double dash and other minor things
9080         * doc/Makefile: fix double dash
9081
9082 2003-05-28  Karl Bongers(patches from Martin Helmling)
9083         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
9084           condition and ignore commands.
9085
9086 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9087
9088         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
9089           is in parts still quite out of date, I did changes as far as I felt makes sense
9090           for a non-native english speaker.
9091           Please feel free to add to the manual or to correct my changes.
9092         * doc/Makefile: undid touching the date of intermediate tex files.
9093
9094 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9095
9096         * doc/sdccman.lyx: Manual has an index now
9097
9098 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
9099
9100         Finalize muluint/mulsint and mululong/mulslong merging:
9101         * device/lib/_mulint.c
9102         * device/lib/_mullong.c
9103         * device/lib/gbz80/mul.s
9104         * device/lib/gbz80/stubs.s
9105         * device/lib/z80/mul.s
9106         * device/lib/z80/stubs.s
9107         * src/SDCCsymt.c (initCSupport)
9108
9109 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9110
9111         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
9112         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
9113           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
9114           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
9115           instead of /Zm500.
9116
9117 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9118
9119         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
9120           the regression tests I'm not brave enough to enable 245.b, 245.c
9121         * doc/sdccman.lyx: added latex preamble for hyperref package.
9122           Using pdflatex this will give you a hyperlinked pdf file with
9123           bookmarks. (prepend '%' before /usepackage if this breaks something)
9124
9125 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9126
9127          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
9128
9129 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
9130
9131         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
9132
9133 2003-05-21    <johan AT balder>
9134
9135         * src/SDCCglue.c (printIval): fixed bug #739934
9136
9137 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
9138
9139         Applied patch from bug 737905 (renamed yylineo to mylineno):
9140         * src/altlex.c
9141         * src/SDCCast.c
9142         * src/SDCglobl.h
9143         * src/SDCC.lex
9144         * src/SDCCsymt.c
9145         * src/SDCCval.c
9146         * src/pic16/pcode.c: Cleaned warnings
9147         * src/pic16/pcodeflow.c: Cleaned warnings
9148         * src/pic16/pcoderegs.c: Cleaned warnings
9149
9150 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
9151
9152         * src/pic16/pcode.c: Cleaned warnings
9153         * src/pic16/pcodepeep.c: Cleaned warnings
9154         * src/pic16/ralloc.c: Cleaned warnings
9155
9156 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
9157
9158         * doc/sdccman.lyx: fixed bug 739745
9159         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
9160
9161 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
9162
9163         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
9164         it can be defined with CFLAGS when running configure
9165         * src/SDCCmain.c: fixed compiling + linking with object files
9166
9167 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
9168
9169         * configure.in: configure for pic16 port,
9170             added --disable-pic16-port
9171         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
9172         * src/SDCCmain.c: linkOptions is changed to set *,
9173             added if/endif conditional macros to remove options help
9174             messages from optionsTable when a port is not configured, added
9175             support for the PIc16 port in the ports table, when executing
9176             the compiler with no port specified on command line, a default
9177             port is selected with the new macro DEFAULT_PORT which is
9178             defined in port.h, in setDefaultOptions() linkOptions is removed
9179             from initialization assignment, since now it is a set,
9180             parseCmdLine uses setParseWithComma for linkOptions, in
9181             linkEdit() linkOptions are accessed with new function indexSet()
9182             which returns the i'th item of a set variable. See SDCCset.c, in
9183             linkEdit() when calling buildCmdLine(), added linkOptions as
9184             last argument. Now users can pass arguments to gplink via the
9185             -Wl option, main() uses pic16glue() to glue up pic16 programs
9186         * src/SDCCpeeph.c: various changes to support pic16
9187         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
9188             return the i'th item of the set
9189         * src/SDCCset.h: added function prototype for indexSet()
9190         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
9191         * src/clean.mk: added pic16 in CLEANALLPORTS variable
9192         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
9193             added macro DEFAULT_PORT
9194         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
9195         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
9196             generated
9197         * src/pic16/glue.c: commented out some error producing lines
9198         * src/pic16/main.c: __config directives are commented out to stop
9199             gpasm complaining and test the linkage with gplink, _linkCmd and
9200             _asmCmd changed to be more gplink and gpasm friendly
9201         * src/pic16/peeph.def: peep rule 3 is commented out, since it
9202             produced an error when parsed, peep rule 12 is added to utilize
9203             movff, but it is commented out since the pCode does not support
9204             yet a command with 2 address arguments
9205
9206 2003-05-18    <johan AT balder>
9207
9208         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
9209         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
9210 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
9211
9212         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
9213   Added feature to script commands from file.
9214
9215 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
9216
9217         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
9218         * src/SDCCutil.c: include ctype.h for win32
9219
9220 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
9221
9222         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
9223
9224 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
9225
9226         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
9227   Fixed so you can set breakpoints prior to run, run does not stop
9228   on entry now.  Add tbreak.  Other enhancements and fixes for use
9229   with ddd.
9230
9231 2003-05-12  Borut Razem <borut.razem AT siol.net>
9232
9233         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
9234
9235 2003-05-11  Borut Razem <borut.razem AT siol.net>
9236
9237         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
9238         the path of bin directory, so that PATH is the only env. variable, which has to be set
9239         in case of standard installation.
9240         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
9241         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
9242         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
9243
9244 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
9245
9246         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
9247         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
9248         temp files are in the port dir; clean the gen/test directory when
9249         generating new test.c
9250         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
9251         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
9252         * support/regression/tests/zeropad.c: added
9253
9254 2003-05-09    <johan AT balder>
9255
9256         * src/SDCCglue.c: fixed bug #597940
9257
9258 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
9259
9260         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
9261   cache sfr, optimize next,step, fix off by one sourceline,
9262   support ddd list function.
9263         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
9264
9265 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
9266
9267         * support/regression/HTMLgen.py: added compare_s2f()
9268         * support/regression/Makefile: redo 1.27
9269         * support/regression/generate-cases.py: redo 1.5
9270
9271 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
9272
9273         * support/regression/tests/float.c: workaround 33 bit hex constant
9274         * support/regression/tests/simplefloat.c: fix division for host
9275
9276 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
9277
9278         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
9279         that tame's the PIC's over-aggressive optimizer.
9280
9281 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9282
9283          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
9284          support for MSVC.
9285
9286 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
9287
9288         Initial support for DS80C400. "Hello world" runs on TINIm400
9289         (with polled I/O).
9290
9291 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
9292
9293          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
9294          * Some notes on ddd usage added in debugger/README
9295          Martin Helmling adding more features and fixes for ddd GUI debugger.
9296          Code added for nexti, stepi, up, down, and other adjustments.
9297
9298 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
9299
9300         * src/pic/pCodepeep.c non-wildcard asmops are now handled
9301         * src/pic/peeph.def Added two rules to optimize carry manipulation
9302         * src/pic/* removed debug printfs
9303
9304 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
9305
9306         * debugger/mcs51/cmd.c: added header newalloc.h
9307
9308 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
9309
9310         * as/Makefile: new EXEEXT
9311         * as/z80/Makefile: remove trailing slash of BUILDIR
9312         * as/z80/clean.mk: new EXEEXT
9313         * Makefile.common.in: add to CFLAGS (and others), don't replace it
9314         * support/cpp2/Makefile.in: new EXEEXT
9315         * src/pic/glue.c (pic14emitRegularMap): fixed warning
9316
9317 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
9318
9319         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
9320         EXEEXT was introduced to fix all related problems with targets
9321         "clean", "install" and "uninstall"; a couple of further flaws
9322         especially with "clean" have been fixed too
9323         * as/mcs51/Makefile.in
9324         * as/mcs51/clean.mk
9325         * as/z80/Makefile
9326         * Makefile
9327         * clean.mk
9328         * debugger/mcs51/Makefile.in
9329         * debugger/mcs51/clean.mk
9330         * link/z80/Makefile
9331         * link/z80/Makefile.in
9332         * link/z80/clean.mk
9333         * link/Makefile
9334         * packihx/Makefile.in
9335         * packihx/clean.mk
9336         * sim/ucsim/Makefile
9337         * sim/ucsim/clean.mk
9338         * sim/ucsim/avr.src/Makefile.in
9339         * sim/ucsim/avr.src/clean.mk
9340         * sim/ucsim/s51.src/Makefile.in
9341         * sim/ucsim/s51.src/clean.mk
9342         * sim/ucsim/xa.src/Makefile.in
9343         * sim/ucsim/xa.src/clean.mk
9344         * sim/ucsim/z80.src/Makefile.in
9345         * sim/ucsim/z80.src/clean.mk
9346         * sim/ucsim/main_in.mk
9347         * sim/ucsim/packages_in.mk
9348         * sim/ucsim/gui.src/Makefile.in
9349         * sim/ucsim/gui.src/serio.src/Makefile.in
9350         * sim/ucsim/gui.src/serio.src/clean.mk
9351         * src/Makefile.in
9352         * src/clean.mk
9353         * support/cpp2/Makefile.in
9354         * support/cpp2/clean.mk
9355         * support/makebin/Makefile
9356         * support/makebin/clean.mk
9357         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
9358         * doc/sdccman.lyx: --program-suffix no longer needed
9359
9360 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
9361
9362          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
9363          Martin Helmling added support for ddd GUI debugger.
9364          Code added to display assembly, set variables, and other commands
9365          to interface to ddd.
9366
9367 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
9368
9369         * as/Makefile: fix target clean
9370         * as/clean.mk: fix target clean
9371         * as/z80/clean.mk: fix target clean
9372
9373 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
9374
9375         * Makefile.common.in: added  AT EXEEXT AT
9376         * configure.in: removed all mingw32 stuff
9377         * configure: rebuilt from configure.in
9378         * doc/sdccman.lyx: updated section "installation"
9379         * support/scripts/sdcc_mingw32: adapted to configure
9380         * support/scripts/sdcc_cygwin_mingw32: added
9381
9382 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
9383
9384         * src/pic Added object file support for the PIC port
9385         * src/pic Applied patch from Craig Franklin (this started the object file support)
9386         * src/regression Updated the PIC regression tests for object files
9387
9388 2003-04-20  Borut Razem <borut.razem AT siol.net>
9389
9390         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
9391           lklex.c: In function `getfid':
9392           lklex.c:203: warning: array subscript has type `char'
9393         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
9394           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
9395         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
9396           stack handling macros
9397
9398 2003-04-19  Borut Razem <borut.razem AT siol.net>
9399
9400         * "handling space characters in file path" task:
9401         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
9402         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
9403         * support/Util/MySystem.h: make it self-sufficient
9404         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
9405           src/z80/main.c, sdcc/as/mcs51/lklex.c:
9406           handling space characters in file path
9407         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
9408           (it will be used by assemblers, which have their own includes, e.g. gpasm)
9409         * support/Util/MySystem.c: handling space characters in executable's path
9410
9411 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
9412
9413         * as/z80/Makefile: fix permanent rebuild of z80
9414         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
9415         * support/regression/tests/bitfields.c: added Johan's bitfields.c
9416
9417 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
9418
9419         * src/SDCCopt.c: add special case optimization to replace modulo by
9420           a power of two with a bitwise AND.
9421
9422 2003-04-18    <johan AT balder>
9423
9424         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
9425
9426 2003-04-17    <johan AT balder>
9427
9428         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
9429         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
9430
9431 2003-04-13  Borut Razem <borut.razem AT siol.net>
9432
9433         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
9434         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
9435           fixed mingw problem in adl_NORMALIZE_PATH
9436
9437 2003-04-12  Borut Razem <borut.razem AT siol.net>
9438
9439         * fixed "#pragma SAVE/RESTORE can not be nested":
9440         * src/SDCC.lex: reworked pragma handling functions
9441         * sdcc/src/SDCCglobl.h: reworked stack handling macros
9442         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
9443
9444 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9445
9446         * src/SDCCutil.c (pathEquivalent): defined but not used
9447         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
9448         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
9449         * configure: rebuilt from configure.in
9450         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9451         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9452         * device/include/Makefile.in: replace sdcc_datadir
9453         * device/lib/Makefile.in: replace sdcc_datadir
9454         * Makefile.common.in: add LDFLAGS from configure
9455         * packihx/Makefile.in: use LDFLAGS
9456         * src/Makefile.in: use LDFLAGS
9457         * support/cpp2/Makefile.in: add LDFLAGS from configure
9458         * support/makebin/Makefile: use LDFLAGS
9459         * .version: bumped version number to 2.3.5
9460
9461 2003-04-12  Borut Razem <borut.razem AT siol.net>
9462
9463         * completed "different paths" task:
9464         * src/SDCCmacro.c: fixed bug in handling quotes
9465         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
9466         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
9467
9468 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9469
9470         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
9471
9472 2003-04-11 kevin Vigor <kevin AT vigor.nu>
9473
9474         * ds390/gen.c ds390/peeph.def: fix bug 706781
9475
9476 2003-04-11  Borut Razem <borut.razem AT siol.net>
9477
9478         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
9479
9480 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
9481
9482         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
9483         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
9484          set - this bit used to not be set...).
9485         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
9486           bad code in PIC Port
9487         * src/regression/and2.c added to test bug 609268
9488         * src/regression/Makefile added and2.c to regression test
9489
9490
9491 2003-04-08    <johan AT CP255758-A>
9492
9493         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
9494         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
9495         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
9496
9497 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
9498
9499         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
9500         fix bug #487815
9501         * support/cpp2/Makefile.in: fix bug #487815
9502         * configure: rebuilt from configure.in
9503         * Makefile.common.in: docdir changed, new path suffixes
9504         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9505         * sdcc_vc_in.h: reflect changes from sdccconf.h
9506         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
9507         * src/SDCCutil.h: remove BINDIR hack
9508         * doc/sdccman.lyx: update new path hierarchy
9509
9510 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9511
9512         * src/SDCCpeeph.c: added okToRemoveSLOC test
9513
9514 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9515
9516         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
9517
9518 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9519
9520         * src/SDCCpeeph.c: added labelIsReturnOnly test
9521         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
9522
9523 2003-04-05    <johan AT balder>
9524
9525         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
9526         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
9527         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
9528         * src/SDCCast.c: fixed a warning
9529         * src/SDCCast.h: fixed a warning
9530         * src/SDCCicode.c (operandFromAst): fixed a warning
9531
9532 2003-04-04    <johan AT balder>
9533
9534         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
9535         * src/SDCCast.c (decorateType): fixed bug #715076
9536         * src/SDCC.y: fixed bug #702907
9537
9538 2003-04-03    <johan AT balder>
9539
9540         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
9541         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
9542         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
9543         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
9544         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
9545
9546 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
9547
9548         * _decdptr.c: fix return values
9549         * _gptrget.c: fix return values
9550         * _gptrgetc.c: fix return values
9551         * _gptrput.c: fix return values
9552         * _mulint.c: fix return values
9553         * as/z80/Makefile: fix 'make -j' problem
9554
9555 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
9556
9557         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
9558         * configure.in: big cleanup, updated to autoconf 2.5x
9559         * configure: rebuilt from configure.in
9560         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9561         * sdcc_vc_in.h: reflect changes from sdccconf.h
9562         * doc/Makefile: fixed a flaw in "make install"
9563
9564 2003-04-02    <johan AT balder>
9565
9566         * src/ds390/gen.c (genCmp): no comments
9567         * src/mcs51/gen.c (genCmp): no comments
9568         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
9569         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
9570
9571 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
9572
9573         * support/regression/generate-cases.py: place generated file in given sub directory
9574         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
9575         * support/regression/Makefile: improvements for 'make -j';
9576         side effect: it's simpler and faster now
9577
9578 2003-03-31  Borut Razem <borut.razem AT siol.net>
9579
9580         * src/z80/main.c: link-{port} and as-{port} defined without path
9581         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
9582
9583 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
9584
9585         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
9586
9587 2003-03-30  Borut Razem <borut.razem AT siol.net>
9588
9589         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
9590           changed type of list parameter to set
9591         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
9592         * src/port.h: changed type of do_assemble() parameter to set
9593         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
9594           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
9595           definition of "cppoutfilename" macro with NULL value in preProcess()
9596         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
9597         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
9598         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
9599           replaced with set *binPathSet
9600         * shash_add() deallocates the item, if allready exsists, before adding the new one
9601         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
9602
9603 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
9604
9605         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
9606           a nested for loop bug in the PIC port
9607         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
9608           for loops
9609
9610 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
9611
9612         * support/Util/dbuf.h: remove C++ stuff to make it portable
9613
9614 2003-03-28  Borut Razem <borut.razem AT siol.net>
9615
9616         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
9617           literal strings in stringLiteral()
9618         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
9619         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
9620           to the project
9621
9622 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
9623
9624         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
9625
9626 2003-03-26    <johan AT balder>
9627
9628         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
9629         * src/ds390/gen.c (saveRegisters): catched symbol abuse
9630         * src/SDCCast.c (decorateType): fixed " -v < 3"
9631
9632 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
9633
9634         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
9635         Added Lenny Story's debug infrastructure changes:
9636         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
9637         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
9638         * src/cdbFile.c: added
9639         * src/SDCCdebug.c: added
9640         * src/SDCCdebug.h: added
9641         * src/SDCCast.c (createFunction)
9642         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
9643         * src/SDCCmain.c (parseCmdLine, main)
9644         * src/SDCCmem.c (redoStackOffsets)
9645         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
9646         * src/SDCCsymt.h
9647         * src/common.h
9648         * src/avr/gen.c (genAVRCode)
9649         * src/ds390/gen.c (gen390Code)
9650         * src/mcs51/gen.c (gen51Code)
9651         * src/pic/gen.c (genpic14Code)
9652         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
9653         * src/xa51/gen.c (genXA51Code)
9654         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
9655
9656 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9657
9658         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
9659         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
9660
9661 2003-03-22    <johan AT balder>
9662
9663         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
9664
9665 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
9666
9667         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
9668         * doc/cdbfileformat.lyx: added, written by Lenny Story
9669         * doc/Makefile: added cdbfileformat.lyx
9670         * doc/clean.mk: added cdbfileformat.lyx
9671
9672 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
9673
9674         * src/mcs51/peeph.def: fix bug #705773
9675
9676 2003-03-20    <johan AT balder>
9677
9678         An sfr/sbit can have an "at #" AND an initializer
9679         * src/SDCCsymt.c (checkSClass):
9680         * src/SDCCmem.c (allocGlobal):
9681         * src/SDCCmem.c (allocLocal):
9682         * src/SDCCast.c (createBlock):
9683
9684 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
9685
9686         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
9687
9688 2003-03-16    <johan AT balder>
9689
9690         Undid the hackup of const and volatile, the problem is much bigger
9691         * src/SDCC.y:1.65
9692         * src/SDCCast.c:1.171
9693         * src/SDCCglue.c:1.138
9694         * src/SDCCicode.c:1.146
9695         * src/SDCCsymt.c:1.150
9696         * src/SDCCval.c:1.65
9697
9698 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
9699
9700         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
9701         * src/ds390/gen.c (genAddrOf): fixed bug #704087
9702
9703 2003-03-13    <johan AT balder>
9704
9705         Hackup const and volatile modifiers in type chains a bit:
9706         * src/SDCC.y:1.63
9707         * src/SDCCast.c:1.169
9708         * src/SDCCglue.c:1.136
9709         * src/SDCCicode.c:1.143
9710         * src/SDCCsymt.c1.146
9711         * src/SDCCsymt.h1.59
9712         * src/SDCCval.c:1.63
9713
9714 2003-03-12    <johan AT balder>
9715
9716         * src/SDCCBBlock.h: more LRH debugging junk
9717         * src/SDCCcflow.h: more LRH debugging junk
9718         * src/SDCCloop.c: more LRH debugging junk
9719         * src/SDCC.y (struct_declaration): fixed bug #697590
9720         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
9721         * src/ds390/gen.c (aopForRemat): fixed bug #700031
9722         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
9723
9724 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9725         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
9726         test function names must now match exactly).
9727         * src/SDCCcse.c: added special case in findCheaperOp to allow
9728         extending a short integer. Makes less awful code for bug 700121 test case.
9729
9730 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9731
9732         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
9733         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
9734
9735 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9736
9737         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
9738         actually called (operandsNotEqual() was called for all
9739         operandsNotEqualX tests).
9740
9741 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9742
9743         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
9744         with shorter literals. Fixes bug 700121.
9745
9746 2003-03-11    <johan AT balder>
9747
9748         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
9749
9750 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
9751
9752         * src/SDCCloop.c (mergeRegions): an evil beast is dead
9753         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
9754
9755 2003-03-10  Borut Razem <borut.razem AT siol.net>
9756
9757         * src/SDCCmain.c: pipe preprocessor's output
9758         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9759         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9760         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9761         which closes all pipes in pipeSet set
9762         * src/SDCCset.c: free deleted item in function deleteSetItem()
9763         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9764         moved from z80 to src subproject
9765         * .version: increased version number to 2.3.4
9766
9767 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
9768
9769         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
9770         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
9771         * support/regression/ports/xa51/spec.mk: fix typo
9772
9773 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
9774
9775         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
9776
9777 2003-03-09  Borut Razem <borut.razem AT siol.net>
9778
9779         * src/SDCCmain.c: pipe preprocessor's output
9780         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9781         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9782         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9783         which closes all pipes in pipeSet set
9784         * src/SDCCset.c: free deleted item in function deleteSetItem()
9785         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9786         moved from z80 to src subproject
9787
9788 2003-03-09  Borut Razem <borut.razem AT siol.net>
9789
9790         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
9791         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
9792         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
9793         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
9794         * src/SDCCglobl.h: unification of WIN32 native definitions
9795
9796 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9797
9798         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
9799
9800 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9801
9802         * src/configure.in:   check for endianess (even while cross-compiling)
9803         * src/configure:      check for endianess (even while cross-compiling)
9804         * src/configure_in.h: check for endianess (even while cross-compiling)
9805         * src/avr/gen.c:        remove old endianess stuff
9806         * src/mcs51/gen.c:      remove old endianess stuff
9807         * src/ds390/gen.c:      remove old endianess stuff
9808         * src/pic/gen.c:        remove old endianess stuff
9809         * src/pic/genarith.c:   remove old endianess stuff
9810         * src/pic/glue.c:       fix endianess check
9811         * src/pic16/gen.c:      remove old endianess stuff
9812         * src/pic16/genarith.c: remove old endianess stuff
9813         * src/pic16/glue.c:     fix endianess check
9814         * src/xa51/gen.c:       remove old endianess stuff
9815         * src/z80/gen.c:        fix endianess check
9816         * src/SDCCglue.c:       fix endianess check
9817         * src/ds390/peeph.def: fix bug 700036
9818
9819 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9820
9821         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
9822         * src/configure: find appropriate data-types on host for SDCC's int and long
9823         * src/configure.in: find appropriate data-types on host for SDCC's int and long
9824         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
9825         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
9826
9827 2003-03-07    <johan AT balder>
9828
9829         Just a big NOOP:
9830                 some minor cleanups before the big shot
9831                 OP_DEFS and OP_USES now use Kevin's protection
9832                 new option --nolabelopt
9833
9834         * src/SDCCBBlock.c:
9835         * src/SDCCast.c,:
9836         * src/SDCCcflow.c:
9837         * src/SDCCcse.c:
9838         * src/SDCCicode.c:
9839         * src/SDCCicode.h:
9840         * src/SDCClabel.c:
9841         * src/SDCCloop.c:
9842         * src/SDCCmain.c:
9843         * src/ds390/ralloc.c:
9844         * src/mcs51/ralloc.c:
9845         * src/pic/ralloc.c:
9846         * src/xa51/ralloc.c:
9847         * src/z80/ralloc.c:
9848
9849 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
9850
9851         * src/pic/pcode.c (get_op): fix 64 bit warnings
9852         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
9853         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
9854         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
9855         * support/regression/tests/malloc.c: fix 64 bit warnings
9856
9857 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
9858
9859         * src/mcs51/gen.c (genMinus): fixed bug 696436
9860
9861 2003-03-02  Borut Razem <borut.razem AT siol.net>
9862
9863         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
9864
9865 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
9866
9867         * configure.in: test for mkstemp
9868         * sdccconf_in.h: add HAVE_MKSTEMP
9869
9870 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
9871
9872         * device/include/ctype.h: removed warning while using --stack-auto
9873         * device/include/malloc.h: removed warning while using --stack-auto
9874         * device/include/string.h: removed warning while using --stack-auto
9875
9876 2003-02-23  Borut Razem <borut.razem AT siol.net>
9877
9878         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
9879         because NDEBUG is defined (see man assert)
9880         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
9881
9882 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9883
9884         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
9885         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
9886
9887 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9888
9889         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
9890         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
9891
9892 2003-02-18    <johan AT balder>
9893
9894         * as/mcs51/asmain.c (asmbl): module can start with a digit
9895         * as/z80/asmain.c (asmbl): module can start with a digit
9896
9897 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
9898
9899         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
9900         * src/asm.c: fix pipe() for Mingw32
9901
9902 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
9903
9904         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
9905         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
9906         make -V work again; --c1mode reads now from stdin
9907         * doc/sdccman.lyx: added --c1mode
9908         * support/Util/SDCCerr.c: new messages for c1 mode
9909         * support/Util/SDCCerr.h: new messages for c1 mode
9910         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
9911
9912 2003-02-15    <johan AT balder>
9913
9914         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
9915
9916 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
9917
9918         * doc/sdccman.lyx: Environment variables, -o and other minor things
9919
9920 2003-02-14    <johan AT balder>
9921
9922         * src/xa51/main.c: before anyone really tries to use it :)
9923
9924         * Install doc's in share/sdcc/doc
9925         * removed some obsolete files
9926         * Do a proper make distclean and uninstall
9927         M Makefile.common.in
9928         R sdccbuild.sh
9929         M as/Makefile
9930         M device/include/Makefile.in
9931         M device/lib/Makefile.in
9932         M doc/sdccman.lyx
9933         M link/Makefile
9934         M sim/ucsim/doc/Makefile.in
9935         M src/clean.mk
9936         R src/avr/peeph.rul
9937         R src/xa51/peeph.rul
9938         M support/cpp2/Makefile.in
9939         M support/makebin/Makefile
9940
9941
9942 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
9943
9944         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
9945
9946 2003-02-10  Borut Razem <borut.razem AT siol.net>
9947
9948         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
9949         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
9950         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
9951         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
9952         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
9953         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
9954         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
9955         src/z80/Makefile.bcc: Borland Makefile cleanup
9956         * as/z80/Makefile.bcc: Added Borland Makefile
9957         * support/cpp2/borland.h: Removed
9958
9959 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
9960
9961         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
9962         * src/SDCC.lex: new pragma NOIV
9963         * src/SDCCglobl.h: new pragma NOIV
9964         * src/SDCCmem.c: new pragma NOIV
9965
9966 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9967
9968         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
9969
9970 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9971
9972         * src/SDCCmain.c: signal handling is switched off by --debug
9973         * doc/Makefile: small fix for install; use clean.mk again
9974         * doc/clean.mk: clean *.pdf and *.html too
9975
9976 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
9977
9978         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
9979         * device/lib/printfl.c: fix a ds390 bug by making it portable
9980         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
9981         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
9982         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
9983         * debugger/mcs51/cmd.c: converted multi-line string literals
9984         * sim/ucsim/globals.cc: converted multi-line string literals
9985         * src/SDCCmain.c: introduced signal handler to remove temp files
9986         * doc/Makefile: small tweaks, implement clean
9987         * doc: removed generated files
9988
9989 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9990
9991         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
9992         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
9993         Address Record is not correctly generated for DS390."
9994
9995 2003-02-02  Borut Razem <borut.razem AT siol.net>
9996
9997         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
9998         * as/mcs51/asm.h: fixed compilation with Borland C
9999         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
10000         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
10001         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
10002         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
10003         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
10004         src/z80/Makefile.bcc: delete $(LIB) only if exist
10005         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
10006
10007 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
10008
10009         * device/include/malloc.h: introduced NULL
10010         * device/include/string.h: introduced NULL
10011         * device/include/stdlib.h: introduced NULL
10012         * device/lib/_memcpy.c: removed NULL
10013         * device/lib/_strcat.c: removed NULL
10014         * device/lib/_strchr.c: removed NULL
10015         * device/lib/_strcmp.c: removed NULL
10016         * device/lib/_strcpy.c: removed NULL
10017         * device/lib/_strcspn.c: removed NULL
10018         * device/lib/_strlen.c: removed NULL
10019         * device/lib/_strncat.c: removed NULL
10020         * device/lib/_strncmp.c: removed NULL
10021         * device/lib/_strncpy.c: removed NULL
10022         * device/lib/_strpbrk.c: removed NULL
10023         * device/lib/_strrchr.c: removed NULL
10024         * device/lib/_strspn.c: removed NULL
10025         * device/lib/_strstr.c: removed NULL
10026         * device/lib/_strtok.c: removed NULL
10027         * device/lib/malloc.c: removed NULL, include own header
10028
10029 2003-02-02    <johan AT balder>
10030
10031         * 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
10032         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
10033         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
10034         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
10035         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
10036         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
10037
10038 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10039
10040         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
10041         area 'DATA'"
10042
10043 2003-02-01    <johan AT balder>
10044
10045         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
10046
10047 2003-01-31    <johan AT CP255758-A>
10048
10049         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
10050
10051 2003-01-30    <johan AT balder>
10052
10053         * src/SDCCBBlock.c: automatic bug detection
10054         * src/SDCCicode.c: automatic bug detection
10055
10056 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10057
10058         * src/SDCCglobl.h:   now --xram-size 0 works
10059         * src/SDCCmain.c:    now --xram-size 0 works
10060
10061 2003-01-29    <johan AT balder>
10062
10063         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
10064
10065 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10066
10067         * as/mcs51/aslink.h: Added options --xram-size and --code-size
10068         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
10069         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
10070         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
10071         * src/SDCCglobl.h:   Added options --xram-size and --code-size
10072         * src/SDCCmain.c:    Added options --xram-size and --code-size
10073
10074 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
10075
10076         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
10077         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
10078
10079 2003-01-27    <johan AT balder>
10080
10081         * src/SDCC.y: fixed bug #613764
10082
10083 2003-01-26    <johan AT balder>
10084
10085         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
10086         * src/SDCCsymt.h: fixed bug #673374
10087         * src/SDCCglue.c: fixed bug #661910
10088         * src/SDCCast.c: fixed bug #458099 and 673374
10089
10090 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
10091
10092         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
10093         * as/mcs51/strcmpi.h: added
10094         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
10095         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
10096         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
10097         * as/mcs51/assym.c: strcmpi -> as_strcmpi
10098         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
10099         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
10100         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
10101         * as/mcs51/Makefile.aslink: new module strcmpi
10102         * as/mcs51/Makefile.asx8051: new module strcmpi
10103         * as/mcs51/Makefil.bcc: new module strcmpi
10104         * as/mcs51/Makefile.in: new module strcmpi
10105         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
10106
10107 2003-01-26    <johan AT balder>
10108
10109         * src/SDCCglue.c: reverted back to 1.124
10110         * src/SDCCast.c: reverted back to 1.156
10111         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
10112
10113 2003-01-25    <johan AT balder>
10114
10115         * src/SDCCglue.c: A better fix for bug #661910
10116         * src/SDCCast.c: A better fix for bug #661910
10117         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
10118
10119 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
10120
10121         * src/Makefile.in: remove spawn.o
10122         * src/SDCCmain.c: remove spawn.h
10123         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
10124         * src/spawn.c: removed
10125         * src/spawn.h: removed
10126         * support/regression/ports/ds390/spec.mk: link with -r
10127
10128 2003-01-24    <johan AT CP255758-A>
10129
10130         * src/ds390/gen.c (aopOp): fixed bug #667458
10131         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
10132         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
10133         (createIvalCharPtr): an ival doesn't always have a storage class anymore
10134
10135 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
10136
10137         * src/mcs51/peeph.def: better assembler identation by Frieder
10138         * src/mcs51/gen.c: better assembler identation by Frieder
10139
10140 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
10141
10142         * as/z80/string.h: removed for gcc 3.2
10143         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
10144         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
10145
10146 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
10147
10148         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
10149         * src/SDCCpeeph.c (replaceRule): fix bug #663503
10150         * support/regression/Makefile: separate temp files for ports
10151         * support/regression/generate-cases.py: separate temp files for ports
10152         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
10153         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
10154
10155 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
10156
10157         * moved tinitalk to device/examples/ds390
10158
10159 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
10160
10161         * as/mcs51/lkmem.c: rflag is for DS390
10162         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
10163         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
10164                          (linkEdit): move mem- and map-files the same way as ihx-files
10165         * src/z80/main.c (_setDefaultOptions): removed --generic
10166         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
10167         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
10168         * src/pic/glue.c (picglue): --c1mode works again
10169         * src/pic16/glue.c (pic16glue): --c1mode works again
10170         * src/asm.c (printCLine): fix #660034
10171
10172 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
10173
10174         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
10175         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
10176         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
10177         * as/mcs51/lkmem (summary): better fix for sp problem
10178         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
10179         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
10180         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
10181                                               remove --stack-after-data
10182
10183 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
10184
10185         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
10186         * src/SDCCutil.c (join): ugly bug: missing '\0'
10187         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
10188
10189 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
10190
10191         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
10192         * src/port.h: typo
10193         * src/pic/main.c (_asmCmd): gpasm supports -o
10194         * src/z80/main.c: more general macros
10195         * device/lib/Makefile.in: remove intermediate files
10196
10197 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
10198
10199         * .version: Bumped version number to 2.3.3
10200         * src/SDCCBBlock.c: new option -o
10201         * src/SDCCglobl.h: new option -o
10202         * src/SDCCglue.c: new option -o
10203         * src/SDCCmain.c: new option -o
10204         * src/asm.c: new option -o
10205         * src/ds390/main.c: new option -o
10206         * src/pic/glue.c: new option -o
10207         * src/pic/pcode.c: new option -o
10208         * src/pic/ralloc.c: new option -o
10209         * src/pic16/glue.c: new option -o
10210         * src/pic16/pcode.c: new option -o
10211         * src/pic16/ralloc.c: new option -o
10212         * src/z80/main.c: new option -o
10213         * device/lib/Makefile.in: use -o
10214         * support/regression/ports/ds390/spec.mk: use -o
10215         * support/regression/ports/gbz80/spec.mk: use -o
10216         * support/regression/ports/mcs51/spec.mk: use -o
10217         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
10218         * support/regression/ports/z80/spec.mk: use -o
10219         * support/regression/ports/ucz80/spec.mk: use -o
10220         * support/regression/ports/xa51/spec.mk: use -o
10221         * support/regression/fwk/lib/timeout.c: fix usage string
10222
10223 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
10224         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
10225
10226 2003-01-07    <johan AT balder>
10227
10228         * src/SDCCast.c (decorateType): fixed bug #600035
10229
10230 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
10231         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
10232         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
10233         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
10234         * src/pic/pcode.c: outcommented unused variable to remove warnings
10235         * src/pic/ralloc.c: outcommented unused variable to remove warnings
10236
10237 2003-01-06    <karl AT turbobit.com>
10238         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
10239    regression tests.
10240
10241 2003-01-06    <johan AT balder>
10242
10243         * src/SDCCicode.c: fixed array add
10244
10245 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
10246         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
10247         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
10248
10249 2003-01-04    <johan AT balder>
10250
10251         * src/SDCCval.c (getNelements): fixed the initialized array of structures
10252
10253 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10254         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
10255
10256 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
10257         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
10258         * support/regression/tests/bug-524697.c: fit mem usage into 8032
10259
10260 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
10261         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
10262
10263 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
10264         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
10265
10266 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
10267         * src/mcs51/main.c: removed {bindir}{sep} from aslink
10268
10269 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10270
10271     * in \sdcc\as\mcs51\ changed these files in order to create an
10272     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
10273     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
10274     following files to include the previous two files: aslink.dsp,
10275     Makefile.aslink, Makefile.bcc, and Makefile.in.
10276
10277     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
10278     .adb instead of .cdb
10279
10280 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10281
10282         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
10283         value from option --iram-size.
10284
10285 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10286
10287         * \sdcc\as\mcs51\lklist.c: added boundary check before using
10288         dram[] array.
10289
10290 2002-09-18    <wiml AT hhhh.org>
10291
10292         * SDCClrange.h: exposed setFromRange() and setToRange()
10293         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
10294           packRegsForAccUse() (bug 542397)
10295         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
10296           multiple times and emitting the fetch operations more than once
10297           added aopGetUsesAcc() function to allow binary operators to
10298           fetch their operands in the correct order; made genMinus() emit
10299           compact code for X = LITERAL - Y
10300
10301 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10302         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
10303         sprintf() in line 1267.
10304
10305 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10306         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
10307         like ports.
10308
10309 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10310         Changes to aslink (All the changes are marked with 'JCF'):
10311
10312         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
10313         summary().
10314
10315         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
10316         area BSEG.  Also moves, if possible, the DATA area down into the internal
10317         ram so more space is available.
10318
10319         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
10320         sflag.
10321
10322         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
10323         not bytes.  Function summary() which creates a memory usage summary
10324         file with extension .mem.  Reports of overlaping stack and small stack
10325         size.  If the space for the stack is less than 16 bytes aslink trows a
10326         warning.
10327
10328         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
10329         the 8051.  Option 'y' for memory summary output file.
10330
10331         Changes to sdcc (All the changes are marked with 'JCF'):
10332
10333         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
10334
10335         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
10336         overlaying area for it (uses RegBankUsed[4]).
10337
10338         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
10339         bank zero as used by default.  By default aslink locates the stack
10340         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
10341         the creation of the .mem file.  Delegates the allocation of data area
10342         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
10343         the begining of the stack area to aslink.
10344
10345         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
10346         glue() in SDCCglue.c creates an area for it.
10347
10348 2002-09-03  Borut Razem <borut.razem AT siol.net>
10349         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
10350         sdcc/src/pic/glue.c:
10351         introduced atexit() handler for teporay files removal in case of
10352         errors, assertions, ...
10353
10354 2002-08-29  Borut Razem <borut.razem AT siol.net>
10355         * sdcc/support/cpp2/auto-host_vc_in.h:
10356         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
10357         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
10358         Maybe there is a similar problem with BORLANDC? It should be checked!
10359
10360         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
10361         corrected improper use of assert: the assignment to clr variable was done inside the assert.
10362         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
10363         was not executed, and the compiler (cl) launched a warning:
10364         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
10365
10366 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
10367         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
10368
10369 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
10370         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
10371
10372         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10373           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
10374           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
10375           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10376           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
10377           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
10378           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
10379         - added Release configuration in VS projects
10380         - review of compiler an linker options
10381         - VC .exe files are generated in bin_vc directory, not to interfere
10382           with binaries generated from other projects (cygwin, mingw, bcc ...)
10383
10384         * sdcc/src/yacc.dsp: added
10385
10386         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
10387         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
10388         and insert the version number definitions from .version
10389
10390         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
10391
10392         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
10393         added - genarate auto-host.h using auto-host_vc_in.h as template
10394
10395         * sdcc/sdcc_vc.h,
10396         removed from CVS, generated automatically
10397
10398 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
10399         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
10400
10401 2002-08-11  Borut Razem <borut.razem AT siol.net>
10402         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
10403
10404 2002-08-10  Borut Razem <borut.razem AT siol.net>
10405         * src/SDCCmain.c (main):
10406         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
10407         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
10408         The consequence was that some temporary files were not removed.
10409
10410         * src/SDCCglue.c:
10411         unification of code in functions tempfilename() and tempfile():
10412         function tempnam() is defined in Visual Studio 6.0 and .NET
10413
10414         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
10415
10416         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10417           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
10418         - removed compiler command line option /WX: Treats all warnings as errors
10419         - update a list of source files, included into the project
10420
10421         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10422           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
10423         changed project type to Generic Project so that can be correcly converted to VS.NET project
10424
10425         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
10426
10427         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
10428
10429         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
10430
10431         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
10432         added return 0 statements after assert() to make compiler happy
10433
10434         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
10435         added newline in the def file to keep MSC compiler satisfied
10436
10437         * sdcc/src/z80/gen.c:
10438         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
10439           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
10440         - solved MSC error in function aopDump()
10441
10442         * sdcc_vc.h: define PREFIX as "\\sdcc"
10443
10444 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
10445         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
10446
10447 2002-06-22  Scott Dattalo <scott AT dattalo.com>
10448         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
10449         - Rewrote the register banking algorithm.
10450         - Added pCode live-range analysis to registers (for now, only non-used and
10451         singly-used registers optimized away)
10452
10453         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
10454
10455         * 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.
10456
10457 2002-05-10  Scott Dattalo <scott AT dattalo.com>
10458         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
10459
10460 2002-04-22  Michael Hope  <michaelh AT vroom>
10461
10462         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
10463
10464         * configure.in (DD_COPT): Added include support required for gbdk.
10465
10466         * .version: Bumped version number just to increase it.
10467
10468         * src/SDCCmain.c: Added -nostdinc to the default options.
10469
10470 2002-04-15  Michael Hope  <michaelh AT vroom>
10471
10472         * device/lib/z80/printf.c (sprintf): Added.
10473
10474         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
10475
10476         * src/z80/peeph.def: Added transpose redundent load rule.
10477
10478         * src/z80/main.c: Added force callee saves for jaune.
10479
10480         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
10481
10482         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
10483
10484 2002-03-28  Johan Knol  <johan AT balder>
10485
10486         * src/SDCCval.c: fixed bug #532436
10487
10488 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10489         * /src/port.h:
10490         Added "char *Processor" field to the port structure.
10491
10492         * /src/SDCCmain.c:
10493         Added -p option. Allows port dependent processor to be specified.
10494
10495         * all ports:
10496         Initialized the new field char *Processor field to NULL in all ports
10497
10498         * /src/pic/*:
10499         Compiler generated registers for interrupt context saving
10500         were not getting allocated.
10501
10502 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
10503
10504         * /src/SDCCast.c:
10505         Fixed left shift. Will promote the left side of a left shift
10506         if a) left shifting more than size of operand or b) when assigned
10507         to something size > size of left side
10508
10509 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10510         * src/pic/*
10511         tons of changes. Register allocation has been
10512         rewritten. Added customization for the various PICs. Flow
10513         analysis is restructured. ...
10514
10515         * src/pic/device.h:
10516         Added
10517
10518         * src/pic/device.c:
10519         Added. device.c is a PIC port hack to accomodate variations
10520         in PIC devices.
10521
10522 2002-03-13  Michael Hope  <michaelh AT vroom>
10523
10524         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
10525
10526 2002-03-04  johanknol  <johanknol AT manik>
10527
10528         * /src/SDCCval.c: fixed
10529
10530         const unsigned char arr[][2] = { { 0, 1 } };
10531         t18.c:1: error: Initializer element is not constant
10532
10533 2002-03-04  bela  <bela AT manik>
10534
10535         * /device/include/mcs51reg.h:
10536         ds89c420 register definition update
10537
10538 2002-03-03    <johan AT FRIJA>
10539
10540         * support/Util/SDCCerr.c: did something, but don't no why anymore
10541
10542         * support/regression/tests/bug-524691.c: made it a little less shy
10543
10544         * src/SDCCast.c (decorateType): fixed bug #524697
10545
10546         * src/SDCCast.c: made some lineno improvements
10547
10548         * src/SDCCval.c (getNelements): changed warning to error
10549
10550         * src/SDCCglue.c (printIvalArray): changed warning to error
10551
10552         * src/SDCCicode.c: fixed a warning for mingw
10553
10554         * src/SDCCast.c (decorateType): fixed the << promotion for ops
10555
10556         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
10557
10558 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
10559
10560         * src/ds390/peeph.def:
10561         Added some more peephole rules
10562
10563         * src/ds390/gen.c: Various fixes & enhancements
10564
10565         * src/SDCClrange.c, src/SDCClrange.h:
10566         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
10567
10568         * src/ds390/ralloc.c:
10569         various fixes & enhancements (ds390) specific
10570
10571         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
10572         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
10573         from rallocs.
10574
10575         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
10576
10577 2002-03-02    <johan AT FRIJA>
10578
10579         * src/SDCCast.c (decorateType): fixed bug #524708
10580
10581         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
10582
10583         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
10584
10585 2002-03-01  Michael Hope  <michaelh AT vroom>
10586
10587         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
10588
10589         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
10590
10591 2002-03-01    <johan AT FRIJA>
10592
10593         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
10594
10595         * src/SDCCast.c (decorateType): fixed bug #524209
10596
10597         * src/SDCCval.c (valNot): fixed bug #524195
10598
10599 2002-02-26    <johan AT balder>
10600
10601         * src/xa51/gen.c: fixed a warning
10602
10603         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
10604
10605         * src/SDCCast.c (decorateType): fixed bug #522534
10606
10607 2002-02-23    <johan AT balder>
10608
10609         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
10610
10611 2002-02-22    <johan AT balder>
10612
10613         * src/SDCCast.c: fixed bug #514865
10614
10615         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
10616
10617 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
10618
10619         * sdcc/src/SDCCloop.c:
10620         Previous fix was not good. basic blocks that have "break" or "return" are
10621         not really partof a loop , but live ranges used in these blocks should
10622         be live thru the entire loop, so set partOfLoop but don't add them to
10623         loop region
10624
10625 2002-02-21    <johan AT FRIJA>
10626
10627         * src/SDCCcse.c: fixed bug #514308
10628
10629 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
10630
10631         * src/SDCCloop.c:
10632         Fixed BUG #519583. If a conditional block ended in a return/break
10633         statement inside a loop, it was not being considered part of the loop.
10634
10635         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
10636
10637 2002-02-10  Karl Bongers <karl AT turbobit.com>
10638
10639         * debugger/*:
10640         Fixed up SDCDB debugger somewhat.  Updated debugger/README
10641         with lots of comments and notes.
10642
10643         * device/examples/test2.c:
10644         Fix bug, "red" variable not being initialized(compiler complained).
10645
10646         * device/examples/Makefile, examples/test3.c:
10647         Add Makefile in device/examples folder, compiles test3.c
10648         for use as a multiple module SDCDB test case.
10649
10650         * sim/ucsim/cmd.src/cmdset.cc:
10651         Took out debug printfs in ucsim "next" command.
10652
10653         * sim/ucsim/xa.src:
10654         Karl and Johan start ucsim XA support.  Most dissassembly working,
10655         about 75% emulation done(plenty of work remaining).
10656
10657         * sim/ucsim/z80.src:
10658         Add Z80 support to ucsim, add test-ucz80 regression test,
10659         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
10660         Notice z80 compiler fails on examples/test3.c/crc code.
10661
10662 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
10663
10664         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
10665         Added support for --parms-in-bank1
10666
10667         * src/ds390/peeph.def:
10668         added a few more peephole optimzations
10669
10670         * src/ds390/main.c:
10671         1) added __builtin_inp & __builtin_outp used to read in data of given length
10672            from a memory mapped port
10673         2) added __builtin_memcmp
10674         3) added __builtin_swapw swap bytes of a short
10675
10676         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
10677         1) handle multiple send & receives from register bank1
10678         2) ralloc can now allocate DPTR1 to some liveRanges
10679
10680         * src/SDCCsymt.c, src/SDCCsymt.h:
10681         changes to handle multiple sends & receives
10682
10683         * src/SDCCptropt.h:
10684         added some pointer arithmetic optimization
10685
10686         * src/SDCCptropt.c:
10687         added some pointer arithmetic optimizations but not stable yet so not
10688         called from anywhere (will get this working shortly)
10689
10690         * src/SDCCopt.c: fixed for multiple sends & receives
10691
10692         * src/SDCCmain.c:
10693         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
10694         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
10695            set preprocessor defines (depending on options)
10696
10697         * src/SDCCicode.c, src/SDCCicode.h:
10698         changes made to handle multiple sends & receives
10699
10700         * src/SDCCglobl.h:
10701         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
10702
10703         * src/SDCCcse.c, src/SDCCcse.h:
10704         added function findbackward def (to be used in upcoming optimization)
10705
10706         * src/SDCCcflow.c, src/SDCCcflow.h:
10707         added function returnAtEnd - to determine if a basic block terminates with
10708         a RETURN iCode
10709
10710         * src/SDCCast.c, src/SDCCast.h:
10711         added option parms-in-bank1
10712
10713         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
10714         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
10715         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
10716         adjusted for --parms-in-bank1 option
10717
10718         * device/include/string.h:
10719         donot redefine "reentrant" keyword
10720
10721         * device/include/ds80c390.h: Added some more SFRs
10722
10723 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
10724
10725         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
10726
10727 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
10728
10729         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
10730
10731 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
10732
10733         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
10734
10735 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
10736
10737         * Added --xram-movc option
10738
10739 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
10740
10741         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
10742
10743 2002-01-11  Johan Knol
10744
10745         * Added math lib of Jesus Calvino-Fraga
10746
10747 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
10748
10749         * src/SDCCmain.c (processFile): fix processing of ../../src.c
10750         * support/regression/Makefile: new target test-mcs51-stack-auto
10751         * support/regression/ports/mcs51-stack-auto/spec.mk: added
10752
10753 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10754
10755         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
10756
10757 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10758
10759         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
10760
10761 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
10762
10763         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
10764
10765         * src/SDCCglue.h: add definition for printIvalChar()
10766
10767 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10768
10769         * src/SDCCast.c: fix #498138 by Johan
10770
10771         * src/SDCCglue.c: fix #498138 by Johan
10772
10773 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10774
10775         * support/regression/Makefile: fix clean
10776
10777         * support/regression/ports/ds390/support.c: fix transmission of last character
10778
10779 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
10780
10781         * /sdcc/src/ds390/gen.c:
10782         a) improved computing address of stack variable
10783         b) took out some #if 0 code
10784         c) improved parmBytes adjustment
10785         d) improved genPlusIncr & genMinusIncr
10786         e) genCmp could generate bad code (when left assigned to DPTR)
10787         f) Fixed bug in hasInc
10788
10789         * /sdcc/src/ds390/ralloc.c:
10790         a) packRegsForSupport could mess up live information (Fixed)
10791         b) packRegsDPTRuse could be incorrect for left & right shift
10792
10793         * /sdcc/src/mcs51/ralloc.c:
10794         packRegsForSupport could mess up the live information (Fixed)
10795
10796         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
10797
10798         * /sdcc/src/SDCCast.c:
10799         can reverse a loop even if function call is present as long
10800         as the loop control variable is local & is not passed as parameter
10801
10802 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10803
10804         * /sdcc/ChangeLog: *** empty log message ***
10805
10806         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
10807         More builtin function additions for TININative
10808
10809         * /sdcc/src/ds390/ralloc.c:
10810         Had broken the regression testsuite
10811
10812         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
10813
10814         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
10815         Added funcattr hasStackParms will be set for reentrant functions when there
10816         are paramteres on the stack, this helps in minimizing frame pointer generation
10817         typeFromStr can handle function pointers now
10818
10819         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
10820         *** empty log message ***
10821
10822 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10823
10824         * /src/ds390/gen.c, /src/ds390/main.c:
10825         More builtin function additions for TININative
10826
10827         * /src/ds390/ralloc.c:
10828         Had broken the regression testsuite
10829
10830         * /src/SDCCast.c: Fixed a bug in dumptree
10831
10832         * /src/SDCCsymt.c, /src/SDCCsymt.h:
10833         Added funcattr hasStackParms will be set for reentrant functions when there
10834         are paramteres on the stack, this helps in minimizing frame pointer generation
10835         typeFromStr can handle function pointers now
10836
10837         * /doc/builtins.txt, /doc/TININative.txt:
10838         *** empty log message ***
10839
10840
10841 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10842
10843         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
10844         ALPHA version for -mTININative
10845
10846         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
10847         updated to reflect changes in the port structure
10848
10849         * /src/port.h:
10850         added function do_assemble (similar to do_link) if non-null this function
10851         will be called to do assembly (-mTININative) requires a multi command
10852         assembly
10853         added function genAssemblerEnd will be called to generate assembler Epilogue
10854
10855         * /src/SDCCsymt.c:
10856         added _JavaNative to debug info printing
10857
10858         * /src/SDCCmain.c: added option --tini-libid
10859         added port->do_assemble function (-mTININative) has a multi command assemble
10860
10861         * /src/SDCCglue.c: Disabled "constExpr" check
10862         added port->genAssemblerEnd function
10863
10864         * /src/SDCCglobl.h: Added option --tini-libid value
10865
10866         * /src/SDCCast.h:
10867         tookout optimizeCompare from the header (has no external references)
10868
10869         * /src/SDCCast.c: made one more function "static"
10870
10871 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
10872
10873         * src/z80/mappings.i: Added z80asm support.
10874
10875         * src/z80/main.c: Added z80asm support on --asm=z80asm
10876
10877         * src/z80/gen.c: Fixed asm portability issues.
10878
10879         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
10880
10881         * src/SDCCglue.c (printExterns): Added global/extern split.
10882
10883 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
10884
10885         * support/regression/Makefile: added test for mcs51 model large
10886
10887         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
10888
10889         * support/regression/ports/gbz80/spec.mk: added -mgbz80
10890
10891 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
10892
10893         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
10894
10895 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
10896
10897         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
10898
10899         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
10900
10901 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
10902
10903         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
10904
10905         * support/regression/tests/simplefloat.c: Port to mcs51.
10906
10907 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
10908         * support/regression/tests/bug-485362.c: Added.
10909
10910         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
10911
10912         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
10913
10914         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
10915
10916         * src/z80/gen.c (aopDump): Added a dump function.
10917
10918 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
10919         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
10920
10921         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
10922
10923         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
10924
10925         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
10926
10927         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
10928
10929         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
10930
10931         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
10932
10933         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
10934
10935         * support/regression/ports/ds390/support.c: Use tinibios.
10936
10937         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
10938
10939 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
10940
10941         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
10942         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
10943
10944         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
10945
10946         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
10947
10948 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
10949
10950         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
10951
10952         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
10953         (packRegsForIYUse): Created and optimised.
10954
10955 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10956
10957         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
10958 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
10959
10960         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
10961
10962         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
10963
10964         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
10965
10966 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10967
10968         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
10969
10970         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
10971
10972 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10973
10974         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
10975
10976         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
10977
10978         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
10979
10980 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10981
10982         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
10983         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
10984         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
10985
10986         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
10987
10988         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
10989         (genNotFloat): Added.
10990         (genUminusFloat): Added.
10991
10992         * device/lib/z80/Makefile: Added floating pt stubs.
10993
10994         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
10995
10996         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
10997
10998         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
10999
11000 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11001
11002         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
11003
11004         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
11005
11006         * sdcc/support/regression/Makefile: Add port ds390.
11007
11008         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
11009
11010         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
11011
11012         * sdcc/support/regression/ports/ds390/spec.mk: Added.
11013
11014         * sdcc/support/regression/ports/ds390/support.c: Added.
11015
11016         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
11017
11018         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
11019
11020         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
11021
11022 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
11023
11024         * device/include/malloc.h: Added z80 and gbz80 support.
11025
11026         * device/lib/gbz80/heap.s: Added.
11027
11028         * device/lib/z80/heap.s: Added.
11029
11030         * device/lib/malloc.c: Added z80 and gbz80 support.
11031
11032         * support/regression/tests/malloc.c (testMalloc): Added.
11033
11034         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
11035
11036         * support/regression/tests/bug-478094.c: Added.
11037
11038         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
11039
11040 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
11041
11042         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
11043
11044         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
11045
11046         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
11047
11048         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
11049
11050         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
11051
11052 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
11053
11054         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
11055
11056 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
11057
11058         * support/regression/tests/bug-477927.c: Added.
11059
11060         * src/z80/peeph.def: Added minor rules.
11061
11062         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
11063
11064         * src/z80/peeph.def: Added jump optimisation modification.
11065
11066 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
11067
11068         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
11069
11070 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
11071
11072         * support/regression/tests/funptrs.c: Added.
11073
11074 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
11075
11076         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
11077
11078 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
11079
11080         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
11081
11082         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
11083
11084         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
11085         (movLeft2ResultLong): Created.
11086
11087         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
11088         (joinPushes): Added.  Joins two char pushes into a word push.
11089
11090 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
11091
11092         * support/cpp2/Makefile.in (install): Added creation of dest dir.
11093
11094         * support/makebin/Makefile (install): Added creation of dest dir.
11095
11096 2001-10-24 Karl Bongers <karl AT turbobit.com>
11097
11098         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
11099
11100 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
11101
11102         * src/z80/ralloc.c: Turned off faulty pack for one use.
11103
11104         * src/z80/peeph-gbz80.def: Removed redundent restart options.
11105
11106         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
11107
11108 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
11109
11110         * support/regression/Makefile: Improved clean
11111
11112         * support/regression/ports/gbz80/spec.mk: Added clean
11113
11114         * support/regression/ports/host/spec.mk: Added clean
11115
11116         * support/regression/ports/z80/spec.mk: Added clean
11117
11118         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
11119
11120         * support/regression/ports/mcs51/timeout.c: little improvements
11121
11122 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
11123
11124         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
11125
11126         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
11127
11128         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
11129
11130 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
11131
11132         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
11133
11134         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
11135
11136 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
11137         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
11138
11139         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
11140
11141         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
11142
11143         * src/mcs51/main.c (_linkCmd): Added bin path to command.
11144
11145         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
11146
11147         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
11148
11149         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
11150
11151         * support/regression/tests/longor.c: Added.
11152
11153 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
11154
11155         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
11156
11157         * as/mcs51/aslink.h: define PATH_MAX
11158
11159         * as/mcs51/asm.h: define PATH_MAX
11160
11161         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
11162
11163         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
11164
11165         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
11166
11167         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
11168
11169         * src/SDCCglobl.h: define PATH_MAX
11170
11171         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
11172
11173         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
11174
11175 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
11176
11177         * src/z80/gen.c (gencjneshort): Fixed
11178
11179         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
11180
11181 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
11182
11183         * support/regression/tests/bug-469671.c: Added.
11184
11185         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
11186
11187 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
11188
11189         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
11190
11191         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
11192
11193 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
11194
11195         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
11196
11197         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
11198
11199         * src/device/lib/_mullong.c : removed hint: nooverlay bug
11200
11201         * src/device/lib/_divuint.c : removed hint: nooverlay bug
11202
11203         * src/device/lib/_divulong.c: removed hint: nooverlay bug
11204
11205         * src/device/lib/_moduint.c : removed hint: nooverlay bug
11206
11207         * src/device/lib/_modulong.c: removed hint: nooverlay bug
11208
11209 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
11210
11211         * 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.
11212
11213         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
11214
11215         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
11216
11217 2001-10-07    <johan AT FRIJA>
11218
11219         * device/lib/gets.c (gets): fixed the return value.
11220
11221 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
11222         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
11223
11224         * 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.
11225
11226         * 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.
11227
11228         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
11229
11230         * src/pic/gen.c: Removed Safe_strdup.
11231
11232         * configure.in: Added option to enable libgc support.
11233
11234         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
11235         (bitVectUnion): Optimised.
11236         (bitVectIntersect): Optimised.
11237         (bitVectBitsInCommon): Optimised.
11238         (bitVectCplAnd): Optimised.
11239
11240         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
11241
11242 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11243
11244         * src/SDCCmain.c: distinguish between assembler debug and plain options
11245
11246         * src/avr/main.c:   remove standard assembler options
11247
11248         * src/ds390/main.c: remove standard assembler options
11249
11250         * src/mcs51/main.c: remove standard assembler options
11251
11252         * src/port.h: removed "PENDING" comment
11253
11254 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11255
11256         * src/device/lib/_mulint.c  : new, with assember functions
11257
11258         * src/device/lib/_mullong.c : new, with assember functions
11259
11260         * src/device/lib/_divuint.c : with assember functions
11261
11262         * src/device/lib/_divsint.c : with assember functions
11263
11264         * src/device/lib/_divulong.c: with assember functions
11265
11266         * src/device/lib/_divslong.c: with assember functions
11267
11268         * src/device/lib/_moduint.c : with assember functions
11269
11270         * src/device/lib/_modsint.c : with assember functions
11271
11272         * src/device/lib/_modulong.c: with assember functions
11273
11274         * src/device/lib/_modslong.c: with assember functions
11275
11276         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
11277
11278         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
11279
11280         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
11281                                       replaced _mululong.c and _mulslong.c by _mullong.c
11282
11283 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11284
11285         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
11286
11287 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
11288
11289         * src/SDCCglue.c: test, if win32api is available for MINGW
11290
11291 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
11292
11293         * src/SDCCsymt.c: no more _modifier in printTypeChain()
11294         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
11295         * support/regression/ports/gbz80/spec.mk: removed GENERIC
11296         * support/regression/ports/host/spec.mk: removed GENERIC
11297         * support/regression/ports/mcs51/spec.mk: removed GENERIC
11298         * support/regression/ports/z80/spec.mk: removed GENERIC
11299
11300 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
11301
11302         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
11303
11304         * support/regression/tests/bug-467035.c: Created.
11305
11306 2001-10-01    <johan AT FRIJA>
11307
11308         * src/SDCC.y: fixed bug #466586 part 1
11309
11310 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
11311
11312         * SDCCicode.c: z80 has no generic pointers
11313         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
11314
11315 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
11316
11317         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
11318
11319 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
11320
11321         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
11322
11323         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
11324
11325 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
11326
11327         * configure.in: Fixed up so that ucsim is only configured once.
11328
11329         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
11330
11331         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
11332         (getPathDifference): As above.
11333
11334         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
11335
11336         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
11337
11338 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
11339         * .version: Updated to 2.3.1
11340
11341         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
11342         Added copyright header.
11343
11344         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
11345         (assemble): Added support for macro based assembler commands.
11346         (linkEdit): Added support for macro based linker commands.
11347         (preProcess): Changed the pre-processor to use macros.
11348         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
11349         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
11350
11351         * device/lib/z80/crt0.s: Added module name for debugging.
11352
11353 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
11354
11355         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11356
11357         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
11358
11359         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
11360
11361         * src/Makefile.in: Added SDCCmacro and SDCCutil
11362
11363 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
11364
11365         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11366
11367 2001-09-16    <johan AT FRIJA>
11368
11369         * 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.
11370
11371 2001-09-15    <johan AT FRIJA>
11372
11373         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
11374         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
11375
11376 2001-09-11    <johan AT FRIJA>
11377
11378         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
11379
11380 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
11381
11382         * support/regression/tests/bug-460444.c: Added test case.
11383
11384         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
11385         (genCast): Added justification for all of the asserts.
11386
11387 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
11388
11389         * support/regression/support.c: _xdata replaced by xdata
11390
11391         * support/regression/spec.mk: removed _generic
11392
11393 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
11394
11395         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
11396
11397         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
11398         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
11399
11400         * src/z80/peeph.def: Added a rule to optimise shift then compare.
11401
11402         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
11403
11404         * support/regression/tests/bug-460010.c: Added test case.
11405
11406         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
11407
11408 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
11409
11410         * support/regression/Makefile: inter-port-clean adjusted for mcs51
11411
11412         * support/regression/testfwk.c: removed workaround for bug #436344
11413
11414         * support/regression/tests/bp.c: use less memory with mcs51
11415
11416         * support/regression/tests/bug-441448.c: use less memory
11417
11418         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
11419
11420         * support/regression/collate-results.py: typo
11421
11422 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
11423
11424         * support/regression/tests/fetchoverlap.c: Added new test case.
11425
11426         * support/regression/tests/bp.c: Added new test case.
11427
11428         * support/regression/tests/bug-448984.c: Added new test case.
11429
11430         * support/regression/tests/pow2shifts.c: Added new test case.
11431
11432         * src/z80/gen.c: Turned off the noise it normally generates for the release.
11433         (genlshTwo): Fixed right shift for count > 8.
11434
11435         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
11436
11437 2001-09-08    <johan AT FRIJA>
11438
11439         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
11440
11441 2001-09-07    <johan AT FRIJA>
11442
11443         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
11444
11445         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
11446
11447 2001-09-06    <johan AT FRIJA>
11448
11449         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
11450         * bernhard noted me at this: "() equals to (void)" (1.38)
11451
11452 2001-09-05    <johan AT FRIJA>
11453
11454         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
11455
11456 2001-09-04    <johan AT FRIJA>
11457
11458         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
11459
11460
11461 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
11462
11463         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
11464
11465 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
11466
11467         * link/z80/aslink.h: Fixed path for PATH_MAX
11468
11469 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
11470
11471         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
11472
11473         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
11474
11475         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
11476
11477         * 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.
11478
11479 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
11480
11481         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
11482         (genCmp): Fixed up genCmp for the GB with longs.
11483
11484         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
11485
11486         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
11487
11488         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
11489
11490         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
11491
11492 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
11493
11494         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
11495
11496 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
11497
11498         * 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.
11499
11500         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
11501
11502 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
11503
11504         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
11505
11506         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
11507
11508 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
11509
11510   * sim/ucsim/configure:    little improvement of Cygwin-detection
11511   * sim/ucsim/configure.in: little improvement of Cygwin-detection
11512   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
11513   * support/regression/tests/bug-221100.c: small changes for mcs51
11514   * support/regression/tests/bug-221168.c: small changes for mcs51
11515   * support/regression/tests/bug-227710.c: small changes for mcs51
11516   * support/regression/tests/staticinit.c: small changes for mcs51
11517   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
11518   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11519   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11520
11521 $Revision$