git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@4203 4a8a32a2...
[fw/sdcc] / ChangeLog
1 2006-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
2
3         * device/lib/printf_large.c (output_digit, calculate_digit): optimized,
4           (_print_format): fixed printing pointers
5         * src/mcs51/gen.c (emitLabel, movb): new, added,
6           (genAssign): small optimization,
7           (genDjnz): fixed stack overflow bug,
8           (throughout): replaced sprintf with SNPRINTF,
9           replaced mcs51_regWithIdx with REG_WITH_INDEX,
10           replaced emitcode("mov", "b,...") with MOVB(...),
11           replaced emitcode("", "%05d$:", lbl->key + 100) with emitLabel(lbl),
12           replaced D(emitcode("; genXXX", "")) with D(emitcode(";", "genXXX"))
13         * src/mcs51/peeph.def: added rules 140 and 264
14         * src/SDCCmem.c (allocLocal): store register declared locals in DSEG/OSEG
15           so they may get optimized into registers
16
17 2006-05-30 Maarten Brock <sourceforge.brock AT dse.nl>
18
19         * src/SDCCmain.c (optionsTable, parseCmdLine): handle --use-stdout
20           immediately when encountered,
21           (printUsage): always use stderr even on windows
22
23 2006-05-30 Bernhard Held <bernhard AT bernhardheld.de>
24
25         * src/SDCCast.c (isLoopCountable): fixed bug #1478316
26         (processParms): fixed bug #1247551
27         * src/SDCCmain.c (printVersionInfo, printOptions, printUsage,
28         parseCmdLine, main): print '--version' to stdout,
29         print 'help' to stdout if --help is given,
30         print 'help' to stderr and exit with EXIT_FAILURE if no or bad
31         arguments are given; fixed --help
32
33 2006-05-27 Bernhard Held <bernhard AT bernhardheld.de>
34
35         * src/SDCCcse.c (findPointerSet): fixed bug #1493710
36         * support/regression/tests/bug-1493710.c: added
37
38 2006-05-27 Borut Razem <borut.razem AT siol.net>
39
40         * support/regression/fwk/lib/testfwk.c: define array in _printn() as
41           static instead auto
42         * support/regression/ports/pic16/support.c: increase stack size
43           from default 64 bytes to 128 bytes
44         * support/regression/tests/staticinit.c,
45           support/regression/tests/float.c: regression tests fully enabled
46           for pic16 port by putting the initialized data arrays into the code
47           section
48         * support/regression/ports/pic16/spec.mk: don't link default libraries.
49           This was changed by mistake in the previous version.
50
51 2006-05-28 Vangelis Rokas <vrokas AT users.sourceforge.net>
52
53         * src/pic16/gen.c (genFunction, genEndFunction): some
54         beautifications, fixed bug with falsely restoring FSR2 in large
55         stack model, thanks to Beau E. Cox for reporting the bug
56
57 2006-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
58
59         * debugger/mcs51/break.c,
60         * debugger/mcs51/cmd.c (throughout): removed unused variables and labels,
61           use %p to print pointers, made address variables unsigned
62         * debugger/mcs51/cmd.c (infoSymbols): added missing parameter to printf
63         * debugger/mcs51/symtab.c (parseSymbol): must return something
64         * src/mcs51/gen.c (aopForSym): small optimization,
65            moved declarations mcs51_ptrRegReq and mcs51_nRegs to ralloc.h,
66           (freeAsmop): added missing break,
67           (aopPut): removed parameter bvolatile, determine it inside the function,
68           (saveRegisters, unsaveRegisters): small optimization,
69           (genIpush): removed pointless check,
70           (throughout): replaced Safe_calloc, strcpy with Safe_strdup,
71           replaced sprintf with SNPRINTF,
72           replaced strcpy with strncpyz,
73           updated aopPut calls,
74           replaced D(emitcode("; genXXX", "")) with D(emitcode(";", "genXXX"))
75         * src/mcs51/ralloc.h:  added declarations mcs51_ptrRegReq and mcs51_nRegs
76
77 2006-05-24 Borut Razem <borut.razem AT siol.net>
78
79         * support/regression/tests/bug-221100.c: fixed xdata problem caused by
80           modification of test for the pic16 port, put the array to the code
81           memory for pic16port; thanks to Maarten Brock and Frieder Ferlemann
82
83 2006-05-23 Jesus Calvino-Fraga <jesusc at ece.ubc.ca>
84
85         * src/pic/gen.c: MSC 6 does not have <stdint.h>.  Use pstdint.h instead.
86         * support/Util/pstdint.h: added
87
88 2006-05-22 Borut Razem <borut.razem AT siol.net>
89
90         * src/regression/Makefile: removed bool2.c test, added -q linker option
91         * src/regression/add2.c, src/regression/add3.c, src/regression/bool1.c,
92           src/regression/bool3.c, src/regression/nestfor.c, src/regression/ptrfunc.c,
93           src/regression/compare.c, src/regression/or1.c, src/regression/compare2.c,
94           src/regression/while.c, src/regression/compare3.c, src/regression/compare4.c,
95           src/regression/compare5.c, src/regression/sub2.c, src/regression/rotate1.c,
96           src/regression/rotate2.c, src/regression/rotate3.c, src/regression/rotate4.c,
97           src/regression/switch1.c, src/regression/rotate5.c, src/regression/for.c,
98           src/regression/add.c, src/regression/sub.c, src/regression/call1.c:
99           define SUPPORT_BIT_TYPES 0, removed unused bit variables
100
101 2006-05-22 Raphael Neider <rneider AT web.de>
102
103         * src/pic16/gen.c (pic16_storeForReturn): fragile fix for
104           bug #1492360 (problematic due to generic pointers, see code)
105
106 2006-05-22 Borut Razem <borut.razem AT siol.net>
107
108         * support/regression/ports/pic16/specs.mk: removed stack size linker
109           directive
110         * support/regression/tests/array.c,
111           support/regression/tests/bitopcse.c,
112           support/regression/tests/bug-908454.c,
113           support/regression/tests/malloc.c: modified for pic16 regression test
114         * support/regression/tests/bitfields.c:
115           pic16 - excluded bitfileds of size > 8
116         * support/regression/tests/bp.c: pic16 - reduced data size
117         * support/regression/tests/bug-221100.c: pic16 - reduced data size
118         * support/regression/tests/bug-460010.c:
119           pic16 - used the absolute address the fits in memory
120         * support/regression/tests/bug-716242.c:
121           bug [ 1443651 ] pic 16: redefining symbol that cannot be redefined.
122         * support/regression/tests/float.c:
123           pic16 - excluded - data size too big
124         * support/regression/tests/onebyte.c:
125           pic16 - bug [ 1444425 ] onebyte.c regression tes fails on pic16
126         * support/regression/tests/shifts.c:
127           pic16 - function names probably have to differ in first X characters
128           (gpasm limitation?)
129         * support/regression/tests/staticinit.c:
130           pic16 - excluded some tests due error: no target memory available for
131           section ".idata"
132
133 2006-05-22 Borut Razem <borut.razem AT siol.net>
134
135         * support/Util/dbuf.c: fixed bug #1489008 fix dbuf_c_str(),
136           second try. Thanks Stas Sergeev once more.
137
138 2006-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
139
140         * src/hc08/gen.c (transferAopAop): aop forced to stack was not restored,
141           (genLeftShift, genRightShift): fixed bug 1491627
142         * src/hc08/peeph.def (rules 7, 8.x): added
143         * support/regression/tests/shifts.c (ShiftLeftByParam,
144           ShiftRightByParam, testShiftByParam): added to test variable shifting
145
146 2006-05-20 Raphael Neider <rneider AT web.de>
147
148         * src/pic/gen.c (bitpatternFromVal): fixed for 64-bit machines
149         * src/pic16/ralloc.c (newReg): use correct name in hashtable,
150           (allocReg): add only new registers to dynAllocRegs,
151           (pic16_assignRegisters): do not reset dynrIdx, fixes bugs
152             #1489055, #1445850, and probably #1483693
153
154 2006-05-19 Vangelis Rokas <vrokas AT users.sourceforge.net>
155
156         * src/pic16/glue.c (pic16_emitConfigRegs, pic16_emitIDRegs): fixed
157         bug in for-loop that didn't emit the last of CONFIG and ID registers
158
159 2006-05-18 Maarten Brock <sourceforge.brock AT dse.nl>
160
161         * src/mcs51/gen.c (genCodePointerGet): inc dptr instead of loading acc
162           with offset
163         * src/mcs51/peeph.def (186.x): updated and reenabled to fix bugs
164           1489016, 1434401 and 1490124
165         * src/ds390/peeph.def (186.x, 227.x): updated and reenabled to fix bugs
166           1489016, 1434401 and 1490124
167
168 2006-05-17 Borut Razem <borut.razem AT siol.net>
169
170         * support/Util/dbuf.c: fixed bug #1489008 fix dbuf_c_str(),
171           thanks Stas Sergeev
172
173 2006-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
174
175         * device/include/mcs51/P89c51RD2.h,
176         * device/include/mcs51/P89LPC901.h,
177         * device/include/mcs51/P89LPC922.h,
178         * device/include/mcs51/P89LPC932.h: added, thanks Omar Espinosa
179
180 2006-05-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
181
182         * device/lib/pic16/libsdcc/stack/{stack.S, Makefile.in}: add workaround
183         to fix missing stack pragma in compiled binary object file,
184
185 2006-05-14 Bernhard Held <bernhard AT bernhardheld.de>
186
187         * support/packihx/configure.in,
188         * support/packihx/configure: removed warning, autoconf >= 2.5x can
189         determine sizeof basic types even while cross compiling
190
191 2006-05-13 Bernhard Held <bernhard AT bernhardheld.de>
192
193         * src/avr/gen.c (aopop),
194         * src/ds390/gen.c (aopOp),
195         * src/hc08/gen.c (aopOp),
196         * src/mcs51/gen.c (aopop),
197         * src/pic16/gen.c (pic16_aopOp),
198         * src/pic/gen.c (aopOp),
199         * src/z80/gen.c (aopop): fix for bug #1479882; use new, exclusive asmop
200         if size of operand is smaller than spill location
201
202 2006-05-12 Borut Razem <borut.razem AT siol.net>
203
204         * *.dsw, *.dsp: changed property svn:eol-style to CRLF since they
205           have to have CR/LF line endings even if they are checked out on *nix
206           or on WIN32 in cygwin binmode
207
208 2006-05-12 Maarten Brock <sourceforge.brock AT dse.nl>
209
210         * doc/sdccman.lyx: documented numeric ranges, WEBDOC #1442369
211         * device/include/ds80c390.h: added sfr16 definitions
212         * src/ds390/gen.c,
213         * src/ds390/gen.h,
214         * src/ds390/main.c,
215         * src/ds390/ralloc.c,
216         * src/ds390/ralloc.h: changes all over the place to sync with mcs51
217           fixing several bugs and adding sfr16/sfr32, reentrant bit params,
218           bit returning functions
219         * support/regression/tests/sfr16.c: enabled test on ds390
220
221 2006-05-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
222
223         * src/hc08/gen.c (asmopToBool, genIfx): fix for bug #1429722
224         * src/hc08/gen.c (storeRegToAop): fix for bug #1439894
225
226 2006-05-11 Maarten Brock <sourceforge.brock AT dse.nl>
227
228         * sim/ucsim/sim.src/memcl.h: added get_decoder() to cl_address_space
229         * sim/ucsim/sim.src/mem.cc: implemented cl_address_space::get_decoder,
230           (cl_address_space constructor): removed expensive initialization,
231           (cl_address_space::get_cell): extended for late initialization,
232           (cl_address_space::*): use late initialization,
233           (cl_address_decoder::activate): removed expensive initialization,
234           This reduced regression test running time by 25%
235
236 2006-05-11 Bernhard Held <bernhard AT bernhardheld.de>
237
238         * packihx/,
239         * configure.in,
240         * configure,
241         * sdcc.dsw,
242         * Makefile.bcc,
243         * Makefile.in,
244         * support/packihx/Makefile.in,
245         * support/packihx/clean.mk,
246         * support/packihx/Makefile.bcc,
247         * support/packihx/PackIhx.dsp: moved packihx to support/packihx
248
249 2006-05-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
250
251         * src/SDCCval.c (valNot): fix for regression test failure
252           of not.c on big endian hosts
253
254 2006-05-10 Maarten Brock <sourceforge.brock AT dse.nl>
255
256         * device/inlcude/mcs51/msc1210.h: new, added, thanks Philippe Latu
257
258 2006-05-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
259
260         * device/lib/mcs51/Makefile.in: changed string comparison operator
261           to = for POSIX compliance; == is bash extension
262
263 2006-05-10 Maarten Brock <sourceforge.brock AT dse.nl>
264
265         * device/lib/hc08/_mulint.c: applied patch 1485428, thanks
266           kosmonaut_pirx
267
268 2006-05-09 Vangelis Rokas <vrokas AT users.sourceforge.net>
269
270         * src/pic16/gen.c (pic16_freeAsmop): release any temp registers
271         allocated by aopForSym thus fixing bug #1478657 about failed testfwk.c
272         * src/pic16/main.c (_pic16_keywords): added 'sfr16' keyword,
273         * src/pic16/ralloc.c (pic16_allocWithIdx): also a fix for bug exposed by
274         bug report #1478657,
275
276 2006-05-05 Borut Razem <borut.razem AT siol.net>
277
278         * doc/Makefile.in: remove of WARNINGS and labels.pl immediately after
279           making the html
280
281 2006-05-02 Borut Razem <borut.razem AT siol.net>
282
283         * doc/Makefile.in: removed *.ind dependency since there is no rule to
284           create *.ind, which made make to fail if invoked with -j 2
285
286 2006-05-01 Maarten Brock <sourceforge.brock AT dse.nl>
287
288         * src/SDCCglue.c (emitRegularMap): partial fix for bug 1477149, thanks
289           Hubert Sack for patch 1479782
290
291 2006-05-01 Vangelis Rokas <vrokas AT users.sourceforge.net>
292
293         * src/pic16/glue.c (pic16_printIvalStruct): fixed bug #1445929
294
295 2006-05-01 Raphael Neider <rneider AT web.de>
296
297         * src/pic/device.c (sanitise_processor_name): only remove p(ic) prefix,
298           (create_pic): store only prefix-free device name,
299           (init_pic): check for device names with "16" prefix,
300           (list_valid_pics),
301         * src/pic/device.h (struct PIC_device),
302         * src/pic/main.c (_pic14_genAssemblerPreamble): adapted to single
303             stored device name,
304         * device/include/pic/pic12f{635,675,629,683}.h,
305         * device/lib/pic/libdev/pic12f{635,675,629,683}.c: NEW device libraries
306         * device/lib/pic/libdev/Makefile.in: allow pic12* devices,
307         * device/include/pic/pic16f505.h,
308         * device/lib/pic/libdev/pic16f505.c: removed
309         * device/include/pic/pic14devices.txt: added support for pic12f
310             devices, removed unsupported non 16-bit devices
311             [above changes provided by patch from Zik Saleeba]
312         * src/pic/*, src/pic16/*, device/include/pic16/*,
313           device/lib/pic/**, device/lib/pic16/**: obfuscated email address
314
315 2006-05-01 Borut Razem <borut.razem AT siol.net>
316
317         * configure.in, configure, doc/Makefile.in:
318           sync with nightly build makefile - latex, dvipdf and dvips
319           not needed any more
320
321 2006-04-30 Bernhard Held <bernhard AT bernhardheld.de>
322
323         * support/scripts/sdcc.nsi: removed all Readmes and Makefiles
324         in the library source
325
326 2006-04-30 Maarten Brock <sourceforge.brock AT dse.nl>
327
328         * support/regression/ports/hc08/spec.mk: fixed bug 1478892
329
330 2006-04-28 Raphael Neider <rneider AT web.de>
331
332         * src/pic16/pcode.c (pic16_newpCodeOpLit12),
333         * src/pic16/gen.c (pic16_popGetLit12): NEW, create 12 bit literal,
334           (pic16_loadFSR0): handle 12 bit literals correctly, fixes #1440527
335         * src/pic16/pcode.h: added prototype for pic16_newpCodeOpLit12()
336
337 2006-04-28 Bernhard Held <bernhard AT bernhardheld.de>
338
339         * device/lib/pic/libdev/Makefile.in,
340         * device/lib/hc08/Makefile.in,
341         * device/lib/gbz80/Makefile.in,
342         * device/lib/z80/Makefile.in,
343         * device/lib/ds390/Makefile.in,
344         * device/lib/ds400/Makefile.in: added srcdir to include search path,
345         thanks to Borut for the bug report
346         * configure.in,
347         * configure: always create doc/Makefile independent from --enable-doc
348         * Makefile.in: always install from directory doc independent from
349         --enable-doc
350         * device/lib/pic/Makefile.in: added libdev again, it was erroneously
351         removed
352         * device/lib/pic/libdev/Makefile.in: fixed VPATH build
353         * doc/Makefile.in: install *.txt if present
354         * device/include/Makefile.in (install): added installation of pic/*.inc
355         and pic/*.txt files again, they were erroneously removed
356
357 2006-04-28 Raphael Neider <rneider AT web.de>
358
359         * src/pic/{gen.c,main.h,pcode.c},
360         * src/pic16/{gen.c,pcode.c}: quietened compiler warnings
361             concerning signedness with casts
362
363 2006-04-28 Raphael Neider <rneider AT web.de>
364
365         * src/pic/gen.c (genFunction): set global pic14_hasInterrupt on
366             definition of an interrupt handler,
367         * src/pic/glue.c (pic14_emitInterruptHandler): moved output of
368             interrupt handler stuff from picglue() to separate routine,
369           (picglue): enabled definition of intr handlers in files w/o main()
370
371 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
372
373         * support/librarian/sdcclib.c: moved include <limits.h> up to enable
374           compilation with MSVC 2005 Express Edition (VC8)
375
376 2006-04-26 Bernhard Held <bernhard AT bernhardheld.de>
377
378         * device/lib/Makefile: fixed build of gbz80 lib
379
380 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
381
382         * support/regression/tests/bug-460010.c,
383         * support/regression/tests/bug-524691.c,
384         * support/regression/tests/bug-716242.c: removed conditional defines
385           that are already in testfwk.h
386
387 2006-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
388
389         * src/ds390/gen.c (AccAXRrl1, AccAXLrl1): changed to real rotate by 1,
390           (AccAXRsh1): added, shift right by 1,
391           (AccAXLsh, AccAXRsh, AccAXRshS): updated for AccAXRrl1, AccAXRsh1 and
392            AccAXLrl1
393         * support/regression/tests/rotate.c: use <stdint.h> and enabled ds390
394
395 2006-04-25 Bernhard Held <bernhard AT bernhardheld.de>
396
397         * src/SDCCast.c (decorateType): partial fix for RFE 1475769,
398         remove cast to same type
399         * src/SDCCast.c (decorateType): fix for RFE 1475742,
400         optimize 'ifx (op == 0)' resp. 'ifx (op != 0)'
401         * as/z80/Makefile,
402         * link/z80/Makefile: removed, they have moved to
403         Makefile.in files
404         * configure,
405         * configure.in: replaced duplicate message about ucsim by missing sdcpp
406         * install-sh: fix bug #1204398 by setting umask 0022
407         * device/lib/Makefile: separate build of z80 and gbz80 lib
408
409 2006-04-24 Bernhard Held <bernhard AT bernhardheld.de>
410
411         Enabled VPATH feature: changed nearly all Makefiles (149 files).
412         See sdccman.lyx '2.4.10 VPATH feature' about how to use it.
413
414         One basic decision: e.g. src/clean.mk includes further files. In order
415         to make this work there are two solutions:
416         - rename another dozen clean.mk to clean_in.mk, add srcdir to them and
417           run configure on them. This way they can use
418           'include $(srcdir)/port-clean.mk'
419         - always include clean.mk by the Makefile at the same level. To avoid
420           that `make clean` tries to include and build Makefile.dep the
421           MAKECMDGOALS are examined (see e.g. src/Makefile.in). This has been
422           implemented, because now even `make uninstall` doesn't create
423           Makefile.in. clean.mk could be eliminated by pasting it in
424           Makefile.in.
425
426         * debugger/mcs51/Makefile.in: build own objects from library sources
427         (SLIB, SDCC) in current directory
428
429         * configure, configure.in: renamed --disable-device-lib-build in
430         --disable-device-lib; added --enable-doc, the required tools are
431         searched by configure; added result message; the toolchain for the
432         belonging ports are now only built, if the port is enabled.
433
434         * support/regression/*: all output is written in directory gen, because
435         the fwk and ports directories don't livet in the build tree using vpath
436
437         * doc/sdccman.lyx: renamed --disable-device-lib-build to
438         --disable-device-lib, added --enable-doc, added section VPATH
439
440         * sim/ucsim/configure.in,
441         * sim/ucsim/configure.in: hc08 couldn't be disabled, now hc08 and
442         z80 are enabled by default
443
444 2006-04-24 Raphael Neider <rneider AT web.de>
445
446         * src/pic/device.c (pic14_assignConfigWordValue): remember assignments
447             to config word, "pic14_"-prefixed some extern functions
448           (pic14_emitConfigWord): emit __config directive(s) if assignment to
449             config word has been found
450         * src/pic/device.h: added prototypes
451         * src/pic/pcode.c: added "pic14_"-prefix where needed
452         * src/pic/ralloc.c (IS_CONFIG_ADDRESS,pic14_assignRegisters): cosmetic
453             fixup
454         * src/pic/glue.c (pic14_constructAbsMap): handle assignments to config
455             words,
456           (pic14emitRegularMap): ignore config words,
457           (pic14createInterruptVect): moved generating __config directives away
458           (picglue): have __config directives emitted
459
460 2006-04-24 Borut Razem <borut.razem AT siol.net>
461
462         * doc/Makefile: sync with nightly build makefile
463
464 2006-04-24 Raphael Neider <rneider AT web.de>
465
466         * src/pic/pcoderegs.c (OptimizeRegUsage): do not optimize
467             registers that have not been assigned proper liveranges,
468             fixes #1469504 and #1474602,
469           (pCodeRegOptimizeRegUsage): fixed typo in comment
470
471 2006-04-24 Borut Razem <borut.razem AT siol.net>
472
473         * device/examples/main8051.c: deleted - it was removed from CVS
474           24.mar.2000 and after that modified 18.feb.2001, so it reappered
475           after the transition to Subversion
476         * src/SDCCalloc.h: deleted - it was removed  from CVS
477           3.feb.2001 and after that modified 18.feb.2001, so it reappered
478           after the transition to Subversion
479         * sim/ucsim/cpu.gif, sim/ucsim/interrupt.gif, sim/ucsim/new.gif,
480           sim/ucsim/serial1.gif, sim/ucsim/serial2.gif,
481           sim/ucsim/term_cpuopt.gif, sim/ucsim/timers.gif, sim/ucsim/wins.gif,
482           sim/ucsim/post.jpg, sim/ucsim/UCsim.jpg: corrected
483
484 2006-04-22 Maarten Brock <sourceforge.brock AT dse.nl>
485
486         * as/asx8051.dsp: added mcs51/strcmpi.h
487         * as/hc08/as_hc08.dsp: added asm.h, m6808.h, strcmpi.h
488         * as/hc08/aslink.h: updated lnksect prototype
489         * as/hc08/asm.h,
490         * as/mcs51/asm.h: added a_addr to struct area and s_org to struct sym
491         * as/hc08/asmain.c,
492         * as/mcs51/asmain.c (asmbl): init dot.s_org for S_ORG,
493           (newdot): handle A_ABS
494         * as/hc08/asout.c,
495         * as/mcs51/asout.c (outarea): output address
496         * as/hc08/lkaomf51.c,
497         * as/mcs51/lkaomf51.c: disabled unused array UsageType
498         * as/hc08/m08pst.c,
499         * as/mcs51/i51pst.c,
500         * as/z80/z80pst.c: "ABS" is not A_OVR
501         * as/hc08/lkarea.c (newarea): read a_addr,
502           (lnkarea): added codemap array, sort absolute areas to the front,
503            combine all GSINITx/GSFINAL,
504           (find_empty_space, allocate_space): new functions,
505           (lnksect): return next address, handle absolute sections
506         * as/mcs51/lkarea.c (newarea): read a_addr,
507           lnksect2 prototype changed,
508           (lnkarea2): define codemap unsigned, combine all GSINITx/GSFINAL,
509           (find_empty_space, allocate_space): new, factored out of lnksect2,
510           (lnksect2): return next address, handle absolute sections
511         * as/hc08/lkhead.c,
512         * as/mcs51/lkhead.c (newhead): head is absolute but not overlay
513         * as/hc08/lklibr.c (addfile, fndsym),
514         * as/mcs51/lklibr.c (addfile, buildlibraryindex, fndsym): prevent
515           index out of range and detect both '\' and '/'
516         * device/include/mcs51/c8051f200.h: added _XPAGE, removed bad comment
517         * device/include/stdbool.h: removed SDCC_ds390 from check to pass
518           regression tests (ds390 cannot return bool yet)
519         * doc/sdccman.lyx: changed version number, document changed --no-peep,
520           document critical interrupts on z80, document changed SDCC define
521         * src/asm.c (_asxxxx_mapping): fixed .org directive,
522           (_a390_mapping): added .org directive
523         * src/hc08/gen.c (transferAopAop): made bytemask log to fix warning,
524           (genMultOneByte): fixed warnings
525         * src/hc08/hc08.dsp: lowered warning level to 2 to suppress pedantic
526           ones
527         * src/pic16/device.c: removed newReg prototype, removed BYTE_IN_LONG
528         * src/pic16/gen.c (pic16_popGetLabel): made parameter key signed,
529           (pic16_genLeftShiftLiteral, genRightShiftLiteral): fixed warnings
530         * src/pic16/gen.h: changed prototype for pic16_popGetLabel
531         * src/pic16/main.c: removed newReg prototype
532         * src/pic16/pcode.c,
533         * src/pic16/pcode.h (pic16_emitDB): changed parameter c to int to fix
534           warnings
535         * src/pic16/pic16.dsp: lowered warning level to 2 to suppress pedantic
536           ones
537         * src/pic16/ralloc.c
538         * src/pic16/ralloc.h (newReg): changed type to int and size to unsigned
539           to fix warnings
540         * src/pic/pcode.c (allocInternalRegister): changed parameter optype
541           from short to PIC_OPTYPE
542         * src/pic/pic.dsp: lowered warning level to 2 to suppress pedantic ones
543         * src/pic/ralloc.c (newReg, allocInternalRegister): changed parameter
544           optype from short to PIC_OPTYPE
545         * src/port.h: made int_size unsigned to fix warnings
546         * src/SDCC.y: fixed warning on MSVC
547         * src/SDCCicode.c (getArraySizePtr): return unsigned int
548         * src/SDCCopt.c (convertToFcall): fixed warnings
549         * src/SDCCsymt.h: removed double prototype for genSymName
550         * src/xa51/ralloc.c (allocReg): made size unsigned int, type int and
551           offset int to fix warnings
552
553 2006-04-22 Borut Razem <borut.razem AT siol.net>
554
555         * doc/sdccman.lyx, */Makefile, */Makefile.in:
556           references to CVS replaced with Subversion
557
558 2006-04-21 Borut Razem <borut.razem AT siol.net>
559
560         * doc/sdccman.lyx, */Makefile, */Makefile.in:
561           references to CVS replaced with Subversion
562
563 2006-04-19 Borut Razem <borut.razem AT siol.net>
564
565         * src/version.awk: adapted for svn
566         * /asxxxx/asxhtml/*.gif: set property svn:mime-type to image/gif
567           sim/ucsim/doc/*.gif: set property svn:mime-type to image/gif
568           sim/ucsim/doc/*.jpg: set property svn:mime-type to image/jpeg
569           /binutils-avr/etc/*.vi, *.jin: removed all properties
570           support/scripts/sdcc.ico: set property svn:mime-type to image/x-icon
571
572 2006-04-19 Borut Razem <borut.razem AT siol.net>
573
574         * CVS to Subversion migration completed
575
576 2006-04-18 Borut Razem <borut.razem AT siol.net>
577
578         * support/scripts/sdcc.nsi: removed unexisting ${DEV_ROOT}\lib\pic\*.o,
579           ${DEV_ROOT}\lib\src\pic\libdev\*.S, ${DEV_ROOT}\lib\src\pic\libdev\*.inc
580
581 2006-04-17 Borut Razem <borut.razem AT siol.net>
582
583         * device/include/Makefile.in: added pic/*.inc to the installation
584
585 2006-04-15 Bernhard Held <bernhard AT bernhardheld.de>
586
587         * support/regression/collate-results.py: fixed output in case of
588         a valdiag error
589         * support/regression/generate-cases.py: fixed splitting of pathnames
590         with dots
591         * as/hc08/lklibr.c (addfile),
592         * as/mcs51/lklibr.c (addfile): fixed off-by-one bug
593
594 2006-04-11 Raphael Neider <rneider AT web.de>
595
596         * src/pic16/gen.c (getFreePtr, pic16_popRegFromString),
597         * src/pic16/ralloc.c (pic16_allocregWithName): removed debug output
598         * src/pic16/pcode.c (assignValnums): fixed #1460578
599
600 2006-04-11 Raphael Neider <rneider AT web.de>
601
602         * device/lib/pic/libdev/*.c,
603         * device/include/pic/*.h: replaced sfr and data with __sfr and __data,
604           fixes #1468739, enables compilation in --std-c99 mode
605         * support/scripts/inc2h.pl: emit __sfr/__data instead of sfr/data
606
607 2006-04-11 Raphael Neider <rneider AT web.de>
608
609         * src/pic/device.c (find_device): removed debug output
610           (list_valid_pics): enabled verbose listing of supported devices
611         * device/include/stdbool.h: define bool as char for pic14/16 as well
612
613 2006-04-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
614
615         * src/SDCC.y: allow using brackets here: "__interrupt (1) __using (1)"
616
617 2006-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
618
619         * .version: bumped version to 2.5.6
620         * src/pic/ralloc.c (newReg): MSVC doesn't support __builtin_return_address
621
622 2006-04-06 Raphael Neider <rneider AT web.de>
623
624         * .version: bumped version to 2.5.6 (pic14 ABI changed)
625         * src/SDCCmain.c: add -DSDCC_PROCESSOR=<id> for pic14 port
626         * src/pic/glue.c (emitSymbolToFile,pic14_constructAbsMap,
627           pic14emitRegularMap,pic14emitMaps): moved output for absolute symbols to
628             pic14_constructAbsMap
629           (pic14printPublics): declare absolute global symbols as global
630           (pic14createInterruptVect),
631         * src/pic/ralloc.c (IS_CONFIG_ADDRESS): support second config word,
632           (newReg): assume new registers unused, use correct name in
633             hashtable (reg->name instead of name), more debugLog output
634         * src/pic/device.h (PIC_device): added fields for verbose output
635         * src/pic/device.c: moved device definition to pic14devices.txt,
636             added routines for runtime parsing of pic14devices.txt,
637             added support for second config word
638         * src/pic/main.c (_process_pragma): removed #pragma maxram,
639           (_pic14_keywords): no longer accept "bit" and "sbit" keywords
640           (_pic14_initPaths): add search paths with "pic" suffix (not "pic14")
641           (_pic14_parseOptions): moved pCodeInitRegisters here
642           (_pic14_do_link): add "pic$(ARCH).lib" to linker arguments
643         * src/pic/pcode.c (AnalyzeBanking): bail out on unset processor,
644           (pCodeInitRegisters): rewrapped comments, perpared new approach to
645             handling the pseudo stack
646         * device/lib/Makefile.in: ignore failures in objects-pic16,
647         * device/lib/pic/{configure,configure.in,Makefile}: added libdev/
648         * device/lib/pic/NEWS: document new dependency on picXXX.lib
649         * device/lib/pic/Makefile.subdir,
650         * device/lib/pic16/Makefile.subdir: improved clean rules
651         * device/lib/pic/libdev/: NEW, pic14 device libraries
652         * device/lib/pic/libsdcc/_gptr{get,put}{1,2,3,4}.S: use _X not X
653         * device/lib/pic/libsdcc/macros.inc: use _X not X, declare default SFRs
654         * device/include/Makefile.in: create subdir and install pic14 headers
655         * device/include/pic/p16f_common.inc: removed unused declarations
656         * device/include/pic/pic16*.h: added header files for 100+ 14 bit
657             PICs from inc2h.pl v1.6,
658             replaced BIT_AT macros with struct declarations
659         * device/include/pic/pic14devices.txt: definition of supported devices,
660             all above improvements contributed by Zik Saleeba, thanks
661         * support/scripts/inc2h.pl: removed BIT_AT, replaced with structs
662         * support/scripts/sdcc.nsi: also install pic14 device libraries and
663             headers
664
665 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
666
667         * device/include/mcs51/c8051f410.h: added interrupt numbers,
668         * device/include/mcs51/c8051f200.h: old SiLabs mcu completes the list,
669           thanks to Charles Olds
670
671 2006-04-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
672
673         * debugger/mcs51/cmd.c (infoRegisters): show return address on stack
674
675 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
676
677         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug 1464657
678         * src/mcs51/gen.c (genJumpTab): fixed bug in medium model
679         * support/regression/bug1464657.c: added, new test
680
681 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
682
683         * src/SDCCmain.c (preProcess): implemented RFE 1449908, define SDCC as the
684           version number
685
686 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
687
688         * src/SDCCpeeph.c (initPeepHole): implemented RFE 1460196, when both
689           --no-peep and --peep-file <file> are used don't use default rules but
690           do use the <file>
691
692 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
693
694         * src/mcs51/gen.c (genCall): fixed bug 1457608
695
696 2006-03-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
697
698         * doc/sdccman.lyx: reverted to version 1.129 of december as my latest
699         changes seem to cause (trigger?) problems with the build system.
700
701 2006-03-29 Maarten Brock <sourceforge.brock AT dse.nl>
702
703         * src/SDCCpeeph.c (operandsLiteral): new, added,
704           (callFuncByName): inserted operandsLiteral
705         * src/mcs51/peeph.def: reenabled 132.e, added extra check to 132.x
706
707 2006-03-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
708
709         * doc/sdccman.lyx: added paragraph "Use of SDCC in Education"
710         * src/mcs51/peeph.def: disabled rule 132.e fixing bug #1453093
711
712 2006-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
713
714         * src/z80/gen.c (genFunction, genEndFunction): fixed bug 1160666,
715           implemented patch 1120823 Thanks to Willy De la Court (normal
716           interrupts need an interrupt number now if they are made critical),
717           and enabled nesting of critical functions though not for gbz80
718           (genCritical, genEndCritical): added functions
719           (genZ80Code): added cases for CRITICAL and ENDCRITICAL
720         * src/z80/mappings.i: added "ei" to all mappings
721
722 2006-03-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
723
724         * sim/ucsim/cmd.src/newcmdcl.h: applied patch fixing GCC 4.1 build
725         submitted by the Debian SDCC maintainer Aurelien Jarno:
726         "Credits goes to Martin Michlmayr, who rebuilt the whole Debian
727         archive with gcc 4.1 on mips and wrote the patch"
728
729 2006-03-16 Raphael Neider <rneider AT web.de>
730
731         * src/pic16/genarith.c (genAddLit): simplified and fixed case where
732           the left operand is shorter than the result (c* = lit-c* + int),
733           fixes bug #1450796
734         * src/pic16/gen.c (genRightShift): check IS_SYMOP before accessing
735           OP_SYMBOL
736
737 2006-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
738
739         * src/.version: increased version number to 2.5.5
740         * src/SDCCmain.c (linkEdit): do not test for PIC16 target since, PIC16
741         linking is done manually in pic16 port's _linkEdit,
742         * src/SDCCsymt.c (compStructSize): for target PIC16 and shell variable
743         PIC16_PACKED_BITFIELDS, compact bitfield structures as much as possible,
744         * src/pic16/gen.c (aopForSym): when direct register name is WREG then
745         allocate asmop as AOP_ACC,
746         (aopForRemat): added parameter 'bool result' in function declaration,
747         (pic16_aopGet): return AOP_ACC when accessing WREG,
748         (pic16_popGetTempReg): minor modification,
749         (pic16_popRegFromIdx): first try with 'pic16_regWithIdx' then with
750         'pic16_allocWithIdx',
751         (genPcall): removed ftype, usage of OP_SYM_TYPE asserted error when
752         calling function in absolute addresses,
753         (genAssign): take into account AOP_ACC asmop,
754         * src/pic16/pcode.c (pic16_newpCodeOpReg): minor modifications,
755         * src/pic16/pcoderegs.c: some debug functions and lines added,
756         * src/pic16/ralloc.c (decodeRegType): added but commented out,
757         * (pic16_typeRegWithIdx): search 'pic16_dynInternalRegs' for given
758         register too,
759         * (pic16_findFreeReg, pic16_findFreeRegNext): allocate new register via
760         call to allocReg, not by manually allocating a new one,
761         (pic16_assignRegisters): now before going through the register
762         allocating functions mark all registers as free. This eliminates some
763         side effects resulting from peephole parser done earlier in the backbone
764
765 2006-03-13 Maarten Brock <sourceforge.brock AT dse.nl>
766
767         * src/SDCCicode.c (geniCodeLogic),
768         * src/SDCCast.c (decorateType): applied patch by Bernhard for rfe 1422617
769
770 2006-03-10 Maarten Brock <sourceforge.brock AT dse.nl>
771
772         * src/mcs51/gen.c (sameReg): new, checks if two aop regs are the same,
773           (genSend): bugfix, do not allocate and free twice,
774           (shiftRLong): handle partially overlapping aops
775         * support/regression/tests/bitopcse.c: fixed warning redefined idata
776
777 2006-03-08 Borut Razem <borut.razem AT siol.net>
778
779         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata
780           for pic16
781
782 2006-03-08 Maarten Brock <sourceforge.brock AT dse.nl>
783
784         * support/regression/tests/bug1409955.c: new, added
785         * src/mcs51/gen.h: changed asmop.freed:1 to asmop.allocated for tracking
786         * src/mcs51/gen.c (newAsmop): set asmop.allocated to 1,
787           (aopForSym, aopOp): increment asmop.allocated if reused,
788           (freeAsmop): decrement asmop.allocated and check for zero instead of
789           using asmop.freed,
790           (freeForBranchAsmop): use asmop.allocated instead of asmop.freed,
791           (genNot, genCpl, genUminus, genMinus, genMult, genDiv, genMod, genCmpGt,
792            genCmpLt, genAndOp, genOrOp, genAnd, genOr, genXor, genRRC, genRLC,
793            genGetHbit, genGetAbit, genGetByte, genGetWord, genSwap,
794            genLeftShiftLiteral, genLeftShift, genRightShiftLiteral,
795            genSignedRightShift, genRightShift, genDataPointerGet,
796            genPagedPointerGet, genFarPointerGet, genCodePointerGet,
797            genGenPointerGet, genDataPointerSet, genAssign, genCast): free asmop's
798             in reverse order from allocation,
799           (genPlus, genCmpEq): free asmop's in reverse order from allocation and
800             added swappedLR to keep track
801         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata,
802           pdata & code for GCC, z80, gbz80 & hc08
803         * support/regression/tests/zeropad.c: moved defines to testfwk.h
804
805 2006-03-08 Raphael Neider <rneider AT web.de>
806
807         * src/pic16/main.c (_hasNativeMulFor): fixed bug #1444425
808
809 2006-03-07 Maarten Brock <sourceforge.brock AT dse.nl>
810
811         * device/include/mcs51/c8051f410.h: new SiLabs mcu
812         * src/ds390/peeph.def: disabled 186.d and 227.a as fix for #1434401
813         * support/regression/tests/array.c: added parenthesis, made arrays unsigned
814
815 2006-03-06 Borut Razem <borut.razem AT siol.net>
816
817         * support/regression/ports/pic16/spec.mk: link with libm18f.lib,
818           made the linker quiet
819
820 2006-03-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
821
822         * src/pic16/gen.c (genPcall): fixed bug #1443644
823         * src/pic16/device.h (struct pic16_options_t): added 'int CATregs' flag
824         which dumps before the function entry point a data byte which represents
825         the number of the local variables used by the specified function, added
826         'xinst' for initial support for Extended Instruction Support,
827         * src/pic16/gen.c (aopForSym, pic16_aopGet): beautifications,
828         (pic16_testStackOverflow): do not prefix GSTACK_TEST_NAME with
829         port->fun_prefix anymore (may change later),
830         (genFunction, genEndFunction): do not store/restore local registers for
831         _main (this should take care the --main-return command line option in
832         the future),
833         (genOr): removed some legacy pic-port instructions,
834         * src/pic16/genarith.c (genAddLit): re-enabled old code because
835         performing operations with SFR's causes data to be written more than
836         once to each SFR. Perhaps SFRs should be handled in special cases...
837         * src/pic16/glue.c: macros BIG_ENDIAN and BYTE_IN_LONG are moved to
838         pcode.h
839         * src/pic16/main.c (_process_pragma): stack bound checking did not take
840         into account for stack starting position,
841         (struct OPTIONS pic16_optionsTable): added command line argument
842         --extended or -y for Extended Instruction Support,
843         * src/pic16/ralloc.c (pic16_decodeOp): added case for FUNCTION,
844         (deassignLRs): *** perhaps the most important change, old 'for' code
845         (commented out for reference), didn't account for some registers which
846         were left marked 'not free' after a pointer operation. The change
847         reduces register usage a lot in some cases
848
849 2006-03-04 Borut Razem <borut.razem AT siol.net>
850
851         * support/regression/ports/hc08/spec.mk: remove *.asm in traget
852           _clean
853         * support/regression/tests/bug-524697.c: decreased array size for
854           mcs51 to fit into the internal RAM
855         * support/regression/Makefile.in: a little bit more verbose
856
857 2006-03-03 Borut Razem <borut.razem AT siol.net>
858
859         * support/regression/fwk/lib/testfwk.c,
860           support/regression/fwk/include/testfwk.h: introduced function
861           _prints(), nonrecursive _printn(), call _initEmu() from main()
862         * support/regression/ports/gbz80/support.asm,
863           support/regression/ports/ucz80/support.asm,
864           support/regression/ports/z80/support.asm,
865           support/regression/ports/ds390/support.c,
866           support/regression/ports/hc08/support.c,
867           support/regression/ports/host/support.c,
868           support/regression/ports/mcs51/support.c,
869           support/regression/ports/xa51/support.c: added empty _initEmu()
870           function
871         * support/regression/ports/pic16/gpsim.cmd,
872           support/regression/ports/pic16/spec.mk,
873           support/regression/ports/pic16/support.c,
874           support/regression/Makefile.in: added pic16 regression test
875
876 2006-03-01 Raphael Neider <rneider AT web.de>
877
878         * src/pic16/gen.c (genPcall,pic16_derefPtr,genGenPointerGet,
879           genConstPointerGet): use safe way of generating MOVFF to cover
880             literals as well as registers, fixes bug #1440527
881         * src/pic16/glue.c (pic16_printIvalBitFields): prevent NULL pointer
882             dereference
883           (pic16_printIvalUnion,pic16_isUnion): NEW, handle initialized unions
884             more correctly, fixes bug #1232186
885           (pic16_printIval): use pic16_printIvalUnion() for initialized unions
886         * src/pic16/main.c (_pic16_linkEdit): reorder linker arguments to make
887             gplink guess the correct processor in more cases, applied patch
888             from Till Riedel attached to and fixing bug #1436552
889
890 2006-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
891
892         * support/regression/tests/array.c: added, contains check for #1434401
893         * src/mcs51/peeph.def: disabled 186.d as temporary fix for #1434401
894
895 2006-02-16 Maarten Brock <sourceforge.brock AT dse.nl>
896
897         * device/include/mcs51/at89s8253.h: new, thanks to Krzysztof Polomka
898         * device/include/mcs51/at89S8252.h: fixed, thanks to Krzysztof Polomka
899         * device/include/mcs51/c8051f326.h,
900         * device/include/mcs51/c8051f340.h: new SiLabs mcu's
901         * device/include/mcs51/c8051f000.h,
902         * device/include/mcs51/c8051f018.h,
903         * device/include/mcs51/c8051f020.h: used () with __at, renamed IDLE,STOP to
904           PCON_IDLE,PCON_STOP and added sfr16 definitions
905
906 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
907
908         * src/mcs51/gen.c (genPlus, genMinus, genMult, genGetAbit, genGetByte,
909           genGetWord): fixed bug 1409955
910
911 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
912
913         * device/include/hc08/mc68hc908gp32.h,
914         * device/include/hc08/mc68hc908jb8.h: removed AWUL, added PTA6 & PTA7
915
916 2006-02-13 Maarten Brock <sourceforge.brock AT dse.nl>
917
918         * src/SDCCast.c (constExprValue): return NULL if not a value
919         * src/SDCCglue.c (printIvalArray): fixed bug 1225568
920         * src/hc08/gen.c(genUnpackBits, genUnpackBitsImmed): fixed bug 1019480
921         * support/regression/tests/bitfields.c: enabled signed bitfield for all
922
923 2006-02-13 Borut Razem <borut.razem AT siol.net>
924
925         * src/regression/ptrarg.c: added, fails due to bug #1430967
926         * src/regression/Makefile: ptrarg.c added, ...
927
928 2006-02-12 Maarten Brock <sourceforge.brock AT dse.nl>
929
930         * src/z80/gen.c (genUnpackBits): fixed bug 1019480
931         * support/regression/tests/bitfields.c: enabled signed bitfield for z80
932
933 2006-02-11 Borut Razem <borut.razem AT siol.net>
934
935         * src/SDCCmain.c: Added "sdcc: Calling linker..." if --verbose,
936           print "Processor: xxx" message to stdout only if --verbose
937
938 2006-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
939
940         * src/SDCCglue.c (printIvalStruct): fixed bug 1426356 union initializer
941         * support/regression/tests/bug1426356.c: added
942         * support/regression/tests/bitfields.c: removed 2 tests
943
944 2006-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
945
946         * device/include/mcs51/at89c51snd1c.h: updated comments, see patch 1428901
947         * device/include/mcs51/c8051f330.h,
948         * device/include/mcs51/c8051f350.h: used () with __at, renamed IDLE,STOP to
949           PCON_IDLE,PCON_STOP and added sfr16 definitions
950         * device/lib/_divsint.c,
951         * device/lib/_divuint.c,
952         * device/lib/_divulong.c,
953         * device/lib/_divulong.c: renamed a,b to x,y to avoid confusion, fixed
954           register bank bug for small stackauto
955
956 2006-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
957
958         * support/regression/fwk/lib/timeout.c: include <stdlib.h> for exit()
959
960 2006-02-08 Maarten Brock <sourceforge.brock AT dse.nl>
961
962         * support/regression/ports/mcs51-xstack-auto/spec.mk: forgot -I(...)/mcs51
963         * all.dsp: corrected several bin paths
964         * device/include/mcs51/c8051f120.h,
965         * device/include/mcs51/c8051f300.h,
966         * device/include/mcs51/c8051f310.h: used () with __at and renamed IDLE,STOP
967           to PCON_IDLE,PCON_STOP
968         * device/include/mcs51/c8051f320.h: see above, also added sfr16 definitions
969         * device/lib/printf_large.c (output_float): fixed bug 1388703
970         * support/regression/tests/bug1057979.c: added test for bug 1388703
971
972 2006-02-08 Raphael Neider <rneider AT web.de>
973
974         * src/pic/pcode.c (pciTRIS): fixed typo,
975           (BuildFlow,LinkFlow_pCode): added (disabled) debug output,
976           (LinkFlow): fixed handling of flows that end in a call,
977           (ReuseReg): perform safety check earlier
978         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed
979             to work with flows at the beginning of a pBlock,
980             fixes #1426557 (Symbol not previously defined),
981           (pic14_ReMapLiveRanges): NEW, destroy and rebuild register
982             usage information
983           (RemoveUnusedRegisters): update register usage info
984         * src/pic/ralloc.c (newReg): prevent duplicate registers from being
985             created, reuse existing ones instead
986         * src/pic/gen.c (genPcall): fixed #1424719
987
988 2006-02-07 Bernhard Held <bernhard AT bernhardheld.de>
989
990         * link/z80/lkmain.c,
991         * link/z80/lklex.c,
992         * link/z80/lkdata.c,
993         * link/z80/aslink.h: fixed build on current cygwin:
994         replaced getline() by lk_getline()
995
996 2006-02-01 Borut Razem <borut.razem AT siol.net>
997
998         * src/regression/add.c, src/regression/add2.c, src/regression/add3.c,
999           src/regression/add4.c, src/regression/and1.c, src/regression/and2.c,
1000           src/regression/arrays.c, src/regression/b.c, src/regression/bank1.c,
1001           src/regression/bool1.c, src/regression/bool2.c,
1002           src/regression/bool3.c, src/regression/call1.c,
1003           src/regression/compare.c, src/regression/compare10.c,
1004           src/regression/compare2.c, src/regression/compare3.c,
1005           src/regression/compare4.c, src/regression/compare5.c,
1006           src/regression/compare6.c, src/regression/compare7.c,
1007           src/regression/compare8.c, src/regression/compare9.c,
1008           src/regression/configword.c, src/regression/for.c,
1009           src/regression/inline.c, src/regression/mult1.c,
1010           src/regression/nestfor.c, src/regression/or1.c,
1011           src/regression/pointer1.c, src/regression/ptrfunc.c,
1012           src/regression/rotate1.c, src/regression/rotate2.c,
1013           src/regression/rotate3.c, src/regression/rotate4.c,
1014           src/regression/rotate5.c, src/regression/rotate6.c,
1015           src/regression/rotate7.c, src/regression/string1.c,
1016           src/regression/struct1.c, src/regression/sub.c,
1017           src/regression/sub2.c, src/regression/switch1.c,
1018           src/regression/while.c, src/regression/xor.c,
1019           src/regression/create_stc, src/regression/simulate,
1020           src/regression/rt.sh, src/regression/Makefile: reenabled Scott's PIC14
1021           regression tests
1022         * src/regression/gpsim_assert.h: added
1023
1024 2006-01-28 Bernhard Held <bernhard AT bernhardheld.de>
1025
1026         * src/ds390/gen.c (unsaveRegisters): fixed literal function pointer
1027         ((void (code *) (void)) 0) ();
1028         * as/hc08/aslex.c,
1029         * as/hc08/aslink.h,
1030         * as/hc08/asm.h,
1031         * as/hc08/asmain.c,
1032         * as/hc08/lkdata.c,
1033         * as/hc08/lklex.c,
1034         * as/hc08/lkmain.c,
1035         * as/mcs51/aslex.c,
1036         * as/mcs51/aslink.h,
1037         * as/mcs51/asm.h,
1038         * as/mcs51/asmain.c,
1039         * as/mcs51/lkdata.c,
1040         * as/mcs51/lklex.c,
1041         * as/mcs51/lkmain.c,
1042         * as/z80/aslex.c,
1043         * as/z80/asm.h,
1044         * as/z80/asmain.c: fixed build on current cygwin:
1045         replaced getline() by as_getline()
1046
1047 2006-01-27 Bernhard Held <bernhard AT bernhardheld.de>
1048
1049         * src/SDCC.y: fixed bug #716242, exchanged pointer and function
1050         declarator in the symbol chain
1051         * src/SDCCsymt.h,
1052         * src/SDCCsymt.c (processFuncPtrArgs): added, removes "(void)"
1053         parameter list for function pointers
1054         * src/SDCCast.c (decorateType): added call of processFuncPtrArgs()
1055         * support/regression/tests/bug-716242.c: added
1056
1057 2006-01-20 Bernhard Held <bernhard AT bernhardheld.de>
1058
1059         * src/SDCCicode.c (geniCodeAdd, geniCodeArray): use char for array
1060         offset if possible
1061         * src/SDCCast.c (getLeftResultType): 255 fits in char, not 256
1062
1063 2006-01-18 Bernhard Held <bernhard AT bernhardheld.de>
1064
1065         * src/SDCCast.c (backPatchLabels): fixed bug #1408066: made it
1066         inifinitely recurseable, added static
1067         * support/regression/tests/bug-1408066.c: added
1068
1069 2006-01-17 Bernhard Held <bernhard AT bernhardheld.de>
1070
1071         * src/SDCCicode.h,
1072         * src/SDCCicode.c (newiTempPreheaderLabel, newiTempLoopHeaderLabel):
1073         renamed, added possibility to create "postLoopLbl"-labels
1074         * src/SDCCBBlock.c (iCodeBreakDown): renamed newiTempPreheaderLabel to
1075         newiTempLoopHeaderLabel
1076         * src/SDCCloop.c (newInduction, newRegion, backEdges, insertIntoLoop,
1077         isNotInBlocks, addToExitsMarkDepth, createLoop, dominatedBy,
1078         addDefInExprs, assignmentsToSym, isOperandInvariant, pointerAssigned,
1079         hasNonPtrUse, loopInvariants, addressTaken, findInduction,
1080         findDefInRegion, mergeRegions, ifMerged, mergeInnerLoops): made static,
1081         (pinduction, pregion, hasIncomingDefs, findLoopEndSeq): disabled,
1082         (basicInduction): fixed bug #136564, made static,
1083         (loopInduction): changed parameter of basicInduction, made static,
1084         (addPostLoopBlock): added
1085         * src/SDCCloop.h: removed backEdges, pregion, pinduction,
1086         loopOptimizations, addressTaken, findDefInRegion, hasIncomingDefs,
1087         findLoopEndSeq
1088         * support/regression/tests/bug-136564.c: added
1089         * support/regression/ports/mcs51-xstack-auto/spec.mk: added
1090         --std-sdcc99 to LIBSDCCFLAGS
1091
1092 2006-01-16 Bernhard Held <bernhard AT bernhardheld.de>
1093
1094         * src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false
1095         while loop
1096         * support/regression/tests/bug-1406131.c: added
1097
1098 2005-12-31 Bernhard Held <bernhard AT bernhardheld.de>
1099
1100         * src/SDCCast.c (decorateType): fix promotion of unary minus
1101         * src/SDCCsymt.c (computeType): beautified
1102         * src/SDCCval.c (cheapestVal): beautified, old non-Ansi version removed,
1103         (valUnaryPM, valComplement): fix sign and promotion,
1104         (valNot): ANSI: result type is int (SDCC: unsigned char)
1105         * support/regression/tests/uminus.c: speedup by removing superflous
1106         test case 'int'
1107         * support/regression/tests/onebyte.c: added promotion and signedness
1108         tests for unary minus
1109         * support/regressions/tests/bug-477927.c: disable warning about
1110         uninitialized variables
1111         * support/regression/tests/not.c: added
1112
1113 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
1114
1115         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
1116         * src/mcs51/gen.c (gen51Code): show final register usage after
1117         fillGaps in asm with --i-code-in-asm
1118         * src/SDCClrange.c (sequenceiCode, setLiveFrom, setLiveTo,
1119         markLiveRanges, markAlive, findNextUseSym, findNextUse, unvisitBlocks,
1120         incUsed, rliveClear, adjustIChain): made static,
1121         (setFromRange): excluded because it's unused,
1122         (findPrevUseSym, markWholeLoop): added,
1123         (findPrevUse): rewritten; fixes bug 895992; now a complete search
1124         through all branches of predecessors enables sdcc to emit the warning
1125         W_LOCAL_NOINIT, marking of outermost loop was incomplete,
1126         (rlivePoint): made static, added parameter emitWarnings which is only
1127         true during the first run out of two,
1128         (findRecursiveSucc, findRecursivePred): removed,
1129         (computeLiveRanges): made static, added parameter emitWarnings,
1130         (dumpIcRlive): added for debugging only
1131         * src/SDCClrange.h: added boolean parameter to computeLiveRanges(),
1132         removed prototype of setFromRange()
1133         * src/SDCCopt.c (eBBlockFromiCode): added new parameter emitWarnings
1134         in call of computeLiveRanges()
1135         * support/regression/tests/bug-895992.c: added
1136         * support/regression/tests/bug-971834.c: added
1137         * support/valdiag/tests/bug-895992.c: added
1138         * support/valdiag/tests/bug-971834.c: added
1139
1140 2005-12-18 Raphael Neider <rneider AT web.de>
1141
1142         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
1143           (genUnpackBits): improved code for direct operands,
1144           (genPackBits): improved code for literal assignment to bitfields
1145             and for direct destination operands (no FSR indirection),
1146             prevented redundant AND, fixes #1362800,
1147           (AccLsh): added parameter to disable masking of the result
1148         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
1149           skip instructions with side-effects (like incfsz),
1150           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
1151         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
1152         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
1153           fixes #1375263
1154
1155 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
1156
1157         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
1158         volatile variables as spill location
1159
1160 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
1161
1162         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
1163         replacing literals
1164         * support/regression/tests/bug-1376320.c: added
1165
1166 2005-12-08 Raphael Neider <rneider AT web.de>
1167
1168         * src/pic/device.c: renamed is_shared to pic14_is_shared
1169         * src/pic/gen.c (genIfx): re-enabled handling of sbits
1170         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
1171           (is_valid_identifier): added for above workaround
1172
1173 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
1174
1175         * device/lib/Makefile.in: fixed to enable port-specific-objects
1176         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
1177           char, thanks Hubert Sack
1178         * doc/sdccman.lyx: documented --xstack-loc,
1179           elaborated a bit more on interrupts and pitfalls,
1180           removed "setjmp/longjmp unsupported",
1181           documented some unsupported C99 features
1182         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
1183         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
1184           if, thanks Hubert Sack
1185         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
1186         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
1187           make make_library
1188         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
1189           regression tests can report resource usage (rfe 700441)
1190         * support/regression/collate-results.py: report resource usage
1191         * support/regression/ports/ds390/spec.mk,
1192         * support/regression/ports/hc08/spec.mk,
1193         * support/regression/ports/mcs51/spec.mk,
1194         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
1195         * support/regression/ports/ds390/uCsim.cmd,
1196         * support/regression/ports/hc08/uCsim.cmd,
1197         * support/regression/ports/mcs51/uCsim.cmd,
1198         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
1199         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
1200           library, use the default one
1201         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
1202           building the library
1203
1204 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
1205
1206         * config.dsp: added dependency on .version and configure_vc.awk
1207         * device/include/setjmp.h: updated for --stack-auto and --xstack
1208         * device/include/mcs51/at89c51snd1c.h: corrected line endings
1209         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
1210         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
1211         * device/lib/libsdcc.lib: added _setjmp
1212         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
1213           (decorateType): fixed bug 1372851,
1214           (optimizeGetHbit): fixed warning
1215         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
1216           array initialisation
1217         * support/regression/tests/bug1057979.c: added test for bug 1358192
1218         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
1219
1220 2005-12-03 Borut Razem <borut.razem AT siol.net>
1221
1222         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
1223           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
1224
1225 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
1226
1227         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
1228         createIval): implement symbol independant "flexible array member",
1229         (createIvalCharPtr): implemented flexible array initialisation with a
1230         string
1231         * src/SDCCsymt.c (copyStruct): removed,
1232         (getSize): fixed misleading comment,
1233         (getAllocSize): removed, the additional allocation size is now in
1234         sym->flexArrayLength,
1235         (checkStructFlexArray): new, syntax checks for flexible array members,
1236         (compStructSize): added syntax checks for "flexible array members"
1237         (copyStruct): removed,
1238         (copyLinkChain): removed inefficient fix for bug 770487
1239         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
1240         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
1241         symbol->flexArrayLength
1242         * src/SDCCerr.c,
1243         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
1244         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
1245         * support/regression/tests/structflexarray.c: added
1246         * support/valdiag/tests/structflexiblearray.c: added
1247
1248 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
1249
1250         * src/SDCCast.c (decorateType): fixed bug 1368489
1251         * support/Util/SDCCerr.c,
1252         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
1253
1254 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1255
1256         * device/include/mcs51/at89c51snd1c.h: added file submitted by
1257           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
1258
1259 2005-11-27 Borut Razem <borut.razem AT siol.net>
1260
1261         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
1262           support/cpp2/mkdeps.h: added command line option
1263           -obj-ext=<extension> to SDCPP to define object file externion, used
1264           for generation of make dependencies (-M)
1265         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
1266
1267 2005-11-26 Borut Razem <borut.razem AT siol.net>
1268
1269         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
1270           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
1271           added pic and pic16 libraries
1272
1273 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1274
1275         * device/include/float.h: Corrected typo in prototype of __fsgt
1276
1277 2005-11-25 Borut Razem <borut.razem AT siol.net>
1278
1279         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
1280           added creation of model-mcs51-stack-auto libraries
1281
1282 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
1283
1284         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
1285         and fields-list too
1286         * src/SDCCast.c (createIvalArray): removed obsolete comment
1287
1288 2005-11-24 Borut Razem <borut.razem AT siol.net>
1289
1290         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
1291           added missing device/lib/mcs51/crt*.asm sources
1292
1293 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
1294
1295         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
1296
1297 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
1298
1299         * device/lib/_fs2schar.c,
1300         * device/lib/_fs2sint.c,
1301         * device/lib/_fs2slong.c: optimized inline asm
1302
1303 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1304
1305         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
1306           Better handling of floats between -1.0 and 0.0.
1307
1308 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1309
1310         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
1311           (the missing "if"s prohibited removal of redundant labels)
1312
1313 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1314
1315         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
1316           Properly convert floats between -1.0 and 0.0 to long, int, and char
1317           types (max integer value of negative floats tends to zero).
1318         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1319           Removed changes made so to work properly with floats between
1320           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
1321           and _fs2char.c
1322
1323 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1324
1325         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
1326         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
1327         (genCast) cosmetic change
1328         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
1329         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
1330         from mcs51
1331         * support/regression/tests/bitfields (testSignedBitfields): added
1332
1333 2005-11-18 Borut Razem <borut.razem AT siol.net>
1334
1335         * sdcc/device/lib/Makefile.in: remove all unnecessary files
1336         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
1337           introduced SILENT option to make building of pic16 libraries less
1338
1339 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1340
1341         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1342           Now they work properly with floats between -1.0 and 0.0
1343         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
1344
1345 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
1346
1347         * src/SDCCicode.c (printOperand): added missing else
1348
1349 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1350
1351         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
1352         reformatted for better readability
1353         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
1354         signed bitfields
1355
1356 2005-11-17 Borut Razem <borut.razem AT siol.net>
1357
1358         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
1359           introduced SILENT option to make building of pic16 libraries less
1360           verbose - used for nightly snapshot build
1361         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
1362           available on Win32 platforms.
1363         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
1364           medium, large, pic and pic16
1365
1366 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1367
1368         * device/lib/printf_large.c: Temporary patch for bug 1358192:
1369           printf("%f"...) sets fraction to zero.
1370
1371 2005-11-16 Raphael Neider <rneider AT web.de>
1372
1373         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
1374           fixes #1357221
1375         * src/pic/gen.c (genIfx): implemented for CARRY bit
1376         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
1377           to generic pointers, fixes #1357332,
1378           (pic16_movLit2f): NEW,
1379           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
1380
1381 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
1382
1383         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
1384
1385 2005-11-11 Raphael Neider <rneider AT web.de>
1386
1387         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
1388         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
1389           compute pointer's type from operand,
1390           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
1391           improved single bit reads, fixes bug #1353379
1392
1393 2005-11-09 Borut Razem <borut.razem AT siol.net>
1394
1395         * support/scripts/sdcc.nsi: added lib/pic to the package
1396
1397 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
1398
1399         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
1400
1401 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
1402
1403         * support/regression/tests/bug1348008.c: added
1404         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
1405         * support/regression/tests/bug1337835.c: updated comment
1406
1407 2005-11-06 Borut Razem <borut.razem AT siol.net>
1408
1409         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1410           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1411           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1412           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1413           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
1414           dynamic construction of cl_error_class and derivates - 2.nd try
1415
1416 2005-11-05 Borut Razem <borut.razem AT siol.net>
1417
1418         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
1419           bug, which caused Bus Errors on sparc solaris
1420
1421 2005-11-04 Borut Razem <borut.razem AT siol.net>
1422
1423         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1424           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1425           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1426           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1427           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
1428           and derivates to resolve the initialization problem on OSX
1429
1430 2005-11-02 Borut Razem <borut.razem AT siol.net>
1431
1432         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1433           corrected typo - #include <winsock2.h>
1434
1435 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
1436
1437         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
1438           (_asxxxx_mapping): added org directive for future enhancements
1439
1440 2005-11-01 Borut Razem <borut.razem AT siol.net>
1441
1442         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1443           enabled sockets on WIN32
1444         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
1445
1446 2005-10-31 Borut Razem <borut.razem AT siol.net>
1447
1448         * support/regression/generate-cases.py: escape backslashes in {testcase}:
1449           WIN32 backslash path delimiters should be escaped when used in C strings
1450         * support/regression/tests/bitfields.c: exclude failing assertions for
1451           __CYGWIN32__ and __MINGW32__ hosts
1452
1453 2005-10-30 Borut Razem <borut.razem AT siol.net>
1454
1455         * src/SDCCutil.c: corrected double comparison typo
1456
1457 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
1458
1459         * device/lib/medium/Makefile: added for new memory model medium
1460         * device/include/asm/mcs51/features.h: updated for medium/pdata
1461         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
1462           added Multiply & Accumulate sbit's and MAC0_PAGE define
1463         * device/include/mcs51/c8051f300.h: added sfr16 definitions
1464         * device/include/mcs51/c8051f310.h: added sfr16 definitions
1465         * device/lib/_mullong.c: update for medium model
1466         * device/lib/incl.mk: added medium model
1467         * doc/sdccman.lyx: documented medium model
1468         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
1469         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
1470         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
1471         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
1472           (allocParms): set SCLS and OCLS to pdata for medium model
1473         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
1474           for pdata,
1475           (powof2): return <0 if not power of 2
1476         * src/avr/gen.c (genBitWise): use updated powof2
1477         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
1478           (shiftR2Left2Result): small optimization in setup, save acc when storing,
1479           (shiftLLeftOrResult): use B if necessary
1480         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
1481         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
1482         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
1483         * support/regression/Makefile.in: added test-mcs51-medium
1484         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
1485
1486 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
1487
1488         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
1489         specifier unsigned
1490         * device/lib/time.c (mktime): fixed bug 1334315
1491
1492 2005-10-28 Raphael Neider <rneider AT web.de>
1493
1494         * device/include/pic/p16f_common.inc: added common declarations
1495         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
1496
1497 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1498
1499         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
1500           (aopPutUsesAcc): added to predict accumulator use,
1501           (assignResultValue): save acc if necessary,
1502           (genMinusDec): store result if indirectly addressed,
1503           (genDivOneByte):  save acc if necessary,
1504           (movLeft2Result): bugfix if left already in acc,
1505           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
1506             attention to accumulator use (esp. pdata),
1507           (genReceive): receive pdata correctly
1508         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
1509         * src/SDCCicode.h: added isOperandInPagedSpace prototype
1510
1511 2005-10-27 Raphael Neider <rneider AT web.de>
1512
1513         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
1514
1515 2005-10-27 Raphael Neider <rneider AT web.de>
1516
1517         * .version: changed version to 2.5.4
1518         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
1519         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
1520           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
1521             arithmetics support routines
1522         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
1523         * device/lib/Makefile.in: also create installdir for pic
1524
1525         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
1526           pic14 port as well
1527         * src/pic/device.c (dump_sfr): rewritten to delegate register
1528           placement to the linker (use `extern sym' rather than sym EQU addr),
1529           (validAddress): fixed to check last specified address
1530         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
1531           (popGetLit): truncate literal value to 8 bit,
1532           (popGet): moved assert to more appropriate place
1533           (popGetExternal): create pCode operand from and mark the according
1534             symbol as being `extern'
1535           (popGetAddr): added sanity check on immediate's offset, provide
1536             GPOINTER tag on demand
1537           (aopPut): fixed for immediates,
1538           (mov2w_op): move operand's address or contents to WREG (depending on
1539             operand type), safer variant of mov2w,
1540           (movwf,call_libraryfunc): NEW, handy abbreviations,
1541           (get_argument_pcop,get_return_val_pcop,pass_argument,
1542           get_returnvalue): interface for accessing function parameters and
1543             return values,
1544           (assignResultValuei,genRet): use new parameter/return value interface
1545           (pic14_getDataSize): back to old version handling generic pointers,
1546           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
1547             provided implementation and/or fixed old one,
1548           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
1549             calls, removed legacy 8051 reference code
1550           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
1551           (loadSignToC): NEW, move the operands sign bit to CARRY,
1552           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
1553             genRightShiftSigned, accepts negative shift counts,
1554           (setup_fsr): load FSR and adjust IRP (indirect memory access),
1555           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
1556             generic pointers, __data pointers and __code pointers,
1557           (genUnpackBits,genPackBits): rewritten to work with generic pointers
1558             and signed bitfields, limit bitfields to 8 bit,
1559           (genDataPointerGet): fixed number of bytes read,
1560           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
1561           (genPointerGet,genPointerSet): fixed handling of __code pointers,
1562             pointers to constant data are no longer assumed to point to __code
1563             space, removed invalid pointer types,
1564           (bitpatternFromVal): retrieve the PICs representation of an integer
1565             or float literal,
1566           (genDataPointerSet): fixed assigning to po_immediate operands,
1567           (genGenPointerSet): implemented as library call,
1568           (genIfx): fixed incorrect condition,
1569           (genAddrOf): limit generic pointers' addresses to 2 bytes,
1570             provide GPOINTER tag according to destination's storage class,
1571           (genCast): added code to handle casting to generic pointers, added
1572             sign-/zero extension of the result
1573           (aop_isLitLike,op_isLitLike): fixed handling of immediates
1574         * src/pic/gen.h: added macros to access IRP bit in STATUS register
1575         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
1576           extend the result
1577         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
1578           address/register resides in the shared banks
1579           (emitSymbolToFile): improved to handle global and `pinned' symbols,
1580             put all variables into separate sections (have the linker arrange
1581             them)
1582           (picglue): put init code and interrupt handlers in separate sections
1583         * src/pic/main.c: added port specific options table, modified to PORT
1584           structure to make GPOINTERs 3 byte, added pic14_options
1585           (_pic14_do_link): private linking routine (update paths to libraries,
1586             add libsdcc.lib by default)
1587         * src/pic/main.h: declare pic14_options
1588         * src/pic/pcode.c: fixed instructions i/o relations,
1589           (RegCond): reverted to correct version,
1590           (newpCodeOpLit): truncate literals to 8 bit,
1591           (genericPrint): added debug output,
1592           (getRegFromInstruction): fixed for various operand types, simplified
1593           (BuildFlow): fixed broken handling of isntructions with labels
1594           (LinkFlow): start at last instruction in flow (skip trailing comments),
1595             pass the flow on to the next instruction after CALL
1596           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
1597           (insertPCodeInstruction): fixed inserting after a skip instruction,
1598           (DoBankSelect): fixed for labeled instructions
1599           (OptimizepBlock): honor --nopeep switch
1600           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
1601         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
1602         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
1603           (pCodeOptime2pCodes): allow disabling this optimization via
1604             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
1605             but is still buggy), started implementation of a dataflow based
1606             pCode optimization (CSE + dead code elimination)
1607           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
1608         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
1609           names are independant of the stack location and therefore portable across
1610           devices
1611
1612 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1613
1614         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
1615           (selectSpil): fixed bug 1337835 by not spilling bit variables
1616         * support/regression/tests/bug1337835.c: added test for this bug
1617         * src/mcs51/peeph.def: restart after rule 3.c,
1618           addded rules 263.x to optimize loading constants
1619
1620 2005-10-26 Raphael Neider <rneider AT web.de>
1621
1622         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
1623         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
1624           (genAssign): emit warning when casting literals to generic pointer
1625             type, also applies when taking the address of a fixed variable,
1626           (genCast): improved casting to generic pointers
1627         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
1628           extern variables, added verbose error message
1629         * device/include/pic16/{string.h,errno.h}: added #pragma library c
1630
1631 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
1632
1633         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
1634         carry must be complemented too
1635         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
1636         could be emitted by genMinus
1637         * src/SDCCval.c (constVal): fixed bug 1305065
1638
1639 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
1640
1641         * src/SDCCast.c (addCast): added promotion for bit variables
1642         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
1643         promotion casts + optimisation
1644         (optimizeGetWord): fix warning 'i' might be used uninitialized
1645         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
1646         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
1647
1648 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
1649
1650         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
1651         all chars are promoted to int; promotion should be handled in SDCCast.c
1652
1653 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1654
1655         * device/lib/_strcmp.c: Fixed bug 1326457
1656
1657 2005-10-11 Raphael Neider <rneider AT web.de>
1658
1659         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
1660         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
1661
1662 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
1663
1664         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
1665         * support/regression/tests/sfr16.c: added test for the sfr32 bug
1666
1667 2005-10-04 Raphael Neider <rneider AT web.de>
1668
1669         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
1670           device/lib/pic16/pics.all: added pic18f1320
1671         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
1672
1673 2005-09-30 Raphael Neider <rneider AT web.de>
1674
1675         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
1676         * src/pic16/devices.inc: NEW, provides device descriptions
1677         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
1678
1679 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
1680
1681         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
1682           GETHBIT
1683
1684 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
1685
1686         * doc/sdccman.lyx: updated Highest Order Bit documentation,
1687           documented Any Order Bit, Higher Order Byte and Higher Order Word
1688         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
1689         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
1690           (optimizeGetAbit): new, to get any bit, not only the high bit,
1691           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
1692           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
1693           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
1694           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
1695             RIGHT_OP: also try GETBYTE, GETWORD optimization,
1696             GETABIT, GETBYTE, GETWORD: decorate them,
1697           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
1698           (ast_print): added GETABIT, GETBYTE, GETWORD
1699         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
1700         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
1701           (geniCodeBinary): new generic binary icode,
1702           (ast2iCode): added GETABIT, GETBYTE, GETWORD
1703         * src/port.h: updated comment for PORT.hasExtBitOp
1704         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
1705           (genGetByte): new, to get a single byte,
1706           (genGetWord): new, to get a word from a long,
1707           (gen51Code): added GETABIT, GETBYTE, GETWORD
1708         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
1709
1710 2005-09-23 Raphael Neider <rneider AT web.de>
1711
1712         * configure.in, configure: have device/lib/pic configured
1713         * device/lib/Makefile.in: added model-pic14
1714         * device/lib/clean.mk: added pic/ to clean rule
1715         * device/lib/pic: added rudimentary pic14 library providing support
1716           functions for multiplication/division/generic pointer access
1717         * src/SDCCopt.c (convilong): mark support functions as extern
1718           for pic14 port as well
1719         * src/pic/gen.c (genMult): added assertions,
1720           (genpic14Code): emit warning on unhandled iCodes
1721         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
1722         * src/pic/pcode.c (pCodeOpCopy),
1723         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
1724           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
1725           SFR_REGISTER}), made safe for future extensions
1726         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
1727           instructions even if preceeded by SKIP instructions (also remove
1728           them); removed unused code
1729         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
1730           prevents leaving parts of the structure uninitialized after copying
1731
1732 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
1733
1734         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
1735           ago by me
1736         * support/regression/tests/addsub.c: added test for the bug
1737
1738 2005-09-21 Raphael Neider <rneider AT web.de>
1739
1740         * device/include/pic16/pic18f1220.h,
1741           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
1742         * device/lib/pic16/Makefile.rules: added missing opening paren
1743         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
1744           are provided in genutils.c,
1745           (genUminusFloat,genUminus,genCmpEq): added asserts on different
1746           operand/result sizes,
1747           (genCmp): assert on NULL pointers first, then check deref'ed values
1748         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
1749           result size
1750
1751 2005-09-18 Raphael Neider <rneider AT web.de>
1752
1753         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
1754           as these are now unused,
1755           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
1756         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
1757           local, avoids uninitialized pointer dereference on r->name
1758         * src/pic16/ralloc.c (newReg): fixed indentation
1759
1760 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
1761
1762         * src/SDCCval.c (constVal): fixed bug 730366
1763         * support/Util/SDCCerr.c,
1764         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
1765
1766 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
1767
1768         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
1769
1770 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
1771
1772         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
1773
1774 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
1775
1776         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
1777           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1778         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
1779           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1780         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
1781         * packihx/packihx.c (hexDigit): made c unsigned char
1782         * as/mcs51/lklibr.c (fndsym),
1783         * link/z80/lkgb.c (gb),
1784         * link/z80/lklibr.c (fndsym),
1785         * link/z80/lkrloc.c (relr),
1786         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
1787         * src/SDCC.lex (checkCurrFile, process_pragma),
1788         * src/SDCCglue.c (spacesToUnderscores),
1789         * src/SDCCmain.c (setParseWithComma, processFile),
1790         * src/asm.c (tvsprintf, printCLine),
1791         * src/avr/gen.c (emitcode, aopPut),
1792         * src/ds390/gen.c (emitcode),
1793         * src/hc08/gen.c (emitcode, emitinline),
1794         * src/mcs51/gen.c (emitcode, genInline),
1795         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1796           tokenizeLineNode),
1797         * src/pic/ralloc.c (debugLog),
1798         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1799           tokenizeLineNode),
1800         * src/pic16/ralloc.c (debugLog),
1801         * src/z80/main.c (_process_pragma):
1802            made all ctype.h function calls safe
1803         * src/SDCCopt.c: include math.h for fabs
1804         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
1805           and used them throughout the code to make ctype.h function calls safe
1806         * src/ds390/main.c (asmLineNodeFromLineNode),
1807         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
1808         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
1809            unsigned char*
1810         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
1811           (newpCodeAsmDir): made ctype.h function calls safe
1812         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
1813           pic16_emitcode):  made lbp unsigned char*
1814         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
1815           (pic16_newpCodeAsmDir): made ctype.h function calls safe
1816         * src/xa51/gen.c (emitcode),
1817         * src/z80/gen.c (_emit2): made lbp unsigned char*
1818         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
1819            char*
1820
1821 2005-09-05 Raphael Neider <rneider AT web.de>
1822
1823         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
1824           access bank splitpoint
1825
1826 2005-09-05 Raphael Neider <rneider AT web.de>
1827
1828         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
1829
1830 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
1831
1832         * .version: changed to version 2.5.3
1833         * doc/sdccman.lyx: changed version to 2.5.3,
1834           documented --codeseg and --constseg and pragma codeseg and constseg,
1835           documented bit parameters (reentrant) and bit returning
1836         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
1837            currFunc->recvSize, but is this ok for all ports?
1838           (ast2iCode): result of ~ on unsigned char must be cast to int for
1839            bool to work
1840         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
1841           function pointers in bit space
1842         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
1843           (processFuncArgs): call port.reg_parm() with reentrancy info
1844         * src/port.h,
1845         * src/avr/main.c,
1846         * src/ds390/main.c,
1847         * src/hc08/main.c,
1848         * src/pic/main.c,
1849         * src/pic16/main.c,
1850         * src/xa51/main.c,
1851         * src/z80/main.c: port.reg_parm prototype extended with
1852           "bool reentrant" parameter
1853         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
1854           options.stackAuto for allocating bit register parameters
1855         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
1856           (genSend): set BitBankUsed if it is,
1857           (selectRegBank): factored out of genCall for use in genPcall,
1858           (genCall): removed redundant dtype assignmen, use selectRegBank,
1859           (genPcall): handle returning in Carry properly, save in F0 if needed,
1860           (genReceive): handle bit register parameters
1861         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
1862           (mcs51_assignRegisters): enable bit registers for all reentrant
1863            functions and don't set BitBankUsed unconditionally
1864         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
1865         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
1866         * support/regression/tests/funptrs.c: added tests for BOOL and for return
1867
1868 2005-08-27 Borut Razem <borut.razem AT siol.net>
1869
1870         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
1871         ppc-osx (Darwin) does not support -u option. It seems that it is
1872         supported only on Linux - GNU cp
1873
1874 2005-08-25 Borut Razem <borut.razem AT siol.net>
1875
1876         * sim/ucsim/gui.src/serio.src/Makefile.in,
1877           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
1878           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1879           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
1880           install and strip, since the strip at /usr/ccs/bin should be used
1881           on solaris
1882
1883 2005-08-24 Borut Razem <borut.razem AT siol.net>
1884
1885         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
1886
1887 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
1888
1889         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
1890         ffffffffu
1891
1892 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
1893
1894         * as/mcs51/aslink.h: completed lkrloc.c prototypes
1895         * as/mcs51/lkmain.c (link_main): fixed warning
1896         * device/include/stdbool.h: ds390 has no advanced bit support yet
1897         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
1898         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
1899         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
1900           and updated their macros
1901         * src/SDCCval.c (constVal): updated comment for renamed b_long
1902
1903 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
1904
1905         * as/mcs51/asdata.c: changed ctype['['] to BINOP
1906         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
1907           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
1908           (oprio): set priority for '['
1909         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
1910            and adb_24_bit
1911         * as/mcs51/asm.h: added defines R_BIT and S_BIT
1912         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
1913         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
1914         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
1915           added overlayable BIT_BANK area
1916         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
1917           (summary2): explain 'T' in legenda
1918         * as/mcs51/lkrloc.c: replaced old K&R style,
1919           (relr): added R_BIT processing,
1920           (errmsg): added "Bit-addressable relocation error",
1921           (adb_bit): added for converting from byte- to bit-addressable space,
1922           (adb_24_bit): added for converting from byte- to bit-addressable space
1923         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
1924            used in reentrant functions now even as return value
1925         * device/lib/_gptrput.c (_gptrput): removed obsolete code
1926         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
1927           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
1928         * src/SDCCglobl.h: added indicator BitBankUsed
1929         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
1930            the bit registers b0-b7
1931         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
1932           (geniCodeCast): fixed bug 1263853,
1933           (geniCodeLogicAndOr): put result in bool or char,
1934           (geniCodeReceive): added parameter func for accessing the return type,
1935           (geniCodeFunctionBody): pass func to geniCodeReceive
1936         * src/SDCCmain.c: added indicator BitBankUsed
1937         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
1938         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
1939           (checkSClass): don't put automatic bool/bit on stack,
1940           (checkFunction): removed check on function cannot return bit
1941         * src/SDCCsymt.h: added newBoolLink prototype
1942         * src/mcs51/gen.c (rb1regs): added bit registers,
1943           (movc): created for assigning to carry,
1944           (pushReg, popReg): created for pushing registers,
1945           (sameRegs): check both AOP_REG and AOP_CRY types,
1946           (aopOp): handle bit registers,
1947           (aopPut): optimization no self-assign,
1948           (saveRegisters): push reg->base (bits) only once for bit registers,
1949            and use pushReg,
1950           (unsaveRegisters): pop reg->base only once and use popReg,
1951           (assignResultValue): added parameter func and return in carry for bits,
1952           (genIpush): optimization no reload in A if not changed,
1953           (genSend): bit parameters in reentrant functions are passed in bit
1954            registers by first assigning to bits in B, then save registers and
1955            copy B to bits,
1956           (genCall): handle returning in Carry properly, save it in F0 if needed,
1957           (genPcall): updated assignResultValue call, this is not safe yet for bit
1958            returning function !!!
1959           (genFunction): don't generate equ's for bit registers and use pushReg,
1960           (genEndFunction): take care of bit returning functions and use popReg,
1961           (genRet): return bit in Carry,
1962           (genIfx): optimize bit registers and other directly addressable bits,
1963           (genReceive): updated assignResultValue call
1964         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
1965           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
1966            registers when using stack-auto
1967         * src/mcs51/ralloc.c (_G): added allBitregs,
1968           (regs8051): added the bit registers,
1969           (createStackSpil): use macro IS_BIT,
1970           (getRegBit): added to allocate a bit register, else spill,
1971           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
1972           (updateRegUsage): factored out to ease stepping while debugging,
1973           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
1974            also allocate bit registers,
1975           (fillGaps): handle bit registers,
1976           (findAllBitregs): added to create bit vector with all bit registers,
1977           (mcs51_allBitregs): returns this bit vector,
1978           (mcs51_assignRegisters): when using stack-auto use bit registers for
1979            passing parameters and creating local variables
1980         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
1981
1982 2005-08-22 Borut Razem <borut.razem AT siol.net>
1983
1984         * device/lib/Makefile.in: replaced find option -or with -o
1985           to make it run on solaris
1986
1987 2005-08-22 Raphael Neider <rneider AT web.de>
1988
1989         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
1990           fixes #1265442 (crash on Solaris)
1991
1992 2005-08-20 Borut Razem <borut.razem AT siol.net>
1993
1994         * configure, configure.in: added tests for libsocket and libnsl libraries,
1995           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
1996           from support/regression/Makefile.in
1997         * support/regression/Makefile.in: added
1998         * device/lib/pic16/Makefile.common.in: force make to use bash shell
1999         * sim/ucsim/libtool: regenerated on sparc-solaris
2000         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
2001           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
2002           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
2003           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
2004           sparc-solaris, which doesn't use GNU ld linker
2005         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
2006         * as/Makefile: find on sparc-solaris does not support -maxdepth option
2007
2008 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
2009
2010         * src/mcs51/peeph.def: updated comments
2011
2012 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2013
2014         * device/lib/_gptrget.c,
2015         * device/lib/_gptrput.c: slightly shorter
2016         * doc/sdccman.lyx: incremented version
2017         * src/mcs51/peeph.def: moved peephole comments to the line of first
2018           change to better keep line correlation, reanimated 186.e
2019         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
2020
2021 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
2022
2023         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
2024           David Saxton with quotes around file name.
2025
2026 2005-08-15 Borut Razem <borut.razem AT siol.net>
2027
2028         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
2029           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
2030           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
2031           make tests run on x86_64 platform
2032
2033 2005-08-13 Raphael Neider <rneider AT web.de>
2034
2035         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
2036           as it might be executed DURING a build (parallel make is wonderful)
2037
2038 2005-08-13 Raphael Neider <rneider AT web.de>
2039
2040         * device/lib/Makefile.in (port-specific-objects-pic16):
2041           revert to cp $(PORT)/bin/*.* $(PORTDIR)
2042         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
2043           dependency
2044         * device/lib/pic16/Makefile.rules: build subdirs before creating
2045           the library, removed builddir rule, create $(builddir) early in
2046           recurse rule, use empty recurse rule for leaf directories
2047         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
2048           mkdir errors (race condition), removed duplicate suffix "hex"
2049           from clean rules
2050         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
2051         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
2052           prevents mkdir -p from aborting on Alpha
2053
2054 2005-08-12 Raphael Neider <rneider AT web.de>
2055
2056         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
2057           db-statements in order to allow for arrays of pointers in code
2058           sections to be placed without interspersed 0-padding, fixes
2059           bug #1256215
2060         * (emitStatistics): fixed division by zero for pic18f1220
2061         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
2062           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
2063         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
2064         * (pic16_pCodeConstString): keep track of already emitted string
2065           literals to prevent "duplicate definitions of symbol _str_NR"
2066         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
2067           debug message
2068         * device/lib/Makefile.in: ignore failing PIC16 library builds
2069         * device/lib/pic16/Makefile: do not build if gputils are missing
2070         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
2071
2072 2005-08-10 Raphael Neider <rneider AT web.de>
2073
2074         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
2075           my last commit)
2076
2077 2005-08-10 Raphael Neider <rneider AT web.de>
2078
2079         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
2080           Rokas' patch to add the new fixed point type "__fixed16x16"
2081         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
2082           functions for __fixed16x16 arithmetics
2083         * device/lib/pic16: reimplemented the build system to support
2084           a separate build directory, better handling of libio (create
2085           the library in a separate subdir for each architecture) and
2086           easier configuration (centralized in Makefile.common)
2087
2088 2005-08-07 Raphael Neider <rneider AT web.de>
2089
2090         * src/pic16/gen.c (genrshTwo): fixed sign extension
2091         * src/pic16/device.c: added pic18f2320, 4220 and 4320
2092         * device/include/pic16/pic18f2220.h: changed some bit definitions,
2093           added T0CONbits
2094         * device/include/pic16/pic18f4220.h: NEW, header for
2095           pic18f4220 and pic18f4320
2096         * device/include/pic16/pic18fregs.h: added new devices,
2097           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
2098         * device/include/pic16/signal.h: resolved name clashes
2099           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
2100           to also allow testing for interrupt enable bits, added
2101           comments on how to use the macros
2102         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
2103         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
2104           register definitions for the devices
2105         * device/lib/pic16/pics.all: added new devices
2106         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
2107           allocated memory
2108         * device/lib/pic16/libc/stdlib/memfree: do not count
2109           the block header as free memory
2110         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
2111           simplified and added missing end-of-blocklist-marker
2112           (reported by Peter Onion, fixes #1252814)
2113         * (_mergeHeapBlock): fixed loop condition
2114         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
2115           len==0, restructured code
2116         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
2117           up a bit, reduced bitfield accesses, prevent endless loops
2118           in case of heap corruption
2119         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
2120           "unreferenced arguments/must return a value" warnings
2121         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
2122           replaced BAUDREG with SPBRG
2123         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
2124           device/lib/pic16/debug/gstack/gstack.c: replaced
2125           _naked, _asm, _endasm with __naked, __asm, __endasm
2126
2127 2005-08-05 Raphael Neider <rneider AT web.de>
2128
2129         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
2130           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
2131
2132 2005-08-05 Borut Razem <borut.razem AT siol.net>
2133
2134         * device/lib/Makefile.in: added missing ';'
2135         * configure: removed ^M characters
2136
2137 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2138
2139         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
2140           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
2141           License
2142
2143 2005-08-04 Borut Razem <borut.razem AT siol.net>
2144
2145         * configure.in: pic16 libraries build 2nd try - enable running
2146           configure in device/lib/pic16
2147         * configure: regenerated from configure.in
2148         * device/lib/Makefile.in: create $(PORT)/bin directory
2149
2150 2005-08-03 Raphael Neider <rneider AT web.de>
2151
2152         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
2153           to get/set values via pointers
2154         * (genUnpackBits,genPackBits): changed detection of
2155           ptr->bitfield vs. sym.bitfield, fixed access via generic
2156           pointers, removed dead (wrong) code for multibyte bitfields
2157         * (genNearPointerGet, genGenPointerGet): removed useless code,
2158           fixed bitfield detection, fixes #1250594
2159         * (genNearPointerSet): removed useless code
2160         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
2161           and introduced macro pic16_emitpcode that conditionally emits
2162           the origin of the following pCode (useful for debugging SDCC)
2163         * src/pic16/pcode.c: changed (and disabled) some debug outputs
2164         * (createDefmap): fixed handling of LFSR for --optimize-df
2165
2166 2005-08-02 Borut Razem <borut.razem AT siol.net>
2167
2168         * device/lib/Makefile.in: pic16 libraries build enabled since
2169           gputils-0.13.2 are now localy installed at sourceforge's compile farm
2170
2171 2005-08-02 Raphael Neider <rneider AT web.de>
2172
2173         * src/pic16/gen.c (genPackBits): removed deprecated warning
2174         * (genGenPointerSet): fixed bitfield detection
2175
2176 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2177
2178         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
2179
2180 2005-07-31 Raphael Neider <rneider AT web.de>
2181
2182         * device/lib/pic16/libdev/pic18f458.c,
2183           device/include/pic16/pic18f458.h: added missing T0CONbits
2184
2185 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
2186
2187         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
2188
2189 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
2190
2191         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
2192
2193 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2194
2195         * device/include/mcs51/at89c51ed2.h: added.
2196
2197 2005-07-23 Raphael Neider <rneider AT web.de>
2198
2199         * src/pic/gen.h: added emitpcode macro for debugging
2200         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
2201           and replace by macro adding debug information on demand
2202         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
2203         * (gencjne): tried to fix; replaced with correct (slower) code
2204         * (gen{Unp,P}ackBits): fixed single bit access
2205         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
2206         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
2207           previous instruction
2208         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
2209           register has to be handled with care (forbidding movement
2210           of assignments/uses, removing assignments completely, ...)
2211         * (pCodeOptime2pCodes): make use of regIsSpecial
2212         * added lots of debugging output (commented out)
2213         * src/pic/rallloc.c (deassignLRs): prevent operand registers
2214           from being reused as result UNLESS it is known to work
2215
2216 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
2217
2218         * support/Util/dbuf.h: include <stddef.h> for size_t
2219         * .version: changed to version 2.5.2
2220
2221 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2222
2223         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
2224
2225 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2226
2227         * src/hc08/gen.c (genMinus): fixed bug #1241835,
2228           (genModOneByte): removed needless psha/pula
2229
2230 2005-07-22 Raphael Neider <rneider AT web.de>
2231
2232         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
2233           have PIC14 handled like PIC16, fixes broken pic14 linker calls
2234         * src/pic/gen.c (resolveIfx): do not "invent" labels
2235         * (genSkipc): changed to positive logic
2236         * (genSkipCond): removed as no longer needed
2237         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
2238           backport from PIC16
2239         * (genLeftShift): check operands are in different registers
2240         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
2241           INCF does not update CARRY...
2242         * src/pic/main.c: fixed _linkCmd
2243         * src/pic/pcode.c (unlinkpCode): added inactive code
2244         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
2245           alive (do not assign result and operand overlapping registers)
2246
2247 2005-07-22 Raphael Neider <rneider AT web.de>
2248
2249         * src/pic/device.c (dump_sfr): replaced register declaration with
2250           call to emitSymbolToFile() to avoid duplicate symbols
2251         * (assignRelocatableRegisters): do not declare external symbols
2252         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
2253           right (take size of type, not etype)
2254         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
2255         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
2256         * (packRegsForAccUse): disabled assignment of WREG as
2257           the result reg to prevent occurence of just fixed #1235003,
2258           fixes #1242954
2259         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
2260           symbols (avoids duplicate symbols in .asm file)
2261         * (pic14emitRegularMap): use emitSymbolToFile()
2262         * src/pic/gen.c (aopOp): fixed spillLocation handling
2263         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
2264         * (genDataPointerSet): removed unneccessary variables/output
2265
2266 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
2267
2268         * as/mcs51/lkarea.c: enlarged codemap for banked memory
2269         * device/lib/mcs51/crtbank.asm: added # to 0x0F
2270
2271 2005-07-21 Raphael Neider <rneider AT web.de>
2272
2273         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
2274           architecture cannot handle them efficiently, fixes bug #1235003
2275         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
2276           check for empty sets before using them (fixes bug #1232190)
2277
2278 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
2279
2280         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
2281           (lnksect2): generate warnings for memory overlap
2282         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
2283           constseg to set the name of these segments so you can instruct the linker
2284           to place them in banks
2285         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
2286         * src/SDCCglobl.h: added MODEL_HUGE to enum,
2287           added code_seg and const_seg to options
2288         * src/SDCCglue.c (emitMaps): use options.const_seg,
2289           (createInterruptVect): put interrupt vectors in segment HOME,
2290           (glue): put HOME before static segment and put the main glue in HOME,
2291           (glue): use options.code_seg
2292         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
2293         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
2294           these segments so you can instruct the linker to place them in banks
2295           (linkEdit): use code_loc for HOME segment which should be the first
2296           segment in code memory now
2297         * src/SDCCmem.c: fixed more stuff like bug 1238386
2298         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
2299           (changePointer): don't change function pointers to code pointers for
2300           banked functions,
2301           (compareType): added exceptional check for banked function pointers
2302         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
2303         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
2304           after static in code memory
2305         * src/mcs51/gen.c: added aopLiteralLong prototype,
2306           (aopForSym): use getSize for functions,
2307           (genCall): generate banked calls over one trampoline __sdcc_banked_call
2308           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
2309           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
2310           the segment,
2311           (genPcall): use call for literal function pointers and generate banked
2312           calls over the one trampoline so there's only one place for the user to
2313           modify according to his/hers hardware,
2314           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
2315           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
2316         * src/mcs51/main.c: added keyword banked,
2317           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
2318         * support/Util/SDCCerr.c,
2319         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
2320           needed for passing the bank and address to the trampoline
2321         * device/lib/mcs51/crtbank.asm: added for bankswitching
2322         * device/lib/mcs51/Makefile: added crtbank
2323
2324 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2325
2326         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
2327           for fields at offset 0 of a struct or union as reported
2328           on 2005-07-07 in the developer mailing list.
2329
2330 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
2331
2332         * src/SDCCmem.c: fixed bug 1238386
2333
2334 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2335
2336         * src/mcs51/peeph.def: added labelrefcounting for peepholes
2337           (patch #1144962), added peephole 300, enabled 259.x
2338         * doc/sdccman.lyx: removed screenshot and provided link instead
2339
2340 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2341
2342         * doc/sdccman.lyx: added section about debugging with ddd
2343         * doc/figures/ddd_example.eps: screenshot of debugging session
2344
2345 2005-07-04 Raphael Neider <rneider AT web.de>
2346
2347         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
2348           like CODE pointers, fixes #1115683
2349         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
2350           call, fixes bugs #1232211, #1228110,
2351           fixed wrong casts to pCodeFlow from pCodeInstructions
2352
2353 2005-07-04 Raphael Neider <rneider AT web.de>
2354
2355         * src/pic/gen.c (popGet): changed assert to allow for
2356           bit operands
2357         * (popGetAddr): changed signature to provide
2358           an additional index, patched all call sites
2359         * (genCmpEq): handle literal-like operands correctly
2360         * (genAddrOf): added sanity checks on __code/__data pointers
2361         * (genAssign): added handling of symbols from __code section
2362         * (gencjne): do not generate code for comparisons whose result
2363           is neither stored nor used, fixes bug #1171114
2364         * (AccLsh, AccRsh): operate on operand instead of WREG
2365         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
2366           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
2367           by known count
2368         * rewrote complete shift-by-literal logic, commented unused
2369           functions out
2370         * (genConstPointerGet): get multiple bytes (if result size > 1),
2371           fixed handling of non-immediate addresses
2372         * (genPointerGet): handle CODE pointers like CONST pointers
2373         * (genpic14Code): insert C-SRC lines as Cource-pCodes
2374         * ({aop,op}_isLitLike): NEW, single place to decide whether an
2375           operand is to be treated as a literal or not
2376         * (mov2w,genPcall,genCmpEq),
2377           src/pic/genarith.c: use aop_isLitLike() to decide between
2378           literal/register contents
2379         * (addSign): added missing offset
2380         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
2381           only emit comment in debug-mode,
2382           use {aop,op}_isLitLike throughout the file
2383         * src/pic/glue.c: fix initializers for pointers (work in progress)
2384         * src/pic/pcode.c (get_op): honor index on _const symbols
2385         * ({reset,dump}pCodeStatistics): NEW, estimate code size
2386         * (dumppBlock): added pCode size estimation
2387         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
2388           check for IS_SYMOP before OP_SYMBOL'ing
2389         * fixed indentation, compacted switch-statements
2390         * (allocReg): find free register and allocate it instead of
2391           allocating new registers all the time
2392         * (deassignLRs): prevent POINTER_GET's from being assigned the same
2393           registers as its operands (necessary only for multibyte GETs)
2394
2395 2005-07-01 Raphael Neider <rneider AT web.de>
2396
2397         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
2398           debugging .asm-output macros FENTRY + FEXIT
2399         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
2400           way... I wonder...
2401         * (emitpComment): NEW, printf to pCode
2402         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
2403           offset handling
2404         * (popGetAddr): NEW, variant of popGet to access an immediates
2405           high(er) bytes instead of the n'th byte of memory they reference,
2406           replaced popGet with popGetAddr where neccessary
2407         * (genDataPointerGet): reactivated and fixed implementation
2408         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
2409           accesses
2410         * (genDataPointerSet): fixed multibyte assignments
2411         * (genpic14Code): fixed --i-code-in-asm handling
2412         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
2413         * (genPlus): fixed index-out-of-bounds error
2414         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
2415         * src/pic/ralloc.c: added debugging output macro FENTRY2
2416         * (spillThis): fixed indentation, enbraced for-body for clarity
2417         * (rematStr): commented out as now unused
2418         * (regTypeNum): commented out special spill case (overwrites
2419           arbitrary values)
2420         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
2421
2422 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
2423
2424         * doc/sdccman.lyx: documented sfr16/sfr32,
2425           added example for using storage class with function pointers
2426         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
2427
2428 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
2429
2430         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
2431         * device/lib/_itoa.c,
2432         * device/lib/_ltoa.c: optimized codesize
2433         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
2434           but don't know how to suppress the double warning.
2435         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
2436         * support/Util/SDCCerr.c,
2437         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
2438
2439 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
2440
2441         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
2442           fixed old K&R prototypes
2443         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
2444         * device/lib/_gptrget.c,
2445         * device/lib/_gptrgetc.c,
2446         * device/lib/_gptrput.c: changed versions for new memory indicator values,
2447           also new versions for small generic pointers and banked generic pointers
2448         * src/port.h: added const_name
2449         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
2450         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
2451         * src/SDCCcse.c (findPrevIc): check all associative operators
2452         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
2453         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
2454         * src/SDCCmem.c: updated comments,
2455           set far-space to 0 for pdata, results in optimized code
2456         * src/SDCCmem.h: added macro CONST_NAME
2457         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
2458           moving the info into the highest bits, see also gptrget/gptrput
2459         * src/src.dsp: added sdcc.ico to project files
2460         * src/avr/gen.c (genCast): fixed bug 0x%d
2461         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
2462         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
2463           relation between ptr_type and DCL_TYPE,
2464           (genCast): fixed bug 0x%d
2465         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
2466           (CODE)" for const_name
2467         * src/hc08/gen.c (genCast): fixed bug 0x%d
2468         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
2469           (hc08_port): added "CONST (CODE)" for const_name
2470         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
2471           (aopForRemat, adjustArithmeticResult): disconnected direct relation
2472           between ptr_type and DCL_TYPE,
2473           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
2474           operand* and took AOP() inside function so sfr-ness can be checked,
2475           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
2476           new prototype,
2477           (genFunction, genEndFunction): optimized stack setup,
2478           (genMinus): optimized for literals with ending zeroes (in bytes),
2479           (genCast): fixed bug 0x%d
2480         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
2481           (mcs51_port): added "CONST (CODE)" for const_name
2482         * src/mcs51/peeph.def: made rule 226 more generic
2483         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
2484         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
2485         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
2486         * src/z80/main.c (z80_port): added NULL for const_name,
2487           (gbz80_port): added NULL for const_name
2488         * support/regression/tests/bug663539.c,
2489         * support/regression/tests/sfr16.c: new tests
2490
2491 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2492
2493         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
2494
2495 2005-06-24 Raphael Neider <rneider AT web.de>
2496
2497         * device/lib/pic16/libdev/pic18f[68][567]20.c:
2498           corrected typos...
2499         * device/include/pic16/signal.h: added USBIF
2500           and SIG_USB
2501
2502 2005-06-24 Raphael Neider <rneider AT web.de>
2503
2504         * device/lib/pic16/libdev/pic18f2455.c,
2505           device/include/pic16/pic18f2455.h: NEW
2506         * device/include/pic16/pic18fregs.h,
2507           device/lib/pic16/pics.all,
2508           src/pic16/device.c: added 18f2455
2509         * device/lib/pic16/libdev/pic18f[68][567]20.c,
2510           device/include/pic16/{pic18f[68][567].h,usart.h}:
2511           replaced MULTIPLE_USARTS define with more relaible
2512           compatibility sfrs (for USART access)
2513
2514 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
2515
2516         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
2517           and the output asm file line is printed on two lines.
2518
2519 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2520
2521         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
2522           BGT, BLE, BHI, and BLS instructions
2523         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
2524           genCmpEq): removed
2525         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
2526           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
2527           fixes bug #1216342
2528         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
2529
2530 2005-06-15 Raphael Neider <rneider AT web.de>
2531
2532         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
2533         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
2534         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
2535           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
2536           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
2537
2538 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2539
2540         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
2541           Marcel Telka in bug #1215704
2542
2543 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
2544
2545         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
2546           located in shared memory bank.
2547
2548 2005-05-31 Raphael Neider <rneider AT web.de>
2549
2550         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
2551           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
2552           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
2553
2554 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
2555
2556         * device/lib/_strncpy.c: fixed the fix
2557
2558 2005-05-26 Raphael Neider <rneider AT web.de>
2559
2560         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
2561           initializers with \0, bug #1208187
2562         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
2563           intializers with \0, bug #1208187
2564
2565 2005-05-26 Raphael Neider <rneider AT web.de>
2566
2567         * src/pic16/glue.c (pic16_printIvalChar): fixed string
2568           initializers with \0, bug #1208187
2569         * src/pic16/main.c (_process_pragma): added sanity checks
2570           for stack position and size, emit warnings when appropriate
2571
2572 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
2573
2574         * device/lib/_strncpy.c: fixed not filling with \0
2575
2576 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2577
2578         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
2579           createFunction),
2580         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
2581           compound_statement),
2582         * src/SDCCsymt.h,
2583         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
2584
2585 2005-05-24 Raphael Neider <rneider AT web.de>
2586
2587         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
2588
2589 2005-05-24 Raphael Neider <rneider AT web.de>
2590
2591         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
2592           TRISE definitions, closes bug #1162453
2593
2594 2005-05-22 Raphael Neider <rneider AT web.de>
2595
2596         * src/pic16/main.c (_process_pragma): check for missing
2597           arguments to pragmas code and udata
2598         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
2599           consistency fixes to match other headers (thanks to Jim Paris)
2600         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
2601
2602 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
2603
2604         * src/SDCCicode.c (isOperandEqual): fixed missing ;
2605
2606 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
2607
2608         * support/regression/tests/bug1198642.c: new test
2609         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
2610         * src/SDCCcse.c (findPrevIc): added comment, please have a look
2611         * support/scripts/resource.h,
2612         * support/scripts/resource.rc,
2613         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
2614         * support/scripts/sdcc.ico: added 32x32 icon
2615
2616 2005-05-18 Raphael Neider <rneider AT web.de>
2617
2618         * device/lib/pic16/libdev/pic18f*.c,
2619         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
2620           keywords to "__sfr" and "__at (X)"
2621         * device/include/pic16/pic18fregs.h: added pic18f4520
2622         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
2623           #1203088 (MPLAB compatibility)
2624
2625 2005-05-17 Raphael Neider <rneider AT web.de>
2626
2627         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
2628         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
2629         * device/lib/pic16/pics.all: added new devices
2630         * src/pic16/device.c: added support for pic18f4520
2631
2632 2005-05-16 Raphael Neider <rneider AT web.de>
2633         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
2634         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
2635         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
2636           convenience function for bit access
2637
2638 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
2639
2640         * device/lib/printf_large.c: fixed bug 1193299
2641         * support/regression/tests/bug1057979.c: added test %3.3s
2642
2643 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2644
2645         * device/include/mcs51/8051.h,
2646         * device/include/mcs51/8052.h: made parseable with lint
2647         * device/include/mcs51/lint.h: added include file for (sp)lint
2648         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
2649         * doc/cdbfileformat.lyx,
2650         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
2651
2652 2005-05-14 Raphael Neider <rneider AT web.de>
2653
2654         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
2655         * device/lib/pic16/libc/stdlib/itoa.c (new)
2656         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
2657         * device/lib/pic16/libio/Makefile: exclude subdir according to
2658           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
2659         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
2660         * src/pic16/gen.c (genFunction): prevent annoying warning
2661         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
2662           nameclashes on BeOS
2663         * support/cpp2/cppmain.c (cpp_output_string): new
2664         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
2665           fixes bug 1116802
2666
2667 2005-05-13 Borut Razem <borut.razem AT siol.net>
2668
2669         * src/SDCCmain.c (linkEdit): fixed bug 1195202
2670
2671 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2672
2673         * .version: changed to version 2.5.1; back to bleeding edge development
2674
2675 2005-05-11 Borut Razem <borut.razem AT siol.net>
2676
2677         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
2678           generate PDF version 1.3 documents
2679
2680 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2681
2682         * .version: changed to version 2.5.0
2683
2684 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2685
2686         * doc/sdccman.lyx: updated weblinks, index and smaller updates
2687
2688 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2689
2690         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
2691         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
2692         well as many smaller updates.
2693         * .version: changed to version 2.5.0-pre1
2694
2695 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2696
2697         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
2698
2699 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
2700
2701         * support/regression/tests/bug1185672.c: added
2702         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
2703           bug 1185672
2704         * src/mcs51/gen.c (genCall): added comments, made it look safer
2705         * src/mcs51/gen.c (genEndFunction): simplified
2706
2707 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
2708
2709         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
2710
2711 2005-04-14 Borut Razem <borut.razem AT siol.net>
2712
2713         * fixed bug 1045046 - SIGSEGV with really simple code?:
2714           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
2715           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
2716
2717 2005-04-14 Borut Razem <borut.razem AT siol.net>
2718
2719         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
2720           src/pic16/device.h: temporarily disabled experimental #inline pragma
2721           for 2.5.0 release
2722
2723 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
2724
2725         * device/include/z80/stdio.h,
2726         * device/include/z80/string.h: removed these highly incomplete files so
2727           SDCC can use the default ones in device/include/
2728
2729 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2730
2731         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
2732         gcc warning.
2733         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
2734         fix sdcpp warnings.
2735
2736 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2737
2738         * device/include/malloc.h: removed redundant __reentrant prototypes
2739         * device/lib/_mullong.c: added working xstack variant in asm (C version
2740           doesn't pass regression tests)
2741         * device/lib/bpx.c: used __data and made bpx char for mcs51
2742         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
2743           (createFunction): fixed bug with xstackPtr
2744         * src/SDCCcse.c: corrected comments
2745         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
2746           (killDeadCode, eBBlockFromiCode): removed unused code
2747         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
2748           corrected comments
2749         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
2750           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
2751           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
2752           (genModOneByte): fixed warning in MSVC
2753         * src/mcs51/main.c (): added comments
2754         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
2755
2756 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2757
2758         * src/SDCCmain.c (linkEdit): oops, changed one line too many
2759
2760 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
2761
2762         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
2763
2764 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
2765
2766         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
2767         characters arrays of larger size than the declared one.
2768
2769 2005-04-10 Borut Razem <borut.razem AT siol.net>
2770
2771         * src/pic/gen.c (genInline),
2772           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
2773           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
2774           (findNextInstruction), (findPrevInstruction),
2775           (findInstructionUsingLabel),
2776           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
2777         * src/pic/pcode.c (findLabel): added missing '\n'
2778         * src/src.dsp: added SDCCdwarf2.c to the project
2779
2780 2005-04-09 Borut Razem <borut.razem AT siol.net>
2781
2782         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
2783
2784 2005-04-08 Raphael Neider <rneider AT web.de>
2785
2786         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
2787           into the chain after a given one) and mergeDefmapSymbols (combine
2788           defmap entries for each symbol per pcode)
2789         * (createDefmap): have defmap entries merged in the end
2790         * (defmapReplaceSymRef): split defmap entries covering two accesses to
2791           a symbol before replacing one access type's symbol, merge symbols in
2792           the end (replacement symbol might already have an entry)
2793         * (assignValnums): keep reference to written WREG intact
2794
2795 2005-04-08 Raphael Neider <rneider AT web.de>
2796
2797         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
2798           Alpha)
2799
2800 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
2801
2802         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
2803         bytes
2804
2805 2005-04-07 Raphael Neider <rneider AT web.de>
2806
2807         * device/include/pic16/usart.h: added compatibility defines for
2808           devices with more than one USART
2809         * device/include/pic16/pic18f[68][567]20.h: activated above defines
2810
2811 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2812
2813         * device/lib/Makefile.in: updated for port specific include
2814
2815 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2816
2817         * support/regression/ports/mcs51/spec.mk: added mcs51 include
2818
2819 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2820
2821         * device/include/8051.h,
2822         * device/include/8052.h,
2823         * device/include/at89S8252.h,
2824         * device/include/at89c55.h,
2825         * device/include/at89x051.h,
2826         * device/include/at89x51.h,
2827         * device/include/at89x52.h,
2828         * device/include/mcs51reg.h,
2829         * device/include/reg51.h,
2830         * device/include/reg764.h,
2831         * device/include/regc515c.h,
2832         * device/include/sab80515.h: (re)moved these 12 files
2833         * device/include/mcs51/8051.h,
2834         * device/include/mcs51/8052.h,
2835         * device/include/mcs51/at89S8252.h,
2836         * device/include/mcs51/at89c55.h,
2837         * device/include/mcs51/at89x051.h,
2838         * device/include/mcs51/at89x51.h,
2839         * device/include/mcs51/at89x52.h,
2840         * device/include/mcs51/mcs51reg.h,
2841         * device/include/mcs51/reg51.h,
2842         * device/include/mcs51/reg764.h,
2843         * device/include/mcs51/regc515c.h,
2844         * device/include/mcs51/sab80515.h: and added them here
2845
2846 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
2847
2848         * device/include/stdarg.h: changed SDCC specific keywords to double
2849           underlined form.
2850         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
2851           mcs51 and ds390.
2852         * device/include/hc08/mc68hc908gp32.h,
2853         * device/include/hc08/mc68hc908jb8.h,
2854         * device/include/hc08/mc68hc908jkjl.h,
2855         * device/include/hc08/mc68hc908qy.h: fixed comments
2856         * device/include/mcs51/README: updated
2857         * device/include/mcs51/c8051f120.h: added PINRSF
2858         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
2859         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
2860           amidst code. Also inline is not supported.
2861
2862 2005-04-06 Raphael Neider <rneider AT web.de>
2863
2864         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
2865         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
2866           callers stack/frame pointers
2867
2868 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
2869
2870         * device/include/pic16/usart.h: added, missing in previous commit,
2871         * device/include/pic16/adc.h: fixed typo,
2872         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
2873         commit,
2874         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
2875         <p18fxxx.inc>
2876         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
2877         uninitialized because a bug appears with gplink
2878         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
2879         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
2880         complains for unrecognised option
2881
2882 2005-04-05 Raphael Neider <rneider AT web.de>
2883
2884         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
2885           structs as well (using memcpy)
2886         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
2887           on ISRs (GOTO has no label)
2888         * src/pic16/device.h: added OF_OPTIMIZE_DF
2889         * src/pic16/main.c: added compiler switch --optimize-df to enable the
2890           new data flow analysis/optimization
2891         * src/pic16/pcode.c: added (prototypes for and implementation of)
2892           dataflow analysis functions, fixed pCodeInstructions' inCond and
2893           outCond values, made RCALL a branch instruction
2894         * (pic16_unlinkpCode): keep C line if possible
2895         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
2896           C line moved if possible
2897         * (pic16_getRegFrompCodeOp): NEW, improved version of...
2898         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
2899           to use new pic16_getRegFrompCodeOp (works for more SFRs)
2900         * (pic16_BuildFlow): fixed skip instructions with label (did not start
2901           new flow)
2902         * (pic16_getJumptabpCode): NEW, needed in...
2903         * (LinkFlow): fixed handling of jumptables, calls and conditional
2904           branches
2905         * (pic16_InsertCommentAfter): NEW
2906         * (pic16_pCodeReplace): made verbose and flow preserving
2907         * (AnalyzeFlow): added call to data flow analysis
2908         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
2909         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
2910         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
2911
2912 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2913
2914         * src/SDCCast.c (decorateType): fixed bug #1105626
2915
2916 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
2917
2918         * device/include/asm/pic16/features.h,
2919         * pic18f*.h headers,
2920         * device/include/pic16/adc.h,
2921         * device/include/pic16/delay.h,
2922         * device/include/pic16/i2c.h,
2923         * device/include/pic16/malloc.h,
2924         * device/include/pic16/stdio.h,
2925         * device/include/pic16/stdlib.h,
2926         * device/include/pic16/string.h,
2927         * device/lib/pic16/libc/stdio/printf_tiny.c,
2928         * device/lib/pic16/libc/stdio/printf_small.c,
2929         * device/lib/pic16/libc/stdio/strmgpsim.c,
2930         * device/lib/pic16/libc/stdio/strmmssp.c,
2931         * device/lib/pic16/libc/stdio/strmusart.c,
2932         * device/lib/pic16/libc/stdio/vfprintf.c,
2933         * device/lib/pic16/libc/stdlib/ltoa.c,
2934         * device/lib/pic16/libc/stdlib/putchar.c,
2935         * device/lib/pic16/libc/stdlib/x_ftoa.c,
2936         * device/lib/pic16/libc/stdlib/memchrpgm.c,
2937         * device/lib/pic16/libc/stdlib/memchrram.c,
2938         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
2939         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
2940         * device/lib/pic16/libio/adc/adcbusy.c,
2941         * device/lib/pic16/libio/adc/adcread.c,
2942         * device/lib/pic16/libio/adc/adcsetch.c,
2943         * device/lib/pic16/libio/usart/ubaud.c,
2944         * device/lib/pic16/libio/usart/ubusy.c,
2945         * device/lib/pic16/libio/usart/udrdy.c,
2946         * device/lib/pic16/libio/usart/uopen.c,
2947         * device/lib/pic16/libio/usart/uputc.c,
2948         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
2949         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
2950         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
2951         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
2952         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
2953         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
2954         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
2955         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
2956         specific keywords to double underlined form,
2957         * device/lib/pic16/libc/Makefile.rules,
2958         * device/lib/pic16/libsdcc/Makefile.rules,
2959         * device/lib/pic16/libm/Makefile,
2960         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
2961         to compile with C standard set in Makefile.common
2962         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
2963         rand.c and crc.c in compilation process,
2964         * device/lib/pic16/libsdcc/int/divuint.c,
2965         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
2966         `c' from signed to unsigned,
2967         * device/lib/pic16/startup/crt0.c,
2968         * device/lib/pic16/startup/crt0i.c,
2969         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
2970         keywords to double underlined form, bug fixes in _do_cinit function
2971         which prevented the correct initialization of the .idata segment,
2972         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
2973         core to enter a infinite loop
2974         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
2975
2976 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2977
2978         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
2979
2980 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2981
2982         * device/include/Makefile.in: add support for hc08 subdirectory
2983         * device/include/hc08/: new subdirectory
2984         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
2985         Lucas Loizaga, thanks!
2986         * device/include/hc08/mc68hc908qy.h,
2987         * device/include/hc08/mc68hc908gp32.h,
2988         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
2989         their own directory. Changed internal macro names to use the compiler
2990         reserved namespace. Changed SDCC specific keywords to double
2991         underlined form.
2992         * device/include/math.h,
2993         * device/include/malloc.h,
2994         * device/include/stdarg.h,
2995         * device/include/stdbool.h
2996         * device/include/string.h,
2997         * device/include/tinibios.h,
2998         * device/include/ds400rom.h,
2999         * device/include/8051.h,
3000         * device/include/8052.h,
3001         * device/include/80c51xa.h,
3002         * device/include/at89c55.h,
3003         * device/include/at89S8252.h,
3004         * device/include/at89x51.h,
3005         * device/include/at89x52.h,
3006         * device/include/ds80c390.h,
3007         * device/include/reg764.h,
3008         * device/include/regc515c.h,
3009         * device/include/sab80515.h,
3010         * device/include/mcs51/c8051f000.h,
3011         * device/include/mcs51/c8051f018.h,
3012         * device/include/mcs51/c8051f020.h,
3013         * device/include/mcs51/c8051f040.h,
3014         * device/include/mcs51/c8051f060.h,
3015         * device/include/mcs51/c8051f120.h,
3016         * device/include/mcs51/c8051f300.h,
3017         * device/include/mcs51/c8051f310.h,
3018         * device/include/mcs51/c8051f320.h,
3019         * device/include/mcs51/c8051f330.h,
3020         * device/include/mcs51/c8051f350.h,
3021         * device/include/z180.h: Changed SDCC specific keywords to double
3022         underlined form.
3023
3024 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
3025
3026         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
3027         18F4455,
3028         * (pic16_assignConfigWordValue): disable testing of configuration
3029         register value with config mask,
3030         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
3031         function with port->fun_prefix,
3032         * (genFunction): when generating a naked interrupt function never
3033         create an absolute segment placed in interrupt vector address, place
3034         the actual interrupt function at IVA instead, when an interrupt
3035         function is generated with unspecified interrupt then do not create
3036         the absolute section,
3037         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
3038         code for generating a call to generic pointer get/put function with
3039         a call to function pic16_callGenericPointer(),
3040         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
3041         the call to the generic pointer get/put functions with prefixing the
3042         function name with port->fun_prefix,
3043         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
3044         * src/pic16/main.c (_process_pragma): prefix function with
3045         port->fun_prefix,
3046         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
3047         calling assembler, old 18Fxxxx macro is deprecated,
3048         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
3049         PC_ASMDIR in while condition,
3050         * (findInstruction): add PC_ASMDIR in while condition,
3051         * (buildCallTree): prefix main with port->fun_prefix,
3052         * (pic16_pCode2str): fixed bug that didn't emit the memory access
3053         identifier for variable with banked access in instructions BTFSS,
3054         BTFSC, BCF, BSF, BTG
3055         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
3056         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
3057         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
3058         perform optimization when enviroment variable NO_REG_OPT is set,
3059         * (insideLRBlock): NEW, return 1 if register is inside an
3060         INF_LOCALREGS block,
3061         * (RemoveRegFromLRBlock): remove a register that is completely
3062         eliminated by register optimization, but it is still left in local
3063         register store/restore in/from stack block,
3064         * (Remove2pcodes): after removing register, check to see if it
3065         should be removed from local register store/restore in/from stack
3066         block,
3067         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
3068         DUMMY_READ_VOLATILE,
3069
3070         * device/include/pic16/adc.h: minor prototype modifications and
3071         update,
3072         * device/include/pic16/malloc.h: added GPL notice various
3073         modifications,
3074         * device/include/pic16/stdint.h: NEW, standard header for ints
3075         * device/include/pic16/delay.h: NEW, header for delay functions,
3076         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
3077         delay1mtcy,
3078         * device/include/pic16/signal.h: NEW, header providing helper macros
3079         for implementing signal handlers,
3080         * device/include/pic16/stdio.h: added prototypes for functions,
3081         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
3082         prototypes for stdin and stdout, added macro PUTCHAR to
3083         automatically implement putchar function prototype,
3084         * device/include/pic16/usart.h: modified and updated USART library,
3085         * device/lib/pic16/libio/adc/,
3086         * device/lib/pic16/libio/i2c: some modifications to improve library
3087         performance,
3088         * device/lib/pic16/libc/stdio/: modifications for the new printf*
3089         family of functions,
3090         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
3091         family of functions and other sources,
3092         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
3093         of the PIC18Fxx[28] devices,
3094         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
3095         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
3096         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
3097         _do_cinit function, because the previous failed when local variables
3098         where not placed in the same memory bank,
3099         * device/lib/pic16/libsdcc/char/: various modifications to improve
3100         library performance,
3101         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
3102         information on the new functions of the c library and more...
3103
3104 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3105
3106         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
3107
3108 2005-03-26 Raphael Neider <rneider AT web.de>
3109
3110         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
3111           if condition == CARRY)
3112         * (genCmp): adapted to new genSkipc semantics
3113         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
3114           on rIfx (genCmp was broken)
3115
3116 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3117
3118         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
3119         * src/z80/main.c (_keywords[]),
3120         * src/SDCCglobal.h (struct options),
3121         * src/SDCC.y,
3122         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
3123         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
3124         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
3125         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
3126         always available in leading double underscore form. The C99 support is
3127         mostly missing, but it's a start.
3128         * support/regression/tests/bug-227710.c: fixed nonconforming use of
3129         reserved identifier "__data".
3130
3131 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
3132
3133         * src/mcs51/peeph.def: fixed bug 1170013
3134
3135 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
3136
3137         * device/include/mcs51reg.h: fixed bug 842007
3138
3139 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3140
3141         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
3142         last time.
3143
3144 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3145
3146         * src/port.h (struct PORT),
3147         * src/avr/ralloc.c (avr_assignRegisters),
3148         * src/avr/main.c,
3149         * src/ds390/ralloc.c (ds390_assignRegisters),
3150         * src/ds390/main.c,
3151         * src/hc08/ralloc.c (hc08_assignRegisters),
3152         * src/hc08/main.c,
3153         * src/mcs51/ralloc.c (mcs51_assignRegisters),
3154         * src/mcs51/main.c,
3155         * src/pic/ralloc.c (pic14_assignRegisters),
3156         * src/pic/main.c,
3157         * src/pic16/ralloc.c (pic16_assignRegisters),
3158         * src/pic16/main.c,
3159         * src/xa51/ralloc.c (xa51_assignRegisters),
3160         * src/xa51/main.c,
3161         * src/z80/ralloc.c (z80_assignRegisters),
3162         * src/z80/ralloc.h,
3163         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
3164         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
3165         * src/SDCCcse.h,
3166         * src/SDCCdflow.c (computeDataFlow),
3167         * src/SDCCdflow.h,
3168         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
3169         * src/SDCCloop.h,
3170         * src/SDCCcflow.c (*),
3171         * src/SDCCcflow.h,
3172         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
3173         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
3174         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
3175         immedDom() returning wrong block; probably fixes bug #1160833)
3176
3177 2005-03-20 Borut Razem <borut.razem AT siol.net>
3178
3179         * support/scripts/inc2h.pl: WIN32 port
3180
3181 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
3182
3183         * device/lib/makefile.in: added abs.c and labs.c
3184
3185 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
3186
3187         * device/include/stdint.h: added
3188         * device/lib/abs.c: added
3189         * device/lib/labs.c: added
3190         * device/include/stdlib.h: added abs() and labs() prototypes
3191         * device/lib/libsdcc.lib: added abs and labs
3192         * device/include/float.h,
3193         * device/lib/_fsmul.c,
3194         * device/lib/printf_fast.c,
3195         * device/lib/printf_tiny.c: updated comments
3196
3197 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3198
3199         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
3200         bug #1164313
3201
3202 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3203
3204         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
3205         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
3206
3207 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
3208
3209         * device/lib/printf_large.c: removed inline assembly for portability and
3210           readability. Use printf_fast if speed or size are more important.
3211         * src/pic16/gen.c: removed conditions around use of DEBUGpc
3212         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
3213
3214 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
3215
3216         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
3217         prevent compiler warning
3218
3219 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
3220
3221         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
3222         moved to level 0 and declared as static. Also they are explicit
3223         placed in access bank. This was necessery because some times they
3224         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
3225         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
3226         optimizations. Currently only compare to unsigned char is implemented,
3227         * src/pic16/gen.c: added fReturnIdx array,
3228         * (struct resolvedIfx) is moved to gen.h and made public,
3229         * (struct _G): added sregsAlloc and sregsAllocSet fields,
3230         * (aopForSym): added an optimization to directly store in stack of
3231         the operand of a SEND iCode,
3232         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
3233         but as registers instead (AOP_REG) using the fReturnIdx array,
3234         * (pic16_freeAsmop): remove the freed register from the
3235         _G.sregsAlloc field,
3236         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
3237         a compare of 'WREG',
3238         * (pic16_popGetTempRegCond): changed function prototype, now
3239         function takes also a bitVector argument v which holds the current
3240         set of registers that are allocated for stack access by aopForSym,
3241         registers allocated in aopForSym for accessing stack symbols are not
3242         any more part of the functions usedRegs field,
3243         * (genCall): some times aopOp is called for a stack variable to be
3244         send, aopForSym might perform the push, if this is true make sure
3245         that genCall doesn't push the variable twice by testing _G.resDirect,
3246         * (genFunction): changed testing for unspecified interrupt number
3247         from 256 to INTNO_UNSPEC,
3248         * modified selection scheme of frame pointer generation. Previously
3249         if function did use local registers a frame pointer was generated,
3250         now a frame pointer is generated only if function has arguments
3251         (that need PLUSW2 register access), or has stack arguments, or the
3252         compiler is not instructed to omit the frame pointer,
3253         * (genEndFunction): before restoring local registers that were saved
3254         in the function preamble, also restore the registers that *might*
3255         have been allocated for stack access,
3256         * (genRet): removed some old comments,
3257         * (genCmp, the active (RN's) version): added a call to the
3258         pic16_genCmp_special function to perform the compare with a more
3259         robust and optimized way,
3260         * (genInline): a feature has been added in inline code generation,
3261         which allows a wildcard variable substitution when writing inline
3262         assembly. Code is incomplete and experimental therefore undocumented,
3263         * (genCast): changed order of aopOp for result and right to allow
3264         aopForSym to directly load the result if possible,
3265         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
3266         perform an optimized compare on some selected special occasions,
3267         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
3268         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
3269         generate an IVT any more,
3270         * src/pic16/main.c (pic16_optionsTable): added command line option
3271         --optimize-cmp,
3272         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
3273         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
3274         macros,
3275         * src/pic16/NOTES: Raphael Neider added in list of active developers
3276         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
3277         jumptable_end to prevent bug #,
3278         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
3279         inCond and outCond fields,
3280         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
3281         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
3282         turn off register spilling,
3283         * (packRegsForOneUse): synced with other ports' versions although it
3284         is not used currently,
3285         * (pic16_packRegisters): added an optimization while reading
3286         structure bitfields, some registers may be saved (malloc code is
3287         decreased by 80 bytes)
3288
3289 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
3290
3291         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
3292         left is a bitfield, if yes, then don't optimize assignment. Perhaps
3293         this can be optimized more?
3294
3295 2005-03-10 Raphael Neider <rneider AT web.de>
3296
3297         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
3298           genNearPointerGet): (hopefully) fixed access to bitfields via
3299           pointers (p->bitN = x; and x = p->bitN; failed)
3300
3301 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
3302
3303         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
3304
3305 2005-03-09 Raphael Neider <rneider AT web.de>
3306
3307         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
3308
3309 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
3310
3311         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
3312         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
3313           (regTypeNum): set REG_BIT type if necessary
3314         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
3315         * support/regression/tests/critical.c: check bug 1144613
3316
3317 2005-03-02 Raphael Neider <rneider AT web.de>
3318
3319         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
3320
3321 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3322
3323         * src/avr/ralloc.c (serialRegAssign),
3324         * src/ds390/ralloc.c (serialRegAssign),
3325         * src/hc08/ralloc.c (serialRegAssign),
3326         * src/mcs51/ralloc.c (serialRegAssign),
3327         * src/pic/ralloc.c (serialRegAssign),
3328         * src/pic16/ralloc.c (serialRegAssign),
3329         * src/xa51/ralloc.c (serialRegAssign),
3330         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
3331
3332 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
3333
3334         * src/SDCCast.c (decorateType): fixed bug 1124787
3335
3336 2005-02-20 Hubert Sack <sack AT digiplan.de>
3337         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3338
3339         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
3340         patch #1121755
3341
3342 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3343
3344         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
3345         to keep the correct label reference count when adding/removing references
3346         to labels. A peephole file using this is appended to patch #1144962.
3347
3348 2005-02-14 Raphael Neider <rneider AT web.de>
3349
3350         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
3351         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
3352         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
3353           retrievals of result operand's value on assignment
3354
3355 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
3356
3357         * device/include/pic16/string.h: modified prototype for memccpy()
3358         to memccpy(void *, void *, char, size_t)
3359         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
3360         check whether to omit frame pointer or not,
3361         * (genInline): convert all occurences of "\n" to LF in inline
3362         assembler blocks, this helps formatting the inline text,
3363         * (pic16_loadFSR0): modified prototype,
3364         * (genNearPointerGet, genNearPointerSet): reorganization of code,
3365         removed some 8051 legacy code,
3366         * (genPackBits): enabled handling bitfields exceeding one byte in size,
3367         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
3368         before allocating temporary registers in functions,
3369
3370 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
3371
3372         * support/regression/tests/bitvars.c: corrected the "fix"
3373
3374 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
3375
3376         * support/regression/tests/bitvars.c,
3377         * support/regression/tests/bitwise.c,
3378         * support/regression/tests/rotate.c: "fixed" problems on Alpha
3379
3380 2005-02-10 Raphael Neider <rneider AT web.de>
3381
3382         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
3383           different size for Alpha
3384         * src/pic16/gen.c (genCmpEq) : improved compare with 0
3385
3386 2005-02-09 Raphael Neider <rneider AT web.de>
3387
3388         * src/SDCC.lex(doPragma) : save and restore warning options as well
3389           (also added new stack plus clone- and copyAndFreeSDCCERRG())
3390         * have #pragma less_pedantic set the errorlevel to WARNING
3391           (fixes #1117001)
3392         * (cloneOptimize) : fixed wrong malloc's size
3393         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
3394           facilitate correct handling of #pragma (save|restore)
3395
3396 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
3397
3398         * src/mcs51/gen.c: removed non-standard C nameless struct/union
3399
3400 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
3401
3402         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
3403
3404 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
3405
3406         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
3407
3408 2005-02-02 Raphael Neider <rneider AT web.de>
3409
3410         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
3411         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
3412         * (pic16_storeForReturn): fixed to allow returning function pointers
3413         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
3414         * device/include/pic16/{stddef.h,stdbool.h}: added
3415
3416 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
3417
3418         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
3419
3420 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
3421
3422         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
3423         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
3424          appeared to be required
3425
3426 2005-01-31 Borut Razem <borut.razem AT siol.net>
3427
3428         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
3429           include/mcs51 and include/z80 directories to the package
3430
3431 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3432
3433         * src/hc08/gen.c (genFunction): fixed bug #1112752
3434
3435 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3436
3437         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
3438
3439 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3440
3441         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
3442
3443 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
3444
3445         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
3446
3447 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
3448
3449         * device/include/c8051fxxx.h: removed these 6 files
3450         * device/include/mcs51/c8051fxxx.h: added these 11 new files
3451
3452 2005-01-26 Raphael Neider <rneider AT web.de>
3453
3454         * src/pic16/gen.c (genAssign): fixed assignment from longs
3455           in codespace (were cut to three bytes)
3456         * (genDummyRead): implemented (except for CODESPACE...),
3457           fixed bug #1108575
3458         * src/pic16/glue.c (emitStatistics): beautified
3459         * device/lib/pic16/libm/Makefile: added include path
3460
3461 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3462
3463         * src/z80/gen.c (aopPut): fixed bug #1103902
3464
3465 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3466
3467         * device/lib/expf.c: fixed bug #1095792
3468
3469 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
3470
3471         * device/lib/pic16/libm: added Math library sources
3472
3473 2005-01-24 Raphael Neider <rneider AT web.de>
3474
3475         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
3476           to enable upcast to pCodeOpReg2 (there is no type tag to
3477           differenciate the two and pic16_popGet2p cast into PCOR2)
3478         * src/pic16/main.c (_process_pragma): fixed another malloc bug
3479           (sizeof(sectNames) changed to sizeof(sectName))
3480           Both patches fix segfaults under MinGW.
3481
3482 2005-01-23 Raphael Neider <rneider AT web.de>
3483
3484         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
3485           Safe_[mc]?alloc()'ed variables
3486         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
3487           of (byte sized) temporaries (assign them to WREG for now)
3488         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
3489           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
3490           this might fix SIGSEGVs on MinGW...
3491         * src/SDCCopt.c (killDeadCode): restored original behaviour
3492           (volatile operands might get thrown away though)
3493
3494 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
3495
3496         * src/pic16/gen.c: fixed bug #1106975,
3497         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
3498         pointer update, INTCON is saved, global interrupts are disabled and
3499         restored after updateing TOS.
3500         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
3501         * added function attribute 'shadowregs' to take advantage of shadow
3502         registers,
3503         * added function attribute 'wparam' as an alternative to the wparam
3504         pragma,
3505         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
3506         user declares a non-ISR function as 'shadowregs',
3507         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
3508
3509 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
3510
3511         * .version: bumped version number to 2.4.8
3512         * device/lib/pic16/pics.all: list of PIC18F devices supported by
3513         pic16 port,
3514         * device/lib/pic16/libio/i2c/: I2C module support library,
3515         * device/include/pic16/i2c.h: I2C support library header,
3516         * device/lib/pic16/libc/stdio/: standard IO support sources,
3517         * (printf_small.c): printf_small() source, supports float print,
3518         * (printf_tiny.c): printf_tiny() source, does not support floats,
3519         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
3520         enable global optimizations for entire library source, other
3521         Makefiles in the source tree are also modified to reflect this,
3522         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
3523         function,
3524         * doc/sdccman.lyx: updated to reflect new changes,
3525         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
3526         sym->onStack if-case,
3527         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
3528         sbit, idata, _idata, xdata, _xdata,
3529         * added pragma library, to link an external library, (see doc),
3530         * removed command line options, --pomit-config-words, --pomit-ivt,
3531         --pleave-reset-vector,
3532         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
3533         when calling assembler to reflect memory model used, also define
3534         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
3535         reflect stack model used,
3536         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
3537         on stack return NULL,
3538
3539 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3540
3541         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
3542           of the operands is volatile. Fixes #1020220
3543
3544 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3545
3546         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
3547         * (OptimizeRegUsage): make sure that there is really no other flow where
3548           the first pCode is used
3549
3550 2005-01-22 Raphael Neider <rneider AT web.de>
3551
3552         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
3553           to fix #1106967 (pCode->seq are not set up correctly)
3554
3555 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3556
3557         * src/SDCCglue.c (glue): make sure code area is declared before the
3558         static initialization area.
3559
3560 2005-01-21 Raphael Neider <rneider AT web.de>
3561
3562         * device/lib/Makefile.in: fixed test for pic16 install dir
3563         * device/lib/pic16/*/Makefile*: modified compile flags to enable
3564           optimizations
3565         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
3566           added --optimize-goto compiler switch and pragma wparam documentation
3567         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
3568         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
3569           and PRODH closing bug #1071770 (peephole optimizer)
3570
3571 2005-01-19 Raphael Neider <rneider AT web.de>
3572
3573         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
3574           cmdLine buffers (used when calling sdcpp...) are large enough
3575           (MAX_PATH=256 truncates arguments leading to system halts when
3576           used in MinGW...)
3577         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
3578         * (genUminus): rewritten to for efficiency
3579         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
3580           used uninitialized in some cases)
3581         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
3582           copy the third byte from the int -- now assumes 0x80 (data memory)
3583         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
3584           operands (genAddLit expects the iCode's operands to swapped as
3585           well), fixed leftover bytes (crashed for short left operands)
3586         * (pic16_genMinusDec): performance improvements, removed false
3587           PIC14 emitSKPNCs
3588         * (pic16_genMinus): fixed to cope with differently sized operands
3589         * src/pic16/glue.c (pic16_glue): added new banksel optimization
3590           for --obanksel > 1
3591         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
3592         * src/pic16/graph.[ch]: implementation of directed graphs, used by
3593           new banksel optimization
3594         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
3595           analysis for temporary registers (segfaults...)
3596         * src/pic16/peeph.def: added rule
3597
3598 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
3599
3600         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
3601         which converts a float number to its ASCII representation
3602         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
3603         functions to convert the fractional and integer part of a float to ASCII,
3604         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
3605         realloc.c): added _MALLOC_SPEC to explicit place variables in data
3606         ram
3607         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
3608         _STATMEM macros,
3609         * device/include/pic16/adc.h: added GPL info,
3610         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
3611         a pCodeOp as tested operand,
3612         * (genNearPointerGet): optimized bit testing, does not use
3613         intermediate register for bit value, test directly instead with
3614         BTFSS, BTFSC, works only for single bits,
3615         * (genpic16Code): dump the name of the iCode in the asm,
3616         * src/pic16/ralloc.c (decodeOp): removed static declaration and
3617         renamed to pic16_decodeOp,
3618         * (serialRegAssign): do not allocate a temporary register for iCode
3619         sequences that test a single bit for 1/0
3620
3621 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
3622
3623         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
3624         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
3625         access stack and frame pointers. They are initially assigned to
3626         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
3627         accessing SFRs. Updated all occurences of modification of stack or
3628         frame pointer in gen.c and pcode.c,
3629         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
3630         assigning of a literal value to pointers,
3631         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
3632         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
3633         selected
3634
3635 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
3636
3637         * doc/sdccman.lyx: update documentation about stack pragma, added
3638         some info for stack memory models
3639
3640 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3641
3642         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
3643
3644 2005-01-08 Raphael Neider <rneider AT web.de>
3645
3646         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
3647           udata sections to fix bug #1097823
3648
3649 2005-01-05 Raphael Neider <rneider AT web.de>
3650
3651         * src/pic16/gen.c (genGenericShift): added handling of differently
3652           sized left operand and result
3653
3654 2005-01-04 Raphael Neider <rneider AT web.de>
3655
3656         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
3657         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
3658           to hold the condition bit)
3659         * added new version of genCmp (old code available via #define)
3660         * added new version of genShiftLeft/genShiftRight in a generic
3661           way, now supports shifting by negative values
3662         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
3663           shiftCount (expected by genGenericShift)
3664         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
3665         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
3666           dump
3667         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
3668           is an invalid literal too...)
3669
3670 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
3671
3672         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
3673         from Raphael Neider,
3674         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
3675         for 8-bit literals. This fixes some literal operands which are sign
3676         extended to 16-bits ints when instruction needs only 8-bits.
3677
3678 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
3679
3680         * device/lib/logf.c: added mcs51 assembly version
3681         * device/lib/expf.c: added mcs51 assembly version
3682         * device/lib/_logexpf.c: new shared asm code for expf and logf
3683         * device/include/math.h: add defines for assembly math library
3684         * device/lib/Makefile.in: build new _logexpf.c
3685         * device/lib/libfloat.lib: use new _logexpf.c
3686
3687 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3688
3689         * src/pic/device.c
3690         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
3691           device types which have less than 0x7f registers.
3692
3693 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3694
3695         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
3696
3697 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3698
3699         * device/lib/printf_fast.c: only build on supported arch.
3700         * device/lib/printf_tiny.c: only build on supported arch.
3701         * device/lib/printf_fast_f.c: only build if asm float lib
3702         * device/lib/_fsget1arg.c: only build if asm float lib
3703         * device/lib/_fsget2args.c: only build if asm float lib
3704         * device/lib/_fsnormalize.c: only build if asm float lib
3705         * device/lib/_fsreturnval.c: only build if asm float lib
3706         * device/lib/_fsrshift.c: only build if asm float lib
3707         * device/lib/_fsswapargs.c: only build if asm float lib
3708         * device/include/stdio.h: don't provide print_fast,
3709           print_fast_f, print_tiny prototypes if --xstack used
3710
3711 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
3712
3713         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
3714         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
3715           to the SOURCES
3716
3717 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3718
3719         * device/lib/printf_fast_f.c: same as printf_fast, but
3720           with floating point enabled
3721         * device/lib/printf_fast.c: minor tweaks
3722         * device/include/stdio.h: add printf_fast_f
3723
3724 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3725
3726         * src/SDCCmain.c: make --float-reent default for mcs51
3727         * device/lib/_fsadd.c: added mcs51 assembly version
3728         * device/lib/_fssub.c: added mcs51 assembly version
3729         * device/lib/_fsmul.c: added mcs51 assembly version
3730         * device/lib/_fsdiv.c: added mcs51 assembly version
3731         * device/lib/_fseq.c: added mcs51 assembly version
3732         * device/lib/_fsneq.c: added mcs51 assembly version
3733         * device/lib/_fsgt.c: added mcs51 assembly version
3734         * device/lib/_fslt.c: added mcs51 assembly version
3735         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
3736         * device/lib/Makefile.in: add _fscmp to build
3737         * device/lib/libfloat.lib: add _fscmp to build
3738
3739 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3740
3741         * device/lib/_fs2slong.c: added mcs51 assembly version
3742         * device/lib/_fs2sint.c: added mcs51 assembly version
3743         * device/lib/_fs2schar.c: added mcs51 assembly version
3744         * device/lib/_fs2ulong.c: added mcs51 assembly version
3745         * device/lib/_fs2uint.c: added mcs51 assembly version
3746         * device/lib/_fs2uchar.c: added mcs51 assembly version
3747         * device/lib/_slong2fs.c: added mcs51 assembly version
3748         * device/lib/_sint2fs.c: added mcs51 assembly version
3749         * device/lib/_schar2fs.c: added mcs51 assembly version
3750         * device/lib/_ulong2fs.c: added mcs51 assembly version
3751         * device/lib/_uint2fs.c: added mcs51 assembly version
3752         * device/lib/_uchar2fs.c: added mcs51 assembly version
3753         * device/include/float.h: added #define to select asm vs c
3754
3755 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
3756
3757         * device/lib/printf_fast.c: improvements to float output
3758         * device/include/float.h: add defines for assembly float library
3759         * device/lib/_fsget1arg.c: receive 1 float arg
3760         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
3761         * device/lib/_fsnormalize.c: normalize a float
3762         * device/lib/_fsreturnval.c: return float, various helper routines
3763         * device/lib/_fsrshift.c: right shift a float's mantissa
3764         * device/lib/_fsswapargs.c: swap 2 floats
3765         * device/lib/Makefile.in: build these 6 new files for mcs51
3766         * device/lib/libfloat.lib: add these 6 files to the library
3767
3768 2004-12-26 Borut Razem <borut.razem AT siol.net>
3769
3770         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
3771           built by gcc 3.4.2
3772
3773 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
3774
3775         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
3776           and fully reentrant and register bank neutral.
3777         * device/lib/printf_fast.c: added float (not enabled by default),
3778           added compact/slower integer (also not enabled by default),
3779           improved size/speed of fast integer code, other minor changes
3780         * device/include/stdio.h, device/lib/Makefile.in,
3781           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
3782
3783 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
3784
3785         * src/pic16/pcode.c: declaring variables other than at the start of a
3786           block is not supported in C by VC6.
3787
3788 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
3789
3790         * applied a previous patch from Raphael Neider that wasn't included
3791         in the previous commits, which fixes infinite loops within jumptable
3792         improvements,
3793         * made some fixes that previous patches introduced
3794
3795 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
3796
3797         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
3798         that fixes an issue with AOP_PCODE asmop's offset,
3799         * (pic16_popCopyReg): update instance field too,
3800         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
3801         function of pic port,
3802         * (genCmp, genAnd, genAssign),
3803         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
3804
3805 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
3806
3807         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
3808         variables initial values to idata section,
3809         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
3810         variables in some functions. This utilizes parmBytes field of iCode
3811         structure to hold the offset of the variable in stack. (might be
3812         able to use the stack field too?)
3813         * applied patch from Raphael Neider # ### , # ###
3814         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
3815         variable initial values in idata section,
3816         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
3817         for static variables with initial value
3818         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
3819         applied fix in while loop from Raphael Neider.
3820
3821 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
3822
3823         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
3824         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
3825         * src/ds390/ralloc.c (serialRegAssign): spill bits
3826         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
3827         * support/Util/SDCCerr.c,
3828         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
3829         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
3830         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
3831
3832 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
3833
3834         * device/include/sdcc-lib.h: inserted LGPL, added includes
3835           asm/ds390/features.h and asm/mcs51/features.h
3836         * device/include/asm/default/features.h,
3837         * device/include/asm/gbz80/features.h,
3838         * device/include/asm/z80/features.h: added empty _AUTOMEM
3839           and _STATMEM
3840         * device/include/asm/ds390/features.h,
3841         * device/include/asm/mcs51/features.h: added files with defines for
3842           _AUTOMEM and _STATMEM indicating automatic and static storage class
3843         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
3844         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
3845         * src/SDCCicode.c (geniCodeCast),
3846         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
3847         * src/SDCCloop.c (loopInduction): removed unused variable lr
3848         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
3849           to convertToFcall to include char modulo (RFE 1065037), added check
3850           if left operand is unsigned and use abs of literal value
3851         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
3852           as it doesn't work after conversion from peephole.def to peephole.rul
3853         * src/mcs51/gen.c (toBoolean): added check for size,
3854           (genModOneByte): optimized code for signed char modulo a literal
3855           power of 2 (thanks to Hubert Sack),
3856           (genRRC): removed unnecessary "clr c",
3857           (genRLC): replaced "add a,acc" with cheaper "rlc a"
3858         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
3859           jump optimization,
3860           swapped rules 256.c and 256.d,
3861           extended 256.d by using new multiple checks (thanks Erik),
3862           added rules 256.e and 256.f,
3863           updated rule 261.a and 261.b to new generated code
3864         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
3865
3866 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3867
3868         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
3869           induction related bugs, including first part of bug #1074377
3870
3871 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
3872
3873         * applied patch from bug-report #1076292,
3874         * applied patches for genAnd and Goto-optimizations for Raphael
3875         Neider,
3876         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
3877         dump a less iCode information,
3878         * src/pic16/device.h (pic16_options_t): added field debgen,
3879         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
3880         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
3881         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
3882         puclic,
3883         * (various functions): added macros FENTRY and FENTRY2 to functions,
3884         to emit function prologue,
3885         * (various functions): fixed indentation,
3886         * (genNearPointerGet): fixed loading of FSR0,
3887         * (genPackBits): applied patch from Raphael Neider to fix updating
3888         of FSR0 and touching only the modified bits,
3889         * src/pic16/genarith.c (various functions): added macros FENTRY to
3890         emit function prologue in comments,
3891         * src/pic16/pcode.h: added functions debugf2, debugf3,
3892         * src/pic16/ralloc.c: partial fix for packForPush caused
3893         segmentation fault,
3894
3895 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3896
3897         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
3898           <stsp AT users.sourceforge.net> with reversed byte order
3899         * support/regression/tests/rotate.c: added (ds390 skips some tests)
3900
3901 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3902
3903         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
3904           bug #1074377
3905         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
3906         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
3907
3908 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3909
3910         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
3911
3912 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3913
3914         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
3915           conditions,
3916           (setFromConditionArgs): friendly operand parser for peephole rules,
3917           (operandBaseName, operandsNotRelated): new peephole condition
3918           "operandsNotRelated" -- similar to "operandsNotSame", but takes
3919           architecture specific register naming into account, handles n-way
3920           comparisons, and supports quoted literals
3921         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
3922
3923 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3924
3925         * src/mcs51/peeph.def: fixed bug #1076940
3926
3927 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3928
3929         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
3930
3931 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3932
3933         Adding support for replacing ljmps with sjmps in jumptables
3934         generated for switch statements. For now you need to set the
3935         environment variable SDCC_SJMP_JUMPTABLE to enable this.
3936         Now 4 algorithms for mcs51 jumptable generation are used:
3937         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
3938         addresses loaded pc-relative for up to 112 cases and stack-pushing
3939         target addresses loaded with offset from dptr for up to 256 cases.
3940
3941         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
3942         * src/mcs51/main.c: adapted constants for switch table generation
3943         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
3944
3945 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
3946
3947         * device/lib/printf_large.c (_print_format): fixed bug 1073386
3948         * support/regression/tests/bug1057979.c: added test for bug 1073386
3949
3950 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3951
3952         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
3953         compilers
3954
3955 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3956
3957         * src/pic16/device.h,
3958         * src/pic16/genarith.c,
3959         * src/pic16/glue.c,
3960         * src/pic16/main.c,
3961         * src/pic16/pcode.c: applied patches #1068154 and #1070213
3962
3963 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
3964
3965         Large cummulative patch for pic16 port.
3966         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
3967         to call when a stack overflow occurs,
3968         * (malloc.h): added CVS Id tag,
3969         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
3970         variable,
3971         * added libc directory. The current version of LibC contains string
3972         functions, ctype functions and macros and some functions of the
3973         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
3974         be extensively tested in the future. Standard disclaimer here.
3975         Library is not automatically build yet. But one can build it by
3976         invoking 'make' inside the libc directory.
3977         * added ADC library under libio. Preliminary version yet.
3978
3979         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
3980         * src/pic16/gen.c (aopForRemat): asmop size is filled by
3981         aopForRemat() now and not by pic16_aopOp(),
3982         * (pic16_popGetTempReg): removed warning messgae when allocating
3983         temporary registers, its a buggy feature and will be removed,
3984         * (pic16_popGet): set register instance field in AOP_CRY,
3985         * (pic16_outBitC): fixed for results in size greater than 1,
3986         * (genUminusFloat): fixed for pic16, ported code from mcs51,
3987         * (pic16_storeForReturn): optimized return of 0,
3988         * (genCmp): experimental code for new genCmp which uses PIC18's
3989         special compare&skip instructions. Initial tests fail some times
3990         with variables grater than 1 byte in size, so new code is disabled,
3991         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
3992         a single bit,
3993         * (genCast): began a fix to optimize the casting of a bit to another
3994         bit, now assigning a bitfield to another bitfield will fail, sorry,
3995         * src/pic16/main.c: disabled the use of lr-support feature,
3996         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
3997         * added some function prototypes, added function _debugf prototype,
3998         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
3999         bits with offset (case PO_GPR_BIT),
4000         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
4001         command line,
4002         * (isBankInstruction): modified to return 0 for no banking instruction,
4003         and 1 for banking instruction,
4004         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
4005         caused stop processing pCodes after a inline assembly block,
4006         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
4007         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
4008         registers when it shouldn't,
4009         * src/pic16/ralloc.c (allocReg): add preliminary support for
4010         supporting a limited set of temporary registers,
4011
4012 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4013
4014         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
4015           genDataPointerSet): ensure assignments always copy in MSB to LSB
4016           order,
4017           (loadRegFromAop): recognize CLRH optimization,
4018           (genFunction): optimize RECEIVE iCodes in reentrant functions
4019
4020 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4021
4022         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
4023           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
4024           selected.
4025         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
4026         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
4027           contiguous with data
4028
4029 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4030
4031         * device/lib/_gptrget.c (_gptrget),
4032         * device/lib/_gptrgetc.c (_gptrgetc),
4033         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
4034           instead of sjmp to ret
4035         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
4036           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
4037
4038 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
4039
4040         * .version: bumped version to 2.4.7
4041         * device/lib/_gptrget.c (_gptrget): is now _naked
4042         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
4043         * device/lib/_gptrput.c (_gptrput): is now _naked
4044         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
4045           (createFunction): fixed xstack
4046         * src/SDCCglue.c (emitMaps): set allocation required for bit area
4047         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
4048           or bit either,
4049           (geniCodeCritical): store original interrupt state in an iTemp bit
4050           var unless stack-auto
4051         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
4052         * src/SDCCmain.c (setIncludePath): added include/target to search path
4053         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
4054         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
4055           prototype,
4056           (processFuncArgs): put bit vars in bit area
4057         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
4058           unsaveRBank): fixed xstack,
4059           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
4060           (genFunction, genEndFunction): fixed xstack,
4061           (genAssign): optimization don't walk backwards through mem
4062         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
4063         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
4064         * support/regression/Makefile: also make library (for stack-auto) when
4065           making "all" and added "test-mcs51-xstack-auto"
4066         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
4067         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
4068         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
4069         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
4070         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
4071           make-library by MAKE_LIBRARY
4072         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
4073           regression tests for xstack
4074         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
4075         * support/regression/tests/critical.c: test for critical on mcs51
4076
4077 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4078
4079         * support/regression/ports/ucz80/spec.mk: use include and lib files from
4080           built version of sdcc instead of installed version
4081
4082 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
4083
4084         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
4085         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
4086           vprintf.c now
4087         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
4088         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
4089           WARNING: remove device/lib/build/z80/printf.o by hand when
4090           updating from previous build!
4091         * device/lib/z80/printf.c: updated comment
4092         * support/regression/tests/bug1057979.c: test all ports now
4093         * support/regression/tests/bug1065458.c: file added
4094
4095 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4096
4097         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
4098           *_start and *_end symbols for static functions
4099
4100 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
4101
4102         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
4103           and search crt0.o in all library paths,
4104           (setIncludePath): proper handling of --nostdinc,
4105           (setLibPath): proper handling of --nostdlib
4106         * support/regression/Makefile,
4107         * support/regression/ports/ds390/spec.mk,
4108         * support/regression/ports/gbz80/spec.mk,
4109         * support/regression/ports/hc08/spec.mk,
4110         * support/regression/ports/mcs51/spec.mk,
4111         * support/regression/ports/mcs51-large/spec.mk,
4112         * support/regression/ports/mcs51-stack-auto/spec.mk,
4113         * support/regression/ports/z80/spec.mk: use include and lib files from
4114           built version of sdcc instead of installed version
4115         * doc/sdccman.lyx: fixed typo in --nostdinc
4116
4117 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
4118
4119         * src/pic/pcode.c,
4120         * src/pic/device.c,
4121         * src/pic/ralloc.c,
4122         * src/pic/gen.c : added support to generate code for struct bit fields.
4123
4124 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
4125
4126         * as/xa51/xa_version.h,
4127         * device/include/errno.h,
4128         * device/include/regc515c.h,
4129         * device/lib/_itoa.c,
4130         * device/lib/_ltoa.c,
4131         * device/lib/ser_ir_cts_rts.c,
4132         * sim/ucsim/xa.src/glob.cc,
4133         * sim/ucsim/xa.src/inst_gen.cc,
4134         * sim/ucsim/xa.src/xa_bit.cc,
4135         * sim/ucsim/xa.src/xa_sfr.cc,
4136         * sim/ucsim/z80.src/inst_dd.cc,
4137         * sim/ucsim/z80.src/inst_fdcb.cc,
4138         * support/scripts/keil2sdcc.pl,
4139         * src/pic16/pic16.dsp,
4140         * src/pic16/pic16a.dsp: corrected cvs line endings
4141         * device/lib/printf_large.c: fixed bug 1057979
4142         * src/pic16/gen.c: fixed non-C standard code
4143         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
4144         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
4145         * support/regression/ports/mcs51/support.c: reload T1 asap
4146         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
4147           pdata use and clear idata startup behaviour
4148         * support/regression/tests/bug1057979.c: added
4149
4150 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
4151
4152         * device/examples/ds390/ow390/ad26.h,
4153         * device/examples/ds390/ow390/cnt1d.h,
4154         * device/examples/ds390/ow390/crcutil.c,
4155         * device/examples/ds390/ow390/ownet.h,
4156         * device/examples/ds390/ow390/owsesu.c,
4157         * device/examples/ds390/ow390/swt12.h,
4158         * device/examples/ds390/ow390/swtoper.c,
4159         * device/examples/ds390/ow390/temp10.h,
4160         * device/examples/ds390/ow390/thermodl.c,
4161         * device/examples/ds390/tinitalk/tinitalk.dsp,
4162         * device/examples/ds390/tinitalk/tinitalk.dsw,
4163         * device/examples/mcs51/clock/hw.h,
4164         * device/examples/mcs51/simple2/go.bat,
4165         * device/examples/serialcomm/windows/serial.h,
4166         * device/examples/xa51/dummy.c,
4167         * device/examples/xa51/hello.c,
4168         * device/include/80c51xa.h,
4169         * device/include/at89x051.h: corrected cvs line endings
4170
4171 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
4172
4173         * src/pic16/main.c (options): added command line --gstack, to trace
4174         stack over/under flows,
4175         * added pragma 'wparam' to allow passing first byte of function
4176         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
4177         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
4178         call to __gstack_test function and sets up the symbol as extern,
4179         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
4180         * popaop): added call to pic16_testStackOverflow,
4181         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
4182         wparamList list,
4183         * (genCall, genPcall): now all parameters are passed via stack
4184         except in functions that are pass to wparam pragma in which WREG is
4185         used too,
4186         * (genPcall): REENTRANT flag is checked to see if variable prototype
4187         contains reentrant keyword, don't call a non-reentrant function, via
4188         a reentrant function pointer or vice versa, functions are never
4189         passed via WREG,
4190         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
4191         D.Winkler,
4192         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
4193         SIGSEGV when accessing a NULL register stucture,
4194         * (pic16_printGPointerType): modified to handle UPPER modifier for
4195         function initializers, changed prototype of function to simpler one,
4196         * (pic16_printIvalFuncPtr): check to see if function is already
4197         added in externs list,
4198         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
4199         optimized a move from W to SFR with a move to the same register
4200         later after a CALL,
4201         * device/lib/pic16/debug: NEW directory, contains debug features
4202         which are enabled when linking with libdebug.lib, currently command
4203         line option --gstack enables stack pointer tracing for over/under
4204         flow, corresponding sources are in debug/gstack
4205
4206 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
4207
4208         * doc/sdccman.lyx: updated SDCC version,
4209         * (PIC16 port): update list of command line options,
4210         * src/pic16/device.h (structure pic16_options_t): added field gstack
4211         to enable stack overflow tracing on push/pops,
4212         * src/pic16/device.c (statistics structure): added statistics
4213         structure,
4214         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
4215         pic16_dump_int_registers): increase statistics counters for each
4216         * variable which is encountered
4217         * (pic16_dump_usection): emit each .udata variable to its own udata
4218         section,
4219         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
4220         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
4221         parameters via stack, otherwise use old scheme,
4222         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
4223         assembler output file,
4224         * src/pic16/main.c: added command line options --gstack to enable
4225         push/pop tracing for stack overflow,
4226         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
4227         instructions): added size of each instruction,
4228         * (pic16_countInstruction): estimate size of instructions in
4229         the_pFile list, inline assembly blocks are not counted,
4230         * (pic16_FixRegisterBanking): trace previous register usage, when
4231         banksel optimizations is greater than 0, don't emit a redudant
4232         banksel directive,
4233
4234 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
4235
4236         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
4237         * src/pic16/ralloc.c : applied same fix for pic16.
4238         * src/pic/gen.c : tidied it up a little.
4239
4240 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4241
4242         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
4243         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
4244
4245 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4246
4247         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
4248
4249 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4250
4251         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
4252         non-reentrant function __modsint in the interrupt function (thus
4253         corrupting math operations during serial I/O)
4254         * device/lib/ser_ir.c: as above, changed buffersize
4255         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
4256         256.c,d for zeroing
4257         * doc/Makefile: added option -t for rsync
4258
4259 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4260
4261         * src/SDCCast.h (struct ast),
4262         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
4263
4264 2004-10-20 Borut Razem <borut.razem AT siol.net>
4265
4266         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
4267         package
4268
4269 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
4270
4271         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
4272         makefile targets,
4273         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
4274         support functions to replace long sequences of MOVFF's from access
4275         bank registers to stack and vice versa,
4276         * src/pic16/device.h: added new field opt_flags, where optimization
4277         flags can be set to enable certain features,
4278         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
4279         * pBlock, (genFunction, genEndFunction): surroung loop for
4280         saving/loading used registers in stack with PC_INFO pCodes,
4281         INF_LREGS. Code in between can then be optimized by pCode optimizer
4282         to support function calls,
4283         * (genDataPointerSet): fixed bug which loaded float fields in
4284         structures with corrupt data,
4285         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
4286         in a standard way debug info on stderr. Feature used for developing
4287         and debugging only,
4288         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
4289         obsolete chunks of code,
4290         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
4291         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
4292         * pic16/src/pcode.c (pic16_newpCodeInfo,
4293         * (pic16_newpCodeOpLocalRegs),
4294         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
4295         feature,
4296         * (pic16_pCodeConstString): printing of the initial value of a
4297         symbol as a comment is inhibited since parsing was already done by
4298         copyStr and output is corrupt,
4299         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
4300
4301 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4302
4303         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
4304
4305 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
4306
4307         * as/mcs51/lkarea.c: removed old K&R style,
4308           (lnksect): changed check on boundary error,
4309           (lnksect2): changed check on boundary error,
4310           (lnksect2): extend XSTK to end of page if size = 1
4311         * as/mcs51/lkmain.c: removed old K&R style,
4312           (Areas51): create l_IRAM symbol
4313         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
4314         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
4315           model-mcs51-stack-auto, added model-mcs51-xstack-auto
4316         * device/lib/_mullong.c: added version to be compiled with xstack
4317         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
4318         * device/lib/mcs51/crtxclear.asm: clear pdata as well
4319         * device/lib/mcs51/crtxstack.asm: fixed comment
4320         * src/SDCCglue.c: maxInterrupts defaults to 0,
4321           (emitMaps): added pdata,
4322           (createInterruptVect): (re)moved default,
4323           (glue): added pdata,
4324           (glue): moved __start__xstack to XSTK with default size 1
4325         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
4326           and options.float_rent when options.stackAuto is set,
4327           (linkEdit): only write XDATA_NAME if provided on command line
4328         * src/SDCCmem.h,
4329         * src/SDCCmem.c: added pdata
4330         * src/port.h: added pdata_name to PORT
4331         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
4332           (saveRegisters, unsaveRegisters): removed usage of B,
4333           (genMinus): fixed accumulator clash,
4334           (genJumpTab): added comment, this needs another look
4335         * src/mcs51/gen.c: added check for "B in use" paranoia,
4336           added pushB() and popB()
4337         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
4338           chance
4339         * src/avr/main.c,
4340         * src/ds390/main.c,
4341         * src/hc08/main.c,
4342         * src/mcs51/main.c,
4343         * src/pic/main.c,
4344         * src/pic16/main.c,
4345         * src/xa51/main.c,
4346         * src/z80/main.c: (reset_regparms) made void parameter explicit and
4347           added PSEG (PAG,XDATA) or NULL to port specifier
4348         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
4349         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
4350           (_mcs51_genInitStartup): removed __start__xstack equ,
4351           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
4352         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
4353         * src/z80/gen.c (_rleAppend): fixed warnings
4354         * support/regression/tests/zeropad.c: added pdata test
4355         * .version: bumped to 2.4.6
4356
4357 2004-10-17 Borut Razem <borut.razem AT siol.net>
4358
4359         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
4360         as a part of nightly build
4361
4362 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
4363
4364         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
4365         WREG holds the first byte function parameters,
4366         * (aopForSym): take special case for symbols which are in FARSPACE
4367         but in CODESPACE too,
4368         * (assignResultValue): modified to take into account _G.useWreg,
4369         * (genCall): don't use wreg for parameter passing when function is
4370         declared as reentrant, too, added optimization INCF to stack
4371         pointer when stack parameter count is 1,
4372         * (genFunction, genEndFunction): refurnished and fixed to not using
4373         wreg for passing parameters when function has varargs or is
4374         reentrant, fixed bug with symbol name compare for generating
4375         functions in absolute address,
4376         * (pic16_storeForReturn): refurnished,
4377         * (genCmp): began writing a new version of the function, not ready
4378         yet, therefore it is disabled,
4379         * (genAssign): do not read code memory when assigning a function to
4380         a pointer function,
4381         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
4382         array of characters, not pointer,
4383         * (pic16initialComments): in debug mode emit an .ident directive for
4384         the assembler,
4385         * (_process_pragma): emit a new warning type (internal to pic16)
4386         when setting stack to default length, emit a similar warning when
4387         placing a function at absolute address and address is not word aligned
4388         * (_pic16_parseOptions): added 'return TRUE' statement,
4389         * (_pic16_linkEdit): if compiling a source, then add the source's
4390         file object, first in the list of objects to link,
4391
4392 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
4393
4394         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
4395         * src/pic/main.c : removed VC warning.
4396         * src/pic/gen.c : changed comment.
4397
4398 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
4399
4400         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
4401         reference to a deprecated symbol _GPTRREG was causing failure to
4402         link. Thanks G. M. Gallant for the info.
4403
4404 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
4405
4406         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
4407         comments for Bugs item #954788.
4408
4409 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
4410
4411         * src/pic16/device.c (pic16_dump_gsection,
4412         * pic16_groupRegistersInSection): handle symbols declared to be in
4413         access bank differently,
4414         * src/pic16/gen.c (struct _G): added field resDirect,
4415         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
4416         send values read from stack directly to result and don't allocate
4417         temporary values,
4418         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
4419         same registers,
4420         * (pic16_sameRegsOfs): NEW,
4421         * (freeAsmop): if _G.resDirect is set then do not mark registers as
4422         free because they were not allocated from temporary pool,
4423         * pic16_popRegFromString): workaround to fix a problem with
4424         allocating variables twice or never,
4425         * (genGenPointerGet): using PRODL instead of FSR0H,
4426         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
4427         instead of FSR0H,
4428         * (genAssign): take advantage of the _G.resDirect flag,
4429         * (genCast): around line 11844, use mov2f instead of directly
4430         MOVFF'ing between operands to account for literal values,
4431         * src/pic16/genutils.c: some new debug functions for gpsim have been
4432         added,
4433         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
4434         float with integer part only,
4435         * src/pic16/main.c (_process_pragma): handle pragma udata access to
4436         place variables in access bank
4437         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
4438         updated sources to reflect recent changes in gen.c
4439
4440 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
4441
4442         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
4443         sources that searched for headers in installation path, now the
4444         device/include/pic16 is used,
4445         * src/pic16/glue.c (pic16glue),
4446         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
4447         .line directives if not in debug mode, this suppresses assembler's
4448         warnings for ignored directives
4449
4450 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
4451
4452         * src/port.h: made reset_regparms prototype void parameter explicit.
4453         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
4454         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
4455         * doc/sdccman.lyx: documented warning disabling and how to use
4456           printf_large to make it print floats.
4457         * device/include/stdbool.h: NEW
4458         * device/lib/_atof.c,
4459         * device/lib/_divuint.c,
4460         * device/lib/_divulong.c,
4461         * device/lib/expf.c,
4462         * device/lib/printf_large.c,
4463         * device/lib/sincosf.c,
4464         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
4465         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
4466           a completely reentrant lib.
4467
4468 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
4469
4470         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
4471         * device/include/pic16/stdio.h: fixed bug with colon
4472
4473 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
4474
4475         * device/include/pic16/stdio.h,
4476         * device/include/pic16/stdlib.h,
4477         * device/include/pic16/math.h: NEW
4478         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
4479         declared as _naked to reduce overhead
4480         * device/lib/Makefile.in (target port-specific-objects-pic16):
4481         changed * to *.* so to ignore the CVS directory,
4482         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
4483         stacked variables back in stack,
4484         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
4485         corruption
4486
4487 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
4488
4489         * .version: bumped version number to 2.4.5
4490         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
4491         * support/Util/SDCCerr.c (messages structure): added entry for
4492         W_POSSBUG2
4493
4494         Large cumulative patch for pic16 port and libraries.
4495         * device/include/pic16/sdcc-lib.h,
4496         * device/include/pic16/stdarg.h,
4497         * device/include/asm/pic16/features.h,
4498         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
4499         * device/include/pic16/float.h: changes reentrant keyword with
4500         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
4501         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
4502         updated target build-libraries to include objects from gptr,
4503         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
4504         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
4505         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
4506         all function headings,
4507         * src/SDCCmain.c: added global parameter userIncDirsSet,
4508         * (parseCmdLine): when option -I is encountered add directory to
4509         userIncDirsSet too,
4510         * src/version.awk: added space between control and long,
4511         * src/pic16/NOTES: added some notes for the port,
4512         * src/pic16/gen.c: added prototype for mov2fp function,
4513         * (fReturnpic16[]): properly named return value registers,
4514         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
4515         * (aopForSym): added code to handle symbols with onStack flag set,
4516         symbols onStack are allocated PTRSIZE bytes,
4517         * (aopFreeAsmop): handles special case where asmops are stack objects,
4518         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
4519         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
4520         added argument lock to trace flaws in allocating temporary registers
4521         when developing port,
4522         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
4523         * (pic16_popRegFromString): reenabled allocating a direct register
4524         from string,
4525         * (assignResultValue): various beautifications,
4526         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
4527         referenced function argument,
4528         * (genIpush): reenabled to allow stacked arguments, handles only
4529         ic->parmPush iCodes,
4530         * (genCall, genPcall): major changes to allow for variable argument
4531         functions, fixed a bug with falsely restoring stack pointer after
4532         returning from call,
4533         * (genFunction): pending code for critical function,
4534         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
4535         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
4536         * (genNearPointerGet): fixed bug with indirect reading, was always
4537         reading from INDF0
4538         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
4539         pointers,
4540         * (genAddrOf): rewrote code to take address of a stacked function parameter
4541         * (genCast): fixed casting to generic pointer type,
4542         * src/pic16/gen.h: added AOP_STA,
4543         * (struct asmop): added field stk,
4544         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
4545         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
4546         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
4547         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
4548         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
4549         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
4550         generic pointers,
4551         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
4552         and library paths,
4553         * (pic16_port structure): generic pointer size is set to 3,
4554         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
4555         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
4556         compiler warning,
4557         * src/pic16/ralloc.c (allocReg): prevent allocating register when
4558         operand is an iTemp,
4559
4560 2004-09-24 Martin Helmling <mh AT octo-soft.de>
4561
4562         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
4563         * debugger/mcs51/simi.c: addapt new syntax of s51
4564
4565 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
4566
4567         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
4568         * src/pic16/pcode.c: commented out some calls to free() in order to
4569         fix bug #989576,
4570
4571 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4572
4573         * src/SDCCicode.h,
4574         * src/SDCCicode.c (isiCodeInFunctionCall),
4575         * src/avr/ralloc.c (selectSpil),
4576         * src/pic/ralloc.c (selectSpil),
4577         * src/pic16/ralloc.c (selectSpil),
4578         * src/ds390/ralloc.c (selectSpil),
4579         * src/hc08/ralloc.c (selectSpil),
4580         * src/xa51/ralloc.c (selectSpil),
4581         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
4582         stack in the middle of a function call sequence (fixes bug #1020268)
4583         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
4584         costs associated with the minimum switch case.
4585
4586 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4587
4588         * src/SDCC.lex: fixed bug #1030549
4589
4590 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4591
4592         * src/SDCCcse.h (struct cseDef),
4593         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
4594         over a function call if the CSE is derived from a symbol whose
4595         address has been taken (fixes bug #1029883)
4596         * support/regression/tests/bug-1029883: a new regression test for
4597         this bug
4598
4599 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4600
4601         * src/hc08/gen.c (emitinline): fixed bug #1029778
4602         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
4603         to a cast object is no longer a syntax error ("fixes" bug #1030006,
4604         and starts toward RFE #905167)
4605
4606 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
4607
4608         * src/pic16/gen.c (mov2f): New function to move an operand to
4609         another without considering if it is a literal or a register,
4610         * (pic16_sameRegs): don't check if they are both AOP_REG,
4611         * (AccRsh): removed andmask=0 lines,
4612         * (genLeftShift): duplicated to be improved in future versions,
4613         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
4614         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
4615         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
4616         * (pic16initMnemonics): added initialization for POC_INFSNZW,
4617         * (insertBankSwitch): fixed inserting banksel directives algorithm
4618         for instructions that follow a skip instruction, this fixes a report
4619         for broken subtraction code generation,
4620         * src/pic16/ralloc.c (deassignLRs): do not free register if current
4621         iCode is a left op, just in case result and right share the same
4622         registers
4623
4624 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4625
4626         * src/hc08/main.c,
4627         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
4628         preservation of HX
4629         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
4630         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
4631         on 2004-09-12; it was buggy
4632
4633 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
4634
4635         * src/SDCCsymt.h: removed RESULT_CHECK
4636         * src/SDCCast.c,
4637         * src/SDCCglue.c,
4638         * src/SDCCval.c,
4639         * src/pic/glue.c,
4640         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
4641
4642 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
4643
4644         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
4645         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
4646         configuration values no more rejected by compiler, they are assigned
4647         to configuration registers with a warning message instead,
4648         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
4649         the for-loop so last conf register is emitted too,
4650         * (_pic16_initPaths): link library libsdcc.lib by default,
4651         * (_hasNativeMulFor): modified test for multiplication according to
4652         Raphael Neider's remarks. Integer multiplication is also done with
4653         support functions,
4654         * device/include/pic16/pic18fregs.h: corrected type error in while
4655         testing and including 18f6720 header file
4656
4657 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
4658
4659         * src/pic16/device.h (pic16_options): removed field use_crt,
4660         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
4661         until an optimization to handle single bits is added,
4662         * (pic16_loadFSR0): moved before genUnpackBits,
4663         * (genAnd): some white lines removed,
4664         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
4665         leave_reset flags in pic16_options when using crt modules,
4666
4667 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
4668
4669         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
4670           for bugs 898889 & 979599. Also used some safer print instructions.
4671
4672 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
4673
4674         * src/pic16/device.h (pic16_options_t): added field use_crt,
4675         crt_name, no_crt,
4676         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
4677         catch a probable future bug,
4678         * src/pic16/gen.c: aopIdx function commented out,
4679         * (genAssign): commented out old code which used aopIdx,
4680         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
4681         code, added if conditionals to take into account the --use-crt
4682         command line options,
4683         * src/pic16/main.c (pic16_optionsTable): added new command line
4684         options, --use-crt= and --no-crt,
4685         * (_pic16_linkEdit): now the proper crt object is added in the
4686         linker command line except than when --no-crt is specified,
4687         * src/pic16/pcode.c,
4688         * src/pic16/pcode.h: added some structures and functions for a new
4689         optimization scheme to compansate for instruction overhead between
4690         same iCodes, this scheme is currently under development and is not
4691         working in any way,
4692         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
4693         to && operator,
4694         * device/lib/pic16/startup/crt0i.c,
4695         * device/lib/pic16/startup/crt0iz.c: added global char variable
4696         __uflags to force the generation of an idata section
4697
4698 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
4699
4700         * doc/Makefile,
4701         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
4702         * doc/sdccman.lyx: updated sdcc version to 2.4.4
4703
4704 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4705
4706         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
4707         Frieder) and clarified the default code optimization mode
4708
4709 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4710
4711         * src/SDCC.lex (doPragma, process_pragma),
4712         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
4713         "opt_code_size", and "opt_code_balanced"
4714         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
4715         regrouped options by category, added support for category headers
4716         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
4717         and "--opt-code-size"
4718         * doc/sdccman.lyx: documented these new options and pragmas
4719         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
4720         preference into account
4721
4722 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4723
4724         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
4725           geniCodePreDec): Fixed bug 904237 by generating a warning
4726         * src/SDCCerr.h,
4727         * src/SDCCerr.c: added warning W_SIZEOF_VOID
4728
4729 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
4730
4731         * src/pic/device.c : When no max ram set validate full memory range.
4732         * src/pic/pcode.c,
4733         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
4734
4735 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4736
4737         * device/lib/_gptrget.c,
4738         * device/lib/_gptrput.c: updated comment
4739         * device/lib/calloc.c,
4740         * device/lib/free.c,
4741         * device/lib/malloc.c,
4742         * device/lib/realloc.c: added LGPL, made them reentrant-safe
4743         * src/SDCCcse.c (cseBBlock),
4744         * src/SDCCicode.c (printOperand, geniCodeArray),
4745         * src/SDCCicode.h (struct operand): fixed bug 868103
4746         * support/regression/tests/bug-868103.c: added
4747         * src/SDCCast.c (searchLitOp),
4748         * src/SDCCcse.h (struct cseDef),
4749         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
4750         * src/SDCCicode.h (struct operand),
4751         * src/SDCCsymt.h (struct sym_link),
4752         * src/avr/gen.c (hasInc),
4753         * src/ds390/gen.c (hasInc),
4754         * src/hc08/gen.c (genPlusIncr, hasInc),
4755         * src/mcs51/gen.c (hasInc),
4756         * src/pic16/glue.c (pic16_printIvalChar),
4757         * src/pic16/ralloc.c (regWithIdx),
4758         * src/xa51/gen.c (hasInc) : removed warnings
4759         * src/SDCCast.c (createBlock): added comment ???
4760         * src/hc08/ralloc.c: updated comments
4761
4762 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4763
4764         * doc/sdccman.lyx: updated section on switch statements, added
4765         section about semaphore locking
4766         * doc/Makefile: added option -info for latex2html
4767         * device/lib/_gptrget.c,
4768         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
4769
4770 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4771
4772         * src/pic/device.h,
4773         * src/pic/device.c,
4774         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
4775          maxram is less than 0x100.
4776
4777 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4778
4779         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
4780
4781 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4782
4783         * src/port.h,
4784         * src/mcs51/main.c,
4785         * src/ds390/main.c,
4786         * src/z80/main.c,
4787         * src/hc08/main.c,
4788         * src/pic/main.c,
4789         * src/pic16/main.c,
4790         * src/avr/main.c,
4791         * src/xa51/main.c
4792         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
4793         a jump table is the best form for a switch statement, including
4794         automatic insertion of missing cases to make the case range
4795         continuous. Developed in collaboration with Frieder Ferlemann.
4796
4797 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4798
4799         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
4800         accumulator result if it needs sign extension
4801
4802 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4803
4804         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
4805
4806 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4807
4808         * device/lib/gbz80/printf.c,
4809         * device/lib/z80/printf.c: removed define for NULL
4810
4811 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4812
4813         * as/xa51/xa_link.c,
4814         * device/examples/ds390/ow390/ad26.c,
4815         * device/examples/ds390/ow390/cnt1d.c,
4816         * device/examples/ds390/ow390/counter.c,
4817         * device/examples/ds390/ow390/ds2480.h,
4818         * device/examples/ds390/ow390/ds2480ut.c,
4819         * device/examples/ds390/ow390/findtype.c,
4820         * device/examples/ds390/ow390/gethumd.c,
4821         * device/examples/ds390/ow390/owllu.c,
4822         * device/examples/ds390/ow390/ownetu.c,
4823         * device/examples/ds390/ow390/swt12.c,
4824         * device/examples/ds390/ow390/swtloop.c,
4825         * device/examples/ds390/ow390/temp.c,
4826         * device/examples/ds390/ow390/temp10.c,
4827         * device/examples/ds390/ow390/thermo21.c,
4828         * device/examples/ds390/ow390/tinilnk.c,
4829         * device/examples/ds390/ow390/tstfind.c,
4830         * device/examples/serialcomm/windows/serial.cpp,
4831         * device/examples/serialcomm/windows/test_serialcomm.cpp,
4832         * device/include/reg51.h: fixed line endings for cvs
4833
4834 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4835
4836         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
4837         packRegsForAccUse, packRegisters): new accumulator register
4838         packing algorithm
4839         * support/regression/ports/hc08/support.c (_putchar): suppress
4840         warning of unused variable
4841         * src/SDCCicode.c: added SWAP entry to codeTable
4842
4843 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
4844
4845         * device/lib/sprintf.c: forgot to add this file before previous commit
4846
4847 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
4848
4849         * src/pic16/gen.c (genPackBits): added operand right in function
4850         parameters, load result directly if p_type is POINTER (that is
4851         called by genNearPointerSet)
4852         * (genUnPackBits): added operand left in function parameters,
4853         * (genNearPointerGet, genNearPointerSet): prevent the loading of
4854         FSR0 if accessing bitfields,
4855
4856 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
4857
4858         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
4859           _print_format; updated printf, sprintf, vsprintf
4860         * device/include/asm/default/features.h: corrected comment/define
4861         * device/lib/Makefile.in: added sprintf.c
4862         * device/lib/libsdcc.lib: added sprintf module
4863         * device/lib/printf_large.c,
4864         * device/lib/vprintf.c,
4865         * device/lib/sprintf.c: totally refactored printf_large and vprintf
4866           into these 3 files
4867         * support/regression/Makefile: changed ALL_PORTS into a usefull default
4868         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
4869         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
4870           hc08 test
4871         * support/regression/tests/zeropad.c: define idata as data for hc08
4872
4873 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4874
4875         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
4876         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
4877         labels are referenced at least once (even if a reference is not found)
4878         * src/hc08/gen.c (emitcode): set isComment flag for comments
4879         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
4880         loads), rules 6a..6b (optimize jumps to return)
4881
4882 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4883
4884         * device/lib/acosf.c (acosf),
4885         * device/lib/asinf.c (asinf),
4886         * device/lib/atanf.c (atanf),
4887         * device/lib/ceilf.c (ceilf),
4888         * device/lib/cosf.c (cosf),
4889         * device/lib/coshf.c (coshf),
4890         * device/lib/cotf.c (cotf),
4891         * device/lib/fabsf.c (fabsf),
4892         * device/lib/floorf.c (floorf),
4893         * device/lib/log10f.c (log10f),
4894         * device/lib/logf.c (logf),
4895         * device/lib/sinf.c (sinf),
4896         * device/lib/sinhf.c (sinhf),
4897         * device/lib/sqrtf.c (sqrtf),
4898         * device/lib/tanf.c (tanf),
4899         * device/lib/tanhf.c (tanhf),
4900         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
4901         replaced all instances of "reentrant" in the library functions
4902         defined in math.h with this macro.
4903         * support/regression/tests/float_trans.c: reenabled test for hc08
4904
4905 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
4906
4907         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
4908         erroneously deleted
4909
4910 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4911
4912         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
4913         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
4914         multi-byte volatile operands are used
4915         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
4916         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
4917         initialization to area GSINIT0 so that it would always precede
4918         any static initializers in GSINIT
4919         * support/regression/tests/zeropad.c: fixed idata define for hc08
4920         * support/regression/tests/bug-927659.c,
4921         * support/regression/tests/float_trans.c: disabled tests for hc08
4922         pending missing library routines
4923         * .version: increased version number to 2.4.4 - hc08 port now passes
4924         regression tests
4925
4926
4927 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
4928
4929         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
4930         * Makefile.common.in,
4931         * as/Makefile,
4932         * as/hc08/Makefile.in,
4933         * as/mcs51/Makefile.in,
4934         * as/z80/Makefile.in,
4935         * debugger/mcs51/Makefile.in,
4936         * device/include/Makefile.in,
4937         * device/lib/Makefile.in,
4938         * doc/Makefile,
4939         * link/Makefile,
4940         * link/z80/Makefile.in,
4941         * packihx/Makefile.in,
4942         * sim/ucsim/main_in.mk,
4943         * sim/ucsim/avr.src/Makefile.in,
4944         * sim/ucsim/doc/Makefile.in,
4945         * sim/ucsim/gui.src/serio.src/Makefile.in,
4946         * sim/ucsim/hc08.src/Makefile.in,
4947         * sim/ucsim/s51.src/Makefile.in,
4948         * sim/ucsim/xa.src/Makefile.in,
4949         * sim/ucsim/z80.src/Makefile.in,
4950         * src/Makefile.in,
4951         * support/cpp2/Makefile.in,
4952         * support/librarian/Makefile,
4953         * support/makebin/Makefile: added DESTDIR to the install path proposed
4954         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
4955         * doc/sdccman.lyx: added DESTDIR documentation
4956
4957 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
4958
4959         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
4960         instruction for interrupt handlers, use fast returns when returning
4961         from high priority interrupts
4962
4963 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4964
4965         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
4966         code generation
4967         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
4968         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
4969         bugs, ported much of Bernhard's code from mcs51
4970         * src/mcs51/gen.c (genSend),
4971         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
4972         than one when calling a reentrant function
4973         * device/lib/_mullong.c: defined an alternate struct layout for big
4974         endian ports (hc08)
4975
4976 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4977
4978         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
4979         test
4980
4981 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4982
4983         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
4984         are sane and complete before asking the port its prefered parameter
4985         passing method (fixes bug #1017633)
4986         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
4987         and _ret3
4988
4989 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4990
4991         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
4992         problem in bitfields >= 8 bits.
4993
4994 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4995
4996         * src/SDCCsymt.c: undid changes that were not meant to be committed
4997
4998 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4999
5000         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
5001
5002 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5003
5004         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
5005           copied and wrong bit got inverted
5006
5007 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5008
5009         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
5010         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
5011         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
5012         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
5013         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
5014         assignments to bitfields at known addresses
5015         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
5016         reads from bitfields at known addresses
5017         * src/hc08/ralloc.c (packRegisters),
5018         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
5019         genhc08Code): optimize pointer get values used as conditionals
5020         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
5021         and branch
5022
5023 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5024
5025         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
5026         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
5027         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
5028         as conditionals
5029
5030 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5031
5032         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
5033
5034 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5035
5036         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
5037         related problems
5038
5039 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
5040
5041         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
5042
5043 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5044
5045         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
5046         mcs51 port
5047
5048 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
5049
5050         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
5051
5052 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5053
5054         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
5055         cases use more compact code.
5056
5057 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
5058
5059         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
5060
5061 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5062
5063         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
5064
5065 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5066
5067         * src/SDCCsymt.h,
5068         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
5069         parameter of changePointer() from symbol* to sym_link*
5070         * src/SDCCast.c (decorateType): call changePointer() for CAST op
5071         * src/SDCCsymt.c (compareType): void* type is castable to other
5072         pointers, but not necesarily an exact match.
5073         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
5074         is no longer blindly treated as an exact match.
5075         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
5076
5077 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
5078
5079         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
5080
5081 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
5082
5083         * src/pic/gen.c,
5084         * src/pic/pcode.c,
5085         * src/pic/ralloc.h,
5086         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
5087
5088 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
5089
5090         * src/pic/device.c,
5091         * src/pic/device.h,
5092         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
5093
5094 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5095
5096         * src/mcs51/gen.c (emitcode): fixed bug #992819
5097
5098 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
5099
5100         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
5101           there's no need to make it worse
5102
5103 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5104
5105         * src/mcs51/ralloc.c (deassignLR),
5106         * src/ds390/ralloc.c (deassignLR),
5107         * src/hc08/ralloc.c (deassignLR),
5108         * src/z80/ralloc.c (deassignLR),
5109         * src/pic/ralloc.c (deassignLR),
5110         * src/pic16/ralloc.c (deassignLR),
5111         * src/avr/ralloc.c (deassignLR),
5112         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
5113         rlivePoint): fixed another part of bug #971834
5114
5115 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5116
5117         * src/z80/main.c: enabled "critical" keyword
5118         * src/z80/mappings.i,
5119         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
5120         functions (fixes bug #979646)
5121         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
5122
5123 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5124
5125         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
5126           such as c:\mydir.
5127
5128 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
5129
5130         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
5131           doesn't disable too much optimizations
5132
5133 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
5134
5135         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
5136
5137 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
5138
5139         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
5140
5141 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
5142
5143         * src/pic/gen.c tidied up tabs
5144         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
5145         * src/pic/main.c tidied up tabs
5146         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
5147         * src/pic/pcoderegs.c tidied up tabs
5148         * src/pic/ralloc.c tidied up tabs
5149
5150 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
5151
5152         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
5153         to S_FIXED for pic16 port and when symbol is not in level 0,
5154         allocate for S_REGISTER storage class and pic16 port, too,
5155         * src/pic16/device.h: prototype for checkSym,
5156         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
5157         * (pic16_assignConfigWordValue): test the value and the mask to
5158         validate that the value is suitable for the configuration word,
5159         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
5160         collect extern declared symbols, don't emit symbol twice, check
5161         first if symbol is in publics set first,
5162         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
5163         * added command line '--fstack' which enables an experimental
5164         feature for stack access, too buggy to be used yet...
5165         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
5166         * (pic16_allocDirReg): when register has storage class S_REGISTER
5167         allocate in pic16_dynAccessRegs,
5168         * device/include/pic16/pic18f????.h: modified configuration word
5169         naming convention, words started as CONFIG0H but should be CONFIG1H
5170
5171 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
5172
5173         * device/include/mcs51reg.h: fixed bug 970993
5174
5175 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
5176
5177         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
5178         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
5179         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
5180         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
5181         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
5182         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
5183           error/warning numbers,
5184           added function setWarningDisabled()
5185         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
5186         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
5187           _memcmp.c _memmove.c calloc.c realloc.c free.c
5188         * support/regression/tests/malloc.c: added tests for new functionality
5189         * support/regression/tests/zeropad.c: added tests for truncated initializers
5190           and initialized char arrays starting with '\x0'
5191         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
5192
5193 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
5194
5195         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
5196
5197 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5198
5199         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
5200         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
5201         peephole 177.e. Thanks to anonymous
5202
5203 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
5204
5205         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
5206         function isn't used in the source but referenced as a
5207         variable initializer then declare it as extern in .asm file
5208
5209 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
5210
5211         * .version: increased version number to 2.4.3
5212
5213         Adding version extension according to ChangeLog CVS revision
5214         * src/Makefile.in (target all): added dependency 'version.h'
5215         * (rule version.h): added rule to create version.h from ChangeLog,
5216         * (rule dep): added dependency version.h,
5217         * src/version.awk: AWK script to create version.h
5218         * src/SDCCdwarf2.c (dwWriteModule),
5219         * src/SDCCglue.c (initialComments),
5220         * src/SDCCmain.c (printVersionInfo): modified to write after
5221         version string the version extension number,
5222         * src/SDCCutil.c: included "version.h"
5223         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
5224         number,
5225         * src/SDCCutil.h: added prototype for getBuildNumber
5226
5227         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
5228         includeDirsSet, too,
5229         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
5230         const char [] is found in function prototype...
5231
5232         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
5233         moving to WREG with source is already in WREG,
5234         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
5235         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
5236         * (aopForSym): stack'ed symbols are partially supported, added
5237         if-clause to support symbols in FARSPACE,
5238         * (sameRegs): added test for AOP_ACC to see if registers are same,
5239         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
5240         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
5241         * (pic16_popRegFromString): will not allocate a new register if it
5242         doesn't find one by name, bug may have introduced...
5243         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
5244         * (genIpush): revived to use pic16 port's stack,
5245         * (genAddrOf): added incomplete case for stack'ed operand,
5246         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
5247         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
5248         can handle multibyte operands,
5249         * src/pic16/glue.c (pic16_printIval*): some debug info added,
5250         * (pic16initialComments): added message for MPLAB compatibility
5251         mode enabled,
5252         * src/pic16/main.h: prototype for pic16_mplab_comp,
5253         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
5254         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
5255         * (_pic16_linkEdit): NEW, handles link stage, transferred here
5256         because of increased complexity of procedure,
5257         * (_process_pragma): stack pragma changed to format 'stack pos len',
5258         emit symbol '_stack_end' to conform with gplink,
5259         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
5260         to search for register,
5261         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
5262         PO_GPR_REGISTER,
5263         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
5264         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
5265         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5266         case for PO_GPR_REGISTER,
5267         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
5268         dies, the new era is ahead !...
5269         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
5270         pic16_dynInternalRegs,
5271         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
5272         * (pic16_allocDirReg): minor optimizations and bug fixes,
5273         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
5274
5275         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
5276         load stack and frame pointer with address of 'stack_end' symbol
5277
5278 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
5279
5280         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
5281         without source code but only variable initializers
5282
5283 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
5284
5285         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
5286         external are not declared as extern to reduce overhead while linking
5287
5288 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
5289
5290         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
5291
5292 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
5293
5294         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
5295           Yee Keat for the patch
5296         * src/SDCCast.c (decorateType): fixed bug #979599
5297         * src/ds390/gen.h: removed local fReturnSizeDS390
5298         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
5299         * src/ds390/gen.c (genAnd, genOr, genXor),
5300         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
5301
5302 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
5303
5304         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
5305         add relFilesSet to $3, manipulate $2 to handle linking of object
5306         files without source files in command line,
5307         * device/include/pic16 (all headers): added ID location macros,
5308         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
5309         entries for ID location bytes,
5310         * (pic16_assignIdByteValue): NEW,
5311         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
5312         added field dumpcalltree to pic16_options_t,
5313         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
5314         is used instead of pic16_Gstack_base_addr, check if (ifx) before
5315         emitting rFalseIfx label after check_carry label,
5316         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
5317         pic16_emitDIRegs), NEW
5318         * (pic16glue): dump .calltree file when option --calltree found,
5319         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
5320         * (_pic16_genAssemblerPreamble): emit ID locations after
5321         configuration registers,
5322         * (pic16_linkCmd): modifications of the link command,
5323         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
5324         * (pic16_pCodeInitRegisters): don't init stack registers,
5325         * (pic16_findPrevInstruction): fixed bug,
5326         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
5327         bug with immediate registers,
5328         * (buildCallTree): traces stack push and pop,
5329         * (pct2): dump also stack usage for each function,
5330         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
5331         * (pic16_allocDirReg): various modifications,
5332         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
5333         fixed to 1,
5334
5335 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
5336
5337         * src/pic16/pcode.c: removed buggy double colon
5338
5339 2004-07-01 Borut Razem <borut.razem AT siol.net>
5340
5341         * support/scripts/sdcc.nsi: added include/pic16 to setup
5342
5343 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
5344
5345         * device/lib/Makefile.in: fixed bug in target objects-pic16,
5346         * device/lib/pic16/Makefile: prefixed with dash (-) command under
5347         target 'clean',
5348         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
5349         specific command line arguments. Also added sample lkr script
5350         for placing a variable at a specific memory bank.
5351         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
5352         at a specific memory bank,
5353         * (pic16_dump_isection): fixed bug which caused string literals to
5354         be omitted when dumping idata section,
5355         * (pic16_groupRegistersInSection): added code to handle registers
5356         in specific memory banks,
5357         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
5358         public, all references are renamed too,
5359         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
5360         AOP_DPTR2,
5361         * (pic16_storeForReturn): added case to handle when dest is WREG,
5362         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
5363         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
5364         pic16_rel_udata, check to see if that register is marked as being
5365         a member of a specific memory bank,
5366         * (pic16_printIvalCharPtr): added code to add string literals either
5367         to code or the idata sections,
5368         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
5369         also accept the 'udata' pragma,
5370         * src/pic16/main.h: new structure types sectName and sectSym
5371         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
5372         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
5373         * (pic16_findPrevInstruction): fixed, it returned nothing,
5374         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
5375         instruction combinations,
5376         * (pic16_FixRegisterBanking): heavily reorganised,
5377         * (pic16_AnalyzeBanking): if generating banksel directives is
5378         disabled, then don't call FixRegisterBanking at all,
5379         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
5380         completely removed,
5381         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
5382
5383 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
5384
5385         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
5386         Phuah Yee Keat <yk.phuah AT nestac.com>
5387
5388 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5389
5390         * src/pic16/glue.c (pic16createInterruptVect): function now emits
5391         correctly the IVT even if it is relocated to some other location
5392
5393 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5394
5395         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
5396         * device/include/pic16/pic18f2220.h: NEW,
5397         * device/lib/pic16/libdev/pic18f2220.c: NEW,
5398         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
5399         * src/pic16/device.c (struct Pics16): added info for 18f2220,
5400         * src/pic16/device.h (struct pic16_options): added ivt_loc and
5401         nodefaultlibs, ivt_loc is the location of the interrupt vector
5402         table, and nodefaultlibs signs that default libraries should not be
5403         linked in link stage,
5404         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
5405         according to --ivt-loc argument,
5406         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
5407         when pragma stack is found,
5408
5409 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5410
5411         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
5412         256 (range check), 257 (do while), 258.a-f (bit banging
5413         f.e. on 3-wire SPI bus)
5414
5415 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5416
5417         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
5418         variables used exclusively within a loop
5419
5420 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
5421
5422         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
5423
5424 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5425
5426         * src/SDCClrange.c (computeClash): fixed bug #971834
5427
5428 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5429
5430         * src/mcs51/gen.c (genCmp): fixed bug #975903
5431         * src/hc08/gen.c (operandsEqu),
5432         * src/ds390/gen.c (operandsEqu),
5433         * src/z80/gen.c (operandsEqu),
5434         * src/pic/gen.c (operandsEqu),
5435         * src/pic16/gen.c (operandsEqu),
5436         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
5437         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
5438
5439 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5440
5441         * src/SDCCcse.c (cseBBlock): fixed bug #966963
5442
5443 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
5444
5445         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
5446         default case in switch statement,
5447         * glue.c (pic16_initPointer): expr is initialised via decoarteType
5448         to eliminate problem with initialisation of pointers, but problem
5449         still exists,
5450         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
5451         * (emitStaticSegment): removed various lines emitting debug info,
5452         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
5453         added processor registers for utilizing EEPROM,
5454         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
5455         configurable and set 8
5456
5457 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
5458
5459         * .version: increased version number to 2.4.2,
5460
5461         Cumulative patch for pic16 port
5462         * src/pic16/device.c: changed scheme to dump initial values for
5463         variables in idata segment, all print_idata* functions were removed,
5464         now the pic16_printIval* will be called,
5465         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
5466         * _pic16_printPointerType, pic16_printPointerType,
5467         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
5468         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
5469         NEW, similar to the respective functions in SDCCglue.c,
5470         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
5471         way, emitting hex bytes,
5472         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
5473
5474 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5475
5476         * src/avr/ralloc.c (serialRegAssign),
5477         * src/xa51/ralloc.c (serialRegAssign),
5478         * src/pic/ralloc.c (serialRegAssign),
5479         * src/pic16/ralloc.c (serialRegAssign),
5480         * src/hc08/ralloc.c (serialRegAssign),
5481         * src/z80/ralloc.c (serialRegAssign),
5482         * src/ds390/ralloc.c (serialRegAssign),
5483         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
5484
5485 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5486
5487         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
5488         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
5489
5490 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
5491
5492         Cumulative patch for pic16 port:
5493         * src/pic16/device.h (typedef PIC16_device) modified fields for
5494         defining microcontrollers,
5495         * src/pic16/device.c: added new info for all devices in Pics16 array,
5496         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
5497         to be optimised out by the pCode optimiser,
5498         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
5499         specially, bug reported by G.M. Gallant,
5500         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
5501         as force'd so that cannot be optimised out by pCode optimiser,
5502         * src/pic16/pcode.c,
5503         * src/pic16/pcodepeeph.c,
5504         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
5505         they are disabled by default, but can be enabled explicit with
5506         command argument --denable-peeps, for testing,
5507         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
5508         --pomit-ivt in COMPILE_FLAGS
5509
5510 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5511
5512         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
5513           compilation on MSVC
5514
5515 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5516
5517         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
5518
5519 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5520
5521         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
5522         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
5523
5524 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
5525
5526         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
5527         would only assign 0x300001 register.
5528
5529 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
5530
5531         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
5532         in COMPILE_FLAGS. Thanks to G. Gallant for report.
5533
5534 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5535
5536         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
5537         for ds80c400
5538         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
5539         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
5540         added peephole 254 (left shift), 255 (jump table)
5541
5542 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
5543
5544         * device/lib/Makefile.in: removed comment line with model-pic16,
5545         * (target port-specific-objects-pic16): the libraries and objects
5546         are copied to the build directory form the device/lib/pic16/bin
5547         directory
5548
5549         Cumulative patch concerning pic16 port:
5550         * library directory has been re-organized,
5551         * added support for PIC18F1220,
5552         * added headers and library sources for chips 18f1220,18f6520,
5553         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
5554
5555         * configuration registers setting has changed, now each supported
5556         device has a complete description of the registers it uses,
5557         * all initialisations are moved to idata sections, these section
5558         can be absolute or relocatable,
5559         * fixed initialisation of codespace variables,
5560         * fixed warning about PCLATU and gpsim,
5561         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
5562         * (genAssign): use table reads when assigning from variables in codespace,
5563         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
5564         char/int variables placed in codespace,
5565         * (pic16_emitConfigRegs): NEW, emits a list with configuration
5566         registers set in .asm file, no need for --pomit-config-words anymore,
5567         * (pic16glue): some 8051 legacy segments are commented out
5568         (to be removed completely),
5569         * added support for alternative assembler and linker with --asm=
5570         and --link= command line arguments,
5571         * peepholes are disabled automatically in the port, no need to
5572         specify on command line,
5573         * port supports natively char/int/long multiplication, but converts
5574         all divisions to support functions,
5575         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
5576         to the file set in variable $2,
5577         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
5578         strings in ASCII format and not in hex,
5579         * ralloc.c (serialRegAssign): added a triplet of conditional calls
5580         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
5581         allocate proper register if iCodes aren't temporary,
5582
5583 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
5584
5585         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
5586
5587 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
5588
5589         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
5590         is commented out
5591
5592 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5593
5594         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
5595         computed address is reused
5596         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
5597         multi-byte bitfields
5598
5599 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5600
5601         * src/z80/gen.c: (genArrayInit): must check for pointers too
5602
5603 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5604
5605         * support/regression/tests/zeropad.c: never meant to commit the
5606           nestedstruct test: removed, added check for GCC version
5607
5608 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
5609
5610         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
5611         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
5612         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
5613           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
5614           bugs 928906 and 954082 half-empty initializers
5615         * src/SDCCsymt.h,
5616         * src/SDCCsymt.c (getAllocSize): added for above fix
5617         * src/z80/gen.c (genArrayInit): fixed bug 741044
5618         * support/regression/tests/zeropad.c: added tests
5619
5620 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
5621
5622         * src/pic16/device.c (pic16_dump_section): corrected bug which
5623         caused some symbols of the libraries to be misplaced
5624
5625 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
5626
5627         * src/pic16/glue.c,
5628         * src/pic16/ralloc.h,
5629         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
5630         to fix conflict with pic port
5631
5632 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
5633
5634         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
5635         externs configuration variables,
5636         * src/pic16/ralloc.h,
5637         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
5638         prototype in header, commented out some debug messages
5639
5640 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
5641
5642         * src/pic16/glue.c,
5643         * src/pic16/main.c,
5644         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
5645         for gpasm COFF object generation. Thanks to D. Hawkins for
5646         his patch info
5647
5648 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5649
5650         * src/ds390/main.c,
5651         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
5652         Brock for spotting this)
5653         * src/ds390/gen.c (genEndFunction),
5654         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
5655         interrupt handler and critical. Disable push/pop optimizations when
5656         peephole optimizations disabled.
5657
5658 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
5659
5660         Updated pic16 library sources and headers.
5661         * device/lib/pic16/pic18f*/ ,
5662         * device/include/pic16/*.h: modified to handle structured SFR
5663         definitions
5664
5665 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
5666
5667         * src/port.h (PORT structure): added hook initPaths, now each
5668         port can declare its own default search paths,
5669         which can been seen with the --print-search-dirs option,
5670         see pic16 port for example,
5671         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
5672         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
5673         * (doPrintSearchDirs): NEW, replaces in a central manner the
5674         printing of search dirs which was split in set*Paths functions,
5675         * (main): added call to port->initPaths and doPrintSearchDirs,
5676         * src/avr/main.c,
5677         * src/ds390/main.c,
5678         * src/hc08/main.c,
5679         * src/izt/i186.c,
5680         * src/izt/tlcs900h.c,
5681         * src/mcs51/main.c,
5682         * src/pic/main.c,
5683         * src/pic16/main.c: modified port structures to reflect addition of
5684         initPaths hook,
5685
5686         * src/pic16/device.c (regCompare): registers are finally sorted by name,
5687         * (pic16_dump_section): for registers in same address reserve memory once,
5688         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
5689         to no_banksel,
5690         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
5691         result is greater in size than right or left,
5692         * (pic16_genUMult8X8_8): there are some cases where the result can
5693         be 16 bits size, so handle these,
5694         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
5695         * (pic16_outBitC): modified to emit pcodes,
5696         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
5697         or not,
5698         * (genDivOneByte): implemented algorithm to divide 8-bits,
5699         * (genCmp): uncommented goto, but issues still exist,
5700         * (genAnd): fixed a bug with variables >8bits,
5701         * (genPackBits): optimization added that uses BCF/BSF to change a
5702         single bit,
5703         * (genAssign): fixed bug when assigning floating point literals,
5704         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
5705         __sdcc_gsinit_startup label,
5706         * src/pic16/main.c (_pic16_init): removed search directory
5707         initialisations,
5708         * (_pic16_initPaths): NEW, used to initialise search directories,
5709         * (_hasNativeMulFor): support functions for all except char/int
5710         multiplication, and char division,
5711         * (PIC16_port struct): modified entry for native mul support,
5712         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
5713         no_banksel option,
5714         * (buildCallTree): call to register_usage is ifdef'ed out,
5715
5716 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5717
5718         * device/include/string.h: applied Stas Sergeev's patch to make this
5719         header file compatible with the preprocessor -Wundef option
5720         * src/SDCCmain.c (main): abort compilation if preprocessor reports
5721         failure (fixes bug #941458)
5722
5723 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5724
5725         * src/SDCCopt.c (killDeadCode): fixed bug #907733
5726         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
5727         that the variable, not the function, should be static
5728         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
5729         to be consistent with non-literal case
5730
5731 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5732
5733         * src/SDCCast.c (isConformingBody): fixed bug #949967
5734         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
5735         convilong): fixed bug #952086
5736
5737 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5738
5739         * src/SDCCmem.c (allocVariables): fixed bug #955321
5740
5741 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5742
5743         * src/hc08/main.c (_hc08_genAssemblerEnd),
5744         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
5745         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
5746         completely eliminated the use of a temporary file
5747         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
5748         when more than one file linked
5749         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
5750
5751 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5752
5753         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
5754         which fixes bug #543481
5755         * support/regression/tests/bug-751703.c: fixed comments left from a
5756         cut and paste error
5757         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
5758         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
5759         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
5760         scopes
5761         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
5762         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
5763         are now changed to underscores in moduleName
5764
5765 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5766
5767         * as/mcs51/lkmem.c: better fix for bug #954173
5768
5769 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
5770         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5771
5772         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
5773         * device/include/c8051f000.h,
5774         * device/include/c8051f120.h,
5775         * device/include/c8051f300.h,
5776         * device/include/c8051f310.h,
5777         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
5778         PWM16) and detab'ed
5779
5780 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5781
5782         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
5783         and mailing lists, doc'ed --no-peep-comments, removed reference
5784         to knoppix (newest version has no LyX/LaTeX), other minor changes
5785         * src/SDCCglue.c (glue): save 2 bytes stack space with
5786         option --main-return. The ljmp could probably be avoided too
5787
5788 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5789
5790         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
5791
5792 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5793
5794         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
5795         * src/SDCCopt.c (isLocalWithoutDef),
5796         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
5797         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
5798         (credit to Maarten Brock for patch #949363, on which this is based)
5799         * support/regression/tests/bug-751703.c: some test cases of extern used
5800         within inner scopes.
5801
5802 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5803
5804         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
5805         SPEC_STRUCT
5806         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
5807         struct definitions
5808         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
5809         dwWriteLabel): fix to create valid debugger symbols even when
5810         the module name has non-alphanumeric symbols in it
5811         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
5812         when a variable's allocation has been optimized away
5813
5814
5815 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5816
5817         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
5818         * src/hc08/main.c,
5819         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
5820         * src/mcs51/main.c,
5821         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
5822         * src/ds390/main.c,
5823         * src/z80/gen.c (z80_emitDebuggerSymbol),
5824         * src/z80/main.c,
5825         * src/pic/gen.c (pic14_emitDebuggerSymbol),
5826         * src/pic/main.c,
5827         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
5828         * src/pic16/main.c,
5829         * src/avr/gen.c (avr_emitDebuggerSymbol),
5830         * src/avr/main.c,
5831         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
5832         * src/xa51/main.c,
5833         * src/SDCCdebug.c (emitDebuggerSymbol),
5834         * src/SDCCdebug.h,
5835         * src/port.h: added a debugger struct to the port struct. Added a
5836         callback for defining debugger symbols
5837
5838         * src/SDCCast.c (createLabel),
5839         * src/SDCC.y (labeled_statement): mark all compiler generated labels
5840         with isitmp = 1
5841         * src/SDCCicode.h,
5842         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
5843         iCode back to the ast for the function
5844
5845         * src/hc08/ralloc.c (hc08_assignRegisters),
5846         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
5847         unneeded fields from the regs struct.
5848         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
5849         pushReg() & pullReg() functions instead of emitcode()
5850
5851         * src/hc08/gen.c (genLabel, genhc08Code),
5852         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
5853
5854         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
5855         debugger hooks
5856
5857         * src/hc08/gen.c (genEndFunction, genhc08Code),
5858         * src/hc08/gen.h,
5859         * src/mcs51/gen.c (genEndFunction, gen51Code),
5860         * src/mcs51/gen.h,
5861         * src/ds390/gen.c (genEndFunction, gen390Code),
5862         * src/ds390/gen.h,
5863         * src/z80/gen.c (genEndFunction, genZ80Code),
5864         * src/z80/gen.h,
5865         * src/z80/z80.h,
5866         * src/pic/gen.c (genEndFunction, genpic14Code),
5867         * src/pic/gen.h,
5868         * src/pic16/gen.c (genEndFunction, genpic16Code),
5869         * src/pic16/gen.h,
5870         * src/avr/gen.c (genEndFunction, genAVRCode),
5871         * src/avr/gen.h,
5872         * src/xa51/gen.c (genEndFunction, genXA51Code),
5873         * src/xa51/gen.h,
5874         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
5875         specific code to cdbFile.c and out of the backend code generators
5876
5877         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
5878         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
5879         starting address is now 0
5880
5881         * as/hc08/asm.h,
5882         * as/hc08/m08pst.c,
5883         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
5884         assembler directive for DWARF support
5885         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
5886
5887         * src/src.dsp,
5888         * src/Makefile.in,
5889         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
5890
5891 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5892
5893         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
5894         and inappropriate peephole optimization in jump tables
5895
5896 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5897
5898         * as/hc08/m08pst.c,
5899         * src/SDCCglue.c: sdccopt works for the hc08 port now
5900
5901 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
5902
5903         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
5904
5905 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5906
5907         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
5908
5909 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5910
5911         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
5912         rules
5913         * src/SDCCmain.c,
5914         * src/SDCCglobl.h,
5915         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
5916         comments from the peephole optimizer replacement rules
5917         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
5918         symbols
5919         * src/SDCCcse.c (updateSpillLocation),
5920         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
5921         equivalents
5922         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
5923         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
5924         objects far pointers
5925
5926 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5927
5928         * src/SDCCsymt.h: a missing part of my last change
5929         * src/pic/ralloc.c (regTypeNum),
5930         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
5931
5932 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5933
5934         * src/SDCCicode.h,
5935         * src/SDCCicode.c (aggrToPtrDclType),
5936         * src/SDCCptropt.h,
5937         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
5938         ptrPseudoSymConvert),
5939         * src/pic/ralloc.c (regTypeNum),
5940         * src/pic16/ralloc.c (regTypeNum),
5941         * src/hc08/ralloc.c (regTypeNum),
5942         * src/ds390/ralloc.c (regTypeNum),
5943         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
5944         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
5945
5946 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5947
5948         * link/z80/lkmain.c (afile),
5949         * as/hc08/lkmain.c (afile),
5950         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
5951         prevent a pointer problem when a filename has no directory and
5952         no extension specified.
5953
5954 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5955
5956         * link/z80/lkmain.c (afile): allow periods in directory names
5957         * link/z80/lkmain.c (afile),
5958         * as/mcs51/lkmain.c (afile),
5959         * as/hc08/lkmain.c (afile): allow linker script file to have an
5960         extension other than ".lnk"
5961         * link/z80/lklex.c (getfid),
5962         * link/z80/lkmain.c (parse),
5963         * as/mcs51/lklex.c (getfid),
5964         * as/mcs51/lkmain.c (parse),
5965         * as/hc08/lklex.c (getfid),
5966         * as/hc08/lkmain.c (parse): Support comments in the linker script
5967         file on lines by themselves and after filenames
5968
5969 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5970
5971         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
5972
5973 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5974
5975         * src/z80/peeph-z80.def: removed some peephole rules that don't
5976         work with multibyte arithmetic (fixed bug #937126)
5977         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
5978         to registers and not global variables
5979         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
5980         geniCodePreInc, geniCodePostDec, geniCodePreDec,
5981         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
5982         checking for assignments not internally generated (fixed bug #931895)
5983         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
5984         structure member (fixed bug #930072)
5985
5986 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5987
5988         * src/SDCCmain.c (linkEdit),
5989         * src/hc08/main.c (_hc08_parseOptions),
5990         * as/hc08/Makefile.in,
5991         * as/hc08/aslink.h,
5992         * as/hc08/asm.h,
5993         * as/hc08/m08pst.c,
5994         * as/hc08/lkrloc.c (relr, rele),
5995         * as/hc08/lkarea.c (lnkarea)
5996         * as/hc08/lkmain.c (afile, parse),
5997         * as/hc08/lkelf.c: support for ELF output
5998         * as/hc08/lks19.c (s19),
5999         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
6000
6001 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6002
6003         * as/mcs51/lkihx.c: Fixed bug #899105.
6004
6005 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6006
6007         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
6008         .dsp files from Unix to DOS.
6009
6010 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6011
6012         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
6013         function pointers; we have been compliant for several months now.
6014         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
6015         change that was accidently commented out
6016         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
6017         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
6018         bug #922319
6019
6020 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6021
6022         * src/hc08/gen.c: output of all of the internal debugging information
6023         is now controlled by the D() macro; it is disabled by default
6024
6025 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6026
6027         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
6028         harder to keep the same registers during a CAST iCode
6029         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
6030         long via int can be done in a single cast, if the signedness is
6031         correct.
6032         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
6033         putchar() in tinibios.c in ds390's library
6034
6035 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
6036
6037         * src/SDCCast.c (decorateType): fixed bug #898889,
6038         cast result of a literal complement too
6039         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
6040         fixed check for bitfields
6041
6042 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
6043
6044         * src/SDCCicode.c (geniCodeLogic): made it static,
6045         (geniCodeLogicAndOr): added in order to fix bug #905492,
6046         (ast2iCode): fixed bug #905492
6047         * support/regression/tests/bug-905492.c: added
6048         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
6049         (processParms): fixed bug #927659: don't copy parms, this will clear
6050         decorated flag
6051         * support/regression/tests/bug-927659.c: added
6052
6053 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
6054
6055         * src/SDCCast.c (addCast): don't cast float to char
6056         * device/lib/libsdcc.lib: added _memmove
6057
6058 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
6059
6060         * device/lib/large/Makefile: fixed parallel execution by
6061         replacing `make` by `$(MAKE)`
6062
6063 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6064
6065         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
6066         offsets (fixes bug #923936)
6067
6068 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
6069
6070         * device/lib/small/Makefile: fixed parallel execution by
6071         replacing `make` by `$(MAKE)`
6072
6073 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
6074
6075         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
6076
6077 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
6078
6079         * src/pic/gen.c (genCpl): multi-byte complements were not working.
6080         * src/regression/Makefile: Regression test was not running.
6081
6082 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
6083
6084         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
6085         complement if possible
6086         * src/SDCCval.c (valComplement),
6087         * src/SDCCicode.c (operandOperation): fixed complement of literal
6088         * support/regression/tests/onebyte.c (testComplement): added
6089
6090 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
6091
6092         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
6093         return an optimized tree; actually replace actParm with the new tree
6094         * src/SDCCast.h: added some parantheses to remove side effects
6095         * support/regression/tests/bug-920866.c
6096
6097 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
6098         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
6099         Bit operands were not being handled properly in the pic14 port.
6100         (now src/regression/add.c passes again).
6101
6102 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6103
6104         * src/SDCC.y (labeled_statement): case and default no longer require
6105         a following statement (RFE #893037)
6106
6107 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6108
6109         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
6110         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
6111         disabled (fixes bug #916294)
6112         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
6113         "mov a,acc"; patch provided by Lenny Story
6114         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
6115
6116 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6117
6118         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
6119         functions
6120         * src/ds390/gen.c (genFunction, genEndFunction),
6121         * src/ds390/ralloc.c (ds390_assignRegisters),
6122         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
6123         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
6124         pushed if there are parameters passed on the stack. Also, a cleaner
6125         way to decide if r0/r1 should be pushed/popped. (Together they fix
6126         bug #918693)
6127
6128 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6129
6130         * doc/sdccman.lyx,
6131         * device/lib/mcs51/crtpagesfr.asm,
6132         * device/lib/mcs51/crtxinit.asm,
6133         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
6134         to avoid confusion with Si Lab's SFRPAGE register.
6135
6136 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6137
6138         * src/SDCCglue.c (emitMaps): allow public sfr variables
6139         * src/SDCCglue.c (initialComments): include compiler build date
6140         with compiler version and put the timestamp of the generated
6141         assembly file on a serperate line to be less confusing.
6142         * src/port.h: added genInitStartup hook
6143         * src/avr/main.c,
6144         * src/ds390/main.c,
6145         * src/hc08/main.c,
6146         * src/pic/main.c,
6147         * src/pic16/main.c,
6148         * src/xa51/main.c,
6149         * src/z80/main.c: genInitStartup initialize as NULL (default to
6150         historical behaviour)
6151         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
6152         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
6153         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
6154         library instead of hard coding it into the compiler.
6155         * support/regression/ports/mcs51-stack-auto/spec.mk,
6156         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
6157         * device/lib/mcs51/Makefile,
6158         * device/lib/small/Makefile,
6159         * device/lib/large/Makefile,
6160         * device/lib/mcs51/crtpagesfr.asm,
6161         * device/lib/mcs51/crtstart.asm,
6162         * device/lib/mcs51/crtxclear.asm,
6163         * device/lib/mcs51/crtxinit.asm,
6164         * device/lib/mcs51/crtclear.asm,
6165         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
6166         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
6167         and into user configurable files.
6168         * device/lib/clean.mk: clean mcs51 directory too
6169         * support/regression/tests/longlit.c: added static to T1 declaration
6170         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
6171         accesses in the initialization code
6172
6173 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6174
6175         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
6176         OSCTRIMVAL as noted in bug #916008
6177
6178 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6179
6180         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
6181         in loops with multiple exits (reported as incorrect registers
6182         used by Martin Helmling in Sdcc-user list)
6183
6184 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6185
6186         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
6187         made ds390 register extensions look less like error messages
6188
6189 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6190
6191         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
6192         reported by Adam Wozniak in Sdcc-user list
6193
6194 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
6195
6196         * src/SDCCast.c (decorateType): fixed with bug and promotion in
6197         arithmetic optimizations, added debug output
6198
6199 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
6200
6201         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
6202         * sdcc.spec: updated and split sdcc into 3 rpms
6203         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
6204         needed for literals of LEFT_OP and '+'
6205         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
6206         introduced RESULT_TYPE_NOPROM
6207         (geniCodeMultiply): fixed logic for decision if mul is optimized to
6208         left shift
6209         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
6210         limited promotion to int only for '*'
6211         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
6212
6213 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
6214
6215         * src/pic16/gen.c (genSkip),
6216         (genc16bit2lit), (gencjneshort): commented out
6217         (is_LitOp): new helper function, checks operand type
6218         (genCmpEq): rewritten
6219
6220 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
6221
6222         * support/regression/tests/bug-908454.c: added
6223
6224 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
6225
6226         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
6227         * src/SDCCicode.c (usualBinaryConversions): op needs int type
6228         (geniCodeCast): cosmetic, don't preserve bit storage class
6229         (geniCodeLeftShift): added promotion
6230         (geniCodeLogic): fixed regression
6231         * src/SDCCsymt.c (computeTypeOr): accept bits too
6232         (compareType): 2nd part of fix for bug #908454, needed for bitfields
6233
6234 2004-03-07  Borut Razem <borut.razem AT siol.net>
6235
6236         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
6237
6238 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
6239
6240         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
6241         version of pic16_genPackRegisters which does not check if ic is a
6242         CAST operator,
6243         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
6244         function cause string1.c regression test fails
6245
6246 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
6247
6248         * sim/ucsim/configure.in,
6249         * sim/ucsim/configure,
6250         * sim/ucsim/doc/Makefile.in: use docdir
6251         * src/SDCC.y: fixed sbit atrributes
6252         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
6253         * src/SDCCast.c (decorateType): |^& need special promotion handling
6254         * src/SDCCast.h,
6255         * src/SDCCsymt.h: moved definition of RESULT_TYPE
6256         * src/SDCCsymt.h (computeType),
6257         * src/SDCCicode.c: computeType() needs op
6258         * src/SDCCsymt.c (checkTypeSanity),
6259         * doc/sddman.lyx: "plain" bitfields are unsigned
6260         * src/SDCCsymt.c (computeTypeOr): added
6261         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
6262         |^& ops
6263         * src/SDCCval.c (val*): computeType() needs op
6264         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
6265         * support/regression/tests/onebyte.c: added tests for |^&
6266
6267 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
6268
6269         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
6270         for writing icode into asm output.
6271
6272 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
6273
6274         * src/pic16/device.c: added some debug lines enabled
6275         with macro DEBUG_CHECK,
6276         * src/pic16/genarith.c: more debug in genPlus,
6277         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
6278         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
6279         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
6280         * (aopForSym): onStack symbols are re-placed in data memspace,
6281         and onStack flag is cleared,
6282         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
6283         copy temporary pcodeop,
6284         * (genPcall): added warning for not updating PCLATU,
6285         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
6286         always true for pic16 port,
6287         * (genMultOneWord): NEW, supports integer multiplication,
6288         * (genMult): modified to call genMultOneWord,
6289         * (ifxForOp): added warning when return NULL,
6290         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
6291         flag is set before call to operandFromSymbol for implicit
6292         added structures,
6293         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
6294         options.intlong_rent are set by default,
6295         * (_hasNativeMulFor): modified to allow port generation of integer
6296         multiplication,
6297         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
6298         set regtype to REG_SFR for all registers, restricting seting the
6299         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
6300
6301 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6302
6303         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
6304         more than 500 times in the regression tests
6305
6306 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6307
6308         * support/Util/SDCCerr.h,
6309         * support/Util/SDCCerr.c,
6310         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6311         enumerator_list),
6312         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
6313         for symbol conflicts.
6314         * support/valdiags/tests/enum.c,
6315         * support/valdiags/tests/tentdecl.c,
6316         * support/valdiags/tests/struct.c: expect possible error messages
6317         referring to original symbol definitions.
6318         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
6319         * src/SDCCsymt.h,
6320         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
6321
6322 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
6323
6324         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
6325
6326 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
6327
6328         * src/pic16/ralloc.c (newReg): fixed bug #908929
6329
6330 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6331
6332         * src/ds390/gen.c: added missing #include "main.h"
6333
6334 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
6335
6336         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
6337         checking if symbol is already in set,
6338         * src/pic16/device.h: prototype for checkAddSym,
6339         * src/pic16/gen.c: (_G): added entry interruptvector,
6340         * (assignResultValue): removed some commented out lines,
6341         * (genFunction): check for ISR via sym->type, absolute section for
6342         interrupt code is created via a new pBlock, the goto instruction is
6343         placed now correctly at the interrupt vector position, changed all
6344         references from ivec to _G.interruptvector,
6345         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
6346         is the interrupt is a high priority one, same for return from ISR,
6347         * src/pic16/glue.c: changed all calls of addSetHead for publics and
6348         externs to calls of checkAddSym,
6349         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
6350         pic16_pcode_verbose flag is set,
6351         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
6352         * src/pic16/pcoderegs.c: message about how many registers are saved
6353         will only be emitted if pic16_pcode_verbose flag is set,
6354
6355 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6356
6357         * src/ds390/ralloc.h,
6358         * src/ds390/ralloc.c (ds390_regWithIdx),
6359         * src/ds390/gen.c (emitcode),
6360         * src/ds390/main.h,
6361         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
6362         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6363         ds390operandCompare, getRegsRead, getRegsWritten,
6364         initializeAsmLineNode): customized instruction size calculation for
6365         ds390, started basis for some register optimizations
6366         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
6367         corresponding assembly output
6368         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
6369         missing push/pop of r0/r1. Optimized push/pops
6370
6371 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6372
6373         * src/mcs51/main.c (instructionSize): fixed ACALL size
6374         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
6375
6376 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
6377
6378         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
6379         the sorting of rlist with NULL elements
6380         * (print_idataType, print_idata): NEW to create idata sections
6381         * src/pic16/device.h: idataSymSet new variable
6382         * src/pic16/gen.c (genFunction): fixed some bugs in string
6383         comparing, improved the absolute section creation for ISRs,
6384         added FSR0L/FSR0H in registers that are saved in an ISR,
6385         * (genInline): fixed the processing of inline snippets,
6386         now they undergo no process by the peephole optimizer
6387         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
6388         are placed in idataSymSet,
6389         * (pic16emitStaticSeg): extern symbols are added in externs,
6390         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
6391         switching when aboslute variables are placed in access bank memory
6392         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
6393         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
6394         commented out with #if,
6395         * (pic16_packRegisters): reintroduce the check for CAST because some
6396         symbols are not correctly handled,
6397         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
6398         pCodeInstruction instead of pCode,
6399         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
6400         pCodeAsmDir definition,
6401         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
6402         directive, then the argument directive is emitted without the leading
6403         tab, hack for inline labels which must be in the first column,
6404         * (compareLabel,pic16_findNextInstruction),
6405         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
6406         * (insertBankSwitch): modified for the new pCodeAsmDir,
6407
6408 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6409         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
6410
6411         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
6412         instance,
6413         * (pushSide): commented out with #if,
6414         * (assignResultValue): fixed some typos in saving
6415         registers,
6416         * (genPcall): FIXED and sync'ed with genCall,
6417         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
6418         * (genNearPointerGet): fixed to handle some more cases,
6419         implementation scheme via table reads,
6420         * (genConstPointerGet): modified to access code memory correct,
6421         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
6422         and improved to handle some cases
6423         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
6424         instead of "RETLW" for init data
6425         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
6426         not IN_DIRSPACE, work around to reduce bank switching when aboslute
6427         variables are placed in access bank memory (<0x80 and >=0xf80),
6428         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
6429         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
6430         TBLWT_POSTDEC,TBLWT_PREINC
6431         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
6432         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
6433         directives
6434         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
6435         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
6436         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
6437         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
6438
6439 2004-02-29  Borut Razem <borut.razem AT siol.net>
6440
6441         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
6442         support/Util/findme.h, support/Util/system.h: enhance binary relative
6443         search for lib and include by using findProgramPath()
6444
6445 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6446
6447         * src/SDCCpeeph.h,
6448         * src/SDCCpeeph.c (pcDistance),
6449         * src/port.h,
6450         * src/mcs51/ralloc.h,
6451         * src/mcs51/ralloc.c (mcs51_regWithIdx),
6452         * src/mcs51/main.h,
6453         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
6454         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6455         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
6456         size calculation port specific, started basis for some register
6457         optimizations
6458         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
6459         missing push/pop of r0/r1. Optimized push/pops
6460         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
6461         * device/lib/_modsint.c (_modsint),
6462         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
6463         and stack version so regression tests pass
6464
6465 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
6466
6467         * src/Makefile.in (dep): include SLIBOBJS in dependency check
6468         * src/SDCCast.c (decorateType): catch another small optimization
6469         with '?' operator
6470         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
6471         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
6472         modified to finally use computeType() all over SDCC,
6473         see Feature Request #877103
6474         * src/SDCCval.h: cosmetic
6475         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
6476         valCompare(); regression tested in muldiv.c
6477         * support/regression/tests/muldiv.c (testMod): mod sign follows
6478         dividend only
6479
6480 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
6481
6482         * src/SDCCast.c (decorateType): fixed bug #902362
6483         * doc/INSTALL.txt: fixed install instructions for win32
6484
6485 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
6486
6487         * device/include/Makefile.in (install): fixed by replacing spaces
6488         by tabs
6489         * doc/README.txt,
6490         * doc/INSTALL.txt: updated for release
6491         * doc/sdccman.lyx: added warning for --xstack being buggy
6492
6493 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
6494
6495         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
6496         to eliminate build warnings.
6497         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
6498
6499 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
6500            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6501
6502         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
6503         removed -penable-stack, added comment for stack pragma, added
6504         warning for not initializing the stack/frame registers, removed
6505         comment at interrupts section
6506
6507         Stack is made permanent, there is no ability to disable stack usage.
6508         * src/pic16/device.h,
6509         * src/pic16/device.c: removed all references to USE_STACK macro,
6510         * src/pic16/device.c (pic16_dump_section): when no elements in
6511         rlist, free rlist before return,
6512         * (pic16_dump_int_registers): NEW, internal registers are a new set
6513         of general purpose registers reused by each function,
6514         * (checkAddReg): returns 1 if registers is added to set,
6515         * (pic16_groupRegistersInSection): when a registers is of type
6516         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
6517         * src/pic16/device.h: memRange and Assigned Memory are deleted,
6518         SRCASECMP macro is moved here from device.c
6519         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
6520         PO_PCLATU, PO_PRODL, PO_PRODH,
6521         * (pic16_pCodeOpType, genMinus,
6522         changed compares to "a" register, with AOP_ACC,
6523         * (pic16_genPlus): fixed some bugs and indented properly,
6524         * (pic16_addSign): changed size to size+offset in the MOVWF
6525         instruction,
6526         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
6527         multiply 8-bit operand by literal, result is 8-bit,
6528         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
6529         multiply 2 8-bit operand, result is 8-bit,
6530         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
6531         genUMult8X*_16,
6532         * src/pic16/gen.c: changed accUse to contain WREG only,
6533         * (pic16_emitcomment): renamed to pic16_emitpcomment,
6534         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
6535         true, do not use immediate addressing any more unless sym is a
6536         pointer in codespace,
6537         * (aopForRemat): do not use immediate addressing when symbol not in
6538         codespace and when symbol's address is requested,
6539         * (aopOp): for-loop in if(sym->accUse) is modified for the new
6540         accUse size (= 1),
6541         * (aopGet): added case for AOP_ACC and don't return "accumulator
6542         bug" but WREG instead,
6543         * (popGetTempReg): pushes contents of temporary register in stack,
6544         * (popReleaseTempReg): pops contents of temporary register from
6545         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
6546         * (pic16_popGet): separated case AOP_ACC to return register WREG
6547         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
6548         or PO_IMMEDIATE and initializes their instance/offset appropriately,
6549         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
6550         the use of immediate pointers to certain cases only.
6551
6552         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
6553         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
6554         * (assignResultValue, genCall, genRet): modified to use the new
6555         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
6556         genPcall is still broken,
6557         * (genFunction): added code to create 'A' type pBlocks when
6558         interrupt functions are generated, code not extensively tested yet,
6559         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
6560         * (genEndFunction): modified so ISRs pop stored registers from stack,
6561         * (genMultOneByte): cleanup,
6562         * (AccRsh): added flag andmask, to and result with appropriate mask,
6563         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
6564         * (genDataPointerGet): fixed and reenabled its use,
6565         * (genNearDataPointerGet): bugs fixed,
6566         * (genDataPointerSet): bugs fixed,
6567         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
6568         pic16_DumpSymbol, pic16_DumpOp,
6569         * src/pic16/genutils.h: function prototypes for the above functions,
6570         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
6571         pointers,
6572         * (pic16emitRegularMap): many many many improvements, but needs a
6573         major cleanup,
6574         * src/pic16/main.c: enable_stack in pic16_options is removed,
6575         * (_pic16_parseOptions): removed command line options -penable-stack,
6576         * (_process_pragma): emit stack symbol only when stack pragma is
6577         processed,
6578         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
6579         redirected to FSR0L/FSR0H pair,
6580         * (pic16_get_op, pic16_get_op2): modifications and improvements,
6581         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
6582         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
6583         for immediates,
6584         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
6585         * (dumpPicOptype): NEW,
6586         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
6587         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
6588         with movff instruction,
6589         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
6590         added pic16_int_regs, some packRegsFor* functions are commented out,
6591         because produce errors,
6592         * src/pic16/NOTES: minor modifications
6593
6594 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6595
6596         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
6597         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
6598         --pack-iram.
6599         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
6600         * as/mcs51/lkaomf51.c: fixed bug #895763
6601
6602 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
6603
6604         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
6605
6606 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6607
6608         * doc/sdccman.lyx: added details about the HC08 storage classes and
6609         interrupts, fixed the register usage info for z80 & gbz80
6610
6611 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
6612
6613         * doc/sdccman.lyx: added more pic16 port documentation
6614         * device/include/pic16/: added header pic18fregs.h
6615
6616 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
6617
6618         * doc/sdccman.lyx: added Vangelis' contribution
6619
6620 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6621
6622         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
6623         extend to the next CALL or PCALL, not just to the next CALL.
6624
6625 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
6626
6627         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
6628
6629 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6630
6631         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
6632         bug #895752 and a better fix for bug #716790
6633
6634 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6635
6636         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
6637
6638 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6639
6640         * doc/sdccman.lyx: minor changes, minor changed
6641
6642 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
6643
6644         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
6645         which can't handle SDCC_NEWONEBYTEOPS,
6646         (geniCodeMultiply): removed conversion from mult to shift for pic14
6647         and pic16
6648
6649 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6650
6651         * src/hc08/gen.h,
6652         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
6653         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
6654         thus fixing bug #895406
6655
6656 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
6657
6658         * device/lib/_modsint.c,
6659         * device/lib/_modslong.c: sign follows divisor only
6660         * src/hc08/gen.c (genMultOneByte): if result size is 1,
6661         signs or signedness can be ignored
6662         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
6663         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
6664         added optimization for IFX,
6665         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
6666         arguments;
6667         reenabled optimization for IFX, which was removed on 2004-01-11
6668         * src/SDCCast.h: added return type IFX
6669         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
6670         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
6671         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
6672         SDCC_OLDONEBYTEOPS selects the old behaviour
6673         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
6674         changed again and commented promotion rule
6675         * src/SDCCval.c (valDiv): promotion no longer necessary
6676         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
6677         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
6678         rewritten
6679         * support/regression/tests/onebyte.c: added
6680
6681 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
6682
6683         * gen.c (genInline): reverted to old code for assemnling inline
6684         code because of bug reported James Chadd
6685
6686 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
6687
6688         * ralloc.h: missing declarations from previous patch,
6689         seems that patch for ralloc.h was never applied, fixed
6690
6691 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6692            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6693
6694         * pcode.c,
6695         * pcode.h,
6696         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
6697         indirect addressing. Marked FSR0 as deprecated
6698         * gen.c (pointerCode): commented out, not needed now
6699         (pic16_popGet2p): new MOVFF helper function
6700         (genGenPointerGet),
6701         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
6702         (shiftRLong): removed duplicate debugging info
6703
6704 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6705
6706         * src/ds390/gen.c (genNearPointerGet),
6707         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
6708         optimization with bits, but not bitfields.
6709         * src/ds390/ralloc.c (packRegisters),
6710         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
6711
6712 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
6713
6714         * src/SDCCcse.c (algebraicOpts): copy operands before modification
6715
6716 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6717
6718         * src/SDCCsymt.h,
6719         * src/SDCCicode.c (operandFromSymbol),
6720         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
6721         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
6722         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
6723         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
6724         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
6725         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
6726         bug #892038
6727         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
6728         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
6729         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
6730         * src/SDCCsymt.c (newSymbol),
6731         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6732         enumerator_list),
6733         * src/SDCCval.h,
6734         * src/SDCCval.c (newiList): fixed bug #885705
6735
6736 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6737
6738         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
6739         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
6740
6741 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6742
6743         * device/include/c8051f120.h,
6744         * device/include/c8051f300.h,
6745         * device/include/c8051f310.h: added/updated header files for Silicon
6746         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6747         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
6748         in new section Submitting patches
6749
6750 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6751
6752         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
6753         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6754         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6755         genGenPointerSet),
6756         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
6757         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6758         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6759         genGenPointerSet),
6760         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
6761         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6762         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6763         genGenPointerSet),
6764         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
6765         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6766         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6767         genGenPointerSet): fixed bug #892400
6768         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
6769         to eliminate build warnings.
6770         * src/SDCCast.c (processParms),
6771         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
6772         fixed bug 751859
6773         * support/valdiag/valdiag.py: added GCC to the list of defines active
6774         when compiling with gcc
6775
6776 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6777
6778         * support/Util/SDCCerr.h,
6779         * support/Util/SDCCerr.c,
6780         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
6781         with an incomplete type (fixed bug #883734)
6782         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
6783
6784 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6785
6786         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
6787
6788 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6789
6790         * src/SDCCast.c (decorateType),
6791         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
6792         function pointer implementation
6793         * support/regression/tests/funptrs.c: added tests to verify both forms
6794         of function pointers work correctly. Added tests to verify parameters
6795         are passed in the correct order.
6796
6797 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
6798
6799         * device.c (regCompare): registers are sorted by ascending
6800         address and increasing size,
6801         * main.c (_pic16_finaliseOptions): removed the declaration
6802         of compiler macro MCU. Now a macro of the format pic18fxxxx
6803         will be defined from the command line
6804
6805 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6806             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6807
6808         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
6809         PCOP_RLCF was overwritten!
6810         * gen.c (genSkip): commented out calls to pic16_emitcode,
6811         * (genCmpEQ): fixed "long" compares, only high word did get compared,
6812         * (genlshTwo),
6813         * (genRRC): added debugging info,
6814         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
6815         overwritten while shifting,
6816         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
6817         overwritten while shifting,
6818         * (AccLsh),
6819         * (AccRsh),
6820         * (shiftLLeftOrResult),
6821         * (shiftRLeftOrResult),
6822         * (shiftRLong),
6823         * (shiftLLong): Implemented with pic16_emitpcode
6824         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
6825         * (genLeftShift): Fixed bug, operand for shift by variable always
6826         was "and"ed with 0x0f,
6827         * (genLeftShiftLiteral),
6828         * (genrshTwo),
6829         * (genRightShiftLiteral): added debugging info,
6830         * (genrshFour): added comment,
6831         * (genRightShift): determined signedness from operand "left"
6832         instead of "result"
6833
6834 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6835
6836         * src/SDCCicode.c (geniCodeParms),
6837         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
6838         function pointers, fixed function pointer bugs #861242 and #861896
6839
6840 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6841
6842         * device/include/c8051f000.h,
6843         * device/include/c8051f120.h,
6844         * device/include/c8051f300.h: added header files for Silicon
6845         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6846
6847 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
6848
6849         * src/SDCCast.c (processParams): added new type flow and restructured
6850         (gatherAutoInit): added new type flow
6851         (addCast): cosmetic changes
6852         (getLeftResultType): added new type flow for array indices, patch
6853         provided by Stas, see FR #877103
6854         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
6855         array index patch by Stas
6856         * src/SDCCast.h: added prototype getResultTypeFromType()
6857         * src/SDCCval.h,
6858         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
6859         * src/pic/glue.c (pic14emitStaticSeg),
6860         * src/pic16/glue.c (pic16emitStaticSeg),
6861         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
6862         for initialization of symbols
6863         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
6864         * support/Util/SDCCerr.h:
6865         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
6866         * .version: bumped version number to 2.3.8
6867         * device/include/Makefile.in (install),
6868         * doc/Makefile (install): changed to 'rm `find ...`' construct to
6869         avoid warnings
6870
6871 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
6872
6873         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
6874         Slade Rich fixed an optimization bug
6875         * src/pic/pcodepeep.c,
6876         * src/pic/pcoderegs.c
6877         * doc/Makefile (install): added test for directory
6878
6879 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6880
6881         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
6882         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
6883         * src/pic/ralloc.c (getRegPtr, getRegGpr),
6884         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
6885         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
6886         * as/mcs51/asexpr.c (term),
6887         * as/hc08/asexpr.c (term): fixed bug #887146
6888
6889 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6890
6891         * src/z80/gen.c (genMult): handle single byte result product
6892         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
6893         DUMMY_READ_VOLATILE (fixed bug #886367)
6894
6895 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6896
6897         * support/regression/tests/libmullong.c: fixed logic, on little endian
6898         hosts we ended without a mullong_wrapper()
6899
6900 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6901
6902         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
6903         virus/worm forged address usage.
6904
6905 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6906
6907         Fixed promotion, it should be done on AST level:
6908         * src/SDCCast.c (addCast): added promotion to int
6909         (decorateType): updated call to upCast()
6910         * src/SDCCicode.c (geniCodeLeftShift): removed call to
6911         usualUnaryConversions()
6912
6913 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
6914
6915         * support/regression/tests/literalop.c (mulWrapper): Added a
6916         wrapper to remove integer overflow warnings.
6917
6918         * support/regression/tests/float_trans.c: Made work on host.
6919
6920         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
6921         location of sz80.
6922
6923         * support/regression/generate-cases.py (main): Changed from inline
6924         to a main method.
6925
6926         * doc/Makefile (install): Changed to depth first to get rid of
6927         missing directory install warning.
6928
6929         * as/Makefile (install-doc): Made work on Mac.
6930
6931 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
6932
6933         * src/SDCCast.c: added an additional type flow in decorateType() of
6934         opposite direction, see feature request #860006; it's enabled at runtime
6935         by setting the environment variable SDCC_NEWTYPEFLOW
6936         * src/SDCCast.h: changed prototype of decorateType()
6937         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
6938         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
6939         'char' to 'int' can be omitted, if both operands are 'unsigned char';
6940         see feature request #877103
6941         * src/SDCCval.c: updated call of decorateType()
6942         (valBitwise): fixed bug #882876
6943         (valMinus): added promotion
6944         (valLogicAndOr): result is unsigned
6945         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
6946         * src/SDCCsymt.c (computeType),
6947         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
6948         must not cause an unsigned operation
6949         * src/pic/glue (pic14emitRegularMap),
6950         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
6951
6952 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
6953
6954         * src/pic/pcode.c (PCodeID): commented out left over debug code
6955
6956 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
6957
6958         * support/valdiag/tests/overflow.c: added shift tests
6959         * src/pic/device.c,
6960         * src/pic/gen.c,
6961         * src/pic/gen.h,
6962         * src/pic/glue.c,
6963         * src/pic/main.c,
6964         * src/pic/pcode.c,
6965         * src/pic/pcode.h,
6966         * src/pic/pcodepeep.c,
6967         * src/pic/pcoderegs.c,
6968         * src/pic/ralloc.c,
6969         * src/pic/ralloc.h: applied patch from Slade Rich;
6970         added support for multiple code pages and multiple RAM banks on the
6971         PIC 14 port. The ASM files now no longer simply assume all the
6972         code / RAM are in the same page / bank. This means the linker can
6973         safely allocate code/RAM of separate ASM files to different pages/banks.
6974         * doc/sdccman.lyx: added Slade's tips
6975         * src/mcs51/peeph.def: fixed bug #880768
6976
6977 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6978
6979         * src/hc08/ralloc.c (rematStr): fixed bug #879282
6980         * src/SDCCast.c (decorateType): fixed bug #880197
6981
6982 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
6983
6984         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
6985         getopt.h.
6986
6987         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
6988         strtof is not part of C89 and isn't included with Mac OS X.
6989
6990 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6991
6992         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
6993         shiftL2Left2Result): fixed bug #879326
6994         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
6995         (genMultOneByte): fixed bug in signed vs unsigned multiplication
6996         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
6997         address fetch for clr instruction
6998         * device/lib/hc08/_mulint.c: created optimized assembly version
6999         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
7000
7001 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
7002
7003         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
7004         proposed in FR #877103
7005
7006 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
7007
7008         * src/SDCCval.c (cheapestVal): added missing checks
7009         * src/SDCCicode.c (usualBinaryConversions): fixed condition
7010         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
7011
7012 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
7013
7014         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
7015         equal operands
7016
7017 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
7018
7019         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
7020         loaded with the linker search paths (-L arguments) and the libraries
7021         to be linked with the current source (-l arguments). Changes
7022         currently will affect only the pic16 port.
7023         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
7024         include path the port specific paths and port specific libraries,
7025         * gplink command now contains the $3 argument,
7026         * src/pic16/device.h,
7027         * src/pic16/device.c,: structure PIC_device is made public and
7028         renamed to PIC16_device, the same for variable Pics which is renamed
7029         to Pics16. Updated all references to them.
7030         * src/pic16/glue.c (pic16glue): corrected bug with code
7031         initialization which bypassed the variable initializations block.
7032
7033         * device/lib/pic16/Makefile.rules: removed --penable-stack from
7034         COMPILE_FLAGS and added the --nostdinc option
7035
7036 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7037
7038         * device/include/mc68hc908jb8.h: Register defs for another member
7039         of the hc08 family. Contributed by Bjorn Bringert - thanks!
7040
7041 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
7042
7043         Documenting changes from previous commits.
7044         * configure.in (version 1.56),
7045         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
7046         when generating output files to configure the pic16 library,
7047         but now I've commented it out, since gputils aren't installed in the
7048         SF compile farm, so library won't compile
7049
7050         * device/lib/Makefile.in (version 1.56): initially I've added in
7051         target 'all' the prerequestive 'model-pic16' so it compiled the
7052         pic16 library, but now I've commented it out for the same reasons
7053         above,
7054         * added targets 'model-pic16' and 'objects-pic16' to compile the
7055         library
7056         * added target 'port-specific-objects-pic16' to handle the
7057         generated libraries and copy them into the build/ directory
7058         * added target 'clean-intermediate-pic16' to clean intermediate
7059         files into pic16 directory
7060         * in target 'installdirs' added line to create directory pic16 in
7061         the installation path
7062
7063         * device/include/Makefile.in (version 1.11): in target 'install'
7064         added lines to copy all header files to installation path,
7065         * in target 'installdirs' added line create directory for pic16
7066         headers in the installation path
7067
7068 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
7069
7070         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
7071          a function call
7072
7073 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
7074
7075         * configure,
7076         * device/lib/configure.in,
7077         * device/lib/configure: fixed for autoconf 2.57
7078
7079 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7080
7081         * src/z80/main.c (_parseOptions): fixed the portmode= command line
7082         option so that it actually works. Made it specific to the z80, since
7083         the gbz80 doesn't have these kinds of I/O ports.
7084
7085 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7086
7087         * device/include/z180.h,
7088         * device/lib/_memcpy.c,
7089         * device/lib/_memmove.c,
7090         * device/lib/_mulint.c,
7091         * device/lib/ser_ir.c,
7092         * device/lib/ser_ir_cts_rts.c,
7093         * device/lib/_strcmp.c,
7094         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
7095         * src/z80/main.c (_process_pragma): add support for pragmas bank and
7096         portmode; added deprecation warning for bank= and protmode= forms.
7097         Also, guard against buffer overflow.
7098         * src/z80/gen.c (aopGet): generate better code for sfr banked read
7099
7100 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7101
7102         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
7103         changed interrupt vector table generation to only emit declared vectors.
7104         * device/include/Makefile.in: added missing backslash
7105         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
7106
7107 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
7108
7109         Mainly changes to support compilation of the device libraries
7110         * src/pic16/device.c: stack is allocated via symbol and not
7111         via literal number. The symbol is placed in the corresponding
7112         position of the data ram
7113         * (pic16_dump_section): relocatable and absolute uninitialized
7114         data are now emitted in sorted order to reduce section naming,
7115         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
7116         weren't marked as being in the access bank,
7117
7118 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
7119
7120         Added portion of GNU PIC Library under the directory
7121         device/include/pic16 and device/lib/pic16. These files
7122         contain the declarations of SFRs for the PIC18Fxx2 devices.
7123         The directory is initialized via configure from toplevel.
7124
7125 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
7126
7127         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
7128         the spilllocations to be compared correctly
7129
7130 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
7131
7132         * src/SDCCast.c (decorateType): fixed bug introduced today
7133
7134 2004-01-12  Borut Razem <borut.razem AT siol.net>
7135
7136         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
7137         doc/sdccman.lyx: upper case pragmas are deprecated
7138
7139 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
7140
7141         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
7142         in simpler and even better code
7143
7144 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
7145
7146         * src/SDCCicode.c (operandOperation): fixed bug #874819
7147         * src/SDCCast.c (decorateType): fixed
7148         char foo (unsigned long ul) { return ul > 0; }
7149
7150 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7151
7152         * doc/sdccman.lyx: Moved and added some sections, small changes
7153         all over. Telling LaTeX to be less strict with word spacing
7154         to better keep the right margin. Changed some notes about
7155         maintainance of the ports in section 3.2.1 - is it OK like this?
7156
7157 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
7158
7159         SDCC source changes:
7160         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
7161         convilong): modified to inform the pic16 port that builtin functions
7162         are external
7163
7164         PIC16 PORT specific changes:
7165         * src/pic16/device.c pic16_dump_equates() added,
7166         processor registers declared internally by the port are emitted in
7167         the translation as equates,
7168         * src/pic16/gen.c: inline code is passed unprocessed to the
7169         translation,
7170         * (pic16_popGetLit2): fnuction modified to take second operand as
7171         pCodeOp pointer and not as literal,
7172         * (popRegFromIdx): prefixed with pic16_,
7173         * (pic16_popCombine2): modified to receive already allocated pCode
7174         operands,
7175         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
7176         * (genFunction): initializes local stack frame and pushes on stack
7177         all the registers used by this function,
7178         * (genEndFunction): restores all registers from stack and restores
7179         stack frame,
7180         * src/pic16/glue.c (pic16emitRegularMap): various changes and
7181         improvements,
7182         * (pic16glue): changed the program startup sequence,
7183         * added new dbName code 'A' for functions placed in absolute section
7184         * src/pic16/main.c: added function attribute _naked,
7185         * added pragma 'code' to place a fnuction at an absolute address,
7186         * added command line arguments --debug-ralloc and --pcode-verbose,
7187         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
7188         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
7189         * (pic16_newpCodeOpLit2): modified to take the second operand as
7190         pCodeOp pointer,
7191         * (pic16_printpBlock): modified to emit each function in a separate
7192         section,
7193         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
7194         UPPER for immediate operands,
7195         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
7196         instruction,
7197         * src/pic16/peeph.def: all peepholes with movff are commented out,
7198         because there is a problem in the pcode peep optimizer,
7199         * src/pic16/ralloc.c: the register allocator can now reuse local
7200         function symbols for another function. This saves register usage.
7201         * src/pic16/ralloc.h: added flag isLocal in structure regs,
7202
7203         Added file src/pic16/NOTES with information about program writing on
7204         the current port version.
7205
7206 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7207
7208         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
7209         and peephole 252 (array access)
7210
7211 2004-01-09  Borut Razem <borut.razem AT siol.net>
7212
7213         * src/SDCCmain.c : fixed #872250: -l command line defined library
7214           files are scanned before standard library files
7215
7216 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7217
7218         * src/SDCCast.c (decorateType): fixed bug #874046
7219
7220 2004-01-09  Borut Razem <borut.razem AT siol.net>
7221
7222         * support/scripts/sdcc.nsi: remove previous installation
7223
7224 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7225
7226         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
7227         bytes for last interrupt vector (mcs51)
7228         * sdcc.spec: fixed typo
7229
7230 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7231
7232         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
7233         gen51Code): more efficient parameter receive for --model-large
7234         ("bug" #845294)
7235
7236 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7237
7238         * src/ds390/main.c,
7239         * src/z80/main.c: added missed needLinkerScript flags (more than
7240         one port structure defined in these file)
7241         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
7242         bug #795325
7243
7244 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
7245
7246         * src/SDCCmain.c: removed various references to DEFAULT_PORT
7247         * src/port.h: added flag needLinkerScript in port->linker
7248         structure to inform whether to create a .lnk file or not,
7249         * src/avr/main.c,
7250         * src/ds390/main.c,
7251         * src/hc08/main.c,
7252         * src/mcs51/main.c,
7253         * src/pic/main.c,
7254         * src/pic16/main.c,
7255         * src/xa51/main.c,
7256         * src/z80/main.c: changed appropriately to configure
7257         needLinkerScript flag
7258         * src/pic/gen.c,
7259         * src/pic16/gen.c (genAddrOf): fixed bug #863624
7260         * src/pic/glue.c: added variable udata_section_name to
7261         override default uninitialized data segment definition for
7262         devices only with SHAREBANK memory (reported from Erik Epetrich)
7263         * (pic14emitOverlay): modified to emit a commented overlay segment
7264         directive when no overlay data exist
7265         * (picglue): modified to emit uninitialized data segment
7266         according to udata_section_name
7267         * src/pic/main.c (_pic14_parseOptions): added command line
7268         options --udata-section-name=[name] to override default
7269         udata definition name
7270         * modified _linkCmd and _asmCmd to include compiler passed
7271         arguments via -W option
7272         * src/pic16/main.c: added $l in _asmCmd, changed extension for
7273         object file from '.rel' to '.o' in port->linker structure,
7274         changed size of fptr from 2 to 3 in port structure
7275
7276 2004-01-07  Borut Razem <borut.razem AT siol.net>
7277
7278         * support/scripts/sdcc.nsi: update PATH
7279         * support/scripts/sdcc.ico: craeted
7280
7281 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
7282
7283         * device/include/Makefile.in: fix install
7284         * doc/Makefile: fix install
7285
7286 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7287
7288         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
7289         in bug #860505
7290         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
7291         how the function variable allocation summary is displayed; also
7292         include information about variables allocated to the overlay
7293         segment
7294
7295 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7296
7297         * as/mcs51/lkmain.c: Help about -Y option
7298         * as/mcs51/lkarea.c: Fixed gcc warnings
7299
7300 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
7301
7302         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
7303         fixed warning
7304         * support/valdiag/tests/overflow.c: added
7305         * src/SDCCast.c (decorateType),
7306         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
7307         LEFT_OP (left shift)
7308
7309 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7310
7311         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
7312         (default behaviour).
7313
7314 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7315
7316         A python script to validate compiler diagnostic messages. It can be
7317         used to verify that sdcc complains about bad c source code and
7318         gives a good location of the error.
7319         * support/valdiag/Makefile,
7320         * support/valdiag/valdiag.py,
7321         * support/valdiag/tests/*
7322
7323 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7324
7325         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
7326         * src/SDCCsymt.c (newEnumType),
7327         * src/SDCCsymt.h
7328         * support/Util/SDCCerr.c,
7329         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
7330         enum related bugs.
7331         * support/regression/tests/enum.c: added test for enum values that
7332         require at least 2 bytes of storage.
7333
7334 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7335
7336         * src/common.h: added ifndef/define/endif macros
7337         around the header file.
7338         Bug reported from Jesus Calvino-Fraga
7339
7340 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
7341
7342         * sdcc.spec: updated
7343         * device/include/Makefile.in: don't install CVS directories
7344         * device/lib/Makefile.in: added removal of CVS directories after install
7345         * doc/Makefile: fixed install, added local_icons
7346         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
7347         * src/mcs51/gen.c (genRightShift): fixed bug #870788
7348         * src/ds390/gen.c (genRightShift): fixed bug #870788
7349         * src/SDCCast.c (decorateType): fixed bug #870781
7350
7351 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7352
7353         PIC16 port related changes:
7354         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
7355         added variable stackPos,
7356
7357         * gen.c: genCall, assignResultValue: added support for
7358         pushing/retrieving function parameters to/from stack,
7359         genFunction,genEndFunction: setup stack frame for the
7360         generated function,
7361         genAddrOf: will be changed according to bug 863624
7362
7363         * added files genutils.c and genutils.h which contain gen*
7364         debugged and optimised functions extracted from gen.c
7365
7366         * glue.c: added variable 'externs' which holds extern symbols,
7367         pic16emitRegularMap: is modified to properly handle relocatable
7368          symbols under the new scheme,
7369         pic16createInterruptVect: is modified
7370         pic16printPublics: is modified to emit 'global' assembler directives,
7371         added pic16_printExterns to print extern symbols,
7372         pic16glue: initializes stack/frame pointer in the beginning of
7373         the assembly output. Temporary hack, will be corrected later,
7374         because gplink yet does not support stack and SDCC does not
7375         yet support a type of crt0.o object to create the final binary.
7376
7377         * Removed many lines that contain 8051 legacy code.
7378         * The code is finally placed under a 'code' directive.
7379         * Added port specific options.
7380
7381         * _process_pragma: simplified since now we do not need *special*
7382         include file to define SFR registers. But a separate header
7383         will be needed. This will be developed later.
7384         * _pic16_parseOptions: added, parses port specific options:
7385         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
7386         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
7387         --preplace-udata-with=
7388
7389         * _pic16_setDefaultOptions: modified to initialize section names,
7390         but hack is temporarly out of order since it needs improvement.
7391         * _pic16_genAssemblerPreamble: configuration words are emitted by
7392         their address instead of their name. This part is incomplete and
7393         supports only the 18Fxx2 devices. Other devices will emit an error
7394         during assembly since they do not contain the same set of config
7395         registers
7396         * _pic16_genIVT: is modified,
7397
7398         * pcode.c: added definitions for some hardware registers that are needed
7399         for stack support
7400         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
7401         All PCI entries are updated. Now LFSR is supported.
7402         * Removed pic16_pciTRIS is mentioned by mdubuc in source
7403         * added pic16_newpCodeOpLit2 to support instructions with
7404         two literal arguments
7405         * pic16_pCode2str: corrected code that emits assembler instructions
7406         with two literal operands and those that have an access bit modifier
7407         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
7408         this fixes a bug which caused some labels to be lost, when an
7409         assembler directive was added, i.e. banksel,
7410         * pic16_FixRegisterBanking: improved logic that causes the insertion
7411         of bank switching,
7412         * InlineFunction: functions that are called once, are not any more
7413         inlined. This can be a port option in the future,
7414
7415         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
7416
7417         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
7418         hold the corresponding uninitialized symbols,
7419         * pic16_allocProcessorRegister: registers have explicit marked the
7420         accessBank field,
7421         * pic16_allocInternalRegister: registers are explicit marked as
7422         not used,
7423         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
7424         processing list, so bit registers were lost,
7425         *
7426
7427         * ralloc.h: added field 'accessBank' and original symbol operand
7428         in register definition,
7429         * removed the field isMapped from register definition,
7430
7431         ** Several functions have been removed from various sources:
7432         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
7433         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
7434         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
7435         pic16_assignRelocatableRegisters
7436
7437         ** others have been introduced:
7438         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
7439         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
7440
7441 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
7442
7443         * support/scripts/inc2h.pl: changed definition of BIT_AT
7444         to emit 'sbit at' instead of 'bit at'. This was a request.
7445
7446         PIC16 port related preliminary changes:
7447         * gen.c: prefixed function popRegFromString with
7448         pic16_ and all references to it corrected
7449         * pcode.c: all pic16_pc_* hardware registers prefixed
7450         with underscore (_),
7451         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
7452         * ralloc.c: newReg(): when register is REG_SFR then
7453         set address to rIdx,
7454         pic16_allocProcessorRegister(): marks register wasUsed=0
7455         pic16_writeUsedRegs(): added a call to assign processor
7456         registers via pic16_assignFixedRegisters
7457
7458 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7459
7460         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
7461         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
7462         variables in unused register banks.  Also the SSEG is placed
7463         wherever there is enough space for it, and IDATA can be anywhere
7464         in internal RAM.  For now compile using -Wl-Y[stack_size].
7465         The mem file is different for this option as well, since it
7466         makes no sense of talking about DSEG lenght.
7467
7468 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
7469
7470         * src/SDCClrange.c: fixed bug 869095 that caused segfault
7471         in certain cases, e.g. when ROM assignment, patch provided
7472         from Albert den Haan.
7473
7474 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
7475
7476         Many signedness and type propagation fixes:
7477         * src/SDCCicode.c: made geniCodeCast() static
7478         replaced SPEC_ by IS_ (cosmetic)
7479         (operandOperation): fixed div and mod operation
7480         (usualBinaryConversions): added support for promotion of char
7481         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
7482         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
7483         (geniCodeAdd): an array index will stay unsigned, even if promoted
7484         from char to int
7485         (geniCodeArray): ditto
7486         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
7487         * src/SDCCsymt.c (computeType): added more support for char;
7488         promotion of char is selectable by promoteCharToInt, fixed signedness
7489         for all cases
7490         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7491         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7492         * src/SDCCval (val*): replaced signedness calculation by
7493         computeType()
7494         rearranged if-branches (cosmetic)
7495         (valShift): added warning W_SHIFT_CHANGED
7496         (valCompare): fixed problem with different types
7497         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
7498         * support/regression/tests/literalop.c: added many cases
7499         * support/regression/tests/ast_constant_folding.c: changed finally to
7500         'unsigned int'
7501         * .version: new year, new version: 2.3.7
7502         * src/SDCCmain.c (main): applied patch #866468
7503         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
7504         provided by Scott Bronson
7505         * doc/sdccman.lyx: updated documentation for sdcdb
7506         updated and added chapter tips
7507
7508 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7509
7510         * src/SDCCsymt.h: missing from yesterday's commits
7511
7512 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7513
7514         * src/SDCC.y (struct_or_union_specifier),
7515         * support/Util/SDCCerr.c,
7516         * support/Util/SDCCerr.h: verify that struct & union tags are used
7517         as declared.
7518
7519 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7520
7521         * src/SDCCglobl.h: missing from yesterday's commits
7522
7523 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7524
7525         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
7526         sft_attributes, struct_declaration, parameter_declaration,
7527         type_name, start_block, declaration_list),
7528         * src/SDCC.lex (check_type): support redefinition of typedef names
7529
7530 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7531
7532         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
7533         aligned xdata arrays. Erik helped me with the if clause.
7534
7535 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7536
7537         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
7538         warning
7539
7540 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7541
7542         * src/SDCCast.h,
7543         * src/SDCCast.c (newAst_),
7544         * src/SDCCicode.h,
7545         * src/SDCCicode.c (ast2iCode, newiCode),
7546         * src/SDCCglobl.h,
7547         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
7548         expr, statement, expression_statement, selection_statement,
7549         iteration_statement, expr_opt, jump_statement): foundation for tracking
7550         sequence points
7551         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
7552         point code too)
7553
7554 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7555
7556         * support/Util/SDCCerr.c,
7557         * src/SDCCast.h,
7558         * src/SDCCast.c (createCase, createDefault, decorateType),
7559         * src/SDCClabel.c (labelUnreach),
7560         * src/SDCC.y (labeled_statement, jump_statement): More improvements
7561         to error messages.
7562         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
7563         (with thanks to Stas Sergeev)
7564         * device/include/time.h,
7565         * device/lib/time.c (CheckTime): suppress unreachable code warning
7566
7567 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7568
7569         * src/SDCCast.c (createIvalCharPtr),
7570         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
7571         bug #753752)
7572         * support/regression/tests/nullstring.c: tests for these two bugs
7573
7574 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7575
7576         * support/Util/SDCCerr.h,
7577         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
7578         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
7579         about storage class and 'at' used inside struct or union
7580         * src/SDCCBBlock.c (iCodeFromeBBlock),
7581         * src/SDCCcse.c (ifxOptimize),
7582         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
7583         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
7584         printIval, emitStaticSeg, emitOverlay),
7585         * src/SDCClabel.c (deleteIfx),
7586         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
7587         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
7588         gatherAutoInit, processParms),
7589         * support/Util/SDCCerr.h,
7590         * support/Util/SDCCerr.c (werrorfl): Support for better error location
7591         reporting for post-parse errors.
7592
7593 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7594
7595         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
7596         implicit casts via union; they don't work on big endian systems
7597         (possible fix for bug #861138)
7598
7599 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7600
7601         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
7602         * src/mcs51/main.c: fixed the fix for bug #737001
7603
7604 2003-12-15  Borut Razem <borut.razem AT siol.net>
7605
7606         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
7607
7608 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7609
7610         * support/makebin/makebin.c: put output in binary mode
7611
7612 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7613
7614         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
7615         xdata and data memory on startup. Set the environment variable
7616         SDCC_NOGENRAMCLEAR to disable this.
7617         * src/mcs51/peephole.def,
7618         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
7619         (allows non-interrupt and interrupt code to safely compete for a resource
7620         without the non-interrupt code having to disable interrupts)
7621
7622 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7623
7624         * src/SDCCicode.c (geniCodeAdd),
7625         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
7626         with valFromType if type might be a pointer and host is big endian).
7627         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
7628         types, not just integer types.
7629         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
7630         multiply defined with mismatching "at" address.
7631
7632 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7633
7634         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
7635         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
7636         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
7637         with embedded nulls (fixed bug #753752)
7638
7639 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7640
7641         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
7642         Apparently this did not see much testing (endless loop)
7643
7644 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7645
7646         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
7647
7648 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7649
7650         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
7651         gracefully handle NULL memmap pointers
7652
7653 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7654
7655         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
7656         instead of deleting the iCode when an operand is volatile
7657         * src/z80/gen.c (genDummyRead),
7658         * src/mcs51/gen.c (genDummyRead),
7659         * src/ds390/gen.c (genDummyRead),
7660         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
7661         not just IC_RIGHT
7662         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
7663         * src/SDCC.y: fixed bug #850420
7664
7665 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7666
7667         Applied z80 i/o port patch from Peter Townson and fixed some operators
7668         to better handle operands in A register.
7669         * device/include/z180.h
7670         * src/SDCC.y
7671         * src/SDCCglue.c
7672         * src/z80/gen.c
7673         * src/z80/gen.h
7674         * src/z80/main.c
7675         * src/z80/peeph-z80.def
7676         * src/z80/peeph.def
7677         * src/z80/z80.h
7678
7679 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7680
7681         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
7682
7683 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7684
7685         * device/lib/hc08/_mullong.c: Removed extra #endif
7686
7687 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7688
7689         * sim/ucsim/hc08.src/inst.cc,
7690         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
7691         carries from x to h
7692         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
7693         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
7694         * device/include/stdarg.h: fixed varargs for hc08
7695         * device/lib/Makefile.in,
7696         * device/lib/hc08/Makefile,
7697         * device/lib/hc08/_mulint.c,
7698         * device/lib/hc08/_mullong.c: fixed some endian problems
7699
7700 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7701
7702         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
7703         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
7704         * device/lib/_gptrget.c,
7705         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
7706
7707 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7708
7709         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
7710         * src/SDCCast.c (astErrors): fixed bug #846007
7711         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
7712
7713 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7714
7715         * src/SDCCast.c (decorateType): disabled a transformation I added in
7716         revision 1.188 (access to fields of a structure at an absolute address);
7717         it breaks with bitfields, extern declarations, and gcse analysis.
7718         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
7719         could be assigned through a pointer, so don't complain.
7720         * src/SDCCast.c (astErrors),
7721         * src/SDCCast.h,
7722         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
7723
7724 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
7725
7726         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
7727         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
7728         output of __config directives, since gpasm now supports them
7729         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
7730         pre-processor macro, i.e. -DMCU=p18f452
7731         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
7732         and modified to handle 'cast' icode similarly to '=' icode
7733         * src/pic16/device.h (typedef struct PIC_device): added field
7734         'extMIface' to indicate that chip has external memory interface
7735         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
7736         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
7737         18F8720
7738
7739 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7740
7741         * src/SDCC.y (pointer): fixed bug #846006
7742         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
7743         * src/SDCCast.c (decorateType): fixed bug #846009
7744         * src/ds390/peeph.def,
7745         * src/ds390/gen.c (genAnd, genOr),
7746         * src/mcs51/peeph.def,
7747         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
7748
7749 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7750
7751         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
7752         * src/SDCCdflow.c
7753         * src/SDCCcse.c
7754         * src/SDCCcse.h
7755         * src/SDCCBBlock.h
7756         * src/SDCCBBlock.c
7757
7758 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
7759
7760         fixed bug #845089
7761         * src/SDCCbitv.h,
7762         * src/SDCCbitv.c: added function to free a bitvector
7763         * src/SDCClrange.h,
7764         * src/SDCClrange.c: added function to recompute the liveranges
7765         * src/avr/ralloc.c,
7766         * src/ds390/ralloc.c,
7767         * src/hc08/ralloc.c,
7768         * src/mcs51/ralloc.c,
7769         * src/pic/ralloc.c,
7770         * src/pic16/ralloc.c,
7771         * src/xa51/ralloc.c,
7772         * src/z80/ralloc.c: recompute the liveranges after register packing
7773
7774 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
7775
7776         * src/SDCCloop.c (newInduction): fixed bug #845630
7777
7778 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7779
7780         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
7781         inadvertantly left behind from my 2003-11-12 change
7782
7783 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7784
7785         Updated headers I neglected to commit yesterday.
7786         * src/SDCClrange.h,
7787         * src/SDCCicode.h
7788
7789 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7790
7791         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
7792         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
7793         * src/SDCCopt.c (eBBlockFromiCode),
7794         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
7795         the creation of the key hash table from the sequencing so it can be used
7796         earlier (for some GCSE bug fixes still pending)
7797
7798 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7799
7800         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
7801         * support/regression/tests/addsub.c: testing genPlus shortcut
7802
7803 2003-11-15  Borut Razem <borut.razem AT siol.net>
7804
7805         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
7806
7807 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7808
7809         * src/SDCCcse.c (cseBBlock): fixed bug #527779
7810         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
7811         ordering is immaterial.
7812         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
7813
7814 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7815
7816         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
7817         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
7818         (SIGSEV) of bug #840381
7819         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
7820         unlink new file before rename if new and old filenames are the same)
7821
7822 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7823
7824         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
7825         uninitialized variables) for the mcs51. Set environment variable
7826         SDCC_GENRAMCLEAR to test.
7827         xdata initialization slightly shorter
7828
7829 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7830
7831         * src/SDCCsymt.h,
7832         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
7833         #838241 & 780691 (basicly the same bug)
7834         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
7835         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
7836
7837 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
7838
7839         * src/SDCCmain.c (linkEdit): "fix" #834252
7840
7841 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7842
7843         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
7844         * src/SDCCast.h,
7845         * src/SDCC.y: fixed bug #819403
7846
7847 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7848
7849         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
7850         the reentrant attribute.
7851         * src/hc08/gen.c (genPackBits): added missing stack readjustment
7852         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
7853         simulation
7854         * src/SDCCast.c (decorateType): fixed bug with storage class not being
7855         updated during pointer dereference; f.e. ~(((char *)1)*) was being
7856         erroneously reduced to a literal.
7857         * src/hc08/ralloc.c (packRegisters, rematStr),
7858         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
7859         some cases
7860
7861 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7862
7863         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
7864         * doc/sdccman.lyx: changed from 'article' to 'book'
7865         * doc/Makefile: readded test_suite_spec and cdbfileformat
7866
7867 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
7868
7869         * device/include/stdlib.h: include malloc.h to comply with ANSI
7870         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
7871
7872 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7873
7874         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
7875         * doc/clean.mk: also remove *.out files
7876         * doc/sdccman.lyx: some additions, larger top/bottom margins
7877
7878 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7879
7880         * src/SDCC.y: fixed bug #837365
7881         * support/regression/tests/bitopcse.c
7882         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
7883         a symbol (might be valop instead)
7884         * device/lib/Makefile.in: added errno.c to HC08SOURCES
7885         * device/lib/clean.mk: added hc08 to the cleaning list
7886
7887 2003-11-04  Borut Razem <borut.razem AT siol.net>
7888
7889         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
7890           made 2003-11-04
7891         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7892           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
7893           malloc is declared in standard stdlib.h
7894
7895 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7896
7897         * device/lib/hc08/Makefile: need to clean .rel not .o files
7898         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
7899
7900 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7901
7902         * src/port.h,
7903         * src/hc08/main.c,
7904         * src/mcs51/main.c,
7905         * src/ds390/main.c,
7906         * src/z80/main.c,
7907         * src/avr/main.c,
7908         * src/pic/main.c,
7909         * src/pic16/main.c,
7910         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
7911         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
7912         tests (which uses the port's oclsExpense function)
7913         * src/SDCC.y,
7914         * src/SDCCast.c,
7915         * src/SDCCicode.c,
7916         * src/hc08/gen.c,
7917         * src/ds390/gen.c,
7918         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
7919
7920 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7921
7922         * src/SDCCcse.c (ifxOptimize),
7923         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
7924         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
7925         deleting the IFX iCode.
7926         * src/hc08/ralloc.c: reduced unneeded slocs
7927         * src/hc08/gen.c: fixed bug in asmopToBoolean
7928
7929 2003-11-04  Borut Razem <borut.razem AT siol.net>
7930
7931         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
7932           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7933           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
7934           transferred to configure
7935
7936 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
7937
7938         Use headers defined in the C[++] standards:
7939         * sim/ucsim/gui.src/serio.src/fileio.cc
7940         * sim/ucsim/gui.src/serio.src/frontend.cc
7941         * sim/ucsim/gui.src/serio.src/main.cc
7942         * sim/ucsim/gui.src/serio.src/posix_signal.cc
7943         * support/Util/NewAlloc.c
7944         * as/hc08/lklibr.c
7945         * as/mcs51/lklibr.c
7946         * as/z80/aslist.c
7947         * as/z80/assym.c
7948
7949 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7950
7951         * Added MSVC projects for hc08 assembler and linker:
7952         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
7953         /as/hc08/link_hc08.dsp
7954
7955 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
7956
7957         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
7958
7959 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
7960
7961         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
7962
7963 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7964
7965         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
7966
7967 2003-10-31  Borut Razem <borut.razem AT siol.net>
7968
7969         * support/cpp2/cpplib.h,
7970           support/cpp2/cpplib.c,
7971           support/cpp2/cpplex.c,
7972           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
7973           to switch _asm block preprocessing on / off. Default is
7974           #pragma preproc_asm +
7975
7976 2003-10-31  Borut Razem <borut.razem AT siol.net>
7977
7978         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
7979           when outputting comment blocks (when executed with -C option) and
7980           _asm (SDCPP specific) blocks
7981
7982 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7983
7984         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
7985
7986 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
7987
7988         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
7989
7990 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
7991
7992         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
7993         * src/SDCCast.c (decorateType): fixed bug #832664
7994
7995 2003-10-31  Borut Razem <borut.razem AT siol.net>
7996
7997         * support\cpp2\cpplex.c: fixed for SDCPP:
7998           comments(when executed with -C option) and _asm blocks
7999           were included even if they where in skipped #if block.
8000           Applied solution from GCC cpp 3.3.2
8001
8002 2003-10-31  Borut Razem <borut.razem AT siol.net>
8003
8004         * src/SDCC.lex: sdcc now understands both formats:
8005           '# <line_number> <file_name>' and
8006           '#line <line_number> <file_name>'
8007         * support/cpp2/cppmain.c: sdcpp now generates the standard
8008           '# <line_number> <file_name>' instead of former
8009           '#line <line_number> <file_name>'
8010
8011 2003-10-30  Borut Razem <borut.razem AT siol.net>
8012
8013         * support/cpp2/cpphash.h,
8014         * support/cpp2/cpplib.h
8015         * support/cpp2/cpplex.c,
8016         * support/cpp2/cppmain.c,
8017         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
8018
8019 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8020
8021         Fixed a number of problems revealed by bug #827883.
8022         * src/SDCCloop.c (loopInvariants): Spill location of the
8023         result operand should be recomputed if extracted from
8024         a loop. Also, don't extract assignments of an iTemp
8025         from a literal.
8026         * src/SDCCast.c (isConformingBody): loop reversal should
8027         not occur if the control variable is involved with a
8028         relational operator.
8029
8030 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
8031
8032         * .version: bumped to 2.3.6 to reflect the big improvements
8033         made by Erik and Klaus. Thanks!
8034
8035 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
8036
8037         Replaced the livrange code.
8038         * src/SDCClrange.c: added new LR code
8039         * src/SDCCloop.c,
8040         * src/SDCCBBlock.h: removed remainig parts from old LR code
8041         * src/ds390/ralloc.c,
8042         * src/ds390/gen.c: minor fixes to make it work with new code
8043
8044 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8045
8046         * as/hc08/asm.h,
8047         * as/hc08/lkrloc.c,
8048         * src/hc08/gen.c,
8049         * src/hc08/ralloc.c: Fix various warnings related to the hc08
8050         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
8051         (tweaked fix for bug #818696)
8052
8053 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8054
8055         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
8056
8057 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8058
8059         * src/SDCCmain.c,
8060         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
8061         * src/mcs51/gen.c (gencjneshort),
8062         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
8063         more efficient (per Scott Bronson's suggestion)
8064
8065 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8066
8067         Extended the semantics of the critical keyword to include
8068         individual statements. See RFE #827755 and #799831
8069         * src/SDCC.y
8070         * src/SDCCicode.c
8071         * src/SDCCopt.c
8072         * src/SDCCast.c
8073         * support/Util/SDCCerr.c
8074         * support/Util/SDCCerr.h
8075         * src/mcs51/gen.c
8076         * src/ds390/gen.c
8077         * src/hc08/gen.c
8078
8079 2003-10-19  Borut Razem <borut.razem AT siol.net>
8080
8081         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
8082
8083 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8084
8085         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
8086         Fixed bug #818696
8087         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
8088         and predecrement operand is displayed
8089
8090 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
8091
8092         * src/SDCCval.c (valMinus): fixed bug #826041
8093
8094 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8095
8096         Some hc08 related updates that I missed earlier
8097         * sim/ucsim/stypes.h
8098         * support/regression/ports/hc08/spec.mk
8099
8100 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8101
8102         New target "hc08" for the Motorola 68hc08 family of micros
8103
8104         * configure
8105         * configure.in
8106         * Makefile
8107         * src/hc08/*
8108         * src/SDCCmain.c
8109         * src/port.h
8110         * sim/ucsim/hc08.src/*
8111         * sim/ucsim/configure.in
8112         * src/ucsim/configure
8113         * sim/ucsim/packages_in.mk
8114         * as/hc08/*
8115         * as/Makefile
8116         * device/include/mc68hc908qy.h
8117         * device/lib/hc08/*
8118         * device/lib/Makefile.in
8119         * support/regression/ports/hc08/*
8120         * support/regression/Makefile
8121
8122 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8123
8124         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
8125         regression test
8126         * src/ds390/gen.c (genCast): fixed bug #821957
8127
8128 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
8129
8130         * device/lib/logf.c: "fixed" overlay bug
8131         * support/regression/ports/host/spec.mk: added m library
8132         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
8133         * support/regression/tests/float_trans: added (for Eric)
8134
8135 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
8136
8137         * src/mcs51/gen.c (genCpl): fixed bug
8138         http://sf.net/mailarchive/message.php?msg_id=6263915
8139
8140 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
8141
8142         * src/SDCCast.c (decorateType): added extended constant folding
8143         * src/SDCCsymt.c (computeType): cleanup
8144         * src/SDCCval.c (valShift): minor optimization
8145         * support/regression/tests/ast_constant_folding.c: added
8146
8147 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8148
8149         * src/SDCCmain.c: removed some unintended changes
8150
8151 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8152
8153         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
8154         * src/z80/gen.c: fixed part of bug #817589
8155         * src/SDCCsymt.c (checkFunction): fixed bug #817895
8156
8157 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
8158
8159         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
8160         * src/SDCCcflow.c
8161         * src/SDCCcse.c
8162         * src/SDCCdflow.c
8163         * src/SDCClabel.c
8164         * src/SDCClrange.c
8165         * src/SDCCmem.c
8166         * src/SDCCopt.c
8167         * src/SDCCpeeph.c
8168         * src/SDCCset.c
8169         * src/avr/ralloc.c
8170         * src/ds390/ralloc.c
8171         * src/izt/ralloc.c
8172         * src/mcs51/ralloc.c
8173         * src/pic/ralloc.c
8174         * src/pic16/ralloc.c
8175         * src/xa51/ralloc.c
8176         * src/z80/ralloc.c
8177         * src/z80/gen.c: removed unused label "release:"
8178
8179 2003-10-06  Borut Razem <borut.razem AT siol.net>
8180
8181         * src/SDCC.lex: removed definition of unused variables
8182           save_optimize and save_options
8183
8184 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
8185
8186         * clean.mk: removed '=' in "-maxdepth=1"
8187         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
8188         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
8189
8190 2003-10-06  Borut Razem <borut.razem AT siol.net>
8191
8192         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
8193           my_unput() replaced by unput()
8194
8195 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
8196
8197         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
8198         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
8199         type-punned pointer will break strict-aliasing rules"
8200         Old LR behaviour is again default; Klaus' LR can be choosen by
8201         defining the environment variable LRKLAUS
8202         * src/SDCCBBlock.h
8203         * src/SDCCloop.c
8204         * src/SDCClrange.c
8205         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
8206         * clean.mk: fixed removal of files in bin/CVS/
8207         * device/lib/clean.mk: fixed removal of directories small and large
8208         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
8209         * src/SDCCicode.c,
8210         * src/SDCCval.c: removed superflous test for pedantic
8211
8212 2003-10-05  Borut Razem <borut.razem AT siol.net>
8213
8214         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
8215           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
8216           message "unmatched #pragma SAVE and #pragma RESTORE"
8217
8218 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8219
8220         * doc/sdccman.lyx: various additions and updates (interrupts, inline
8221           assembly, critical functions, atomic, nojtbound)
8222
8223 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
8224
8225         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
8226         * src/SDCCBBlock.h
8227         * src/SDCCloop.c
8228         * src/SDCCloop.h
8229         * src/SDCClrange.c
8230
8231 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8232
8233         * src/z80/gen.h,
8234         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8235         * src/mcs51/gen.h
8236         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8237         * src/ds390/gen.h
8238         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8239         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
8240         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
8241
8242 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8243
8244         * src/z80/gen.c (genRet): fixed bug #524753
8245         * src/z80/gen.c (genCast): fixed internal error on cast from
8246         pointer to long
8247         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
8248         fix for bug #477835 to the z80
8249         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
8250         for tracking iCodes in the peephole optimizer for z80
8251
8252 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8253
8254         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
8255         the other part of bug #814548
8256         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
8257
8258 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
8259
8260         * src/SDCCcse.c: fixed part of bug #814548
8261
8262 2003-09-28  Borut Razem <borut.razem AT siol.net>
8263
8264         * src/asm.c: rewrite of printILine() to use temporary file instead
8265           a pipe
8266         * src/xa51/main.c: commented out declaration of int rewinds
8267
8268 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8269
8270         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
8271
8272 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8273
8274         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
8275         * src/asm.c (printILine): Fixed bug #811015
8276
8277 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8278
8279         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
8280         freeing.
8281
8282 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8283
8284         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
8285         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
8286         to correctly handle general case of AOP_PAIRPTR
8287         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
8288
8289 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8290
8291         * src/mcs51/ralloc.c (fillGaps),
8292         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
8293         register positioning bug)
8294
8295 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
8296
8297         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
8298
8299 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8300
8301         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
8302         genCodePointerGet, genGenPointerGet, genFarPointerSet,
8303         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
8304         (ralloc doesn't intentionally do this now, but perhaps later)
8305         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
8306         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
8307         register positioning bugs (Fixed bug #762602 and #795325)
8308         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
8309         (Fixed bug #808779)
8310         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
8311         lines that --i-code-in-asm generates
8312
8313 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8314
8315         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
8316         trying to fclose a FILE* that was already closed.
8317
8318 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8319
8320         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
8321         of const struct should be treated as if const themselves)
8322
8323 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
8324
8325         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
8326
8327 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8328
8329         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
8330         Unix (/n) and DOS (/r/n) line terminations.
8331
8332 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8333
8334         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
8335         bug #613775
8336
8337 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8338
8339         * src/mcs51/gen.c (genFunction, genEndFunction),
8340         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
8341         and restore of EA so that stack offsets to parameters are
8342         correct when using both critical and reentrant/stack-auto.
8343         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
8344         size (can be triggered in error if sloc is shared between
8345         different sized objects)
8346         * device/include/float.h: fixed macros to explicitly use
8347         unsigned long where needed
8348
8349 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
8350
8351         Feature req. 799831: added code to allow nesting of critical functions
8352         * src/mcs51/gen.c (genFunction, genEndFunction)
8353         * src/ds390/gen.c (genFunction, genEndFunction)
8354
8355 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8356
8357         * src/SDCCsymt.c (sclsFromPtr),
8358         * src/SDCCsymt.h,
8359         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
8360         support for standard C idiom of memory mapped variables; for
8361         example, *((xdata int*)0x1234) = 1 is now internally equivalent
8362         to xdata int at 0x1234 tempvar = 1.
8363         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
8364         provided by Akiya ISHIDA
8365
8366 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
8367
8368         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
8369         * src/SDCCval.c (constVal): added reduction from int to char
8370         * src/SDCCval.c (valMult, valDiv): fixed sign handling
8371         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
8372         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
8373         to ignore the sign
8374         * support/regression/tests/shifts.c: fixed
8375
8376 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8377
8378         * src/z80/gen.c (genXor): Fixed bug #805445
8379
8380 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8381
8382         Fixed bug #621531 (const & volatile confusion in the type chain).
8383         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
8384         refer to the const or volatile state of the pointer itself.
8385
8386         * src/SDCCast.c
8387         * src/SDCCglue.c
8388         * src/SDCCicode.c
8389         * src/SDCCsymt.c
8390         * src/SDCCval.c
8391         * src/SDCC.y
8392         * src/SDCCsymt.h
8393         * src/pic/gen.c
8394         * src/pic/ralloc.c
8395         * src/pic16/gen.c
8396         * src/pic16/ralloc.c
8397         * support/regression/tests/const.c
8398
8399 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8400
8401         When checking for duplicated modules, use absolute paths
8402         instead of relative paths.  Files changed:
8403
8404         * as/mcs51/lklib.c
8405         * link/z80/lklib.c
8406
8407 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8408
8409         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
8410
8411 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8412
8413         * device/include/string.h: added size_t typedef, changed
8414         prototypes to use size_t, eliminated separate reentrant and
8415         non-reentrant declarations, added _memmove declaration
8416         * device/lib/_memcpy.c: changed to use size_t instead of int,
8417         changed /4 to >>2 to avoid division library call
8418         * device/lib/_memcmp.c,
8419         * device/lib/_memset.c,
8420         * device/lib/_strncat.c,
8421         * device/lib/_strncpy.c,
8422         * device/lib/_strncmp.c: changed to use size_t instead of int
8423         * device/lib/_memmove.c: new file (fixed bug #772294)
8424         * device/lib/Makefile.in: added _memmove.c
8425         * device/lib/z80/asm_strings.s: fixed bug #772290
8426         * support/regression/tests/bitfields.c: attempt to fix host assertion
8427         failure on amd64-unknown-linux2.2
8428
8429 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8430
8431         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
8432         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
8433         * as/z80/asmain.c (main): fixed bug #801766
8434
8435 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
8436
8437         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
8438         compilers
8439
8440 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8441
8442         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
8443         reported in bug #800609
8444
8445 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
8446
8447         * Top header beautifications in src/pic16 directory:
8448           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
8449           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
8450           pcoderegs.h, ralloc.c, ralloc.h
8451         * main.c: added top header and GPL license notice
8452         * pcode.c: fixed the if-conditional warning
8453
8454 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
8455
8456         * device/lib/_mullong.c: replaced int by short for gcc
8457
8458 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8459
8460         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
8461         and JUMPTABLE iCodes properly now (worked by accident before)
8462         * src/mcs51/gen.c (leftRightUseAcc),
8463         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
8464         iCode properly now. Use getSize instead of nRegs since a & b
8465         aren't part of the nRegs tally.
8466
8467 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
8468
8469         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
8470         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
8471           before instructions that use the _STATUS register
8472
8473 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
8474
8475         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
8476         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
8477         fetching of the pointer
8478         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
8479         copied from genNearPointerSet()
8480         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
8481         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
8482         If they pop r0/r1 they must be called in the opposite order than aopOp().
8483         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
8484         (resp. --stack-auto), prepared for --xstack
8485
8486 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8487
8488         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
8489
8490 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8491
8492         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
8493         these ports have their own __sdcc_external_start()
8494
8495 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
8496
8497         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8498         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
8499         type for bits was changed. It resulted in bit variables becoming
8500         global, which is not permitted in PIC 14 assembly output.
8501
8502 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8503
8504         * doc/sdccman.lyx: various additions and updates. Rearranged sections
8505
8506 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8507
8508         Z80 and MCS51 linkers complaint if a public symbol is defined
8509         in more than one library module:
8510
8511         * as/mcs51/lklib.c
8512         * link/z80/lklib.c
8513         * as/mcs51/Makefile.in
8514
8515 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8516
8517         A few small changes that speed up the peephole optimizer.
8518
8519         * src/SDCCpeeph.c
8520
8521 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8522
8523         Try to make the peephole optimizer smarter by maintaining
8524         an association between the assembly source code and the
8525         iCodes that originated them. Put this information to use
8526         with a new peephole rule condition "notVolatile" so that
8527         the rules can be aggressive yet still safe.
8528
8529         * src/SDCCpeeph.c
8530         * src/SDCCpeeph.h
8531         * src/mcs51/gen.c
8532         * src/mcs51/peeph.def
8533
8534 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8535
8536         Fixed bug #741761
8537
8538         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
8539         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
8540         if the left or right operand symbols have the accuse flag set.
8541
8542 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8543
8544         Changed the type of the result of the ! (NOT) operator to char;
8545         previously it returned the same type as the source. This allows
8546         us to eliminate all the genFloatNot functions (all of its target
8547         implementations were very buggy) since !float can use the same
8548         code as !long now.
8549
8550         * src/SDCCicode.c (ast2iCode): ! returns char
8551         * src/mcs51/gen.c (genNot, genNotFloat),
8552         * src/ds390/gen.c (genNot, genNotFloat),
8553         * src/z80/gen.c (genNot, genNotFloat),
8554         * src/pic/gen.c (genNot, genNotFloat),
8555         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
8556
8557 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
8558
8559         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8560         1. Interrupt would not compile properly. Ensure PCLATH register is saved
8561            during interrupts. Ensure WSAVE is located at a shared bank address.
8562         2. Fixed page selection in some places
8563         3. Fixed BTFSS/C to where necessary use registers directly and not simply
8564            the registers name strings.
8565         4. Fixed "signed / unsigned compare" compiler warnings.
8566         5. The PIC port manages its own allocation of the general purpose
8567            registers, but makes no attempt to reuse them. As a result when
8568            compiling it soon runs out of general purpose registers. Some
8569            additional code was added to the files pcode.c and device.c to walk
8570            through the function call tree and rename the registers so that they
8571            get reused.
8572
8573         * src/pic/device.c
8574         * src/pic/gen.c
8575         * src/pic/glue.c
8576         * src/pic/pcode.c
8577         * src/pic/pcode.h
8578         * src/pic/ralloc.c
8579         * src/pic/ralloc.h
8580         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
8581         genPlus() & genMinus() when the result is the same as left or right
8582
8583 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8584
8585         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
8586
8587 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8588
8589         Made bitfield a distinct type from bit so that bitfields
8590         convert as per ANSI C and bits retain their traditional
8591         boolean style behaviour. Implemented bitfield support in
8592         the z80 port.
8593
8594         * src/SDCCsymt.h,
8595         * src/SDCCsymt.c,
8596         * src/SDCCast.c,
8597         * src/cdbFile.c,
8598         * src/mcs51/gen.c,
8599         * src/ds390/gen.c: bit v bitfield split
8600         * src/z80/gen.c: New support for bitfields
8601         * support/regression/tests/bitfields.c: reenabled z80,
8602         added more tests
8603
8604 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8605
8606         Rules 246.x, 247.x relate to bitfields, the others speed up
8607         access to xdata mapped I/O devices.
8608
8609         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
8610
8611 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8612
8613         Cleaned up genPackBits and genUnpackBits and added two helper
8614         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
8615         for literal assignments in genPackBits (thanks to Frieder for
8616         reminding me).
8617
8618         * src/mcs51/gen.c
8619         * src/ds390/gen.c
8620
8621 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8622
8623         Fixed bug #748310 (pointer to function type mishandled when the
8624         function name is omitted). Also fixed a SIGSEGV when a function
8625         attribute (reentrant, etc) is used on a non-function or on a
8626         function but misplaced before the parameter list.
8627
8628         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
8629         bug #748310
8630         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
8631         * support/Util/SDCCerr.h,
8632         * support/Util/SDCCerr.c: Added func attr misuse error msg
8633
8634 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
8635
8636         Fixed bug #787649 by anonymous
8637         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
8638         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
8639
8640 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8641
8642         Fixed numerous bitfield problems.
8643
8644         * src/SDCC.y: More bitfield related error checking
8645         * src/SDCCsymt.h,
8646         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
8647         * support/Util/SDCCerr.h,
8648         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
8649         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
8650         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
8651         * support/regression/tests/bitfields.c: tests added
8652
8653 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8654
8655         Made the constant following the "interrupt" keyword optional. If
8656         omitted, the function will not automatically be given an entry
8657         in the interrupt vector table (similar to #pragma NOIV, but
8658         less syntacticly kludgy). The interrupt number is also now
8659         range checked. Also fixed a bug in the high order bit example
8660         in the manual.
8661
8662         * src/SDCC.y
8663         * src/SDCCmem.c
8664         * src/SDCCglue.c
8665         * src/SDCCsymt.h
8666         * support/Util/SDCCerr.c
8667         * support/Util/SDCCerr.h
8668         * doc/sdccman.lyx
8669
8670 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
8671
8672         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
8673         * src/SDCCicode.c (operandOperation): rewritten some ops
8674         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
8675         * src/SDCCsymt.c (computeType): literals are handled the same way as any
8676         other type
8677         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
8678         be re-activated by defining REDUCE_LITERALS)
8679         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
8680         unsigned, but are signed by default
8681         * src/SDCCval.c (constVal): rearranged
8682         * src/SDCCval.c (valMod): preliminary fix
8683         * src/SDCCval.c (valCastLiteral): use TYPE_* types
8684         * support/regression/literalop.c: added, work in progress
8685
8686 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8687
8688         Generate warnings for useless declarations like "char data;"
8689         that don't do what new users expect.
8690
8691         * src/SDCC.y
8692         * support/Util/SDCCerr.h
8693         * support/Util/SDCCerr.c
8694
8695 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
8696
8697         * src/SDCCval.c (valMult): fix overflow detection of negative int
8698
8699 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8700
8701         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
8702
8703         Changes to support big endian targets:
8704
8705         * src/ports.h
8706         * src/SDCCglue.c
8707         * src/avr/main.c
8708         * src/ds390/main.c
8709         * src/izt/i186.c
8710         * src/mcs51/main.c
8711         * src/pic/main.c
8712         * src/pic16/main.c
8713         * src/xa51/main.c
8714         * src/z80/main.c
8715
8716 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
8717
8718         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
8719         * device/lib/time.c: fixed warning "integer overflow in expression"
8720
8721 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
8722
8723         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
8724         * src/SDCCval.c (constVal): changed default to signed; hex and octal
8725         constants are unsigned; added recognition of "u" flag for unsigned
8726         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
8727         * src/SDCCval.c (valDiv, valMod): fixed signdness
8728         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
8729         signedness of modulo, left and right shift
8730         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
8731         * support/Util/SDCCerr.h: added warning W_INT_OVL
8732         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
8733         * src/SDCCast.c (ast_print): improved output of constants
8734
8735 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8736
8737         Fixed some warnings when building with MSVC:
8738
8739         * as\mcs51\asdata.c
8740         * as\z80\asdata.c
8741         * as\mcs51\asm.h
8742         * as\z80\asm.h
8743         * link\z80\aslink.h
8744         * link\z80\lkdata.c
8745         * link\z80\lkeval.c
8746         * link\z80\lkgb.c
8747         * link\z80\lkihx.c
8748         * link\z80\lks19.c
8749         * link\z80\lksym.c
8750         * support\cpp2\cpplib.c
8751         * src\ds390\gen.c
8752         * src\mcs51\gen.c
8753
8754 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
8755
8756         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
8757
8758 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8759
8760         * support\librarian\clean.mk: Do not remove Makefile.
8761         * support\librarian\Makefile: added.
8762
8763 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8764
8765         Added librarian to MSVC build:
8766         * all.dsp
8767         * sdcc.dsw
8768         * support\librarian\librarian.dsp
8769
8770         'configure' not needed for librarian, removed:
8771         * support\librarian\configure
8772         * support\librarian\configure.in
8773         * support\librarian\config_in.h
8774         * support\librarian\Makefile.in
8775
8776         Hopefully these ones built the librarian and the rest of sdcc properly:
8777         * Makefile
8778         * Makefile.common.in
8779
8780         Messed up 'configure', so revert to previous version:
8781         * configure
8782         * configure.in
8783
8784 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
8785
8786         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
8787         there, while the mantissa of a double is "only" 53 bits wide.
8788
8789 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8790
8791         Adding sdcclib to the build.  MSVC project coming soon.
8792         Files added/changed:
8793
8794         * support\librarian\clean.mk
8795         * support\librarian\configure
8796         * support\librarian\configure.in
8797         * support\librarian\config_in.h
8798         * support\librarian\Makefile.bcc
8799         * support\librarian\Makefile.in
8800         * support\librarian\sdcclib.c
8801         * Makefile.bcc
8802         * Makefile
8803         * Makefile.common.in
8804         * configure
8805         * configure.in
8806
8807 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8808
8809         Linker now complaints if linked modules have conflicting options, for
8810         example, one compiled using --model-large and another one compiled with
8811         --model-small.  The following files were modified:
8812
8813         * as\mcs51\asdata.c
8814         * as\mcs51\aslink.h
8815         * as\mcs51\asm.h
8816         * as\mcs51\asmain.c
8817         * as\mcs51\asout.c
8818         * as\mcs51\i51pst.c
8819         * as\mcs51\lkdata.c
8820         * as\mcs51\lklibr.c
8821         * as\mcs51\lkmain.c
8822         * as\z80\asdata.c
8823         * as\z80\asm.h
8824         * as\z80\asmain.c
8825         * as\z80\asout.c
8826         * as\z80\z80pst.c
8827         * link\z80\aslink.h
8828         * link\z80\lkdata.c
8829         * link\z80\lklibr.c
8830         * link\z80\lkmain.c
8831         * src\SDCCglue.c
8832
8833 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8834
8835         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
8836         as/mcs51/lklibr.c: Generate a warning when a library is not found.
8837
8838 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
8839
8840         * src/z80/mappings.i: fix _mul[us][int,long] entries
8841
8842 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8843
8844         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
8845
8846 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8847
8848         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
8849         * support/regression/tests/bitopcse.c: added
8850         fixed warning:
8851         * src/avr/gen.c:
8852         * src/pic/gen.c:
8853         * src/pic16/gen.c:
8854         * src/z80/gen.c:
8855         * src/xa51/gen.c:
8856
8857 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8858
8859         added support for new library format to z80, gbz80 linkers:
8860         *link/z80/aslink.h
8861         *link/z80/lklex.c
8862         *link/z80/lklib.c
8863         *link/z80/lklist.c
8864
8865 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8866
8867         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
8868         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
8869
8870 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
8871
8872         added DUMMY_READ_VOLATILE:
8873         * src/SDCC.y:
8874         * src/avr/gen.c:
8875         * src/xa51/gen.c:
8876         * src/z80/gen.c:
8877         * src/pic/gen.c:
8878         * src/pic16/gen.c:
8879         * src/mcs51/gen.c:
8880         * src/ds390/gen.c:
8881         * src/SDCCcse.c (algebraicOpts): many improvements
8882         * src/SDCCcse.h: removed algebraicOpts()
8883         * src/SDCCicode.c (picDummyRead): added
8884
8885 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8886
8887         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
8888         "Insufficient space in data memory".
8889
8890 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8891
8892         * src/mcs51/gen.c: fixed bug #771358
8893         * src/z80/gen.c: fixed bug #759087
8894
8895 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
8896
8897         * src/pic16/glue.c: minor cleanup by Vangelis
8898
8899 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8900
8901         * device/include/regc515c.h: fixed #758477
8902         * device/lib/_gptrget.c: saving some cycles in generic pointer get
8903         * device/lib/_gptrput.c: saved a few bytes
8904         * my tab spacing is 8, yours too?)
8905         * device/lib/_ser.c: process RX bytes earlier than TX bytes
8906         * device/lib/serial.c: process RX bytes earlier than TX bytes
8907         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
8908
8909 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8910
8911         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
8912
8913 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8914
8915     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
8916
8917 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
8918
8919         * device/lib/Makefile.in: bad fix, reverted to 1.43
8920
8921 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
8922
8923         * device/lib/Makefile.in: added missing z80 object files
8924
8925 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
8926
8927         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
8928         pic16 progress by Vangelis:
8929         * src/SDCCglobl.h:
8930         * src/SDCCmain.c:
8931         * src/pic/Makefile:
8932         * src/pic:
8933         * pic/Makefile:
8934         * pic16/device.c:
8935         * pic16/device.h:
8936         * pic16/gen.c:
8937         * pic16/gen.h:
8938         * pic16/genarith.c:
8939         * pic16/glue.c:
8940         * pic16/main.c:
8941         * pic16/pcode.c:
8942         * pic16/pcode.h:
8943         * pic16/pcodepeep.c:
8944         * pic16/peeph.def:
8945
8946 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8947
8948     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
8949
8950 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8951
8952     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
8953     added gbz80 build to MSVC project.
8954     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
8955     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
8956     from 8051 stuff and setup so it links using a .lnk file.
8957
8958 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8959
8960     * support/librarian/sdcclib.c: sdcc librarian.
8961     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
8962     with sdcclib.
8963
8964 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8965
8966     * as/mcs51/lkmain.c: properly handle extensions in function afile.
8967
8968 2003-07-02  Borut Razem <borut.razem AT siol.net>
8969
8970         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
8971         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
8972         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
8973         src/xa51/main.c, src/z80/main.c:
8974         virtualization of glue() function: each port has it's own glue function,
8975         which is accessed by do_glue function pointer in PORT.general structure
8976
8977 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
8978
8979         * DS800C400 fun, improved ROM interface and tinibios.
8980
8981 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
8982
8983         * More support for DS80C400. Now includes beginning of interface to ROM.
8984
8985 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
8986
8987         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
8988
8989 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8990
8991         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
8992
8993 2003-06-19  Borut Razem <borut.razem AT siol.net>
8994
8995         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
8996
8997 2003-06-19  Borut Razem <borut.razem AT siol.net>
8998
8999         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
9000         fixed Z80 port - crt0.o: cannot open.
9001
9002 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
9003
9004         * support/Util/MySystem.c (merge_command): revert bad fix
9005
9006 2003-06-18  Borut Razem <borut.razem AT siol.net>
9007
9008         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
9009
9010 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9011
9012         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
9013         option --use-stdout sends errors to stdout instead of stderr.
9014
9015 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
9016
9017         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
9018
9019 2003-06-15  Borut Razem <borut.razem AT siol.net>
9020
9021         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
9022         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
9023         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
9024         fixed width array of pointers replaced with sets;
9025         multiple include and lib paths ared transferred to preprocessor and linker
9026         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
9027         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
9028         fixed width array of pointers
9029         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
9030         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
9031         fixupPath(), getPathDifference()
9032         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
9033         fixed width array of pointers
9034
9035 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
9036
9037         * src/pic16/ralloc.c: fix warnings
9038         * src/pic16/pcode.c: fix warning
9039
9040 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
9041
9042          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
9043         know all the details, but essentially this set of changes enable
9044         the pic16 port to generate movff instructions and generate assembler
9045         directives,
9046         * src/SDCCmain.c:
9047         * src/pic16/gen.c:
9048         * src/pic16/glue.c:
9049         * src/pic16/pcode.c:
9050         * src/pic16/device.c:
9051         * src/pic16/main.c:
9052         * src/pic16/pcode.h:
9053         * src/pic16/pcoderegs.c:
9054         * src/pic16/ralloc.c:
9055         * src/pic16/ralloc.h:
9056
9057 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9058
9059         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
9060         added option --vc, so sdcc errors and warnings are compatible with
9061         Microsoft Visual Studio.
9062
9063 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9064
9065         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
9066           device/lib/libfloat.lib: added atof function.
9067
9068 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
9069
9070         * doc/sdccman.lyx: updated to Lyx 1.3
9071         * doc/cdbfileformat.lyx: updated to Lyx 1.3
9072         * doc/test_suite_spec.lyx: updated to Lyx 1.3
9073         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
9074
9075 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
9076
9077         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
9078
9079 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9080
9081         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
9082           additions to the "related tools/documentation" section
9083
9084 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
9085
9086         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
9087
9088 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
9089
9090         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
9091         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
9092
9093 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
9094
9095         * doc/sdccman.lyx: fix double dash and other minor things
9096         * doc/Makefile: fix double dash
9097
9098 2003-05-28  Karl Bongers(patches from Martin Helmling)
9099         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
9100           condition and ignore commands.
9101
9102 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9103
9104         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
9105           is in parts still quite out of date, I did changes as far as I felt makes sense
9106           for a non-native english speaker.
9107           Please feel free to add to the manual or to correct my changes.
9108         * doc/Makefile: undid touching the date of intermediate tex files.
9109
9110 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9111
9112         * doc/sdccman.lyx: Manual has an index now
9113
9114 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
9115
9116         Finalize muluint/mulsint and mululong/mulslong merging:
9117         * device/lib/_mulint.c
9118         * device/lib/_mullong.c
9119         * device/lib/gbz80/mul.s
9120         * device/lib/gbz80/stubs.s
9121         * device/lib/z80/mul.s
9122         * device/lib/z80/stubs.s
9123         * src/SDCCsymt.c (initCSupport)
9124
9125 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9126
9127         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
9128         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
9129           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
9130           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
9131           instead of /Zm500.
9132
9133 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9134
9135         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
9136           the regression tests I'm not brave enough to enable 245.b, 245.c
9137         * doc/sdccman.lyx: added latex preamble for hyperref package.
9138           Using pdflatex this will give you a hyperlinked pdf file with
9139           bookmarks. (prepend '%' before /usepackage if this breaks something)
9140
9141 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9142
9143          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
9144
9145 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
9146
9147         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
9148
9149 2003-05-21    <johan AT balder>
9150
9151         * src/SDCCglue.c (printIval): fixed bug #739934
9152
9153 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
9154
9155         Applied patch from bug 737905 (renamed yylineo to mylineno):
9156         * src/altlex.c
9157         * src/SDCCast.c
9158         * src/SDCglobl.h
9159         * src/SDCC.lex
9160         * src/SDCCsymt.c
9161         * src/SDCCval.c
9162         * src/pic16/pcode.c: Cleaned warnings
9163         * src/pic16/pcodeflow.c: Cleaned warnings
9164         * src/pic16/pcoderegs.c: Cleaned warnings
9165
9166 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
9167
9168         * src/pic16/pcode.c: Cleaned warnings
9169         * src/pic16/pcodepeep.c: Cleaned warnings
9170         * src/pic16/ralloc.c: Cleaned warnings
9171
9172 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
9173
9174         * doc/sdccman.lyx: fixed bug 739745
9175         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
9176
9177 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
9178
9179         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
9180         it can be defined with CFLAGS when running configure
9181         * src/SDCCmain.c: fixed compiling + linking with object files
9182
9183 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
9184
9185         * configure.in: configure for pic16 port,
9186             added --disable-pic16-port
9187         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
9188         * src/SDCCmain.c: linkOptions is changed to set *,
9189             added if/endif conditional macros to remove options help
9190             messages from optionsTable when a port is not configured, added
9191             support for the PIc16 port in the ports table, when executing
9192             the compiler with no port specified on command line, a default
9193             port is selected with the new macro DEFAULT_PORT which is
9194             defined in port.h, in setDefaultOptions() linkOptions is removed
9195             from initialization assignment, since now it is a set,
9196             parseCmdLine uses setParseWithComma for linkOptions, in
9197             linkEdit() linkOptions are accessed with new function indexSet()
9198             which returns the i'th item of a set variable. See SDCCset.c, in
9199             linkEdit() when calling buildCmdLine(), added linkOptions as
9200             last argument. Now users can pass arguments to gplink via the
9201             -Wl option, main() uses pic16glue() to glue up pic16 programs
9202         * src/SDCCpeeph.c: various changes to support pic16
9203         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
9204             return the i'th item of the set
9205         * src/SDCCset.h: added function prototype for indexSet()
9206         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
9207         * src/clean.mk: added pic16 in CLEANALLPORTS variable
9208         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
9209             added macro DEFAULT_PORT
9210         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
9211         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
9212             generated
9213         * src/pic16/glue.c: commented out some error producing lines
9214         * src/pic16/main.c: __config directives are commented out to stop
9215             gpasm complaining and test the linkage with gplink, _linkCmd and
9216             _asmCmd changed to be more gplink and gpasm friendly
9217         * src/pic16/peeph.def: peep rule 3 is commented out, since it
9218             produced an error when parsed, peep rule 12 is added to utilize
9219             movff, but it is commented out since the pCode does not support
9220             yet a command with 2 address arguments
9221
9222 2003-05-18    <johan AT balder>
9223
9224         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
9225         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
9226 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
9227
9228         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
9229   Added feature to script commands from file.
9230
9231 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
9232
9233         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
9234         * src/SDCCutil.c: include ctype.h for win32
9235
9236 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
9237
9238         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
9239
9240 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
9241
9242         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
9243   Fixed so you can set breakpoints prior to run, run does not stop
9244   on entry now.  Add tbreak.  Other enhancements and fixes for use
9245   with ddd.
9246
9247 2003-05-12  Borut Razem <borut.razem AT siol.net>
9248
9249         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
9250
9251 2003-05-11  Borut Razem <borut.razem AT siol.net>
9252
9253         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
9254         the path of bin directory, so that PATH is the only env. variable, which has to be set
9255         in case of standard installation.
9256         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
9257         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
9258         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
9259
9260 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
9261
9262         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
9263         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
9264         temp files are in the port dir; clean the gen/test directory when
9265         generating new test.c
9266         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
9267         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
9268         * support/regression/tests/zeropad.c: added
9269
9270 2003-05-09    <johan AT balder>
9271
9272         * src/SDCCglue.c: fixed bug #597940
9273
9274 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
9275
9276         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
9277   cache sfr, optimize next,step, fix off by one sourceline,
9278   support ddd list function.
9279         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
9280
9281 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
9282
9283         * support/regression/HTMLgen.py: added compare_s2f()
9284         * support/regression/Makefile: redo 1.27
9285         * support/regression/generate-cases.py: redo 1.5
9286
9287 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
9288
9289         * support/regression/tests/float.c: workaround 33 bit hex constant
9290         * support/regression/tests/simplefloat.c: fix division for host
9291
9292 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
9293
9294         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
9295         that tame's the PIC's over-aggressive optimizer.
9296
9297 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9298
9299          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
9300          support for MSVC.
9301
9302 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
9303
9304         Initial support for DS80C400. "Hello world" runs on TINIm400
9305         (with polled I/O).
9306
9307 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
9308
9309          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
9310          * Some notes on ddd usage added in debugger/README
9311          Martin Helmling adding more features and fixes for ddd GUI debugger.
9312          Code added for nexti, stepi, up, down, and other adjustments.
9313
9314 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
9315
9316         * src/pic/pCodepeep.c non-wildcard asmops are now handled
9317         * src/pic/peeph.def Added two rules to optimize carry manipulation
9318         * src/pic/* removed debug printfs
9319
9320 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
9321
9322         * debugger/mcs51/cmd.c: added header newalloc.h
9323
9324 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
9325
9326         * as/Makefile: new EXEEXT
9327         * as/z80/Makefile: remove trailing slash of BUILDIR
9328         * as/z80/clean.mk: new EXEEXT
9329         * Makefile.common.in: add to CFLAGS (and others), don't replace it
9330         * support/cpp2/Makefile.in: new EXEEXT
9331         * src/pic/glue.c (pic14emitRegularMap): fixed warning
9332
9333 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
9334
9335         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
9336         EXEEXT was introduced to fix all related problems with targets
9337         "clean", "install" and "uninstall"; a couple of further flaws
9338         especially with "clean" have been fixed too
9339         * as/mcs51/Makefile.in
9340         * as/mcs51/clean.mk
9341         * as/z80/Makefile
9342         * Makefile
9343         * clean.mk
9344         * debugger/mcs51/Makefile.in
9345         * debugger/mcs51/clean.mk
9346         * link/z80/Makefile
9347         * link/z80/Makefile.in
9348         * link/z80/clean.mk
9349         * link/Makefile
9350         * packihx/Makefile.in
9351         * packihx/clean.mk
9352         * sim/ucsim/Makefile
9353         * sim/ucsim/clean.mk
9354         * sim/ucsim/avr.src/Makefile.in
9355         * sim/ucsim/avr.src/clean.mk
9356         * sim/ucsim/s51.src/Makefile.in
9357         * sim/ucsim/s51.src/clean.mk
9358         * sim/ucsim/xa.src/Makefile.in
9359         * sim/ucsim/xa.src/clean.mk
9360         * sim/ucsim/z80.src/Makefile.in
9361         * sim/ucsim/z80.src/clean.mk
9362         * sim/ucsim/main_in.mk
9363         * sim/ucsim/packages_in.mk
9364         * sim/ucsim/gui.src/Makefile.in
9365         * sim/ucsim/gui.src/serio.src/Makefile.in
9366         * sim/ucsim/gui.src/serio.src/clean.mk
9367         * src/Makefile.in
9368         * src/clean.mk
9369         * support/cpp2/Makefile.in
9370         * support/cpp2/clean.mk
9371         * support/makebin/Makefile
9372         * support/makebin/clean.mk
9373         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
9374         * doc/sdccman.lyx: --program-suffix no longer needed
9375
9376 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
9377
9378          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
9379          Martin Helmling added support for ddd GUI debugger.
9380          Code added to display assembly, set variables, and other commands
9381          to interface to ddd.
9382
9383 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
9384
9385         * as/Makefile: fix target clean
9386         * as/clean.mk: fix target clean
9387         * as/z80/clean.mk: fix target clean
9388
9389 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
9390
9391         * Makefile.common.in: added  AT EXEEXT AT
9392         * configure.in: removed all mingw32 stuff
9393         * configure: rebuilt from configure.in
9394         * doc/sdccman.lyx: updated section "installation"
9395         * support/scripts/sdcc_mingw32: adapted to configure
9396         * support/scripts/sdcc_cygwin_mingw32: added
9397
9398 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
9399
9400         * src/pic Added object file support for the PIC port
9401         * src/pic Applied patch from Craig Franklin (this started the object file support)
9402         * src/regression Updated the PIC regression tests for object files
9403
9404 2003-04-20  Borut Razem <borut.razem AT siol.net>
9405
9406         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
9407           lklex.c: In function `getfid':
9408           lklex.c:203: warning: array subscript has type `char'
9409         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
9410           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
9411         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
9412           stack handling macros
9413
9414 2003-04-19  Borut Razem <borut.razem AT siol.net>
9415
9416         * "handling space characters in file path" task:
9417         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
9418         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
9419         * support/Util/MySystem.h: make it self-sufficient
9420         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
9421           src/z80/main.c, sdcc/as/mcs51/lklex.c:
9422           handling space characters in file path
9423         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
9424           (it will be used by assemblers, which have their own includes, e.g. gpasm)
9425         * support/Util/MySystem.c: handling space characters in executable's path
9426
9427 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
9428
9429         * as/z80/Makefile: fix permanent rebuild of z80
9430         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
9431         * support/regression/tests/bitfields.c: added Johan's bitfields.c
9432
9433 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
9434
9435         * src/SDCCopt.c: add special case optimization to replace modulo by
9436           a power of two with a bitwise AND.
9437
9438 2003-04-18    <johan AT balder>
9439
9440         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
9441
9442 2003-04-17    <johan AT balder>
9443
9444         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
9445         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
9446
9447 2003-04-13  Borut Razem <borut.razem AT siol.net>
9448
9449         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
9450         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
9451           fixed mingw problem in adl_NORMALIZE_PATH
9452
9453 2003-04-12  Borut Razem <borut.razem AT siol.net>
9454
9455         * fixed "#pragma SAVE/RESTORE can not be nested":
9456         * src/SDCC.lex: reworked pragma handling functions
9457         * sdcc/src/SDCCglobl.h: reworked stack handling macros
9458         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
9459
9460 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9461
9462         * src/SDCCutil.c (pathEquivalent): defined but not used
9463         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
9464         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
9465         * configure: rebuilt from configure.in
9466         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9467         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9468         * device/include/Makefile.in: replace sdcc_datadir
9469         * device/lib/Makefile.in: replace sdcc_datadir
9470         * Makefile.common.in: add LDFLAGS from configure
9471         * packihx/Makefile.in: use LDFLAGS
9472         * src/Makefile.in: use LDFLAGS
9473         * support/cpp2/Makefile.in: add LDFLAGS from configure
9474         * support/makebin/Makefile: use LDFLAGS
9475         * .version: bumped version number to 2.3.5
9476
9477 2003-04-12  Borut Razem <borut.razem AT siol.net>
9478
9479         * completed "different paths" task:
9480         * src/SDCCmacro.c: fixed bug in handling quotes
9481         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
9482         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
9483
9484 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9485
9486         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
9487
9488 2003-04-11 kevin Vigor <kevin AT vigor.nu>
9489
9490         * ds390/gen.c ds390/peeph.def: fix bug 706781
9491
9492 2003-04-11  Borut Razem <borut.razem AT siol.net>
9493
9494         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
9495
9496 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
9497
9498         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
9499         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
9500          set - this bit used to not be set...).
9501         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
9502           bad code in PIC Port
9503         * src/regression/and2.c added to test bug 609268
9504         * src/regression/Makefile added and2.c to regression test
9505
9506
9507 2003-04-08    <johan AT CP255758-A>
9508
9509         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
9510         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
9511         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
9512
9513 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
9514
9515         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
9516         fix bug #487815
9517         * support/cpp2/Makefile.in: fix bug #487815
9518         * configure: rebuilt from configure.in
9519         * Makefile.common.in: docdir changed, new path suffixes
9520         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9521         * sdcc_vc_in.h: reflect changes from sdccconf.h
9522         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
9523         * src/SDCCutil.h: remove BINDIR hack
9524         * doc/sdccman.lyx: update new path hierarchy
9525
9526 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9527
9528         * src/SDCCpeeph.c: added okToRemoveSLOC test
9529
9530 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9531
9532         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
9533
9534 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9535
9536         * src/SDCCpeeph.c: added labelIsReturnOnly test
9537         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
9538
9539 2003-04-05    <johan AT balder>
9540
9541         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
9542         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
9543         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
9544         * src/SDCCast.c: fixed a warning
9545         * src/SDCCast.h: fixed a warning
9546         * src/SDCCicode.c (operandFromAst): fixed a warning
9547
9548 2003-04-04    <johan AT balder>
9549
9550         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
9551         * src/SDCCast.c (decorateType): fixed bug #715076
9552         * src/SDCC.y: fixed bug #702907
9553
9554 2003-04-03    <johan AT balder>
9555
9556         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
9557         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
9558         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
9559         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
9560         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
9561
9562 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
9563
9564         * _decdptr.c: fix return values
9565         * _gptrget.c: fix return values
9566         * _gptrgetc.c: fix return values
9567         * _gptrput.c: fix return values
9568         * _mulint.c: fix return values
9569         * as/z80/Makefile: fix 'make -j' problem
9570
9571 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
9572
9573         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
9574         * configure.in: big cleanup, updated to autoconf 2.5x
9575         * configure: rebuilt from configure.in
9576         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9577         * sdcc_vc_in.h: reflect changes from sdccconf.h
9578         * doc/Makefile: fixed a flaw in "make install"
9579
9580 2003-04-02    <johan AT balder>
9581
9582         * src/ds390/gen.c (genCmp): no comments
9583         * src/mcs51/gen.c (genCmp): no comments
9584         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
9585         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
9586
9587 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
9588
9589         * support/regression/generate-cases.py: place generated file in given sub directory
9590         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
9591         * support/regression/Makefile: improvements for 'make -j';
9592         side effect: it's simpler and faster now
9593
9594 2003-03-31  Borut Razem <borut.razem AT siol.net>
9595
9596         * src/z80/main.c: link-{port} and as-{port} defined without path
9597         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
9598
9599 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
9600
9601         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
9602
9603 2003-03-30  Borut Razem <borut.razem AT siol.net>
9604
9605         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
9606           changed type of list parameter to set
9607         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
9608         * src/port.h: changed type of do_assemble() parameter to set
9609         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
9610           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
9611           definition of "cppoutfilename" macro with NULL value in preProcess()
9612         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
9613         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
9614         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
9615           replaced with set *binPathSet
9616         * shash_add() deallocates the item, if allready exsists, before adding the new one
9617         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
9618
9619 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
9620
9621         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
9622           a nested for loop bug in the PIC port
9623         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
9624           for loops
9625
9626 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
9627
9628         * support/Util/dbuf.h: remove C++ stuff to make it portable
9629
9630 2003-03-28  Borut Razem <borut.razem AT siol.net>
9631
9632         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
9633           literal strings in stringLiteral()
9634         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
9635         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
9636           to the project
9637
9638 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
9639
9640         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
9641
9642 2003-03-26    <johan AT balder>
9643
9644         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
9645         * src/ds390/gen.c (saveRegisters): catched symbol abuse
9646         * src/SDCCast.c (decorateType): fixed " -v < 3"
9647
9648 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
9649
9650         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
9651         Added Lenny Story's debug infrastructure changes:
9652         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
9653         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
9654         * src/cdbFile.c: added
9655         * src/SDCCdebug.c: added
9656         * src/SDCCdebug.h: added
9657         * src/SDCCast.c (createFunction)
9658         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
9659         * src/SDCCmain.c (parseCmdLine, main)
9660         * src/SDCCmem.c (redoStackOffsets)
9661         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
9662         * src/SDCCsymt.h
9663         * src/common.h
9664         * src/avr/gen.c (genAVRCode)
9665         * src/ds390/gen.c (gen390Code)
9666         * src/mcs51/gen.c (gen51Code)
9667         * src/pic/gen.c (genpic14Code)
9668         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
9669         * src/xa51/gen.c (genXA51Code)
9670         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
9671
9672 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9673
9674         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
9675         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
9676
9677 2003-03-22    <johan AT balder>
9678
9679         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
9680
9681 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
9682
9683         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
9684         * doc/cdbfileformat.lyx: added, written by Lenny Story
9685         * doc/Makefile: added cdbfileformat.lyx
9686         * doc/clean.mk: added cdbfileformat.lyx
9687
9688 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
9689
9690         * src/mcs51/peeph.def: fix bug #705773
9691
9692 2003-03-20    <johan AT balder>
9693
9694         An sfr/sbit can have an "at #" AND an initializer
9695         * src/SDCCsymt.c (checkSClass):
9696         * src/SDCCmem.c (allocGlobal):
9697         * src/SDCCmem.c (allocLocal):
9698         * src/SDCCast.c (createBlock):
9699
9700 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
9701
9702         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
9703
9704 2003-03-16    <johan AT balder>
9705
9706         Undid the hackup of const and volatile, the problem is much bigger
9707         * src/SDCC.y:1.65
9708         * src/SDCCast.c:1.171
9709         * src/SDCCglue.c:1.138
9710         * src/SDCCicode.c:1.146
9711         * src/SDCCsymt.c:1.150
9712         * src/SDCCval.c:1.65
9713
9714 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
9715
9716         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
9717         * src/ds390/gen.c (genAddrOf): fixed bug #704087
9718
9719 2003-03-13    <johan AT balder>
9720
9721         Hackup const and volatile modifiers in type chains a bit:
9722         * src/SDCC.y:1.63
9723         * src/SDCCast.c:1.169
9724         * src/SDCCglue.c:1.136
9725         * src/SDCCicode.c:1.143
9726         * src/SDCCsymt.c1.146
9727         * src/SDCCsymt.h1.59
9728         * src/SDCCval.c:1.63
9729
9730 2003-03-12    <johan AT balder>
9731
9732         * src/SDCCBBlock.h: more LRH debugging junk
9733         * src/SDCCcflow.h: more LRH debugging junk
9734         * src/SDCCloop.c: more LRH debugging junk
9735         * src/SDCC.y (struct_declaration): fixed bug #697590
9736         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
9737         * src/ds390/gen.c (aopForRemat): fixed bug #700031
9738         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
9739
9740 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9741         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
9742         test function names must now match exactly).
9743         * src/SDCCcse.c: added special case in findCheaperOp to allow
9744         extending a short integer. Makes less awful code for bug 700121 test case.
9745
9746 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9747
9748         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
9749         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
9750
9751 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9752
9753         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
9754         actually called (operandsNotEqual() was called for all
9755         operandsNotEqualX tests).
9756
9757 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9758
9759         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
9760         with shorter literals. Fixes bug 700121.
9761
9762 2003-03-11    <johan AT balder>
9763
9764         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
9765
9766 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
9767
9768         * src/SDCCloop.c (mergeRegions): an evil beast is dead
9769         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
9770
9771 2003-03-10  Borut Razem <borut.razem AT siol.net>
9772
9773         * src/SDCCmain.c: pipe preprocessor's output
9774         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9775         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9776         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9777         which closes all pipes in pipeSet set
9778         * src/SDCCset.c: free deleted item in function deleteSetItem()
9779         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9780         moved from z80 to src subproject
9781         * .version: increased version number to 2.3.4
9782
9783 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
9784
9785         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
9786         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
9787         * support/regression/ports/xa51/spec.mk: fix typo
9788
9789 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
9790
9791         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
9792
9793 2003-03-09  Borut Razem <borut.razem AT siol.net>
9794
9795         * src/SDCCmain.c: pipe preprocessor's output
9796         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9797         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9798         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9799         which closes all pipes in pipeSet set
9800         * src/SDCCset.c: free deleted item in function deleteSetItem()
9801         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9802         moved from z80 to src subproject
9803
9804 2003-03-09  Borut Razem <borut.razem AT siol.net>
9805
9806         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
9807         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
9808         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
9809         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
9810         * src/SDCCglobl.h: unification of WIN32 native definitions
9811
9812 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9813
9814         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
9815
9816 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9817
9818         * src/configure.in:   check for endianess (even while cross-compiling)
9819         * src/configure:      check for endianess (even while cross-compiling)
9820         * src/configure_in.h: check for endianess (even while cross-compiling)
9821         * src/avr/gen.c:        remove old endianess stuff
9822         * src/mcs51/gen.c:      remove old endianess stuff
9823         * src/ds390/gen.c:      remove old endianess stuff
9824         * src/pic/gen.c:        remove old endianess stuff
9825         * src/pic/genarith.c:   remove old endianess stuff
9826         * src/pic/glue.c:       fix endianess check
9827         * src/pic16/gen.c:      remove old endianess stuff
9828         * src/pic16/genarith.c: remove old endianess stuff
9829         * src/pic16/glue.c:     fix endianess check
9830         * src/xa51/gen.c:       remove old endianess stuff
9831         * src/z80/gen.c:        fix endianess check
9832         * src/SDCCglue.c:       fix endianess check
9833         * src/ds390/peeph.def: fix bug 700036
9834
9835 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9836
9837         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
9838         * src/configure: find appropriate data-types on host for SDCC's int and long
9839         * src/configure.in: find appropriate data-types on host for SDCC's int and long
9840         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
9841         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
9842
9843 2003-03-07    <johan AT balder>
9844
9845         Just a big NOOP:
9846                 some minor cleanups before the big shot
9847                 OP_DEFS and OP_USES now use Kevin's protection
9848                 new option --nolabelopt
9849
9850         * src/SDCCBBlock.c:
9851         * src/SDCCast.c,:
9852         * src/SDCCcflow.c:
9853         * src/SDCCcse.c:
9854         * src/SDCCicode.c:
9855         * src/SDCCicode.h:
9856         * src/SDCClabel.c:
9857         * src/SDCCloop.c:
9858         * src/SDCCmain.c:
9859         * src/ds390/ralloc.c:
9860         * src/mcs51/ralloc.c:
9861         * src/pic/ralloc.c:
9862         * src/xa51/ralloc.c:
9863         * src/z80/ralloc.c:
9864
9865 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
9866
9867         * src/pic/pcode.c (get_op): fix 64 bit warnings
9868         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
9869         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
9870         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
9871         * support/regression/tests/malloc.c: fix 64 bit warnings
9872
9873 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
9874
9875         * src/mcs51/gen.c (genMinus): fixed bug 696436
9876
9877 2003-03-02  Borut Razem <borut.razem AT siol.net>
9878
9879         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
9880
9881 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
9882
9883         * configure.in: test for mkstemp
9884         * sdccconf_in.h: add HAVE_MKSTEMP
9885
9886 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
9887
9888         * device/include/ctype.h: removed warning while using --stack-auto
9889         * device/include/malloc.h: removed warning while using --stack-auto
9890         * device/include/string.h: removed warning while using --stack-auto
9891
9892 2003-02-23  Borut Razem <borut.razem AT siol.net>
9893
9894         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
9895         because NDEBUG is defined (see man assert)
9896         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
9897
9898 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9899
9900         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
9901         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
9902
9903 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9904
9905         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
9906         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
9907
9908 2003-02-18    <johan AT balder>
9909
9910         * as/mcs51/asmain.c (asmbl): module can start with a digit
9911         * as/z80/asmain.c (asmbl): module can start with a digit
9912
9913 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
9914
9915         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
9916         * src/asm.c: fix pipe() for Mingw32
9917
9918 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
9919
9920         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
9921         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
9922         make -V work again; --c1mode reads now from stdin
9923         * doc/sdccman.lyx: added --c1mode
9924         * support/Util/SDCCerr.c: new messages for c1 mode
9925         * support/Util/SDCCerr.h: new messages for c1 mode
9926         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
9927
9928 2003-02-15    <johan AT balder>
9929
9930         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
9931
9932 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
9933
9934         * doc/sdccman.lyx: Environment variables, -o and other minor things
9935
9936 2003-02-14    <johan AT balder>
9937
9938         * src/xa51/main.c: before anyone really tries to use it :)
9939
9940         * Install doc's in share/sdcc/doc
9941         * removed some obsolete files
9942         * Do a proper make distclean and uninstall
9943         M Makefile.common.in
9944         R sdccbuild.sh
9945         M as/Makefile
9946         M device/include/Makefile.in
9947         M device/lib/Makefile.in
9948         M doc/sdccman.lyx
9949         M link/Makefile
9950         M sim/ucsim/doc/Makefile.in
9951         M src/clean.mk
9952         R src/avr/peeph.rul
9953         R src/xa51/peeph.rul
9954         M support/cpp2/Makefile.in
9955         M support/makebin/Makefile
9956
9957
9958 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
9959
9960         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
9961
9962 2003-02-10  Borut Razem <borut.razem AT siol.net>
9963
9964         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
9965         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
9966         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
9967         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
9968         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
9969         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
9970         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
9971         src/z80/Makefile.bcc: Borland Makefile cleanup
9972         * as/z80/Makefile.bcc: Added Borland Makefile
9973         * support/cpp2/borland.h: Removed
9974
9975 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
9976
9977         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
9978         * src/SDCC.lex: new pragma NOIV
9979         * src/SDCCglobl.h: new pragma NOIV
9980         * src/SDCCmem.c: new pragma NOIV
9981
9982 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9983
9984         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
9985
9986 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9987
9988         * src/SDCCmain.c: signal handling is switched off by --debug
9989         * doc/Makefile: small fix for install; use clean.mk again
9990         * doc/clean.mk: clean *.pdf and *.html too
9991
9992 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
9993
9994         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
9995         * device/lib/printfl.c: fix a ds390 bug by making it portable
9996         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
9997         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
9998         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
9999         * debugger/mcs51/cmd.c: converted multi-line string literals
10000         * sim/ucsim/globals.cc: converted multi-line string literals
10001         * src/SDCCmain.c: introduced signal handler to remove temp files
10002         * doc/Makefile: small tweaks, implement clean
10003         * doc: removed generated files
10004
10005 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10006
10007         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
10008         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
10009         Address Record is not correctly generated for DS390."
10010
10011 2003-02-02  Borut Razem <borut.razem AT siol.net>
10012
10013         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
10014         * as/mcs51/asm.h: fixed compilation with Borland C
10015         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
10016         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
10017         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
10018         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
10019         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
10020         src/z80/Makefile.bcc: delete $(LIB) only if exist
10021         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
10022
10023 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
10024
10025         * device/include/malloc.h: introduced NULL
10026         * device/include/string.h: introduced NULL
10027         * device/include/stdlib.h: introduced NULL
10028         * device/lib/_memcpy.c: removed NULL
10029         * device/lib/_strcat.c: removed NULL
10030         * device/lib/_strchr.c: removed NULL
10031         * device/lib/_strcmp.c: removed NULL
10032         * device/lib/_strcpy.c: removed NULL
10033         * device/lib/_strcspn.c: removed NULL
10034         * device/lib/_strlen.c: removed NULL
10035         * device/lib/_strncat.c: removed NULL
10036         * device/lib/_strncmp.c: removed NULL
10037         * device/lib/_strncpy.c: removed NULL
10038         * device/lib/_strpbrk.c: removed NULL
10039         * device/lib/_strrchr.c: removed NULL
10040         * device/lib/_strspn.c: removed NULL
10041         * device/lib/_strstr.c: removed NULL
10042         * device/lib/_strtok.c: removed NULL
10043         * device/lib/malloc.c: removed NULL, include own header
10044
10045 2003-02-02    <johan AT balder>
10046
10047         * 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
10048         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
10049         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
10050         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
10051         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
10052         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
10053
10054 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10055
10056         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
10057         area 'DATA'"
10058
10059 2003-02-01    <johan AT balder>
10060
10061         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
10062
10063 2003-01-31    <johan AT CP255758-A>
10064
10065         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
10066
10067 2003-01-30    <johan AT balder>
10068
10069         * src/SDCCBBlock.c: automatic bug detection
10070         * src/SDCCicode.c: automatic bug detection
10071
10072 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10073
10074         * src/SDCCglobl.h:   now --xram-size 0 works
10075         * src/SDCCmain.c:    now --xram-size 0 works
10076
10077 2003-01-29    <johan AT balder>
10078
10079         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
10080
10081 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10082
10083         * as/mcs51/aslink.h: Added options --xram-size and --code-size
10084         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
10085         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
10086         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
10087         * src/SDCCglobl.h:   Added options --xram-size and --code-size
10088         * src/SDCCmain.c:    Added options --xram-size and --code-size
10089
10090 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
10091
10092         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
10093         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
10094
10095 2003-01-27    <johan AT balder>
10096
10097         * src/SDCC.y: fixed bug #613764
10098
10099 2003-01-26    <johan AT balder>
10100
10101         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
10102         * src/SDCCsymt.h: fixed bug #673374
10103         * src/SDCCglue.c: fixed bug #661910
10104         * src/SDCCast.c: fixed bug #458099 and 673374
10105
10106 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
10107
10108         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
10109         * as/mcs51/strcmpi.h: added
10110         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
10111         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
10112         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
10113         * as/mcs51/assym.c: strcmpi -> as_strcmpi
10114         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
10115         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
10116         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
10117         * as/mcs51/Makefile.aslink: new module strcmpi
10118         * as/mcs51/Makefile.asx8051: new module strcmpi
10119         * as/mcs51/Makefil.bcc: new module strcmpi
10120         * as/mcs51/Makefile.in: new module strcmpi
10121         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
10122
10123 2003-01-26    <johan AT balder>
10124
10125         * src/SDCCglue.c: reverted back to 1.124
10126         * src/SDCCast.c: reverted back to 1.156
10127         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
10128
10129 2003-01-25    <johan AT balder>
10130
10131         * src/SDCCglue.c: A better fix for bug #661910
10132         * src/SDCCast.c: A better fix for bug #661910
10133         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
10134
10135 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
10136
10137         * src/Makefile.in: remove spawn.o
10138         * src/SDCCmain.c: remove spawn.h
10139         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
10140         * src/spawn.c: removed
10141         * src/spawn.h: removed
10142         * support/regression/ports/ds390/spec.mk: link with -r
10143
10144 2003-01-24    <johan AT CP255758-A>
10145
10146         * src/ds390/gen.c (aopOp): fixed bug #667458
10147         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
10148         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
10149         (createIvalCharPtr): an ival doesn't always have a storage class anymore
10150
10151 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
10152
10153         * src/mcs51/peeph.def: better assembler identation by Frieder
10154         * src/mcs51/gen.c: better assembler identation by Frieder
10155
10156 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
10157
10158         * as/z80/string.h: removed for gcc 3.2
10159         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
10160         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
10161
10162 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
10163
10164         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
10165         * src/SDCCpeeph.c (replaceRule): fix bug #663503
10166         * support/regression/Makefile: separate temp files for ports
10167         * support/regression/generate-cases.py: separate temp files for ports
10168         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
10169         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
10170
10171 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
10172
10173         * moved tinitalk to device/examples/ds390
10174
10175 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
10176
10177         * as/mcs51/lkmem.c: rflag is for DS390
10178         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
10179         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
10180                          (linkEdit): move mem- and map-files the same way as ihx-files
10181         * src/z80/main.c (_setDefaultOptions): removed --generic
10182         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
10183         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
10184         * src/pic/glue.c (picglue): --c1mode works again
10185         * src/pic16/glue.c (pic16glue): --c1mode works again
10186         * src/asm.c (printCLine): fix #660034
10187
10188 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
10189
10190         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
10191         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
10192         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
10193         * as/mcs51/lkmem (summary): better fix for sp problem
10194         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
10195         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
10196         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
10197                                               remove --stack-after-data
10198
10199 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
10200
10201         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
10202         * src/SDCCutil.c (join): ugly bug: missing '\0'
10203         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
10204
10205 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
10206
10207         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
10208         * src/port.h: typo
10209         * src/pic/main.c (_asmCmd): gpasm supports -o
10210         * src/z80/main.c: more general macros
10211         * device/lib/Makefile.in: remove intermediate files
10212
10213 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
10214
10215         * .version: Bumped version number to 2.3.3
10216         * src/SDCCBBlock.c: new option -o
10217         * src/SDCCglobl.h: new option -o
10218         * src/SDCCglue.c: new option -o
10219         * src/SDCCmain.c: new option -o
10220         * src/asm.c: new option -o
10221         * src/ds390/main.c: new option -o
10222         * src/pic/glue.c: new option -o
10223         * src/pic/pcode.c: new option -o
10224         * src/pic/ralloc.c: new option -o
10225         * src/pic16/glue.c: new option -o
10226         * src/pic16/pcode.c: new option -o
10227         * src/pic16/ralloc.c: new option -o
10228         * src/z80/main.c: new option -o
10229         * device/lib/Makefile.in: use -o
10230         * support/regression/ports/ds390/spec.mk: use -o
10231         * support/regression/ports/gbz80/spec.mk: use -o
10232         * support/regression/ports/mcs51/spec.mk: use -o
10233         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
10234         * support/regression/ports/z80/spec.mk: use -o
10235         * support/regression/ports/ucz80/spec.mk: use -o
10236         * support/regression/ports/xa51/spec.mk: use -o
10237         * support/regression/fwk/lib/timeout.c: fix usage string
10238
10239 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
10240         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
10241
10242 2003-01-07    <johan AT balder>
10243
10244         * src/SDCCast.c (decorateType): fixed bug #600035
10245
10246 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
10247         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
10248         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
10249         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
10250         * src/pic/pcode.c: outcommented unused variable to remove warnings
10251         * src/pic/ralloc.c: outcommented unused variable to remove warnings
10252
10253 2003-01-06    <karl AT turbobit.com>
10254         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
10255    regression tests.
10256
10257 2003-01-06    <johan AT balder>
10258
10259         * src/SDCCicode.c: fixed array add
10260
10261 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
10262         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
10263         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
10264
10265 2003-01-04    <johan AT balder>
10266
10267         * src/SDCCval.c (getNelements): fixed the initialized array of structures
10268
10269 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10270         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
10271
10272 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
10273         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
10274         * support/regression/tests/bug-524697.c: fit mem usage into 8032
10275
10276 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
10277         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
10278
10279 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
10280         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
10281
10282 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
10283         * src/mcs51/main.c: removed {bindir}{sep} from aslink
10284
10285 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10286
10287     * in \sdcc\as\mcs51\ changed these files in order to create an
10288     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
10289     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
10290     following files to include the previous two files: aslink.dsp,
10291     Makefile.aslink, Makefile.bcc, and Makefile.in.
10292
10293     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
10294     .adb instead of .cdb
10295
10296 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10297
10298         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
10299         value from option --iram-size.
10300
10301 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10302
10303         * \sdcc\as\mcs51\lklist.c: added boundary check before using
10304         dram[] array.
10305
10306 2002-09-18    <wiml AT hhhh.org>
10307
10308         * SDCClrange.h: exposed setFromRange() and setToRange()
10309         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
10310           packRegsForAccUse() (bug 542397)
10311         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
10312           multiple times and emitting the fetch operations more than once
10313           added aopGetUsesAcc() function to allow binary operators to
10314           fetch their operands in the correct order; made genMinus() emit
10315           compact code for X = LITERAL - Y
10316
10317 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10318         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
10319         sprintf() in line 1267.
10320
10321 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10322         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
10323         like ports.
10324
10325 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10326         Changes to aslink (All the changes are marked with 'JCF'):
10327
10328         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
10329         summary().
10330
10331         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
10332         area BSEG.  Also moves, if possible, the DATA area down into the internal
10333         ram so more space is available.
10334
10335         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
10336         sflag.
10337
10338         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
10339         not bytes.  Function summary() which creates a memory usage summary
10340         file with extension .mem.  Reports of overlaping stack and small stack
10341         size.  If the space for the stack is less than 16 bytes aslink trows a
10342         warning.
10343
10344         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
10345         the 8051.  Option 'y' for memory summary output file.
10346
10347         Changes to sdcc (All the changes are marked with 'JCF'):
10348
10349         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
10350
10351         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
10352         overlaying area for it (uses RegBankUsed[4]).
10353
10354         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
10355         bank zero as used by default.  By default aslink locates the stack
10356         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
10357         the creation of the .mem file.  Delegates the allocation of data area
10358         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
10359         the begining of the stack area to aslink.
10360
10361         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
10362         glue() in SDCCglue.c creates an area for it.
10363
10364 2002-09-03  Borut Razem <borut.razem AT siol.net>
10365         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
10366         sdcc/src/pic/glue.c:
10367         introduced atexit() handler for teporay files removal in case of
10368         errors, assertions, ...
10369
10370 2002-08-29  Borut Razem <borut.razem AT siol.net>
10371         * sdcc/support/cpp2/auto-host_vc_in.h:
10372         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
10373         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
10374         Maybe there is a similar problem with BORLANDC? It should be checked!
10375
10376         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
10377         corrected improper use of assert: the assignment to clr variable was done inside the assert.
10378         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
10379         was not executed, and the compiler (cl) launched a warning:
10380         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
10381
10382 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
10383         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
10384
10385 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
10386         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
10387
10388         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10389           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
10390           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
10391           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10392           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
10393           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
10394           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
10395         - added Release configuration in VS projects
10396         - review of compiler an linker options
10397         - VC .exe files are generated in bin_vc directory, not to interfere
10398           with binaries generated from other projects (cygwin, mingw, bcc ...)
10399
10400         * sdcc/src/yacc.dsp: added
10401
10402         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
10403         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
10404         and insert the version number definitions from .version
10405
10406         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
10407
10408         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
10409         added - genarate auto-host.h using auto-host_vc_in.h as template
10410
10411         * sdcc/sdcc_vc.h,
10412         removed from CVS, generated automatically
10413
10414 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
10415         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
10416
10417 2002-08-11  Borut Razem <borut.razem AT siol.net>
10418         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
10419
10420 2002-08-10  Borut Razem <borut.razem AT siol.net>
10421         * src/SDCCmain.c (main):
10422         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
10423         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
10424         The consequence was that some temporary files were not removed.
10425
10426         * src/SDCCglue.c:
10427         unification of code in functions tempfilename() and tempfile():
10428         function tempnam() is defined in Visual Studio 6.0 and .NET
10429
10430         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
10431
10432         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10433           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
10434         - removed compiler command line option /WX: Treats all warnings as errors
10435         - update a list of source files, included into the project
10436
10437         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10438           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
10439         changed project type to Generic Project so that can be correcly converted to VS.NET project
10440
10441         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
10442
10443         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
10444
10445         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
10446
10447         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
10448         added return 0 statements after assert() to make compiler happy
10449
10450         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
10451         added newline in the def file to keep MSC compiler satisfied
10452
10453         * sdcc/src/z80/gen.c:
10454         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
10455           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
10456         - solved MSC error in function aopDump()
10457
10458         * sdcc_vc.h: define PREFIX as "\\sdcc"
10459
10460 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
10461         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
10462
10463 2002-06-22  Scott Dattalo <scott AT dattalo.com>
10464         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
10465         - Rewrote the register banking algorithm.
10466         - Added pCode live-range analysis to registers (for now, only non-used and
10467         singly-used registers optimized away)
10468
10469         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
10470
10471         * 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.
10472
10473 2002-05-10  Scott Dattalo <scott AT dattalo.com>
10474         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
10475
10476 2002-04-22  Michael Hope  <michaelh AT vroom>
10477
10478         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
10479
10480         * configure.in (DD_COPT): Added include support required for gbdk.
10481
10482         * .version: Bumped version number just to increase it.
10483
10484         * src/SDCCmain.c: Added -nostdinc to the default options.
10485
10486 2002-04-15  Michael Hope  <michaelh AT vroom>
10487
10488         * device/lib/z80/printf.c (sprintf): Added.
10489
10490         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
10491
10492         * src/z80/peeph.def: Added transpose redundent load rule.
10493
10494         * src/z80/main.c: Added force callee saves for jaune.
10495
10496         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
10497
10498         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
10499
10500 2002-03-28  Johan Knol  <johan AT balder>
10501
10502         * src/SDCCval.c: fixed bug #532436
10503
10504 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10505         * /src/port.h:
10506         Added "char *Processor" field to the port structure.
10507
10508         * /src/SDCCmain.c:
10509         Added -p option. Allows port dependent processor to be specified.
10510
10511         * all ports:
10512         Initialized the new field char *Processor field to NULL in all ports
10513
10514         * /src/pic/*:
10515         Compiler generated registers for interrupt context saving
10516         were not getting allocated.
10517
10518 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
10519
10520         * /src/SDCCast.c:
10521         Fixed left shift. Will promote the left side of a left shift
10522         if a) left shifting more than size of operand or b) when assigned
10523         to something size > size of left side
10524
10525 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10526         * src/pic/*
10527         tons of changes. Register allocation has been
10528         rewritten. Added customization for the various PICs. Flow
10529         analysis is restructured. ...
10530
10531         * src/pic/device.h:
10532         Added
10533
10534         * src/pic/device.c:
10535         Added. device.c is a PIC port hack to accomodate variations
10536         in PIC devices.
10537
10538 2002-03-13  Michael Hope  <michaelh AT vroom>
10539
10540         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
10541
10542 2002-03-04  johanknol  <johanknol AT manik>
10543
10544         * /src/SDCCval.c: fixed
10545
10546         const unsigned char arr[][2] = { { 0, 1 } };
10547         t18.c:1: error: Initializer element is not constant
10548
10549 2002-03-04  bela  <bela AT manik>
10550
10551         * /device/include/mcs51reg.h:
10552         ds89c420 register definition update
10553
10554 2002-03-03    <johan AT FRIJA>
10555
10556         * support/Util/SDCCerr.c: did something, but don't no why anymore
10557
10558         * support/regression/tests/bug-524691.c: made it a little less shy
10559
10560         * src/SDCCast.c (decorateType): fixed bug #524697
10561
10562         * src/SDCCast.c: made some lineno improvements
10563
10564         * src/SDCCval.c (getNelements): changed warning to error
10565
10566         * src/SDCCglue.c (printIvalArray): changed warning to error
10567
10568         * src/SDCCicode.c: fixed a warning for mingw
10569
10570         * src/SDCCast.c (decorateType): fixed the << promotion for ops
10571
10572         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
10573
10574 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
10575
10576         * src/ds390/peeph.def:
10577         Added some more peephole rules
10578
10579         * src/ds390/gen.c: Various fixes & enhancements
10580
10581         * src/SDCClrange.c, src/SDCClrange.h:
10582         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
10583
10584         * src/ds390/ralloc.c:
10585         various fixes & enhancements (ds390) specific
10586
10587         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
10588         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
10589         from rallocs.
10590
10591         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
10592
10593 2002-03-02    <johan AT FRIJA>
10594
10595         * src/SDCCast.c (decorateType): fixed bug #524708
10596
10597         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
10598
10599         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
10600
10601 2002-03-01  Michael Hope  <michaelh AT vroom>
10602
10603         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
10604
10605         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
10606
10607 2002-03-01    <johan AT FRIJA>
10608
10609         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
10610
10611         * src/SDCCast.c (decorateType): fixed bug #524209
10612
10613         * src/SDCCval.c (valNot): fixed bug #524195
10614
10615 2002-02-26    <johan AT balder>
10616
10617         * src/xa51/gen.c: fixed a warning
10618
10619         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
10620
10621         * src/SDCCast.c (decorateType): fixed bug #522534
10622
10623 2002-02-23    <johan AT balder>
10624
10625         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
10626
10627 2002-02-22    <johan AT balder>
10628
10629         * src/SDCCast.c: fixed bug #514865
10630
10631         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
10632
10633 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
10634
10635         * sdcc/src/SDCCloop.c:
10636         Previous fix was not good. basic blocks that have "break" or "return" are
10637         not really partof a loop , but live ranges used in these blocks should
10638         be live thru the entire loop, so set partOfLoop but don't add them to
10639         loop region
10640
10641 2002-02-21    <johan AT FRIJA>
10642
10643         * src/SDCCcse.c: fixed bug #514308
10644
10645 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
10646
10647         * src/SDCCloop.c:
10648         Fixed BUG #519583. If a conditional block ended in a return/break
10649         statement inside a loop, it was not being considered part of the loop.
10650
10651         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
10652
10653 2002-02-10  Karl Bongers <karl AT turbobit.com>
10654
10655         * debugger/*:
10656         Fixed up SDCDB debugger somewhat.  Updated debugger/README
10657         with lots of comments and notes.
10658
10659         * device/examples/test2.c:
10660         Fix bug, "red" variable not being initialized(compiler complained).
10661
10662         * device/examples/Makefile, examples/test3.c:
10663         Add Makefile in device/examples folder, compiles test3.c
10664         for use as a multiple module SDCDB test case.
10665
10666         * sim/ucsim/cmd.src/cmdset.cc:
10667         Took out debug printfs in ucsim "next" command.
10668
10669         * sim/ucsim/xa.src:
10670         Karl and Johan start ucsim XA support.  Most dissassembly working,
10671         about 75% emulation done(plenty of work remaining).
10672
10673         * sim/ucsim/z80.src:
10674         Add Z80 support to ucsim, add test-ucz80 regression test,
10675         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
10676         Notice z80 compiler fails on examples/test3.c/crc code.
10677
10678 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
10679
10680         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
10681         Added support for --parms-in-bank1
10682
10683         * src/ds390/peeph.def:
10684         added a few more peephole optimzations
10685
10686         * src/ds390/main.c:
10687         1) added __builtin_inp & __builtin_outp used to read in data of given length
10688            from a memory mapped port
10689         2) added __builtin_memcmp
10690         3) added __builtin_swapw swap bytes of a short
10691
10692         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
10693         1) handle multiple send & receives from register bank1
10694         2) ralloc can now allocate DPTR1 to some liveRanges
10695
10696         * src/SDCCsymt.c, src/SDCCsymt.h:
10697         changes to handle multiple sends & receives
10698
10699         * src/SDCCptropt.h:
10700         added some pointer arithmetic optimization
10701
10702         * src/SDCCptropt.c:
10703         added some pointer arithmetic optimizations but not stable yet so not
10704         called from anywhere (will get this working shortly)
10705
10706         * src/SDCCopt.c: fixed for multiple sends & receives
10707
10708         * src/SDCCmain.c:
10709         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
10710         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
10711            set preprocessor defines (depending on options)
10712
10713         * src/SDCCicode.c, src/SDCCicode.h:
10714         changes made to handle multiple sends & receives
10715
10716         * src/SDCCglobl.h:
10717         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
10718
10719         * src/SDCCcse.c, src/SDCCcse.h:
10720         added function findbackward def (to be used in upcoming optimization)
10721
10722         * src/SDCCcflow.c, src/SDCCcflow.h:
10723         added function returnAtEnd - to determine if a basic block terminates with
10724         a RETURN iCode
10725
10726         * src/SDCCast.c, src/SDCCast.h:
10727         added option parms-in-bank1
10728
10729         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
10730         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
10731         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
10732         adjusted for --parms-in-bank1 option
10733
10734         * device/include/string.h:
10735         donot redefine "reentrant" keyword
10736
10737         * device/include/ds80c390.h: Added some more SFRs
10738
10739 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
10740
10741         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
10742
10743 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
10744
10745         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
10746
10747 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
10748
10749         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
10750
10751 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
10752
10753         * Added --xram-movc option
10754
10755 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
10756
10757         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
10758
10759 2002-01-11  Johan Knol
10760
10761         * Added math lib of Jesus Calvino-Fraga
10762
10763 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
10764
10765         * src/SDCCmain.c (processFile): fix processing of ../../src.c
10766         * support/regression/Makefile: new target test-mcs51-stack-auto
10767         * support/regression/ports/mcs51-stack-auto/spec.mk: added
10768
10769 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10770
10771         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
10772
10773 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10774
10775         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
10776
10777 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
10778
10779         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
10780
10781         * src/SDCCglue.h: add definition for printIvalChar()
10782
10783 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10784
10785         * src/SDCCast.c: fix #498138 by Johan
10786
10787         * src/SDCCglue.c: fix #498138 by Johan
10788
10789 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10790
10791         * support/regression/Makefile: fix clean
10792
10793         * support/regression/ports/ds390/support.c: fix transmission of last character
10794
10795 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
10796
10797         * /sdcc/src/ds390/gen.c:
10798         a) improved computing address of stack variable
10799         b) took out some #if 0 code
10800         c) improved parmBytes adjustment
10801         d) improved genPlusIncr & genMinusIncr
10802         e) genCmp could generate bad code (when left assigned to DPTR)
10803         f) Fixed bug in hasInc
10804
10805         * /sdcc/src/ds390/ralloc.c:
10806         a) packRegsForSupport could mess up live information (Fixed)
10807         b) packRegsDPTRuse could be incorrect for left & right shift
10808
10809         * /sdcc/src/mcs51/ralloc.c:
10810         packRegsForSupport could mess up the live information (Fixed)
10811
10812         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
10813
10814         * /sdcc/src/SDCCast.c:
10815         can reverse a loop even if function call is present as long
10816         as the loop control variable is local & is not passed as parameter
10817
10818 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10819
10820         * /sdcc/ChangeLog: *** empty log message ***
10821
10822         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
10823         More builtin function additions for TININative
10824
10825         * /sdcc/src/ds390/ralloc.c:
10826         Had broken the regression testsuite
10827
10828         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
10829
10830         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
10831         Added funcattr hasStackParms will be set for reentrant functions when there
10832         are paramteres on the stack, this helps in minimizing frame pointer generation
10833         typeFromStr can handle function pointers now
10834
10835         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
10836         *** empty log message ***
10837
10838 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10839
10840         * /src/ds390/gen.c, /src/ds390/main.c:
10841         More builtin function additions for TININative
10842
10843         * /src/ds390/ralloc.c:
10844         Had broken the regression testsuite
10845
10846         * /src/SDCCast.c: Fixed a bug in dumptree
10847
10848         * /src/SDCCsymt.c, /src/SDCCsymt.h:
10849         Added funcattr hasStackParms will be set for reentrant functions when there
10850         are paramteres on the stack, this helps in minimizing frame pointer generation
10851         typeFromStr can handle function pointers now
10852
10853         * /doc/builtins.txt, /doc/TININative.txt:
10854         *** empty log message ***
10855
10856
10857 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10858
10859         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
10860         ALPHA version for -mTININative
10861
10862         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
10863         updated to reflect changes in the port structure
10864
10865         * /src/port.h:
10866         added function do_assemble (similar to do_link) if non-null this function
10867         will be called to do assembly (-mTININative) requires a multi command
10868         assembly
10869         added function genAssemblerEnd will be called to generate assembler Epilogue
10870
10871         * /src/SDCCsymt.c:
10872         added _JavaNative to debug info printing
10873
10874         * /src/SDCCmain.c: added option --tini-libid
10875         added port->do_assemble function (-mTININative) has a multi command assemble
10876
10877         * /src/SDCCglue.c: Disabled "constExpr" check
10878         added port->genAssemblerEnd function
10879
10880         * /src/SDCCglobl.h: Added option --tini-libid value
10881
10882         * /src/SDCCast.h:
10883         tookout optimizeCompare from the header (has no external references)
10884
10885         * /src/SDCCast.c: made one more function "static"
10886
10887 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
10888
10889         * src/z80/mappings.i: Added z80asm support.
10890
10891         * src/z80/main.c: Added z80asm support on --asm=z80asm
10892
10893         * src/z80/gen.c: Fixed asm portability issues.
10894
10895         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
10896
10897         * src/SDCCglue.c (printExterns): Added global/extern split.
10898
10899 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
10900
10901         * support/regression/Makefile: added test for mcs51 model large
10902
10903         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
10904
10905         * support/regression/ports/gbz80/spec.mk: added -mgbz80
10906
10907 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
10908
10909         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
10910
10911 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
10912
10913         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
10914
10915         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
10916
10917 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
10918
10919         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
10920
10921         * support/regression/tests/simplefloat.c: Port to mcs51.
10922
10923 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
10924         * support/regression/tests/bug-485362.c: Added.
10925
10926         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
10927
10928         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
10929
10930         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
10931
10932         * src/z80/gen.c (aopDump): Added a dump function.
10933
10934 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
10935         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
10936
10937         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
10938
10939         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
10940
10941         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
10942
10943         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
10944
10945         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
10946
10947         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
10948
10949         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
10950
10951         * support/regression/ports/ds390/support.c: Use tinibios.
10952
10953         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
10954
10955 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
10956
10957         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
10958         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
10959
10960         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
10961
10962         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
10963
10964 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
10965
10966         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
10967
10968         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
10969         (packRegsForIYUse): Created and optimised.
10970
10971 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10972
10973         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
10974 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
10975
10976         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
10977
10978         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
10979
10980         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
10981
10982 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10983
10984         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
10985
10986         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
10987
10988 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10989
10990         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
10991
10992         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
10993
10994         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
10995
10996 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10997
10998         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
10999         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
11000         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
11001
11002         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
11003
11004         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
11005         (genNotFloat): Added.
11006         (genUminusFloat): Added.
11007
11008         * device/lib/z80/Makefile: Added floating pt stubs.
11009
11010         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
11011
11012         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
11013
11014         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
11015
11016 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11017
11018         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
11019
11020         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
11021
11022         * sdcc/support/regression/Makefile: Add port ds390.
11023
11024         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
11025
11026         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
11027
11028         * sdcc/support/regression/ports/ds390/spec.mk: Added.
11029
11030         * sdcc/support/regression/ports/ds390/support.c: Added.
11031
11032         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
11033
11034         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
11035
11036         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
11037
11038 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
11039
11040         * device/include/malloc.h: Added z80 and gbz80 support.
11041
11042         * device/lib/gbz80/heap.s: Added.
11043
11044         * device/lib/z80/heap.s: Added.
11045
11046         * device/lib/malloc.c: Added z80 and gbz80 support.
11047
11048         * support/regression/tests/malloc.c (testMalloc): Added.
11049
11050         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
11051
11052         * support/regression/tests/bug-478094.c: Added.
11053
11054         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
11055
11056 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
11057
11058         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
11059
11060         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
11061
11062         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
11063
11064         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
11065
11066         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
11067
11068 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
11069
11070         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
11071
11072 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
11073
11074         * support/regression/tests/bug-477927.c: Added.
11075
11076         * src/z80/peeph.def: Added minor rules.
11077
11078         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
11079
11080         * src/z80/peeph.def: Added jump optimisation modification.
11081
11082 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
11083
11084         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
11085
11086 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
11087
11088         * support/regression/tests/funptrs.c: Added.
11089
11090 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
11091
11092         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
11093
11094 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
11095
11096         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
11097
11098         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
11099
11100         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
11101         (movLeft2ResultLong): Created.
11102
11103         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
11104         (joinPushes): Added.  Joins two char pushes into a word push.
11105
11106 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
11107
11108         * support/cpp2/Makefile.in (install): Added creation of dest dir.
11109
11110         * support/makebin/Makefile (install): Added creation of dest dir.
11111
11112 2001-10-24 Karl Bongers <karl AT turbobit.com>
11113
11114         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
11115
11116 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
11117
11118         * src/z80/ralloc.c: Turned off faulty pack for one use.
11119
11120         * src/z80/peeph-gbz80.def: Removed redundent restart options.
11121
11122         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
11123
11124 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
11125
11126         * support/regression/Makefile: Improved clean
11127
11128         * support/regression/ports/gbz80/spec.mk: Added clean
11129
11130         * support/regression/ports/host/spec.mk: Added clean
11131
11132         * support/regression/ports/z80/spec.mk: Added clean
11133
11134         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
11135
11136         * support/regression/ports/mcs51/timeout.c: little improvements
11137
11138 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
11139
11140         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
11141
11142         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
11143
11144         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
11145
11146 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
11147
11148         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
11149
11150         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
11151
11152 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
11153         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
11154
11155         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
11156
11157         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
11158
11159         * src/mcs51/main.c (_linkCmd): Added bin path to command.
11160
11161         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
11162
11163         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
11164
11165         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
11166
11167         * support/regression/tests/longor.c: Added.
11168
11169 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
11170
11171         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
11172
11173         * as/mcs51/aslink.h: define PATH_MAX
11174
11175         * as/mcs51/asm.h: define PATH_MAX
11176
11177         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
11178
11179         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
11180
11181         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
11182
11183         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
11184
11185         * src/SDCCglobl.h: define PATH_MAX
11186
11187         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
11188
11189         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
11190
11191 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
11192
11193         * src/z80/gen.c (gencjneshort): Fixed
11194
11195         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
11196
11197 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
11198
11199         * support/regression/tests/bug-469671.c: Added.
11200
11201         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
11202
11203 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
11204
11205         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
11206
11207         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
11208
11209 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
11210
11211         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
11212
11213         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
11214
11215         * src/device/lib/_mullong.c : removed hint: nooverlay bug
11216
11217         * src/device/lib/_divuint.c : removed hint: nooverlay bug
11218
11219         * src/device/lib/_divulong.c: removed hint: nooverlay bug
11220
11221         * src/device/lib/_moduint.c : removed hint: nooverlay bug
11222
11223         * src/device/lib/_modulong.c: removed hint: nooverlay bug
11224
11225 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
11226
11227         * 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.
11228
11229         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
11230
11231         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
11232
11233 2001-10-07    <johan AT FRIJA>
11234
11235         * device/lib/gets.c (gets): fixed the return value.
11236
11237 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
11238         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
11239
11240         * 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.
11241
11242         * 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.
11243
11244         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
11245
11246         * src/pic/gen.c: Removed Safe_strdup.
11247
11248         * configure.in: Added option to enable libgc support.
11249
11250         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
11251         (bitVectUnion): Optimised.
11252         (bitVectIntersect): Optimised.
11253         (bitVectBitsInCommon): Optimised.
11254         (bitVectCplAnd): Optimised.
11255
11256         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
11257
11258 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11259
11260         * src/SDCCmain.c: distinguish between assembler debug and plain options
11261
11262         * src/avr/main.c:   remove standard assembler options
11263
11264         * src/ds390/main.c: remove standard assembler options
11265
11266         * src/mcs51/main.c: remove standard assembler options
11267
11268         * src/port.h: removed "PENDING" comment
11269
11270 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11271
11272         * src/device/lib/_mulint.c  : new, with assember functions
11273
11274         * src/device/lib/_mullong.c : new, with assember functions
11275
11276         * src/device/lib/_divuint.c : with assember functions
11277
11278         * src/device/lib/_divsint.c : with assember functions
11279
11280         * src/device/lib/_divulong.c: with assember functions
11281
11282         * src/device/lib/_divslong.c: with assember functions
11283
11284         * src/device/lib/_moduint.c : with assember functions
11285
11286         * src/device/lib/_modsint.c : with assember functions
11287
11288         * src/device/lib/_modulong.c: with assember functions
11289
11290         * src/device/lib/_modslong.c: with assember functions
11291
11292         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
11293
11294         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
11295
11296         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
11297                                       replaced _mululong.c and _mulslong.c by _mullong.c
11298
11299 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11300
11301         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
11302
11303 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
11304
11305         * src/SDCCglue.c: test, if win32api is available for MINGW
11306
11307 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
11308
11309         * src/SDCCsymt.c: no more _modifier in printTypeChain()
11310         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
11311         * support/regression/ports/gbz80/spec.mk: removed GENERIC
11312         * support/regression/ports/host/spec.mk: removed GENERIC
11313         * support/regression/ports/mcs51/spec.mk: removed GENERIC
11314         * support/regression/ports/z80/spec.mk: removed GENERIC
11315
11316 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
11317
11318         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
11319
11320         * support/regression/tests/bug-467035.c: Created.
11321
11322 2001-10-01    <johan AT FRIJA>
11323
11324         * src/SDCC.y: fixed bug #466586 part 1
11325
11326 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
11327
11328         * SDCCicode.c: z80 has no generic pointers
11329         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
11330
11331 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
11332
11333         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
11334
11335 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
11336
11337         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
11338
11339         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
11340
11341 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
11342
11343         * configure.in: Fixed up so that ucsim is only configured once.
11344
11345         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
11346
11347         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
11348         (getPathDifference): As above.
11349
11350         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
11351
11352         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
11353
11354 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
11355         * .version: Updated to 2.3.1
11356
11357         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
11358         Added copyright header.
11359
11360         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
11361         (assemble): Added support for macro based assembler commands.
11362         (linkEdit): Added support for macro based linker commands.
11363         (preProcess): Changed the pre-processor to use macros.
11364         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
11365         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
11366
11367         * device/lib/z80/crt0.s: Added module name for debugging.
11368
11369 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
11370
11371         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11372
11373         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
11374
11375         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
11376
11377         * src/Makefile.in: Added SDCCmacro and SDCCutil
11378
11379 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
11380
11381         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11382
11383 2001-09-16    <johan AT FRIJA>
11384
11385         * 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.
11386
11387 2001-09-15    <johan AT FRIJA>
11388
11389         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
11390         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
11391
11392 2001-09-11    <johan AT FRIJA>
11393
11394         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
11395
11396 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
11397
11398         * support/regression/tests/bug-460444.c: Added test case.
11399
11400         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
11401         (genCast): Added justification for all of the asserts.
11402
11403 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
11404
11405         * support/regression/support.c: _xdata replaced by xdata
11406
11407         * support/regression/spec.mk: removed _generic
11408
11409 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
11410
11411         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
11412
11413         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
11414         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
11415
11416         * src/z80/peeph.def: Added a rule to optimise shift then compare.
11417
11418         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
11419
11420         * support/regression/tests/bug-460010.c: Added test case.
11421
11422         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
11423
11424 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
11425
11426         * support/regression/Makefile: inter-port-clean adjusted for mcs51
11427
11428         * support/regression/testfwk.c: removed workaround for bug #436344
11429
11430         * support/regression/tests/bp.c: use less memory with mcs51
11431
11432         * support/regression/tests/bug-441448.c: use less memory
11433
11434         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
11435
11436         * support/regression/collate-results.py: typo
11437
11438 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
11439
11440         * support/regression/tests/fetchoverlap.c: Added new test case.
11441
11442         * support/regression/tests/bp.c: Added new test case.
11443
11444         * support/regression/tests/bug-448984.c: Added new test case.
11445
11446         * support/regression/tests/pow2shifts.c: Added new test case.
11447
11448         * src/z80/gen.c: Turned off the noise it normally generates for the release.
11449         (genlshTwo): Fixed right shift for count > 8.
11450
11451         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
11452
11453 2001-09-08    <johan AT FRIJA>
11454
11455         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
11456
11457 2001-09-07    <johan AT FRIJA>
11458
11459         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
11460
11461         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
11462
11463 2001-09-06    <johan AT FRIJA>
11464
11465         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
11466         * bernhard noted me at this: "() equals to (void)" (1.38)
11467
11468 2001-09-05    <johan AT FRIJA>
11469
11470         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
11471
11472 2001-09-04    <johan AT FRIJA>
11473
11474         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
11475
11476
11477 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
11478
11479         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
11480
11481 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
11482
11483         * link/z80/aslink.h: Fixed path for PATH_MAX
11484
11485 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
11486
11487         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
11488
11489         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
11490
11491         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
11492
11493         * 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.
11494
11495 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
11496
11497         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
11498         (genCmp): Fixed up genCmp for the GB with longs.
11499
11500         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
11501
11502         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
11503
11504         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
11505
11506         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
11507
11508 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
11509
11510         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
11511
11512 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
11513
11514         * 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.
11515
11516         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
11517
11518 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
11519
11520         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
11521
11522         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
11523
11524 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
11525
11526   * sim/ucsim/configure:    little improvement of Cygwin-detection
11527   * sim/ucsim/configure.in: little improvement of Cygwin-detection
11528   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
11529   * support/regression/tests/bug-221100.c: small changes for mcs51
11530   * support/regression/tests/bug-221168.c: small changes for mcs51
11531   * support/regression/tests/bug-227710.c: small changes for mcs51
11532   * support/regression/tests/staticinit.c: small changes for mcs51
11533   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
11534   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11535   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11536
11537 $Revision$