* src/pic16/gen.c (genFunction, genEndFunction): some
[fw/sdcc] / ChangeLog
1 2006-05-28 Vangelis Rokas <vrokas AT users.sourceforge.net>
2
3         * src/pic16/gen.c (genFunction, genEndFunction): some
4         beautifications, fixed bug with falsely restoring FSR2 in large
5         stack model, thanks to Beau E. Cox for reporting the bug
6
7 2006-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
8
9         * debugger/mcs51/break.c,
10         * debugger/mcs51/cmd.c (throughout): removed unused variables and labels,
11           use %p to print pointers, made address variables unsigned
12         * debugger/mcs51/cmd.c (infoSymbols): added missing parameter to printf
13         * debugger/mcs51/symtab.c (parseSymbol): must return something
14         * src/mcs51/gen.c (aopForSym): small optimization,
15            moved declarations mcs51_ptrRegReq and mcs51_nRegs to ralloc.h,
16           (freeAsmop): added missing break,
17           (aopPut): removed parameter bvolatile, determine it inside the function,
18           (saveRegisters, unsaveRegisters): small optimization,
19           (genIpush): removed pointless check,
20           (throughout): replaced Safe_calloc, strcpy with Safe_strdup,
21           replaced sprintf with SNPRINTF,
22           replaced strcpy with strncpyz,
23           updated aopPut calls,
24           replaced D(emitcode("; genXXX", "")) with D(emitcode(";", "genXXX"))
25         * src/mcs51/ralloc.h:  added declarations mcs51_ptrRegReq and mcs51_nRegs
26
27 2006-05-24 Borut Razem <borut.razem AT siol.net>
28
29         * support/regression/tests/bug-221100.c: fixed xdata problem caused by
30           modification of test for the pic16 port, put the array to the code
31           memory for pic16port; thanks to Maarten Brock and Frieder Ferlemann
32
33 2006-05-23 Jesus Calvino-Fraga <jesusc at ece.ubc.ca>
34
35         * src/pic/gen.c: MSC 6 does not have <stdint.h>.  Use pstdint.h instead.
36         * support/Util/pstdint.h: added
37
38 2006-05-22 Borut Razem <borut.razem AT siol.net>
39
40         * src/regression/Makefile: removed bool2.c test, added -q linker option
41         * src/regression/add2.c, src/regression/add3.c, src/regression/bool1.c,
42           src/regression/bool3.c, src/regression/nestfor.c, src/regression/ptrfunc.c,
43           src/regression/compare.c, src/regression/or1.c, src/regression/compare2.c,
44           src/regression/while.c, src/regression/compare3.c, src/regression/compare4.c,
45           src/regression/compare5.c, src/regression/sub2.c, src/regression/rotate1.c,
46           src/regression/rotate2.c, src/regression/rotate3.c, src/regression/rotate4.c,
47           src/regression/switch1.c, src/regression/rotate5.c, src/regression/for.c,
48           src/regression/add.c, src/regression/sub.c, src/regression/call1.c:
49           define SUPPORT_BIT_TYPES 0, removed unused bit variables
50
51 2006-05-22 Raphael Neider <rneider AT web.de>
52
53         * src/pic16/gen.c (pic16_storeForReturn): fragile fix for
54           bug #1492360 (problematic due to generic pointers, see code)
55
56 2006-05-22 Borut Razem <borut.razem AT siol.net>
57
58         * support/regression/ports/pic16/specs.mk: removed stack size linker
59           directive
60         * support/regression/tests/array.c,
61           support/regression/tests/bitopcse.c,
62           support/regression/tests/bug-908454.c,
63           support/regression/tests/malloc.c: modified for pic16 regression test
64         * support/regression/tests/bitfields.c:
65           pic16 - excluded bitfileds of size > 8
66         * support/regression/tests/bp.c: pic16 - reduced data size
67         * support/regression/tests/bug-221100.c: pic16 - reduced data size
68         * support/regression/tests/bug-460010.c:
69           pic16 - used the absolute address the fits in memory
70         * support/regression/tests/bug-716242.c:
71           bug [ 1443651 ] pic 16: redefining symbol that cannot be redefined.
72         * support/regression/tests/float.c:
73           pic16 - excluded - data size too big
74         * support/regression/tests/onebyte.c:
75           pic16 - bug [ 1444425 ] onebyte.c regression tes fails on pic16
76         * support/regression/tests/shifts.c:
77           pic16 - function names probably have to differ in first X characters
78           (gpasm limitation?)
79         * support/regression/tests/staticinit.c:
80           pic16 - excluded some tests due error: no target memory available for
81           section ".idata"
82
83 2006-05-22 Borut Razem <borut.razem AT siol.net>
84
85         * support/Util/dbuf.c: fixed bug #1489008 fix dbuf_c_str(),
86           second try. Thanks Stas Sergeev once more.
87
88 2006-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
89
90         * src/hc08/gen.c (transferAopAop): aop forced to stack was not restored,
91           (genLeftShift, genRightShift): fixed bug 1491627
92         * src/hc08/peeph.def (rules 7, 8.x): added
93         * support/regression/tests/shifts.c (ShiftLeftByParam,
94           ShiftRightByParam, testShiftByParam): added to test variable shifting
95
96 2006-05-20 Raphael Neider <rneider AT web.de>
97
98         * src/pic/gen.c (bitpatternFromVal): fixed for 64-bit machines
99         * src/pic16/ralloc.c (newReg): use correct name in hashtable,
100           (allocReg): add only new registers to dynAllocRegs,
101           (pic16_assignRegisters): do not reset dynrIdx, fixes bugs
102             #1489055, #1445850, and probably #1483693
103
104 2006-05-19 Vangelis Rokas <vrokas AT users.sourceforge.net>
105
106         * src/pic16/glue.c (pic16_emitConfigRegs, pic16_emitIDRegs): fixed
107         bug in for-loop that didn't emit the last of CONFIG and ID registers
108
109 2006-05-18 Maarten Brock <sourceforge.brock AT dse.nl>
110
111         * src/mcs51/gen.c (genCodePointerGet): inc dptr instead of loading acc
112           with offset
113         * src/mcs51/peeph.def (186.x): updated and reenabled to fix bugs
114           1489016, 1434401 and 1490124
115         * src/ds390/peeph.def (186.x, 227.x): updated and reenabled to fix bugs
116           1489016, 1434401 and 1490124
117
118 2006-05-17 Borut Razem <borut.razem AT siol.net>
119
120         * support/Util/dbuf.c: fixed bug #1489008 fix dbuf_c_str(),
121           thanks Stas Sergeev
122
123 2006-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
124
125         * device/include/mcs51/P89c51RD2.h,
126         * device/include/mcs51/P89LPC901.h,
127         * device/include/mcs51/P89LPC922.h,
128         * device/include/mcs51/P89LPC932.h: added, thanks Omar Espinosa
129
130 2006-05-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
131
132         * device/lib/pic16/libsdcc/stack/{stack.S, Makefile.in}: add workaround
133         to fix missing stack pragma in compiled binary object file,
134
135 2006-05-14 Bernhard Held <bernhard AT bernhardheld.de>
136
137         * support/packihx/configure.in,
138         * support/packihx/configure: removed warning, autoconf >= 2.5x can
139         determine sizeof basic types even while cross compiling
140
141 2006-05-13 Bernhard Held <bernhard AT bernhardheld.de>
142
143         * src/avr/gen.c (aopop),
144         * src/ds390/gen.c (aopOp),
145         * src/hc08/gen.c (aopOp),
146         * src/mcs51/gen.c (aopop),
147         * src/pic16/gen.c (pic16_aopOp),
148         * src/pic/gen.c (aopOp),
149         * src/z80/gen.c (aopop): fix for bug #1479882; use new, exclusive asmop
150         if size of operand is smaller than spill location
151
152 2006-05-12 Borut Razem <borut.razem AT siol.net>
153
154         * *.dsw, *.dsp: changed property svn:eol-style to CRLF since they
155           have to have CR/LF line endings even if they are checked out on *nix
156           or on WIN32 in cygwin binmode
157
158 2006-05-12 Maarten Brock <sourceforge.brock AT dse.nl>
159
160         * doc/sdccman.lyx: documented numeric ranges, WEBDOC #1442369
161         * device/include/ds80c390.h: added sfr16 definitions
162         * src/ds390/gen.c,
163         * src/ds390/gen.h,
164         * src/ds390/main.c,
165         * src/ds390/ralloc.c,
166         * src/ds390/ralloc.h: changes all over the place to sync with mcs51
167           fixing several bugs and adding sfr16/sfr32, reentrant bit params,
168           bit returning functions
169         * support/regression/tests/sfr16.c: enabled test on ds390
170
171 2006-05-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
172
173         * src/hc08/gen.c (asmopToBool, genIfx): fix for bug #1429722
174         * src/hc08/gen.c (storeRegToAop): fix for bug #1439894
175
176 2006-05-11 Maarten Brock <sourceforge.brock AT dse.nl>
177
178         * sim/ucsim/sim.src/memcl.h: added get_decoder() to cl_address_space
179         * sim/ucsim/sim.src/mem.cc: implemented cl_address_space::get_decoder,
180           (cl_address_space constructor): removed expensive initialization,
181           (cl_address_space::get_cell): extended for late initialization,
182           (cl_address_space::*): use late initialization,
183           (cl_address_decoder::activate): removed expensive initialization,
184           This reduced regression test running time by 25%
185
186 2006-05-11 Bernhard Held <bernhard AT bernhardheld.de>
187
188         * packihx/,
189         * configure.in,
190         * configure,
191         * sdcc.dsw,
192         * Makefile.bcc,
193         * Makefile.in,
194         * support/packihx/Makefile.in,
195         * support/packihx/clean.mk,
196         * support/packihx/Makefile.bcc,
197         * support/packihx/PackIhx.dsp: moved packihx to support/packihx
198
199 2006-05-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
200
201         * src/SDCCval.c (valNot): fix for regression test failure
202           of not.c on big endian hosts
203
204 2006-05-10 Maarten Brock <sourceforge.brock AT dse.nl>
205
206         * device/inlcude/mcs51/msc1210.h: new, added, thanks Philippe Latu
207
208 2006-05-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
209
210         * device/lib/mcs51/Makefile.in: changed string comparison operator
211           to = for POSIX compliance; == is bash extension
212
213 2006-05-10 Maarten Brock <sourceforge.brock AT dse.nl>
214
215         * device/lib/hc08/_mulint.c: applied patch 1485428, thanks
216           kosmonaut_pirx
217
218 2006-05-09 Vangelis Rokas <vrokas AT users.sourceforge.net>
219
220         * src/pic16/gen.c (pic16_freeAsmop): release any temp registers
221         allocated by aopForSym thus fixing bug #1478657 about failed testfwk.c
222         * src/pic16/main.c (_pic16_keywords): added 'sfr16' keyword,
223         * src/pic16/ralloc.c (pic16_allocWithIdx): also a fix for bug exposed by
224         bug report #1478657,
225
226 2006-05-05 Borut Razem <borut.razem AT siol.net>
227
228         * doc/Makefile.in: remove of WARNINGS and labels.pl immediately after
229           making the html
230
231 2006-05-02 Borut Razem <borut.razem AT siol.net>
232
233         * doc/Makefile.in: removed *.ind dependency since there is no rule to
234           create *.ind, which made make to fail if invoked with -j 2
235
236 2006-05-01 Maarten Brock <sourceforge.brock AT dse.nl>
237
238         * src/SDCCglue.c (emitRegularMap): partial fix for bug 1477149, thanks
239           Hubert Sack for patch 1479782
240
241 2006-05-01 Vangelis Rokas <vrokas AT users.sourceforge.net>
242
243         * src/pic16/glue.c (pic16_printIvalStruct): fixed bug #1445929
244
245 2006-05-01 Raphael Neider <rneider AT web.de>
246
247         * src/pic/device.c (sanitise_processor_name): only remove p(ic) prefix,
248           (create_pic): store only prefix-free device name,
249           (init_pic): check for device names with "16" prefix,
250           (list_valid_pics),
251         * src/pic/device.h (struct PIC_device),
252         * src/pic/main.c (_pic14_genAssemblerPreamble): adapted to single
253             stored device name,
254         * device/include/pic/pic12f{635,675,629,683}.h,
255         * device/lib/pic/libdev/pic12f{635,675,629,683}.c: NEW device libraries
256         * device/lib/pic/libdev/Makefile.in: allow pic12* devices,
257         * device/include/pic/pic16f505.h,
258         * device/lib/pic/libdev/pic16f505.c: removed
259         * device/include/pic/pic14devices.txt: added support for pic12f
260             devices, removed unsupported non 16-bit devices
261             [above changes provided by patch from Zik Saleeba]
262         * src/pic/*, src/pic16/*, device/include/pic16/*,
263           device/lib/pic/**, device/lib/pic16/**: obfuscated email address
264
265 2006-05-01 Borut Razem <borut.razem AT siol.net>
266
267         * configure.in, configure, doc/Makefile.in:
268           sync with nightly build makefile - latex, dvipdf and dvips
269           not needed any more
270
271 2006-04-30 Bernhard Held <bernhard AT bernhardheld.de>
272
273         * support/scripts/sdcc.nsi: removed all Readmes and Makefiles
274         in the library source
275
276 2006-04-30 Maarten Brock <sourceforge.brock AT dse.nl>
277
278         * support/regression/ports/hc08/spec.mk: fixed bug 1478892
279
280 2006-04-28 Raphael Neider <rneider AT web.de>
281
282         * src/pic16/pcode.c (pic16_newpCodeOpLit12),
283         * src/pic16/gen.c (pic16_popGetLit12): NEW, create 12 bit literal,
284           (pic16_loadFSR0): handle 12 bit literals correctly, fixes #1440527
285         * src/pic16/pcode.h: added prototype for pic16_newpCodeOpLit12()
286
287 2006-04-28 Bernhard Held <bernhard AT bernhardheld.de>
288
289         * device/lib/pic/libdev/Makefile.in,
290         * device/lib/hc08/Makefile.in,
291         * device/lib/gbz80/Makefile.in,
292         * device/lib/z80/Makefile.in,
293         * device/lib/ds390/Makefile.in,
294         * device/lib/ds400/Makefile.in: added srcdir to include search path,
295         thanks to Borut for the bug report
296         * configure.in,
297         * configure: always create doc/Makefile independent from --enable-doc
298         * Makefile.in: always install from directory doc independent from
299         --enable-doc
300         * device/lib/pic/Makefile.in: added libdev again, it was erroneously
301         removed
302         * device/lib/pic/libdev/Makefile.in: fixed VPATH build
303         * doc/Makefile.in: install *.txt if present
304         * device/include/Makefile.in (install): added installation of pic/*.inc
305         and pic/*.txt files again, they were erroneously removed
306
307 2006-04-28 Raphael Neider <rneider AT web.de>
308
309         * src/pic/{gen.c,main.h,pcode.c},
310         * src/pic16/{gen.c,pcode.c}: quietened compiler warnings
311             concerning signedness with casts
312
313 2006-04-28 Raphael Neider <rneider AT web.de>
314
315         * src/pic/gen.c (genFunction): set global pic14_hasInterrupt on
316             definition of an interrupt handler,
317         * src/pic/glue.c (pic14_emitInterruptHandler): moved output of
318             interrupt handler stuff from picglue() to separate routine,
319           (picglue): enabled definition of intr handlers in files w/o main()
320
321 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
322
323         * support/librarian/sdcclib.c: moved include <limits.h> up to enable
324           compilation with MSVC 2005 Express Edition (VC8)
325
326 2006-04-26 Bernhard Held <bernhard AT bernhardheld.de>
327
328         * device/lib/Makefile: fixed build of gbz80 lib
329
330 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
331
332         * support/regression/tests/bug-460010.c,
333         * support/regression/tests/bug-524691.c,
334         * support/regression/tests/bug-716242.c: removed conditional defines
335           that are already in testfwk.h
336
337 2006-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
338
339         * src/ds390/gen.c (AccAXRrl1, AccAXLrl1): changed to real rotate by 1,
340           (AccAXRsh1): added, shift right by 1,
341           (AccAXLsh, AccAXRsh, AccAXRshS): updated for AccAXRrl1, AccAXRsh1 and
342            AccAXLrl1
343         * support/regression/tests/rotate.c: use <stdint.h> and enabled ds390
344
345 2006-04-25 Bernhard Held <bernhard AT bernhardheld.de>
346
347         * src/SDCCast.c (decorateType): partial fix for RFE 1475769,
348         remove cast to same type
349         * src/SDCCast.c (decorateType): fix for RFE 1475742,
350         optimize 'ifx (op == 0)' resp. 'ifx (op != 0)'
351         * as/z80/Makefile,
352         * link/z80/Makefile: removed, they have moved to
353         Makefile.in files
354         * configure,
355         * configure.in: replaced duplicate message about ucsim by missing sdcpp
356         * install-sh: fix bug #1204398 by setting umask 0022
357         * device/lib/Makefile: separate build of z80 and gbz80 lib
358
359 2006-04-24 Bernhard Held <bernhard AT bernhardheld.de>
360
361         Enabled VPATH feature: changed nearly all Makefiles (149 files).
362         See sdccman.lyx '2.4.10 VPATH feature' about how to use it.
363
364         One basic decision: e.g. src/clean.mk includes further files. In order
365         to make this work there are two solutions:
366         - rename another dozen clean.mk to clean_in.mk, add srcdir to them and
367           run configure on them. This way they can use
368           'include $(srcdir)/port-clean.mk'
369         - always include clean.mk by the Makefile at the same level. To avoid
370           that `make clean` tries to include and build Makefile.dep the
371           MAKECMDGOALS are examined (see e.g. src/Makefile.in). This has been
372           implemented, because now even `make uninstall` doesn't create
373           Makefile.in. clean.mk could be eliminated by pasting it in
374           Makefile.in.
375
376         * debugger/mcs51/Makefile.in: build own objects from library sources
377         (SLIB, SDCC) in current directory
378
379         * configure, configure.in: renamed --disable-device-lib-build in
380         --disable-device-lib; added --enable-doc, the required tools are
381         searched by configure; added result message; the toolchain for the
382         belonging ports are now only built, if the port is enabled.
383
384         * support/regression/*: all output is written in directory gen, because
385         the fwk and ports directories don't livet in the build tree using vpath
386
387         * doc/sdccman.lyx: renamed --disable-device-lib-build to
388         --disable-device-lib, added --enable-doc, added section VPATH
389
390         * sim/ucsim/configure.in,
391         * sim/ucsim/configure.in: hc08 couldn't be disabled, now hc08 and
392         z80 are enabled by default
393
394 2006-04-24 Raphael Neider <rneider AT web.de>
395
396         * src/pic/device.c (pic14_assignConfigWordValue): remember assignments
397             to config word, "pic14_"-prefixed some extern functions
398           (pic14_emitConfigWord): emit __config directive(s) if assignment to
399             config word has been found
400         * src/pic/device.h: added prototypes
401         * src/pic/pcode.c: added "pic14_"-prefix where needed
402         * src/pic/ralloc.c (IS_CONFIG_ADDRESS,pic14_assignRegisters): cosmetic
403             fixup
404         * src/pic/glue.c (pic14_constructAbsMap): handle assignments to config
405             words,
406           (pic14emitRegularMap): ignore config words,
407           (pic14createInterruptVect): moved generating __config directives away
408           (picglue): have __config directives emitted
409
410 2006-04-24 Borut Razem <borut.razem AT siol.net>
411
412         * doc/Makefile: sync with nightly build makefile
413
414 2006-04-24 Raphael Neider <rneider AT web.de>
415
416         * src/pic/pcoderegs.c (OptimizeRegUsage): do not optimize
417             registers that have not been assigned proper liveranges,
418             fixes #1469504 and #1474602,
419           (pCodeRegOptimizeRegUsage): fixed typo in comment
420
421 2006-04-24 Borut Razem <borut.razem AT siol.net>
422
423         * device/examples/main8051.c: deleted - it was removed from CVS
424           24.mar.2000 and after that modified 18.feb.2001, so it reappered
425           after the transition to Subversion
426         * src/SDCCalloc.h: deleted - it was removed  from CVS
427           3.feb.2001 and after that modified 18.feb.2001, so it reappered
428           after the transition to Subversion
429         * sim/ucsim/cpu.gif, sim/ucsim/interrupt.gif, sim/ucsim/new.gif,
430           sim/ucsim/serial1.gif, sim/ucsim/serial2.gif,
431           sim/ucsim/term_cpuopt.gif, sim/ucsim/timers.gif, sim/ucsim/wins.gif,
432           sim/ucsim/post.jpg, sim/ucsim/UCsim.jpg: corrected
433
434 2006-04-22 Maarten Brock <sourceforge.brock AT dse.nl>
435
436         * as/asx8051.dsp: added mcs51/strcmpi.h
437         * as/hc08/as_hc08.dsp: added asm.h, m6808.h, strcmpi.h
438         * as/hc08/aslink.h: updated lnksect prototype
439         * as/hc08/asm.h,
440         * as/mcs51/asm.h: added a_addr to struct area and s_org to struct sym
441         * as/hc08/asmain.c,
442         * as/mcs51/asmain.c (asmbl): init dot.s_org for S_ORG,
443           (newdot): handle A_ABS
444         * as/hc08/asout.c,
445         * as/mcs51/asout.c (outarea): output address
446         * as/hc08/lkaomf51.c,
447         * as/mcs51/lkaomf51.c: disabled unused array UsageType
448         * as/hc08/m08pst.c,
449         * as/mcs51/i51pst.c,
450         * as/z80/z80pst.c: "ABS" is not A_OVR
451         * as/hc08/lkarea.c (newarea): read a_addr,
452           (lnkarea): added codemap array, sort absolute areas to the front,
453            combine all GSINITx/GSFINAL,
454           (find_empty_space, allocate_space): new functions,
455           (lnksect): return next address, handle absolute sections
456         * as/mcs51/lkarea.c (newarea): read a_addr,
457           lnksect2 prototype changed,
458           (lnkarea2): define codemap unsigned, combine all GSINITx/GSFINAL,
459           (find_empty_space, allocate_space): new, factored out of lnksect2,
460           (lnksect2): return next address, handle absolute sections
461         * as/hc08/lkhead.c,
462         * as/mcs51/lkhead.c (newhead): head is absolute but not overlay
463         * as/hc08/lklibr.c (addfile, fndsym),
464         * as/mcs51/lklibr.c (addfile, buildlibraryindex, fndsym): prevent
465           index out of range and detect both '\' and '/'
466         * device/include/mcs51/c8051f200.h: added _XPAGE, removed bad comment
467         * device/include/stdbool.h: removed SDCC_ds390 from check to pass
468           regression tests (ds390 cannot return bool yet)
469         * doc/sdccman.lyx: changed version number, document changed --no-peep,
470           document critical interrupts on z80, document changed SDCC define
471         * src/asm.c (_asxxxx_mapping): fixed .org directive,
472           (_a390_mapping): added .org directive
473         * src/hc08/gen.c (transferAopAop): made bytemask log to fix warning,
474           (genMultOneByte): fixed warnings
475         * src/hc08/hc08.dsp: lowered warning level to 2 to suppress pedantic
476           ones
477         * src/pic16/device.c: removed newReg prototype, removed BYTE_IN_LONG
478         * src/pic16/gen.c (pic16_popGetLabel): made parameter key signed,
479           (pic16_genLeftShiftLiteral, genRightShiftLiteral): fixed warnings
480         * src/pic16/gen.h: changed prototype for pic16_popGetLabel
481         * src/pic16/main.c: removed newReg prototype
482         * src/pic16/pcode.c,
483         * src/pic16/pcode.h (pic16_emitDB): changed parameter c to int to fix
484           warnings
485         * src/pic16/pic16.dsp: lowered warning level to 2 to suppress pedantic
486           ones
487         * src/pic16/ralloc.c
488         * src/pic16/ralloc.h (newReg): changed type to int and size to unsigned
489           to fix warnings
490         * src/pic/pcode.c (allocInternalRegister): changed parameter optype
491           from short to PIC_OPTYPE
492         * src/pic/pic.dsp: lowered warning level to 2 to suppress pedantic ones
493         * src/pic/ralloc.c (newReg, allocInternalRegister): changed parameter
494           optype from short to PIC_OPTYPE
495         * src/port.h: made int_size unsigned to fix warnings
496         * src/SDCC.y: fixed warning on MSVC
497         * src/SDCCicode.c (getArraySizePtr): return unsigned int
498         * src/SDCCopt.c (convertToFcall): fixed warnings
499         * src/SDCCsymt.h: removed double prototype for genSymName
500         * src/xa51/ralloc.c (allocReg): made size unsigned int, type int and
501           offset int to fix warnings
502
503 2006-04-22 Borut Razem <borut.razem AT siol.net>
504
505         * doc/sdccman.lyx, */Makefile, */Makefile.in:
506           references to CVS replaced with Subversion
507
508 2006-04-21 Borut Razem <borut.razem AT siol.net>
509
510         * doc/sdccman.lyx, */Makefile, */Makefile.in:
511           references to CVS replaced with Subversion
512
513 2006-04-19 Borut Razem <borut.razem AT siol.net>
514
515         * src/version.awk: adapted for svn
516         * /asxxxx/asxhtml/*.gif: set property svn:mime-type to image/gif
517           sim/ucsim/doc/*.gif: set property svn:mime-type to image/gif
518           sim/ucsim/doc/*.jpg: set property svn:mime-type to image/jpeg
519           /binutils-avr/etc/*.vi, *.jin: removed all properties
520           support/scripts/sdcc.ico: set property svn:mime-type to image/x-icon
521
522 2006-04-19 Borut Razem <borut.razem AT siol.net>
523
524         * CVS to Subversion migration completed
525
526 2006-04-18 Borut Razem <borut.razem AT siol.net>
527
528         * support/scripts/sdcc.nsi: removed unexisting ${DEV_ROOT}\lib\pic\*.o,
529           ${DEV_ROOT}\lib\src\pic\libdev\*.S, ${DEV_ROOT}\lib\src\pic\libdev\*.inc
530
531 2006-04-17 Borut Razem <borut.razem AT siol.net>
532
533         * device/include/Makefile.in: added pic/*.inc to the installation
534
535 2006-04-15 Bernhard Held <bernhard AT bernhardheld.de>
536
537         * support/regression/collate-results.py: fixed output in case of
538         a valdiag error
539         * support/regression/generate-cases.py: fixed splitting of pathnames
540         with dots
541         * as/hc08/lklibr.c (addfile),
542         * as/mcs51/lklibr.c (addfile): fixed off-by-one bug
543
544 2006-04-11 Raphael Neider <rneider AT web.de>
545
546         * src/pic16/gen.c (getFreePtr, pic16_popRegFromString),
547         * src/pic16/ralloc.c (pic16_allocregWithName): removed debug output
548         * src/pic16/pcode.c (assignValnums): fixed #1460578
549
550 2006-04-11 Raphael Neider <rneider AT web.de>
551
552         * device/lib/pic/libdev/*.c,
553         * device/include/pic/*.h: replaced sfr and data with __sfr and __data,
554           fixes #1468739, enables compilation in --std-c99 mode
555         * support/scripts/inc2h.pl: emit __sfr/__data instead of sfr/data
556
557 2006-04-11 Raphael Neider <rneider AT web.de>
558
559         * src/pic/device.c (find_device): removed debug output
560           (list_valid_pics): enabled verbose listing of supported devices
561         * device/include/stdbool.h: define bool as char for pic14/16 as well
562
563 2006-04-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
564
565         * src/SDCC.y: allow using brackets here: "__interrupt (1) __using (1)"
566
567 2006-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
568
569         * .version: bumped version to 2.5.6
570         * src/pic/ralloc.c (newReg): MSVC doesn't support __builtin_return_address
571
572 2006-04-06 Raphael Neider <rneider AT web.de>
573
574         * .version: bumped version to 2.5.6 (pic14 ABI changed)
575         * src/SDCCmain.c: add -DSDCC_PROCESSOR=<id> for pic14 port
576         * src/pic/glue.c (emitSymbolToFile,pic14_constructAbsMap,
577           pic14emitRegularMap,pic14emitMaps): moved output for absolute symbols to
578             pic14_constructAbsMap
579           (pic14printPublics): declare absolute global symbols as global
580           (pic14createInterruptVect),
581         * src/pic/ralloc.c (IS_CONFIG_ADDRESS): support second config word,
582           (newReg): assume new registers unused, use correct name in
583             hashtable (reg->name instead of name), more debugLog output
584         * src/pic/device.h (PIC_device): added fields for verbose output
585         * src/pic/device.c: moved device definition to pic14devices.txt,
586             added routines for runtime parsing of pic14devices.txt,
587             added support for second config word
588         * src/pic/main.c (_process_pragma): removed #pragma maxram,
589           (_pic14_keywords): no longer accept "bit" and "sbit" keywords
590           (_pic14_initPaths): add search paths with "pic" suffix (not "pic14")
591           (_pic14_parseOptions): moved pCodeInitRegisters here
592           (_pic14_do_link): add "pic$(ARCH).lib" to linker arguments
593         * src/pic/pcode.c (AnalyzeBanking): bail out on unset processor,
594           (pCodeInitRegisters): rewrapped comments, perpared new approach to
595             handling the pseudo stack
596         * device/lib/Makefile.in: ignore failures in objects-pic16,
597         * device/lib/pic/{configure,configure.in,Makefile}: added libdev/
598         * device/lib/pic/NEWS: document new dependency on picXXX.lib
599         * device/lib/pic/Makefile.subdir,
600         * device/lib/pic16/Makefile.subdir: improved clean rules
601         * device/lib/pic/libdev/: NEW, pic14 device libraries
602         * device/lib/pic/libsdcc/_gptr{get,put}{1,2,3,4}.S: use _X not X
603         * device/lib/pic/libsdcc/macros.inc: use _X not X, declare default SFRs
604         * device/include/Makefile.in: create subdir and install pic14 headers
605         * device/include/pic/p16f_common.inc: removed unused declarations
606         * device/include/pic/pic16*.h: added header files for 100+ 14 bit
607             PICs from inc2h.pl v1.6,
608             replaced BIT_AT macros with struct declarations
609         * device/include/pic/pic14devices.txt: definition of supported devices,
610             all above improvements contributed by Zik Saleeba, thanks
611         * support/scripts/inc2h.pl: removed BIT_AT, replaced with structs
612         * support/scripts/sdcc.nsi: also install pic14 device libraries and
613             headers
614
615 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
616
617         * device/include/mcs51/c8051f410.h: added interrupt numbers,
618         * device/include/mcs51/c8051f200.h: old SiLabs mcu completes the list,
619           thanks to Charles Olds
620
621 2006-04-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
622
623         * debugger/mcs51/cmd.c (infoRegisters): show return address on stack
624
625 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
626
627         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug 1464657
628         * src/mcs51/gen.c (genJumpTab): fixed bug in medium model
629         * support/regression/bug1464657.c: added, new test
630
631 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
632
633         * src/SDCCmain.c (preProcess): implemented RFE 1449908, define SDCC as the
634           version number
635
636 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
637
638         * src/SDCCpeeph.c (initPeepHole): implemented RFE 1460196, when both
639           --no-peep and --peep-file <file> are used don't use default rules but
640           do use the <file>
641
642 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
643
644         * src/mcs51/gen.c (genCall): fixed bug 1457608
645
646 2006-03-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
647
648         * doc/sdccman.lyx: reverted to version 1.129 of december as my latest
649         changes seem to cause (trigger?) problems with the build system.
650
651 2006-03-29 Maarten Brock <sourceforge.brock AT dse.nl>
652
653         * src/SDCCpeeph.c (operandsLiteral): new, added,
654           (callFuncByName): inserted operandsLiteral
655         * src/mcs51/peeph.def: reenabled 132.e, added extra check to 132.x
656
657 2006-03-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
658
659         * doc/sdccman.lyx: added paragraph "Use of SDCC in Education"
660         * src/mcs51/peeph.def: disabled rule 132.e fixing bug #1453093
661
662 2006-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
663
664         * src/z80/gen.c (genFunction, genEndFunction): fixed bug 1160666,
665           implemented patch 1120823 Thanks to Willy De la Court (normal
666           interrupts need an interrupt number now if they are made critical),
667           and enabled nesting of critical functions though not for gbz80
668           (genCritical, genEndCritical): added functions
669           (genZ80Code): added cases for CRITICAL and ENDCRITICAL
670         * src/z80/mappings.i: added "ei" to all mappings
671
672 2006-03-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
673
674         * sim/ucsim/cmd.src/newcmdcl.h: applied patch fixing GCC 4.1 build
675         submitted by the Debian SDCC maintainer Aurelien Jarno:
676         "Credits goes to Martin Michlmayr, who rebuilt the whole Debian
677         archive with gcc 4.1 on mips and wrote the patch"
678
679 2006-03-16 Raphael Neider <rneider AT web.de>
680
681         * src/pic16/genarith.c (genAddLit): simplified and fixed case where
682           the left operand is shorter than the result (c* = lit-c* + int),
683           fixes bug #1450796
684         * src/pic16/gen.c (genRightShift): check IS_SYMOP before accessing
685           OP_SYMBOL
686
687 2006-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
688
689         * src/.version: increased version number to 2.5.5
690         * src/SDCCmain.c (linkEdit): do not test for PIC16 target since, PIC16
691         linking is done manually in pic16 port's _linkEdit,
692         * src/SDCCsymt.c (compStructSize): for target PIC16 and shell variable
693         PIC16_PACKED_BITFIELDS, compact bitfield structures as much as possible,
694         * src/pic16/gen.c (aopForSym): when direct register name is WREG then
695         allocate asmop as AOP_ACC,
696         (aopForRemat): added parameter 'bool result' in function declaration,
697         (pic16_aopGet): return AOP_ACC when accessing WREG,
698         (pic16_popGetTempReg): minor modification,
699         (pic16_popRegFromIdx): first try with 'pic16_regWithIdx' then with
700         'pic16_allocWithIdx',
701         (genPcall): removed ftype, usage of OP_SYM_TYPE asserted error when
702         calling function in absolute addresses,
703         (genAssign): take into account AOP_ACC asmop,
704         * src/pic16/pcode.c (pic16_newpCodeOpReg): minor modifications,
705         * src/pic16/pcoderegs.c: some debug functions and lines added,
706         * src/pic16/ralloc.c (decodeRegType): added but commented out,
707         * (pic16_typeRegWithIdx): search 'pic16_dynInternalRegs' for given
708         register too,
709         * (pic16_findFreeReg, pic16_findFreeRegNext): allocate new register via
710         call to allocReg, not by manually allocating a new one,
711         (pic16_assignRegisters): now before going through the register
712         allocating functions mark all registers as free. This eliminates some
713         side effects resulting from peephole parser done earlier in the backbone
714
715 2006-03-13 Maarten Brock <sourceforge.brock AT dse.nl>
716
717         * src/SDCCicode.c (geniCodeLogic),
718         * src/SDCCast.c (decorateType): applied patch by Bernhard for rfe 1422617
719
720 2006-03-10 Maarten Brock <sourceforge.brock AT dse.nl>
721
722         * src/mcs51/gen.c (sameReg): new, checks if two aop regs are the same,
723           (genSend): bugfix, do not allocate and free twice,
724           (shiftRLong): handle partially overlapping aops
725         * support/regression/tests/bitopcse.c: fixed warning redefined idata
726
727 2006-03-08 Borut Razem <borut.razem AT siol.net>
728
729         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata
730           for pic16
731
732 2006-03-08 Maarten Brock <sourceforge.brock AT dse.nl>
733
734         * support/regression/tests/bug1409955.c: new, added
735         * src/mcs51/gen.h: changed asmop.freed:1 to asmop.allocated for tracking
736         * src/mcs51/gen.c (newAsmop): set asmop.allocated to 1,
737           (aopForSym, aopOp): increment asmop.allocated if reused,
738           (freeAsmop): decrement asmop.allocated and check for zero instead of
739           using asmop.freed,
740           (freeForBranchAsmop): use asmop.allocated instead of asmop.freed,
741           (genNot, genCpl, genUminus, genMinus, genMult, genDiv, genMod, genCmpGt,
742            genCmpLt, genAndOp, genOrOp, genAnd, genOr, genXor, genRRC, genRLC,
743            genGetHbit, genGetAbit, genGetByte, genGetWord, genSwap,
744            genLeftShiftLiteral, genLeftShift, genRightShiftLiteral,
745            genSignedRightShift, genRightShift, genDataPointerGet,
746            genPagedPointerGet, genFarPointerGet, genCodePointerGet,
747            genGenPointerGet, genDataPointerSet, genAssign, genCast): free asmop's
748             in reverse order from allocation,
749           (genPlus, genCmpEq): free asmop's in reverse order from allocation and
750             added swappedLR to keep track
751         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata,
752           pdata & code for GCC, z80, gbz80 & hc08
753         * support/regression/tests/zeropad.c: moved defines to testfwk.h
754
755 2006-03-08 Raphael Neider <rneider AT web.de>
756
757         * src/pic16/main.c (_hasNativeMulFor): fixed bug #1444425
758
759 2006-03-07 Maarten Brock <sourceforge.brock AT dse.nl>
760
761         * device/include/mcs51/c8051f410.h: new SiLabs mcu
762         * src/ds390/peeph.def: disabled 186.d and 227.a as fix for #1434401
763         * support/regression/tests/array.c: added parenthesis, made arrays unsigned
764
765 2006-03-06 Borut Razem <borut.razem AT siol.net>
766
767         * support/regression/ports/pic16/spec.mk: link with libm18f.lib,
768           made the linker quiet
769
770 2006-03-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
771
772         * src/pic16/gen.c (genPcall): fixed bug #1443644
773         * src/pic16/device.h (struct pic16_options_t): added 'int CATregs' flag
774         which dumps before the function entry point a data byte which represents
775         the number of the local variables used by the specified function, added
776         'xinst' for initial support for Extended Instruction Support,
777         * src/pic16/gen.c (aopForSym, pic16_aopGet): beautifications,
778         (pic16_testStackOverflow): do not prefix GSTACK_TEST_NAME with
779         port->fun_prefix anymore (may change later),
780         (genFunction, genEndFunction): do not store/restore local registers for
781         _main (this should take care the --main-return command line option in
782         the future),
783         (genOr): removed some legacy pic-port instructions,
784         * src/pic16/genarith.c (genAddLit): re-enabled old code because
785         performing operations with SFR's causes data to be written more than
786         once to each SFR. Perhaps SFRs should be handled in special cases...
787         * src/pic16/glue.c: macros BIG_ENDIAN and BYTE_IN_LONG are moved to
788         pcode.h
789         * src/pic16/main.c (_process_pragma): stack bound checking did not take
790         into account for stack starting position,
791         (struct OPTIONS pic16_optionsTable): added command line argument
792         --extended or -y for Extended Instruction Support,
793         * src/pic16/ralloc.c (pic16_decodeOp): added case for FUNCTION,
794         (deassignLRs): *** perhaps the most important change, old 'for' code
795         (commented out for reference), didn't account for some registers which
796         were left marked 'not free' after a pointer operation. The change
797         reduces register usage a lot in some cases
798
799 2006-03-04 Borut Razem <borut.razem AT siol.net>
800
801         * support/regression/ports/hc08/spec.mk: remove *.asm in traget
802           _clean
803         * support/regression/tests/bug-524697.c: decreased array size for
804           mcs51 to fit into the internal RAM
805         * support/regression/Makefile.in: a little bit more verbose
806
807 2006-03-03 Borut Razem <borut.razem AT siol.net>
808
809         * support/regression/fwk/lib/testfwk.c,
810           support/regression/fwk/include/testfwk.h: introduced function
811           _prints(), nonrecursive _printn(), call _initEmu() from main()
812         * support/regression/ports/gbz80/support.asm,
813           support/regression/ports/ucz80/support.asm,
814           support/regression/ports/z80/support.asm,
815           support/regression/ports/ds390/support.c,
816           support/regression/ports/hc08/support.c,
817           support/regression/ports/host/support.c,
818           support/regression/ports/mcs51/support.c,
819           support/regression/ports/xa51/support.c: added empty _initEmu()
820           function
821         * support/regression/ports/pic16/gpsim.cmd,
822           support/regression/ports/pic16/spec.mk,
823           support/regression/ports/pic16/support.c,
824           support/regression/Makefile.in: added pic16 regression test
825
826 2006-03-01 Raphael Neider <rneider AT web.de>
827
828         * src/pic16/gen.c (genPcall,pic16_derefPtr,genGenPointerGet,
829           genConstPointerGet): use safe way of generating MOVFF to cover
830             literals as well as registers, fixes bug #1440527
831         * src/pic16/glue.c (pic16_printIvalBitFields): prevent NULL pointer
832             dereference
833           (pic16_printIvalUnion,pic16_isUnion): NEW, handle initialized unions
834             more correctly, fixes bug #1232186
835           (pic16_printIval): use pic16_printIvalUnion() for initialized unions
836         * src/pic16/main.c (_pic16_linkEdit): reorder linker arguments to make
837             gplink guess the correct processor in more cases, applied patch
838             from Till Riedel attached to and fixing bug #1436552
839
840 2006-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
841
842         * support/regression/tests/array.c: added, contains check for #1434401
843         * src/mcs51/peeph.def: disabled 186.d as temporary fix for #1434401
844
845 2006-02-16 Maarten Brock <sourceforge.brock AT dse.nl>
846
847         * device/include/mcs51/at89s8253.h: new, thanks to Krzysztof Polomka
848         * device/include/mcs51/at89S8252.h: fixed, thanks to Krzysztof Polomka
849         * device/include/mcs51/c8051f326.h,
850         * device/include/mcs51/c8051f340.h: new SiLabs mcu's
851         * device/include/mcs51/c8051f000.h,
852         * device/include/mcs51/c8051f018.h,
853         * device/include/mcs51/c8051f020.h: used () with __at, renamed IDLE,STOP to
854           PCON_IDLE,PCON_STOP and added sfr16 definitions
855
856 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
857
858         * src/mcs51/gen.c (genPlus, genMinus, genMult, genGetAbit, genGetByte,
859           genGetWord): fixed bug 1409955
860
861 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
862
863         * device/include/hc08/mc68hc908gp32.h,
864         * device/include/hc08/mc68hc908jb8.h: removed AWUL, added PTA6 & PTA7
865
866 2006-02-13 Maarten Brock <sourceforge.brock AT dse.nl>
867
868         * src/SDCCast.c (constExprValue): return NULL if not a value
869         * src/SDCCglue.c (printIvalArray): fixed bug 1225568
870         * src/hc08/gen.c(genUnpackBits, genUnpackBitsImmed): fixed bug 1019480
871         * support/regression/tests/bitfields.c: enabled signed bitfield for all
872
873 2006-02-13 Borut Razem <borut.razem AT siol.net>
874
875         * src/regression/ptrarg.c: added, fails due to bug #1430967
876         * src/regression/Makefile: ptrarg.c added, ...
877
878 2006-02-12 Maarten Brock <sourceforge.brock AT dse.nl>
879
880         * src/z80/gen.c (genUnpackBits): fixed bug 1019480
881         * support/regression/tests/bitfields.c: enabled signed bitfield for z80
882
883 2006-02-11 Borut Razem <borut.razem AT siol.net>
884
885         * src/SDCCmain.c: Added "sdcc: Calling linker..." if --verbose,
886           print "Processor: xxx" message to stdout only if --verbose
887
888 2006-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
889
890         * src/SDCCglue.c (printIvalStruct): fixed bug 1426356 union initializer
891         * support/regression/tests/bug1426356.c: added
892         * support/regression/tests/bitfields.c: removed 2 tests
893
894 2006-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
895
896         * device/include/mcs51/at89c51snd1c.h: updated comments, see patch 1428901
897         * device/include/mcs51/c8051f330.h,
898         * device/include/mcs51/c8051f350.h: used () with __at, renamed IDLE,STOP to
899           PCON_IDLE,PCON_STOP and added sfr16 definitions
900         * device/lib/_divsint.c,
901         * device/lib/_divuint.c,
902         * device/lib/_divulong.c,
903         * device/lib/_divulong.c: renamed a,b to x,y to avoid confusion, fixed
904           register bank bug for small stackauto
905
906 2006-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
907
908         * support/regression/fwk/lib/timeout.c: include <stdlib.h> for exit()
909
910 2006-02-08 Maarten Brock <sourceforge.brock AT dse.nl>
911
912         * support/regression/ports/mcs51-xstack-auto/spec.mk: forgot -I(...)/mcs51
913         * all.dsp: corrected several bin paths
914         * device/include/mcs51/c8051f120.h,
915         * device/include/mcs51/c8051f300.h,
916         * device/include/mcs51/c8051f310.h: used () with __at and renamed IDLE,STOP
917           to PCON_IDLE,PCON_STOP
918         * device/include/mcs51/c8051f320.h: see above, also added sfr16 definitions
919         * device/lib/printf_large.c (output_float): fixed bug 1388703
920         * support/regression/tests/bug1057979.c: added test for bug 1388703
921
922 2006-02-08 Raphael Neider <rneider AT web.de>
923
924         * src/pic/pcode.c (pciTRIS): fixed typo,
925           (BuildFlow,LinkFlow_pCode): added (disabled) debug output,
926           (LinkFlow): fixed handling of flows that end in a call,
927           (ReuseReg): perform safety check earlier
928         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed
929             to work with flows at the beginning of a pBlock,
930             fixes #1426557 (Symbol not previously defined),
931           (pic14_ReMapLiveRanges): NEW, destroy and rebuild register
932             usage information
933           (RemoveUnusedRegisters): update register usage info
934         * src/pic/ralloc.c (newReg): prevent duplicate registers from being
935             created, reuse existing ones instead
936         * src/pic/gen.c (genPcall): fixed #1424719
937
938 2006-02-07 Bernhard Held <bernhard AT bernhardheld.de>
939
940         * link/z80/lkmain.c,
941         * link/z80/lklex.c,
942         * link/z80/lkdata.c,
943         * link/z80/aslink.h: fixed build on current cygwin:
944         replaced getline() by lk_getline()
945
946 2006-02-01 Borut Razem <borut.razem AT siol.net>
947
948         * src/regression/add.c, src/regression/add2.c, src/regression/add3.c,
949           src/regression/add4.c, src/regression/and1.c, src/regression/and2.c,
950           src/regression/arrays.c, src/regression/b.c, src/regression/bank1.c,
951           src/regression/bool1.c, src/regression/bool2.c,
952           src/regression/bool3.c, src/regression/call1.c,
953           src/regression/compare.c, src/regression/compare10.c,
954           src/regression/compare2.c, src/regression/compare3.c,
955           src/regression/compare4.c, src/regression/compare5.c,
956           src/regression/compare6.c, src/regression/compare7.c,
957           src/regression/compare8.c, src/regression/compare9.c,
958           src/regression/configword.c, src/regression/for.c,
959           src/regression/inline.c, src/regression/mult1.c,
960           src/regression/nestfor.c, src/regression/or1.c,
961           src/regression/pointer1.c, src/regression/ptrfunc.c,
962           src/regression/rotate1.c, src/regression/rotate2.c,
963           src/regression/rotate3.c, src/regression/rotate4.c,
964           src/regression/rotate5.c, src/regression/rotate6.c,
965           src/regression/rotate7.c, src/regression/string1.c,
966           src/regression/struct1.c, src/regression/sub.c,
967           src/regression/sub2.c, src/regression/switch1.c,
968           src/regression/while.c, src/regression/xor.c,
969           src/regression/create_stc, src/regression/simulate,
970           src/regression/rt.sh, src/regression/Makefile: reenabled Scott's PIC14
971           regression tests
972         * src/regression/gpsim_assert.h: added
973
974 2006-01-28 Bernhard Held <bernhard AT bernhardheld.de>
975
976         * src/ds390/gen.c (unsaveRegisters): fixed literal function pointer
977         ((void (code *) (void)) 0) ();
978         * as/hc08/aslex.c,
979         * as/hc08/aslink.h,
980         * as/hc08/asm.h,
981         * as/hc08/asmain.c,
982         * as/hc08/lkdata.c,
983         * as/hc08/lklex.c,
984         * as/hc08/lkmain.c,
985         * as/mcs51/aslex.c,
986         * as/mcs51/aslink.h,
987         * as/mcs51/asm.h,
988         * as/mcs51/asmain.c,
989         * as/mcs51/lkdata.c,
990         * as/mcs51/lklex.c,
991         * as/mcs51/lkmain.c,
992         * as/z80/aslex.c,
993         * as/z80/asm.h,
994         * as/z80/asmain.c: fixed build on current cygwin:
995         replaced getline() by as_getline()
996
997 2006-01-27 Bernhard Held <bernhard AT bernhardheld.de>
998
999         * src/SDCC.y: fixed bug #716242, exchanged pointer and function
1000         declarator in the symbol chain
1001         * src/SDCCsymt.h,
1002         * src/SDCCsymt.c (processFuncPtrArgs): added, removes "(void)"
1003         parameter list for function pointers
1004         * src/SDCCast.c (decorateType): added call of processFuncPtrArgs()
1005         * support/regression/tests/bug-716242.c: added
1006
1007 2006-01-20 Bernhard Held <bernhard AT bernhardheld.de>
1008
1009         * src/SDCCicode.c (geniCodeAdd, geniCodeArray): use char for array
1010         offset if possible
1011         * src/SDCCast.c (getLeftResultType): 255 fits in char, not 256
1012
1013 2006-01-18 Bernhard Held <bernhard AT bernhardheld.de>
1014
1015         * src/SDCCast.c (backPatchLabels): fixed bug #1408066: made it
1016         inifinitely recurseable, added static
1017         * support/regression/tests/bug-1408066.c: added
1018
1019 2006-01-17 Bernhard Held <bernhard AT bernhardheld.de>
1020
1021         * src/SDCCicode.h,
1022         * src/SDCCicode.c (newiTempPreheaderLabel, newiTempLoopHeaderLabel):
1023         renamed, added possibility to create "postLoopLbl"-labels
1024         * src/SDCCBBlock.c (iCodeBreakDown): renamed newiTempPreheaderLabel to
1025         newiTempLoopHeaderLabel
1026         * src/SDCCloop.c (newInduction, newRegion, backEdges, insertIntoLoop,
1027         isNotInBlocks, addToExitsMarkDepth, createLoop, dominatedBy,
1028         addDefInExprs, assignmentsToSym, isOperandInvariant, pointerAssigned,
1029         hasNonPtrUse, loopInvariants, addressTaken, findInduction,
1030         findDefInRegion, mergeRegions, ifMerged, mergeInnerLoops): made static,
1031         (pinduction, pregion, hasIncomingDefs, findLoopEndSeq): disabled,
1032         (basicInduction): fixed bug #136564, made static,
1033         (loopInduction): changed parameter of basicInduction, made static,
1034         (addPostLoopBlock): added
1035         * src/SDCCloop.h: removed backEdges, pregion, pinduction,
1036         loopOptimizations, addressTaken, findDefInRegion, hasIncomingDefs,
1037         findLoopEndSeq
1038         * support/regression/tests/bug-136564.c: added
1039         * support/regression/ports/mcs51-xstack-auto/spec.mk: added
1040         --std-sdcc99 to LIBSDCCFLAGS
1041
1042 2006-01-16 Bernhard Held <bernhard AT bernhardheld.de>
1043
1044         * src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false
1045         while loop
1046         * support/regression/tests/bug-1406131.c: added
1047
1048 2005-12-31 Bernhard Held <bernhard AT bernhardheld.de>
1049
1050         * src/SDCCast.c (decorateType): fix promotion of unary minus
1051         * src/SDCCsymt.c (computeType): beautified
1052         * src/SDCCval.c (cheapestVal): beautified, old non-Ansi version removed,
1053         (valUnaryPM, valComplement): fix sign and promotion,
1054         (valNot): ANSI: result type is int (SDCC: unsigned char)
1055         * support/regression/tests/uminus.c: speedup by removing superflous
1056         test case 'int'
1057         * support/regression/tests/onebyte.c: added promotion and signedness
1058         tests for unary minus
1059         * support/regressions/tests/bug-477927.c: disable warning about
1060         uninitialized variables
1061         * support/regression/tests/not.c: added
1062
1063 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
1064
1065         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
1066         * src/mcs51/gen.c (gen51Code): show final register usage after
1067         fillGaps in asm with --i-code-in-asm
1068         * src/SDCClrange.c (sequenceiCode, setLiveFrom, setLiveTo,
1069         markLiveRanges, markAlive, findNextUseSym, findNextUse, unvisitBlocks,
1070         incUsed, rliveClear, adjustIChain): made static,
1071         (setFromRange): excluded because it's unused,
1072         (findPrevUseSym, markWholeLoop): added,
1073         (findPrevUse): rewritten; fixes bug 895992; now a complete search
1074         through all branches of predecessors enables sdcc to emit the warning
1075         W_LOCAL_NOINIT, marking of outermost loop was incomplete,
1076         (rlivePoint): made static, added parameter emitWarnings which is only
1077         true during the first run out of two,
1078         (findRecursiveSucc, findRecursivePred): removed,
1079         (computeLiveRanges): made static, added parameter emitWarnings,
1080         (dumpIcRlive): added for debugging only
1081         * src/SDCClrange.h: added boolean parameter to computeLiveRanges(),
1082         removed prototype of setFromRange()
1083         * src/SDCCopt.c (eBBlockFromiCode): added new parameter emitWarnings
1084         in call of computeLiveRanges()
1085         * support/regression/tests/bug-895992.c: added
1086         * support/regression/tests/bug-971834.c: added
1087         * support/valdiag/tests/bug-895992.c: added
1088         * support/valdiag/tests/bug-971834.c: added
1089
1090 2005-12-18 Raphael Neider <rneider AT web.de>
1091
1092         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
1093           (genUnpackBits): improved code for direct operands,
1094           (genPackBits): improved code for literal assignment to bitfields
1095             and for direct destination operands (no FSR indirection),
1096             prevented redundant AND, fixes #1362800,
1097           (AccLsh): added parameter to disable masking of the result
1098         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
1099           skip instructions with side-effects (like incfsz),
1100           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
1101         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
1102         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
1103           fixes #1375263
1104
1105 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
1106
1107         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
1108         volatile variables as spill location
1109
1110 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
1111
1112         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
1113         replacing literals
1114         * support/regression/tests/bug-1376320.c: added
1115
1116 2005-12-08 Raphael Neider <rneider AT web.de>
1117
1118         * src/pic/device.c: renamed is_shared to pic14_is_shared
1119         * src/pic/gen.c (genIfx): re-enabled handling of sbits
1120         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
1121           (is_valid_identifier): added for above workaround
1122
1123 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
1124
1125         * device/lib/Makefile.in: fixed to enable port-specific-objects
1126         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
1127           char, thanks Hubert Sack
1128         * doc/sdccman.lyx: documented --xstack-loc,
1129           elaborated a bit more on interrupts and pitfalls,
1130           removed "setjmp/longjmp unsupported",
1131           documented some unsupported C99 features
1132         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
1133         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
1134           if, thanks Hubert Sack
1135         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
1136         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
1137           make make_library
1138         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
1139           regression tests can report resource usage (rfe 700441)
1140         * support/regression/collate-results.py: report resource usage
1141         * support/regression/ports/ds390/spec.mk,
1142         * support/regression/ports/hc08/spec.mk,
1143         * support/regression/ports/mcs51/spec.mk,
1144         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
1145         * support/regression/ports/ds390/uCsim.cmd,
1146         * support/regression/ports/hc08/uCsim.cmd,
1147         * support/regression/ports/mcs51/uCsim.cmd,
1148         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
1149         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
1150           library, use the default one
1151         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
1152           building the library
1153
1154 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
1155
1156         * config.dsp: added dependency on .version and configure_vc.awk
1157         * device/include/setjmp.h: updated for --stack-auto and --xstack
1158         * device/include/mcs51/at89c51snd1c.h: corrected line endings
1159         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
1160         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
1161         * device/lib/libsdcc.lib: added _setjmp
1162         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
1163           (decorateType): fixed bug 1372851,
1164           (optimizeGetHbit): fixed warning
1165         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
1166           array initialisation
1167         * support/regression/tests/bug1057979.c: added test for bug 1358192
1168         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
1169
1170 2005-12-03 Borut Razem <borut.razem AT siol.net>
1171
1172         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
1173           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
1174
1175 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
1176
1177         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
1178         createIval): implement symbol independant "flexible array member",
1179         (createIvalCharPtr): implemented flexible array initialisation with a
1180         string
1181         * src/SDCCsymt.c (copyStruct): removed,
1182         (getSize): fixed misleading comment,
1183         (getAllocSize): removed, the additional allocation size is now in
1184         sym->flexArrayLength,
1185         (checkStructFlexArray): new, syntax checks for flexible array members,
1186         (compStructSize): added syntax checks for "flexible array members"
1187         (copyStruct): removed,
1188         (copyLinkChain): removed inefficient fix for bug 770487
1189         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
1190         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
1191         symbol->flexArrayLength
1192         * src/SDCCerr.c,
1193         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
1194         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
1195         * support/regression/tests/structflexarray.c: added
1196         * support/valdiag/tests/structflexiblearray.c: added
1197
1198 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
1199
1200         * src/SDCCast.c (decorateType): fixed bug 1368489
1201         * support/Util/SDCCerr.c,
1202         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
1203
1204 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1205
1206         * device/include/mcs51/at89c51snd1c.h: added file submitted by
1207           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
1208
1209 2005-11-27 Borut Razem <borut.razem AT siol.net>
1210
1211         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
1212           support/cpp2/mkdeps.h: added command line option
1213           -obj-ext=<extension> to SDCPP to define object file externion, used
1214           for generation of make dependencies (-M)
1215         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
1216
1217 2005-11-26 Borut Razem <borut.razem AT siol.net>
1218
1219         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
1220           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
1221           added pic and pic16 libraries
1222
1223 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1224
1225         * device/include/float.h: Corrected typo in prototype of __fsgt
1226
1227 2005-11-25 Borut Razem <borut.razem AT siol.net>
1228
1229         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
1230           added creation of model-mcs51-stack-auto libraries
1231
1232 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
1233
1234         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
1235         and fields-list too
1236         * src/SDCCast.c (createIvalArray): removed obsolete comment
1237
1238 2005-11-24 Borut Razem <borut.razem AT siol.net>
1239
1240         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
1241           added missing device/lib/mcs51/crt*.asm sources
1242
1243 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
1244
1245         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
1246
1247 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
1248
1249         * device/lib/_fs2schar.c,
1250         * device/lib/_fs2sint.c,
1251         * device/lib/_fs2slong.c: optimized inline asm
1252
1253 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1254
1255         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
1256           Better handling of floats between -1.0 and 0.0.
1257
1258 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1259
1260         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
1261           (the missing "if"s prohibited removal of redundant labels)
1262
1263 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1264
1265         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
1266           Properly convert floats between -1.0 and 0.0 to long, int, and char
1267           types (max integer value of negative floats tends to zero).
1268         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1269           Removed changes made so to work properly with floats between
1270           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
1271           and _fs2char.c
1272
1273 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1274
1275         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
1276         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
1277         (genCast) cosmetic change
1278         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
1279         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
1280         from mcs51
1281         * support/regression/tests/bitfields (testSignedBitfields): added
1282
1283 2005-11-18 Borut Razem <borut.razem AT siol.net>
1284
1285         * sdcc/device/lib/Makefile.in: remove all unnecessary files
1286         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
1287           introduced SILENT option to make building of pic16 libraries less
1288
1289 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1290
1291         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1292           Now they work properly with floats between -1.0 and 0.0
1293         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
1294
1295 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
1296
1297         * src/SDCCicode.c (printOperand): added missing else
1298
1299 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1300
1301         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
1302         reformatted for better readability
1303         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
1304         signed bitfields
1305
1306 2005-11-17 Borut Razem <borut.razem AT siol.net>
1307
1308         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
1309           introduced SILENT option to make building of pic16 libraries less
1310           verbose - used for nightly snapshot build
1311         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
1312           available on Win32 platforms.
1313         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
1314           medium, large, pic and pic16
1315
1316 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1317
1318         * device/lib/printf_large.c: Temporary patch for bug 1358192:
1319           printf("%f"...) sets fraction to zero.
1320
1321 2005-11-16 Raphael Neider <rneider AT web.de>
1322
1323         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
1324           fixes #1357221
1325         * src/pic/gen.c (genIfx): implemented for CARRY bit
1326         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
1327           to generic pointers, fixes #1357332,
1328           (pic16_movLit2f): NEW,
1329           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
1330
1331 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
1332
1333         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
1334
1335 2005-11-11 Raphael Neider <rneider AT web.de>
1336
1337         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
1338         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
1339           compute pointer's type from operand,
1340           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
1341           improved single bit reads, fixes bug #1353379
1342
1343 2005-11-09 Borut Razem <borut.razem AT siol.net>
1344
1345         * support/scripts/sdcc.nsi: added lib/pic to the package
1346
1347 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
1348
1349         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
1350
1351 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
1352
1353         * support/regression/tests/bug1348008.c: added
1354         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
1355         * support/regression/tests/bug1337835.c: updated comment
1356
1357 2005-11-06 Borut Razem <borut.razem AT siol.net>
1358
1359         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1360           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1361           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1362           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1363           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
1364           dynamic construction of cl_error_class and derivates - 2.nd try
1365
1366 2005-11-05 Borut Razem <borut.razem AT siol.net>
1367
1368         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
1369           bug, which caused Bus Errors on sparc solaris
1370
1371 2005-11-04 Borut Razem <borut.razem AT siol.net>
1372
1373         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1374           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1375           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1376           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1377           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
1378           and derivates to resolve the initialization problem on OSX
1379
1380 2005-11-02 Borut Razem <borut.razem AT siol.net>
1381
1382         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1383           corrected typo - #include <winsock2.h>
1384
1385 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
1386
1387         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
1388           (_asxxxx_mapping): added org directive for future enhancements
1389
1390 2005-11-01 Borut Razem <borut.razem AT siol.net>
1391
1392         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1393           enabled sockets on WIN32
1394         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
1395
1396 2005-10-31 Borut Razem <borut.razem AT siol.net>
1397
1398         * support/regression/generate-cases.py: escape backslashes in {testcase}:
1399           WIN32 backslash path delimiters should be escaped when used in C strings
1400         * support/regression/tests/bitfields.c: exclude failing assertions for
1401           __CYGWIN32__ and __MINGW32__ hosts
1402
1403 2005-10-30 Borut Razem <borut.razem AT siol.net>
1404
1405         * src/SDCCutil.c: corrected double comparison typo
1406
1407 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
1408
1409         * device/lib/medium/Makefile: added for new memory model medium
1410         * device/include/asm/mcs51/features.h: updated for medium/pdata
1411         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
1412           added Multiply & Accumulate sbit's and MAC0_PAGE define
1413         * device/include/mcs51/c8051f300.h: added sfr16 definitions
1414         * device/include/mcs51/c8051f310.h: added sfr16 definitions
1415         * device/lib/_mullong.c: update for medium model
1416         * device/lib/incl.mk: added medium model
1417         * doc/sdccman.lyx: documented medium model
1418         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
1419         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
1420         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
1421         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
1422           (allocParms): set SCLS and OCLS to pdata for medium model
1423         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
1424           for pdata,
1425           (powof2): return <0 if not power of 2
1426         * src/avr/gen.c (genBitWise): use updated powof2
1427         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
1428           (shiftR2Left2Result): small optimization in setup, save acc when storing,
1429           (shiftLLeftOrResult): use B if necessary
1430         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
1431         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
1432         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
1433         * support/regression/Makefile.in: added test-mcs51-medium
1434         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
1435
1436 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
1437
1438         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
1439         specifier unsigned
1440         * device/lib/time.c (mktime): fixed bug 1334315
1441
1442 2005-10-28 Raphael Neider <rneider AT web.de>
1443
1444         * device/include/pic/p16f_common.inc: added common declarations
1445         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
1446
1447 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1448
1449         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
1450           (aopPutUsesAcc): added to predict accumulator use,
1451           (assignResultValue): save acc if necessary,
1452           (genMinusDec): store result if indirectly addressed,
1453           (genDivOneByte):  save acc if necessary,
1454           (movLeft2Result): bugfix if left already in acc,
1455           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
1456             attention to accumulator use (esp. pdata),
1457           (genReceive): receive pdata correctly
1458         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
1459         * src/SDCCicode.h: added isOperandInPagedSpace prototype
1460
1461 2005-10-27 Raphael Neider <rneider AT web.de>
1462
1463         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
1464
1465 2005-10-27 Raphael Neider <rneider AT web.de>
1466
1467         * .version: changed version to 2.5.4
1468         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
1469         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
1470           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
1471             arithmetics support routines
1472         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
1473         * device/lib/Makefile.in: also create installdir for pic
1474
1475         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
1476           pic14 port as well
1477         * src/pic/device.c (dump_sfr): rewritten to delegate register
1478           placement to the linker (use `extern sym' rather than sym EQU addr),
1479           (validAddress): fixed to check last specified address
1480         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
1481           (popGetLit): truncate literal value to 8 bit,
1482           (popGet): moved assert to more appropriate place
1483           (popGetExternal): create pCode operand from and mark the according
1484             symbol as being `extern'
1485           (popGetAddr): added sanity check on immediate's offset, provide
1486             GPOINTER tag on demand
1487           (aopPut): fixed for immediates,
1488           (mov2w_op): move operand's address or contents to WREG (depending on
1489             operand type), safer variant of mov2w,
1490           (movwf,call_libraryfunc): NEW, handy abbreviations,
1491           (get_argument_pcop,get_return_val_pcop,pass_argument,
1492           get_returnvalue): interface for accessing function parameters and
1493             return values,
1494           (assignResultValuei,genRet): use new parameter/return value interface
1495           (pic14_getDataSize): back to old version handling generic pointers,
1496           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
1497             provided implementation and/or fixed old one,
1498           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
1499             calls, removed legacy 8051 reference code
1500           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
1501           (loadSignToC): NEW, move the operands sign bit to CARRY,
1502           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
1503             genRightShiftSigned, accepts negative shift counts,
1504           (setup_fsr): load FSR and adjust IRP (indirect memory access),
1505           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
1506             generic pointers, __data pointers and __code pointers,
1507           (genUnpackBits,genPackBits): rewritten to work with generic pointers
1508             and signed bitfields, limit bitfields to 8 bit,
1509           (genDataPointerGet): fixed number of bytes read,
1510           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
1511           (genPointerGet,genPointerSet): fixed handling of __code pointers,
1512             pointers to constant data are no longer assumed to point to __code
1513             space, removed invalid pointer types,
1514           (bitpatternFromVal): retrieve the PICs representation of an integer
1515             or float literal,
1516           (genDataPointerSet): fixed assigning to po_immediate operands,
1517           (genGenPointerSet): implemented as library call,
1518           (genIfx): fixed incorrect condition,
1519           (genAddrOf): limit generic pointers' addresses to 2 bytes,
1520             provide GPOINTER tag according to destination's storage class,
1521           (genCast): added code to handle casting to generic pointers, added
1522             sign-/zero extension of the result
1523           (aop_isLitLike,op_isLitLike): fixed handling of immediates
1524         * src/pic/gen.h: added macros to access IRP bit in STATUS register
1525         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
1526           extend the result
1527         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
1528           address/register resides in the shared banks
1529           (emitSymbolToFile): improved to handle global and `pinned' symbols,
1530             put all variables into separate sections (have the linker arrange
1531             them)
1532           (picglue): put init code and interrupt handlers in separate sections
1533         * src/pic/main.c: added port specific options table, modified to PORT
1534           structure to make GPOINTERs 3 byte, added pic14_options
1535           (_pic14_do_link): private linking routine (update paths to libraries,
1536             add libsdcc.lib by default)
1537         * src/pic/main.h: declare pic14_options
1538         * src/pic/pcode.c: fixed instructions i/o relations,
1539           (RegCond): reverted to correct version,
1540           (newpCodeOpLit): truncate literals to 8 bit,
1541           (genericPrint): added debug output,
1542           (getRegFromInstruction): fixed for various operand types, simplified
1543           (BuildFlow): fixed broken handling of isntructions with labels
1544           (LinkFlow): start at last instruction in flow (skip trailing comments),
1545             pass the flow on to the next instruction after CALL
1546           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
1547           (insertPCodeInstruction): fixed inserting after a skip instruction,
1548           (DoBankSelect): fixed for labeled instructions
1549           (OptimizepBlock): honor --nopeep switch
1550           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
1551         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
1552         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
1553           (pCodeOptime2pCodes): allow disabling this optimization via
1554             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
1555             but is still buggy), started implementation of a dataflow based
1556             pCode optimization (CSE + dead code elimination)
1557           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
1558         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
1559           names are independant of the stack location and therefore portable across
1560           devices
1561
1562 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1563
1564         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
1565           (selectSpil): fixed bug 1337835 by not spilling bit variables
1566         * support/regression/tests/bug1337835.c: added test for this bug
1567         * src/mcs51/peeph.def: restart after rule 3.c,
1568           addded rules 263.x to optimize loading constants
1569
1570 2005-10-26 Raphael Neider <rneider AT web.de>
1571
1572         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
1573         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
1574           (genAssign): emit warning when casting literals to generic pointer
1575             type, also applies when taking the address of a fixed variable,
1576           (genCast): improved casting to generic pointers
1577         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
1578           extern variables, added verbose error message
1579         * device/include/pic16/{string.h,errno.h}: added #pragma library c
1580
1581 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
1582
1583         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
1584         carry must be complemented too
1585         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
1586         could be emitted by genMinus
1587         * src/SDCCval.c (constVal): fixed bug 1305065
1588
1589 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
1590
1591         * src/SDCCast.c (addCast): added promotion for bit variables
1592         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
1593         promotion casts + optimisation
1594         (optimizeGetWord): fix warning 'i' might be used uninitialized
1595         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
1596         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
1597
1598 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
1599
1600         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
1601         all chars are promoted to int; promotion should be handled in SDCCast.c
1602
1603 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1604
1605         * device/lib/_strcmp.c: Fixed bug 1326457
1606
1607 2005-10-11 Raphael Neider <rneider AT web.de>
1608
1609         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
1610         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
1611
1612 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
1613
1614         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
1615         * support/regression/tests/sfr16.c: added test for the sfr32 bug
1616
1617 2005-10-04 Raphael Neider <rneider AT web.de>
1618
1619         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
1620           device/lib/pic16/pics.all: added pic18f1320
1621         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
1622
1623 2005-09-30 Raphael Neider <rneider AT web.de>
1624
1625         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
1626         * src/pic16/devices.inc: NEW, provides device descriptions
1627         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
1628
1629 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
1630
1631         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
1632           GETHBIT
1633
1634 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
1635
1636         * doc/sdccman.lyx: updated Highest Order Bit documentation,
1637           documented Any Order Bit, Higher Order Byte and Higher Order Word
1638         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
1639         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
1640           (optimizeGetAbit): new, to get any bit, not only the high bit,
1641           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
1642           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
1643           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
1644           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
1645             RIGHT_OP: also try GETBYTE, GETWORD optimization,
1646             GETABIT, GETBYTE, GETWORD: decorate them,
1647           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
1648           (ast_print): added GETABIT, GETBYTE, GETWORD
1649         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
1650         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
1651           (geniCodeBinary): new generic binary icode,
1652           (ast2iCode): added GETABIT, GETBYTE, GETWORD
1653         * src/port.h: updated comment for PORT.hasExtBitOp
1654         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
1655           (genGetByte): new, to get a single byte,
1656           (genGetWord): new, to get a word from a long,
1657           (gen51Code): added GETABIT, GETBYTE, GETWORD
1658         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
1659
1660 2005-09-23 Raphael Neider <rneider AT web.de>
1661
1662         * configure.in, configure: have device/lib/pic configured
1663         * device/lib/Makefile.in: added model-pic14
1664         * device/lib/clean.mk: added pic/ to clean rule
1665         * device/lib/pic: added rudimentary pic14 library providing support
1666           functions for multiplication/division/generic pointer access
1667         * src/SDCCopt.c (convilong): mark support functions as extern
1668           for pic14 port as well
1669         * src/pic/gen.c (genMult): added assertions,
1670           (genpic14Code): emit warning on unhandled iCodes
1671         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
1672         * src/pic/pcode.c (pCodeOpCopy),
1673         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
1674           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
1675           SFR_REGISTER}), made safe for future extensions
1676         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
1677           instructions even if preceeded by SKIP instructions (also remove
1678           them); removed unused code
1679         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
1680           prevents leaving parts of the structure uninitialized after copying
1681
1682 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
1683
1684         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
1685           ago by me
1686         * support/regression/tests/addsub.c: added test for the bug
1687
1688 2005-09-21 Raphael Neider <rneider AT web.de>
1689
1690         * device/include/pic16/pic18f1220.h,
1691           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
1692         * device/lib/pic16/Makefile.rules: added missing opening paren
1693         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
1694           are provided in genutils.c,
1695           (genUminusFloat,genUminus,genCmpEq): added asserts on different
1696           operand/result sizes,
1697           (genCmp): assert on NULL pointers first, then check deref'ed values
1698         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
1699           result size
1700
1701 2005-09-18 Raphael Neider <rneider AT web.de>
1702
1703         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
1704           as these are now unused,
1705           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
1706         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
1707           local, avoids uninitialized pointer dereference on r->name
1708         * src/pic16/ralloc.c (newReg): fixed indentation
1709
1710 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
1711
1712         * src/SDCCval.c (constVal): fixed bug 730366
1713         * support/Util/SDCCerr.c,
1714         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
1715
1716 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
1717
1718         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
1719
1720 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
1721
1722         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
1723
1724 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
1725
1726         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
1727           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1728         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
1729           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1730         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
1731         * packihx/packihx.c (hexDigit): made c unsigned char
1732         * as/mcs51/lklibr.c (fndsym),
1733         * link/z80/lkgb.c (gb),
1734         * link/z80/lklibr.c (fndsym),
1735         * link/z80/lkrloc.c (relr),
1736         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
1737         * src/SDCC.lex (checkCurrFile, process_pragma),
1738         * src/SDCCglue.c (spacesToUnderscores),
1739         * src/SDCCmain.c (setParseWithComma, processFile),
1740         * src/asm.c (tvsprintf, printCLine),
1741         * src/avr/gen.c (emitcode, aopPut),
1742         * src/ds390/gen.c (emitcode),
1743         * src/hc08/gen.c (emitcode, emitinline),
1744         * src/mcs51/gen.c (emitcode, genInline),
1745         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1746           tokenizeLineNode),
1747         * src/pic/ralloc.c (debugLog),
1748         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1749           tokenizeLineNode),
1750         * src/pic16/ralloc.c (debugLog),
1751         * src/z80/main.c (_process_pragma):
1752            made all ctype.h function calls safe
1753         * src/SDCCopt.c: include math.h for fabs
1754         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
1755           and used them throughout the code to make ctype.h function calls safe
1756         * src/ds390/main.c (asmLineNodeFromLineNode),
1757         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
1758         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
1759            unsigned char*
1760         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
1761           (newpCodeAsmDir): made ctype.h function calls safe
1762         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
1763           pic16_emitcode):  made lbp unsigned char*
1764         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
1765           (pic16_newpCodeAsmDir): made ctype.h function calls safe
1766         * src/xa51/gen.c (emitcode),
1767         * src/z80/gen.c (_emit2): made lbp unsigned char*
1768         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
1769            char*
1770
1771 2005-09-05 Raphael Neider <rneider AT web.de>
1772
1773         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
1774           access bank splitpoint
1775
1776 2005-09-05 Raphael Neider <rneider AT web.de>
1777
1778         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
1779
1780 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
1781
1782         * .version: changed to version 2.5.3
1783         * doc/sdccman.lyx: changed version to 2.5.3,
1784           documented --codeseg and --constseg and pragma codeseg and constseg,
1785           documented bit parameters (reentrant) and bit returning
1786         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
1787            currFunc->recvSize, but is this ok for all ports?
1788           (ast2iCode): result of ~ on unsigned char must be cast to int for
1789            bool to work
1790         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
1791           function pointers in bit space
1792         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
1793           (processFuncArgs): call port.reg_parm() with reentrancy info
1794         * src/port.h,
1795         * src/avr/main.c,
1796         * src/ds390/main.c,
1797         * src/hc08/main.c,
1798         * src/pic/main.c,
1799         * src/pic16/main.c,
1800         * src/xa51/main.c,
1801         * src/z80/main.c: port.reg_parm prototype extended with
1802           "bool reentrant" parameter
1803         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
1804           options.stackAuto for allocating bit register parameters
1805         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
1806           (genSend): set BitBankUsed if it is,
1807           (selectRegBank): factored out of genCall for use in genPcall,
1808           (genCall): removed redundant dtype assignmen, use selectRegBank,
1809           (genPcall): handle returning in Carry properly, save in F0 if needed,
1810           (genReceive): handle bit register parameters
1811         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
1812           (mcs51_assignRegisters): enable bit registers for all reentrant
1813            functions and don't set BitBankUsed unconditionally
1814         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
1815         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
1816         * support/regression/tests/funptrs.c: added tests for BOOL and for return
1817
1818 2005-08-27 Borut Razem <borut.razem AT siol.net>
1819
1820         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
1821         ppc-osx (Darwin) does not support -u option. It seems that it is
1822         supported only on Linux - GNU cp
1823
1824 2005-08-25 Borut Razem <borut.razem AT siol.net>
1825
1826         * sim/ucsim/gui.src/serio.src/Makefile.in,
1827           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
1828           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1829           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
1830           install and strip, since the strip at /usr/ccs/bin should be used
1831           on solaris
1832
1833 2005-08-24 Borut Razem <borut.razem AT siol.net>
1834
1835         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
1836
1837 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
1838
1839         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
1840         ffffffffu
1841
1842 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
1843
1844         * as/mcs51/aslink.h: completed lkrloc.c prototypes
1845         * as/mcs51/lkmain.c (link_main): fixed warning
1846         * device/include/stdbool.h: ds390 has no advanced bit support yet
1847         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
1848         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
1849         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
1850           and updated their macros
1851         * src/SDCCval.c (constVal): updated comment for renamed b_long
1852
1853 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
1854
1855         * as/mcs51/asdata.c: changed ctype['['] to BINOP
1856         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
1857           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
1858           (oprio): set priority for '['
1859         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
1860            and adb_24_bit
1861         * as/mcs51/asm.h: added defines R_BIT and S_BIT
1862         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
1863         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
1864         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
1865           added overlayable BIT_BANK area
1866         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
1867           (summary2): explain 'T' in legenda
1868         * as/mcs51/lkrloc.c: replaced old K&R style,
1869           (relr): added R_BIT processing,
1870           (errmsg): added "Bit-addressable relocation error",
1871           (adb_bit): added for converting from byte- to bit-addressable space,
1872           (adb_24_bit): added for converting from byte- to bit-addressable space
1873         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
1874            used in reentrant functions now even as return value
1875         * device/lib/_gptrput.c (_gptrput): removed obsolete code
1876         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
1877           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
1878         * src/SDCCglobl.h: added indicator BitBankUsed
1879         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
1880            the bit registers b0-b7
1881         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
1882           (geniCodeCast): fixed bug 1263853,
1883           (geniCodeLogicAndOr): put result in bool or char,
1884           (geniCodeReceive): added parameter func for accessing the return type,
1885           (geniCodeFunctionBody): pass func to geniCodeReceive
1886         * src/SDCCmain.c: added indicator BitBankUsed
1887         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
1888         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
1889           (checkSClass): don't put automatic bool/bit on stack,
1890           (checkFunction): removed check on function cannot return bit
1891         * src/SDCCsymt.h: added newBoolLink prototype
1892         * src/mcs51/gen.c (rb1regs): added bit registers,
1893           (movc): created for assigning to carry,
1894           (pushReg, popReg): created for pushing registers,
1895           (sameRegs): check both AOP_REG and AOP_CRY types,
1896           (aopOp): handle bit registers,
1897           (aopPut): optimization no self-assign,
1898           (saveRegisters): push reg->base (bits) only once for bit registers,
1899            and use pushReg,
1900           (unsaveRegisters): pop reg->base only once and use popReg,
1901           (assignResultValue): added parameter func and return in carry for bits,
1902           (genIpush): optimization no reload in A if not changed,
1903           (genSend): bit parameters in reentrant functions are passed in bit
1904            registers by first assigning to bits in B, then save registers and
1905            copy B to bits,
1906           (genCall): handle returning in Carry properly, save it in F0 if needed,
1907           (genPcall): updated assignResultValue call, this is not safe yet for bit
1908            returning function !!!
1909           (genFunction): don't generate equ's for bit registers and use pushReg,
1910           (genEndFunction): take care of bit returning functions and use popReg,
1911           (genRet): return bit in Carry,
1912           (genIfx): optimize bit registers and other directly addressable bits,
1913           (genReceive): updated assignResultValue call
1914         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
1915           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
1916            registers when using stack-auto
1917         * src/mcs51/ralloc.c (_G): added allBitregs,
1918           (regs8051): added the bit registers,
1919           (createStackSpil): use macro IS_BIT,
1920           (getRegBit): added to allocate a bit register, else spill,
1921           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
1922           (updateRegUsage): factored out to ease stepping while debugging,
1923           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
1924            also allocate bit registers,
1925           (fillGaps): handle bit registers,
1926           (findAllBitregs): added to create bit vector with all bit registers,
1927           (mcs51_allBitregs): returns this bit vector,
1928           (mcs51_assignRegisters): when using stack-auto use bit registers for
1929            passing parameters and creating local variables
1930         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
1931
1932 2005-08-22 Borut Razem <borut.razem AT siol.net>
1933
1934         * device/lib/Makefile.in: replaced find option -or with -o
1935           to make it run on solaris
1936
1937 2005-08-22 Raphael Neider <rneider AT web.de>
1938
1939         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
1940           fixes #1265442 (crash on Solaris)
1941
1942 2005-08-20 Borut Razem <borut.razem AT siol.net>
1943
1944         * configure, configure.in: added tests for libsocket and libnsl libraries,
1945           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
1946           from support/regression/Makefile.in
1947         * support/regression/Makefile.in: added
1948         * device/lib/pic16/Makefile.common.in: force make to use bash shell
1949         * sim/ucsim/libtool: regenerated on sparc-solaris
1950         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1951           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
1952           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
1953           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
1954           sparc-solaris, which doesn't use GNU ld linker
1955         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
1956         * as/Makefile: find on sparc-solaris does not support -maxdepth option
1957
1958 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
1959
1960         * src/mcs51/peeph.def: updated comments
1961
1962 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1963
1964         * device/lib/_gptrget.c,
1965         * device/lib/_gptrput.c: slightly shorter
1966         * doc/sdccman.lyx: incremented version
1967         * src/mcs51/peeph.def: moved peephole comments to the line of first
1968           change to better keep line correlation, reanimated 186.e
1969         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
1970
1971 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
1972
1973         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
1974           David Saxton with quotes around file name.
1975
1976 2005-08-15 Borut Razem <borut.razem AT siol.net>
1977
1978         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
1979           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
1980           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
1981           make tests run on x86_64 platform
1982
1983 2005-08-13 Raphael Neider <rneider AT web.de>
1984
1985         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
1986           as it might be executed DURING a build (parallel make is wonderful)
1987
1988 2005-08-13 Raphael Neider <rneider AT web.de>
1989
1990         * device/lib/Makefile.in (port-specific-objects-pic16):
1991           revert to cp $(PORT)/bin/*.* $(PORTDIR)
1992         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
1993           dependency
1994         * device/lib/pic16/Makefile.rules: build subdirs before creating
1995           the library, removed builddir rule, create $(builddir) early in
1996           recurse rule, use empty recurse rule for leaf directories
1997         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
1998           mkdir errors (race condition), removed duplicate suffix "hex"
1999           from clean rules
2000         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
2001         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
2002           prevents mkdir -p from aborting on Alpha
2003
2004 2005-08-12 Raphael Neider <rneider AT web.de>
2005
2006         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
2007           db-statements in order to allow for arrays of pointers in code
2008           sections to be placed without interspersed 0-padding, fixes
2009           bug #1256215
2010         * (emitStatistics): fixed division by zero for pic18f1220
2011         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
2012           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
2013         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
2014         * (pic16_pCodeConstString): keep track of already emitted string
2015           literals to prevent "duplicate definitions of symbol _str_NR"
2016         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
2017           debug message
2018         * device/lib/Makefile.in: ignore failing PIC16 library builds
2019         * device/lib/pic16/Makefile: do not build if gputils are missing
2020         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
2021
2022 2005-08-10 Raphael Neider <rneider AT web.de>
2023
2024         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
2025           my last commit)
2026
2027 2005-08-10 Raphael Neider <rneider AT web.de>
2028
2029         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
2030           Rokas' patch to add the new fixed point type "__fixed16x16"
2031         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
2032           functions for __fixed16x16 arithmetics
2033         * device/lib/pic16: reimplemented the build system to support
2034           a separate build directory, better handling of libio (create
2035           the library in a separate subdir for each architecture) and
2036           easier configuration (centralized in Makefile.common)
2037
2038 2005-08-07 Raphael Neider <rneider AT web.de>
2039
2040         * src/pic16/gen.c (genrshTwo): fixed sign extension
2041         * src/pic16/device.c: added pic18f2320, 4220 and 4320
2042         * device/include/pic16/pic18f2220.h: changed some bit definitions,
2043           added T0CONbits
2044         * device/include/pic16/pic18f4220.h: NEW, header for
2045           pic18f4220 and pic18f4320
2046         * device/include/pic16/pic18fregs.h: added new devices,
2047           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
2048         * device/include/pic16/signal.h: resolved name clashes
2049           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
2050           to also allow testing for interrupt enable bits, added
2051           comments on how to use the macros
2052         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
2053         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
2054           register definitions for the devices
2055         * device/lib/pic16/pics.all: added new devices
2056         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
2057           allocated memory
2058         * device/lib/pic16/libc/stdlib/memfree: do not count
2059           the block header as free memory
2060         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
2061           simplified and added missing end-of-blocklist-marker
2062           (reported by Peter Onion, fixes #1252814)
2063         * (_mergeHeapBlock): fixed loop condition
2064         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
2065           len==0, restructured code
2066         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
2067           up a bit, reduced bitfield accesses, prevent endless loops
2068           in case of heap corruption
2069         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
2070           "unreferenced arguments/must return a value" warnings
2071         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
2072           replaced BAUDREG with SPBRG
2073         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
2074           device/lib/pic16/debug/gstack/gstack.c: replaced
2075           _naked, _asm, _endasm with __naked, __asm, __endasm
2076
2077 2005-08-05 Raphael Neider <rneider AT web.de>
2078
2079         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
2080           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
2081
2082 2005-08-05 Borut Razem <borut.razem AT siol.net>
2083
2084         * device/lib/Makefile.in: added missing ';'
2085         * configure: removed ^M characters
2086
2087 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2088
2089         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
2090           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
2091           License
2092
2093 2005-08-04 Borut Razem <borut.razem AT siol.net>
2094
2095         * configure.in: pic16 libraries build 2nd try - enable running
2096           configure in device/lib/pic16
2097         * configure: regenerated from configure.in
2098         * device/lib/Makefile.in: create $(PORT)/bin directory
2099
2100 2005-08-03 Raphael Neider <rneider AT web.de>
2101
2102         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
2103           to get/set values via pointers
2104         * (genUnpackBits,genPackBits): changed detection of
2105           ptr->bitfield vs. sym.bitfield, fixed access via generic
2106           pointers, removed dead (wrong) code for multibyte bitfields
2107         * (genNearPointerGet, genGenPointerGet): removed useless code,
2108           fixed bitfield detection, fixes #1250594
2109         * (genNearPointerSet): removed useless code
2110         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
2111           and introduced macro pic16_emitpcode that conditionally emits
2112           the origin of the following pCode (useful for debugging SDCC)
2113         * src/pic16/pcode.c: changed (and disabled) some debug outputs
2114         * (createDefmap): fixed handling of LFSR for --optimize-df
2115
2116 2005-08-02 Borut Razem <borut.razem AT siol.net>
2117
2118         * device/lib/Makefile.in: pic16 libraries build enabled since
2119           gputils-0.13.2 are now localy installed at sourceforge's compile farm
2120
2121 2005-08-02 Raphael Neider <rneider AT web.de>
2122
2123         * src/pic16/gen.c (genPackBits): removed deprecated warning
2124         * (genGenPointerSet): fixed bitfield detection
2125
2126 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2127
2128         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
2129
2130 2005-07-31 Raphael Neider <rneider AT web.de>
2131
2132         * device/lib/pic16/libdev/pic18f458.c,
2133           device/include/pic16/pic18f458.h: added missing T0CONbits
2134
2135 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
2136
2137         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
2138
2139 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
2140
2141         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
2142
2143 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2144
2145         * device/include/mcs51/at89c51ed2.h: added.
2146
2147 2005-07-23 Raphael Neider <rneider AT web.de>
2148
2149         * src/pic/gen.h: added emitpcode macro for debugging
2150         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
2151           and replace by macro adding debug information on demand
2152         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
2153         * (gencjne): tried to fix; replaced with correct (slower) code
2154         * (gen{Unp,P}ackBits): fixed single bit access
2155         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
2156         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
2157           previous instruction
2158         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
2159           register has to be handled with care (forbidding movement
2160           of assignments/uses, removing assignments completely, ...)
2161         * (pCodeOptime2pCodes): make use of regIsSpecial
2162         * added lots of debugging output (commented out)
2163         * src/pic/rallloc.c (deassignLRs): prevent operand registers
2164           from being reused as result UNLESS it is known to work
2165
2166 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
2167
2168         * support/Util/dbuf.h: include <stddef.h> for size_t
2169         * .version: changed to version 2.5.2
2170
2171 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2172
2173         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
2174
2175 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2176
2177         * src/hc08/gen.c (genMinus): fixed bug #1241835,
2178           (genModOneByte): removed needless psha/pula
2179
2180 2005-07-22 Raphael Neider <rneider AT web.de>
2181
2182         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
2183           have PIC14 handled like PIC16, fixes broken pic14 linker calls
2184         * src/pic/gen.c (resolveIfx): do not "invent" labels
2185         * (genSkipc): changed to positive logic
2186         * (genSkipCond): removed as no longer needed
2187         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
2188           backport from PIC16
2189         * (genLeftShift): check operands are in different registers
2190         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
2191           INCF does not update CARRY...
2192         * src/pic/main.c: fixed _linkCmd
2193         * src/pic/pcode.c (unlinkpCode): added inactive code
2194         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
2195           alive (do not assign result and operand overlapping registers)
2196
2197 2005-07-22 Raphael Neider <rneider AT web.de>
2198
2199         * src/pic/device.c (dump_sfr): replaced register declaration with
2200           call to emitSymbolToFile() to avoid duplicate symbols
2201         * (assignRelocatableRegisters): do not declare external symbols
2202         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
2203           right (take size of type, not etype)
2204         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
2205         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
2206         * (packRegsForAccUse): disabled assignment of WREG as
2207           the result reg to prevent occurence of just fixed #1235003,
2208           fixes #1242954
2209         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
2210           symbols (avoids duplicate symbols in .asm file)
2211         * (pic14emitRegularMap): use emitSymbolToFile()
2212         * src/pic/gen.c (aopOp): fixed spillLocation handling
2213         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
2214         * (genDataPointerSet): removed unneccessary variables/output
2215
2216 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
2217
2218         * as/mcs51/lkarea.c: enlarged codemap for banked memory
2219         * device/lib/mcs51/crtbank.asm: added # to 0x0F
2220
2221 2005-07-21 Raphael Neider <rneider AT web.de>
2222
2223         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
2224           architecture cannot handle them efficiently, fixes bug #1235003
2225         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
2226           check for empty sets before using them (fixes bug #1232190)
2227
2228 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
2229
2230         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
2231           (lnksect2): generate warnings for memory overlap
2232         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
2233           constseg to set the name of these segments so you can instruct the linker
2234           to place them in banks
2235         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
2236         * src/SDCCglobl.h: added MODEL_HUGE to enum,
2237           added code_seg and const_seg to options
2238         * src/SDCCglue.c (emitMaps): use options.const_seg,
2239           (createInterruptVect): put interrupt vectors in segment HOME,
2240           (glue): put HOME before static segment and put the main glue in HOME,
2241           (glue): use options.code_seg
2242         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
2243         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
2244           these segments so you can instruct the linker to place them in banks
2245           (linkEdit): use code_loc for HOME segment which should be the first
2246           segment in code memory now
2247         * src/SDCCmem.c: fixed more stuff like bug 1238386
2248         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
2249           (changePointer): don't change function pointers to code pointers for
2250           banked functions,
2251           (compareType): added exceptional check for banked function pointers
2252         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
2253         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
2254           after static in code memory
2255         * src/mcs51/gen.c: added aopLiteralLong prototype,
2256           (aopForSym): use getSize for functions,
2257           (genCall): generate banked calls over one trampoline __sdcc_banked_call
2258           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
2259           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
2260           the segment,
2261           (genPcall): use call for literal function pointers and generate banked
2262           calls over the one trampoline so there's only one place for the user to
2263           modify according to his/hers hardware,
2264           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
2265           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
2266         * src/mcs51/main.c: added keyword banked,
2267           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
2268         * support/Util/SDCCerr.c,
2269         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
2270           needed for passing the bank and address to the trampoline
2271         * device/lib/mcs51/crtbank.asm: added for bankswitching
2272         * device/lib/mcs51/Makefile: added crtbank
2273
2274 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2275
2276         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
2277           for fields at offset 0 of a struct or union as reported
2278           on 2005-07-07 in the developer mailing list.
2279
2280 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
2281
2282         * src/SDCCmem.c: fixed bug 1238386
2283
2284 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2285
2286         * src/mcs51/peeph.def: added labelrefcounting for peepholes
2287           (patch #1144962), added peephole 300, enabled 259.x
2288         * doc/sdccman.lyx: removed screenshot and provided link instead
2289
2290 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2291
2292         * doc/sdccman.lyx: added section about debugging with ddd
2293         * doc/figures/ddd_example.eps: screenshot of debugging session
2294
2295 2005-07-04 Raphael Neider <rneider AT web.de>
2296
2297         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
2298           like CODE pointers, fixes #1115683
2299         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
2300           call, fixes bugs #1232211, #1228110,
2301           fixed wrong casts to pCodeFlow from pCodeInstructions
2302
2303 2005-07-04 Raphael Neider <rneider AT web.de>
2304
2305         * src/pic/gen.c (popGet): changed assert to allow for
2306           bit operands
2307         * (popGetAddr): changed signature to provide
2308           an additional index, patched all call sites
2309         * (genCmpEq): handle literal-like operands correctly
2310         * (genAddrOf): added sanity checks on __code/__data pointers
2311         * (genAssign): added handling of symbols from __code section
2312         * (gencjne): do not generate code for comparisons whose result
2313           is neither stored nor used, fixes bug #1171114
2314         * (AccLsh, AccRsh): operate on operand instead of WREG
2315         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
2316           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
2317           by known count
2318         * rewrote complete shift-by-literal logic, commented unused
2319           functions out
2320         * (genConstPointerGet): get multiple bytes (if result size > 1),
2321           fixed handling of non-immediate addresses
2322         * (genPointerGet): handle CODE pointers like CONST pointers
2323         * (genpic14Code): insert C-SRC lines as Cource-pCodes
2324         * ({aop,op}_isLitLike): NEW, single place to decide whether an
2325           operand is to be treated as a literal or not
2326         * (mov2w,genPcall,genCmpEq),
2327           src/pic/genarith.c: use aop_isLitLike() to decide between
2328           literal/register contents
2329         * (addSign): added missing offset
2330         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
2331           only emit comment in debug-mode,
2332           use {aop,op}_isLitLike throughout the file
2333         * src/pic/glue.c: fix initializers for pointers (work in progress)
2334         * src/pic/pcode.c (get_op): honor index on _const symbols
2335         * ({reset,dump}pCodeStatistics): NEW, estimate code size
2336         * (dumppBlock): added pCode size estimation
2337         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
2338           check for IS_SYMOP before OP_SYMBOL'ing
2339         * fixed indentation, compacted switch-statements
2340         * (allocReg): find free register and allocate it instead of
2341           allocating new registers all the time
2342         * (deassignLRs): prevent POINTER_GET's from being assigned the same
2343           registers as its operands (necessary only for multibyte GETs)
2344
2345 2005-07-01 Raphael Neider <rneider AT web.de>
2346
2347         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
2348           debugging .asm-output macros FENTRY + FEXIT
2349         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
2350           way... I wonder...
2351         * (emitpComment): NEW, printf to pCode
2352         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
2353           offset handling
2354         * (popGetAddr): NEW, variant of popGet to access an immediates
2355           high(er) bytes instead of the n'th byte of memory they reference,
2356           replaced popGet with popGetAddr where neccessary
2357         * (genDataPointerGet): reactivated and fixed implementation
2358         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
2359           accesses
2360         * (genDataPointerSet): fixed multibyte assignments
2361         * (genpic14Code): fixed --i-code-in-asm handling
2362         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
2363         * (genPlus): fixed index-out-of-bounds error
2364         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
2365         * src/pic/ralloc.c: added debugging output macro FENTRY2
2366         * (spillThis): fixed indentation, enbraced for-body for clarity
2367         * (rematStr): commented out as now unused
2368         * (regTypeNum): commented out special spill case (overwrites
2369           arbitrary values)
2370         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
2371
2372 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
2373
2374         * doc/sdccman.lyx: documented sfr16/sfr32,
2375           added example for using storage class with function pointers
2376         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
2377
2378 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
2379
2380         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
2381         * device/lib/_itoa.c,
2382         * device/lib/_ltoa.c: optimized codesize
2383         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
2384           but don't know how to suppress the double warning.
2385         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
2386         * support/Util/SDCCerr.c,
2387         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
2388
2389 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
2390
2391         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
2392           fixed old K&R prototypes
2393         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
2394         * device/lib/_gptrget.c,
2395         * device/lib/_gptrgetc.c,
2396         * device/lib/_gptrput.c: changed versions for new memory indicator values,
2397           also new versions for small generic pointers and banked generic pointers
2398         * src/port.h: added const_name
2399         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
2400         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
2401         * src/SDCCcse.c (findPrevIc): check all associative operators
2402         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
2403         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
2404         * src/SDCCmem.c: updated comments,
2405           set far-space to 0 for pdata, results in optimized code
2406         * src/SDCCmem.h: added macro CONST_NAME
2407         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
2408           moving the info into the highest bits, see also gptrget/gptrput
2409         * src/src.dsp: added sdcc.ico to project files
2410         * src/avr/gen.c (genCast): fixed bug 0x%d
2411         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
2412         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
2413           relation between ptr_type and DCL_TYPE,
2414           (genCast): fixed bug 0x%d
2415         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
2416           (CODE)" for const_name
2417         * src/hc08/gen.c (genCast): fixed bug 0x%d
2418         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
2419           (hc08_port): added "CONST (CODE)" for const_name
2420         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
2421           (aopForRemat, adjustArithmeticResult): disconnected direct relation
2422           between ptr_type and DCL_TYPE,
2423           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
2424           operand* and took AOP() inside function so sfr-ness can be checked,
2425           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
2426           new prototype,
2427           (genFunction, genEndFunction): optimized stack setup,
2428           (genMinus): optimized for literals with ending zeroes (in bytes),
2429           (genCast): fixed bug 0x%d
2430         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
2431           (mcs51_port): added "CONST (CODE)" for const_name
2432         * src/mcs51/peeph.def: made rule 226 more generic
2433         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
2434         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
2435         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
2436         * src/z80/main.c (z80_port): added NULL for const_name,
2437           (gbz80_port): added NULL for const_name
2438         * support/regression/tests/bug663539.c,
2439         * support/regression/tests/sfr16.c: new tests
2440
2441 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2442
2443         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
2444
2445 2005-06-24 Raphael Neider <rneider AT web.de>
2446
2447         * device/lib/pic16/libdev/pic18f[68][567]20.c:
2448           corrected typos...
2449         * device/include/pic16/signal.h: added USBIF
2450           and SIG_USB
2451
2452 2005-06-24 Raphael Neider <rneider AT web.de>
2453
2454         * device/lib/pic16/libdev/pic18f2455.c,
2455           device/include/pic16/pic18f2455.h: NEW
2456         * device/include/pic16/pic18fregs.h,
2457           device/lib/pic16/pics.all,
2458           src/pic16/device.c: added 18f2455
2459         * device/lib/pic16/libdev/pic18f[68][567]20.c,
2460           device/include/pic16/{pic18f[68][567].h,usart.h}:
2461           replaced MULTIPLE_USARTS define with more relaible
2462           compatibility sfrs (for USART access)
2463
2464 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
2465
2466         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
2467           and the output asm file line is printed on two lines.
2468
2469 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2470
2471         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
2472           BGT, BLE, BHI, and BLS instructions
2473         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
2474           genCmpEq): removed
2475         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
2476           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
2477           fixes bug #1216342
2478         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
2479
2480 2005-06-15 Raphael Neider <rneider AT web.de>
2481
2482         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
2483         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
2484         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
2485           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
2486           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
2487
2488 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2489
2490         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
2491           Marcel Telka in bug #1215704
2492
2493 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
2494
2495         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
2496           located in shared memory bank.
2497
2498 2005-05-31 Raphael Neider <rneider AT web.de>
2499
2500         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
2501           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
2502           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
2503
2504 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
2505
2506         * device/lib/_strncpy.c: fixed the fix
2507
2508 2005-05-26 Raphael Neider <rneider AT web.de>
2509
2510         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
2511           initializers with \0, bug #1208187
2512         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
2513           intializers with \0, bug #1208187
2514
2515 2005-05-26 Raphael Neider <rneider AT web.de>
2516
2517         * src/pic16/glue.c (pic16_printIvalChar): fixed string
2518           initializers with \0, bug #1208187
2519         * src/pic16/main.c (_process_pragma): added sanity checks
2520           for stack position and size, emit warnings when appropriate
2521
2522 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
2523
2524         * device/lib/_strncpy.c: fixed not filling with \0
2525
2526 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2527
2528         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
2529           createFunction),
2530         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
2531           compound_statement),
2532         * src/SDCCsymt.h,
2533         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
2534
2535 2005-05-24 Raphael Neider <rneider AT web.de>
2536
2537         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
2538
2539 2005-05-24 Raphael Neider <rneider AT web.de>
2540
2541         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
2542           TRISE definitions, closes bug #1162453
2543
2544 2005-05-22 Raphael Neider <rneider AT web.de>
2545
2546         * src/pic16/main.c (_process_pragma): check for missing
2547           arguments to pragmas code and udata
2548         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
2549           consistency fixes to match other headers (thanks to Jim Paris)
2550         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
2551
2552 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
2553
2554         * src/SDCCicode.c (isOperandEqual): fixed missing ;
2555
2556 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
2557
2558         * support/regression/tests/bug1198642.c: new test
2559         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
2560         * src/SDCCcse.c (findPrevIc): added comment, please have a look
2561         * support/scripts/resource.h,
2562         * support/scripts/resource.rc,
2563         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
2564         * support/scripts/sdcc.ico: added 32x32 icon
2565
2566 2005-05-18 Raphael Neider <rneider AT web.de>
2567
2568         * device/lib/pic16/libdev/pic18f*.c,
2569         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
2570           keywords to "__sfr" and "__at (X)"
2571         * device/include/pic16/pic18fregs.h: added pic18f4520
2572         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
2573           #1203088 (MPLAB compatibility)
2574
2575 2005-05-17 Raphael Neider <rneider AT web.de>
2576
2577         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
2578         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
2579         * device/lib/pic16/pics.all: added new devices
2580         * src/pic16/device.c: added support for pic18f4520
2581
2582 2005-05-16 Raphael Neider <rneider AT web.de>
2583         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
2584         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
2585         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
2586           convenience function for bit access
2587
2588 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
2589
2590         * device/lib/printf_large.c: fixed bug 1193299
2591         * support/regression/tests/bug1057979.c: added test %3.3s
2592
2593 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2594
2595         * device/include/mcs51/8051.h,
2596         * device/include/mcs51/8052.h: made parseable with lint
2597         * device/include/mcs51/lint.h: added include file for (sp)lint
2598         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
2599         * doc/cdbfileformat.lyx,
2600         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
2601
2602 2005-05-14 Raphael Neider <rneider AT web.de>
2603
2604         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
2605         * device/lib/pic16/libc/stdlib/itoa.c (new)
2606         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
2607         * device/lib/pic16/libio/Makefile: exclude subdir according to
2608           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
2609         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
2610         * src/pic16/gen.c (genFunction): prevent annoying warning
2611         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
2612           nameclashes on BeOS
2613         * support/cpp2/cppmain.c (cpp_output_string): new
2614         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
2615           fixes bug 1116802
2616
2617 2005-05-13 Borut Razem <borut.razem AT siol.net>
2618
2619         * src/SDCCmain.c (linkEdit): fixed bug 1195202
2620
2621 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2622
2623         * .version: changed to version 2.5.1; back to bleeding edge development
2624
2625 2005-05-11 Borut Razem <borut.razem AT siol.net>
2626
2627         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
2628           generate PDF version 1.3 documents
2629
2630 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2631
2632         * .version: changed to version 2.5.0
2633
2634 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2635
2636         * doc/sdccman.lyx: updated weblinks, index and smaller updates
2637
2638 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2639
2640         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
2641         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
2642         well as many smaller updates.
2643         * .version: changed to version 2.5.0-pre1
2644
2645 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2646
2647         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
2648
2649 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
2650
2651         * support/regression/tests/bug1185672.c: added
2652         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
2653           bug 1185672
2654         * src/mcs51/gen.c (genCall): added comments, made it look safer
2655         * src/mcs51/gen.c (genEndFunction): simplified
2656
2657 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
2658
2659         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
2660
2661 2005-04-14 Borut Razem <borut.razem AT siol.net>
2662
2663         * fixed bug 1045046 - SIGSEGV with really simple code?:
2664           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
2665           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
2666
2667 2005-04-14 Borut Razem <borut.razem AT siol.net>
2668
2669         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
2670           src/pic16/device.h: temporarily disabled experimental #inline pragma
2671           for 2.5.0 release
2672
2673 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
2674
2675         * device/include/z80/stdio.h,
2676         * device/include/z80/string.h: removed these highly incomplete files so
2677           SDCC can use the default ones in device/include/
2678
2679 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2680
2681         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
2682         gcc warning.
2683         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
2684         fix sdcpp warnings.
2685
2686 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2687
2688         * device/include/malloc.h: removed redundant __reentrant prototypes
2689         * device/lib/_mullong.c: added working xstack variant in asm (C version
2690           doesn't pass regression tests)
2691         * device/lib/bpx.c: used __data and made bpx char for mcs51
2692         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
2693           (createFunction): fixed bug with xstackPtr
2694         * src/SDCCcse.c: corrected comments
2695         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
2696           (killDeadCode, eBBlockFromiCode): removed unused code
2697         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
2698           corrected comments
2699         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
2700           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
2701           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
2702           (genModOneByte): fixed warning in MSVC
2703         * src/mcs51/main.c (): added comments
2704         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
2705
2706 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2707
2708         * src/SDCCmain.c (linkEdit): oops, changed one line too many
2709
2710 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
2711
2712         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
2713
2714 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
2715
2716         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
2717         characters arrays of larger size than the declared one.
2718
2719 2005-04-10 Borut Razem <borut.razem AT siol.net>
2720
2721         * src/pic/gen.c (genInline),
2722           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
2723           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
2724           (findNextInstruction), (findPrevInstruction),
2725           (findInstructionUsingLabel),
2726           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
2727         * src/pic/pcode.c (findLabel): added missing '\n'
2728         * src/src.dsp: added SDCCdwarf2.c to the project
2729
2730 2005-04-09 Borut Razem <borut.razem AT siol.net>
2731
2732         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
2733
2734 2005-04-08 Raphael Neider <rneider AT web.de>
2735
2736         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
2737           into the chain after a given one) and mergeDefmapSymbols (combine
2738           defmap entries for each symbol per pcode)
2739         * (createDefmap): have defmap entries merged in the end
2740         * (defmapReplaceSymRef): split defmap entries covering two accesses to
2741           a symbol before replacing one access type's symbol, merge symbols in
2742           the end (replacement symbol might already have an entry)
2743         * (assignValnums): keep reference to written WREG intact
2744
2745 2005-04-08 Raphael Neider <rneider AT web.de>
2746
2747         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
2748           Alpha)
2749
2750 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
2751
2752         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
2753         bytes
2754
2755 2005-04-07 Raphael Neider <rneider AT web.de>
2756
2757         * device/include/pic16/usart.h: added compatibility defines for
2758           devices with more than one USART
2759         * device/include/pic16/pic18f[68][567]20.h: activated above defines
2760
2761 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2762
2763         * device/lib/Makefile.in: updated for port specific include
2764
2765 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2766
2767         * support/regression/ports/mcs51/spec.mk: added mcs51 include
2768
2769 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2770
2771         * device/include/8051.h,
2772         * device/include/8052.h,
2773         * device/include/at89S8252.h,
2774         * device/include/at89c55.h,
2775         * device/include/at89x051.h,
2776         * device/include/at89x51.h,
2777         * device/include/at89x52.h,
2778         * device/include/mcs51reg.h,
2779         * device/include/reg51.h,
2780         * device/include/reg764.h,
2781         * device/include/regc515c.h,
2782         * device/include/sab80515.h: (re)moved these 12 files
2783         * device/include/mcs51/8051.h,
2784         * device/include/mcs51/8052.h,
2785         * device/include/mcs51/at89S8252.h,
2786         * device/include/mcs51/at89c55.h,
2787         * device/include/mcs51/at89x051.h,
2788         * device/include/mcs51/at89x51.h,
2789         * device/include/mcs51/at89x52.h,
2790         * device/include/mcs51/mcs51reg.h,
2791         * device/include/mcs51/reg51.h,
2792         * device/include/mcs51/reg764.h,
2793         * device/include/mcs51/regc515c.h,
2794         * device/include/mcs51/sab80515.h: and added them here
2795
2796 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
2797
2798         * device/include/stdarg.h: changed SDCC specific keywords to double
2799           underlined form.
2800         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
2801           mcs51 and ds390.
2802         * device/include/hc08/mc68hc908gp32.h,
2803         * device/include/hc08/mc68hc908jb8.h,
2804         * device/include/hc08/mc68hc908jkjl.h,
2805         * device/include/hc08/mc68hc908qy.h: fixed comments
2806         * device/include/mcs51/README: updated
2807         * device/include/mcs51/c8051f120.h: added PINRSF
2808         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
2809         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
2810           amidst code. Also inline is not supported.
2811
2812 2005-04-06 Raphael Neider <rneider AT web.de>
2813
2814         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
2815         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
2816           callers stack/frame pointers
2817
2818 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
2819
2820         * device/include/pic16/usart.h: added, missing in previous commit,
2821         * device/include/pic16/adc.h: fixed typo,
2822         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
2823         commit,
2824         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
2825         <p18fxxx.inc>
2826         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
2827         uninitialized because a bug appears with gplink
2828         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
2829         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
2830         complains for unrecognised option
2831
2832 2005-04-05 Raphael Neider <rneider AT web.de>
2833
2834         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
2835           structs as well (using memcpy)
2836         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
2837           on ISRs (GOTO has no label)
2838         * src/pic16/device.h: added OF_OPTIMIZE_DF
2839         * src/pic16/main.c: added compiler switch --optimize-df to enable the
2840           new data flow analysis/optimization
2841         * src/pic16/pcode.c: added (prototypes for and implementation of)
2842           dataflow analysis functions, fixed pCodeInstructions' inCond and
2843           outCond values, made RCALL a branch instruction
2844         * (pic16_unlinkpCode): keep C line if possible
2845         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
2846           C line moved if possible
2847         * (pic16_getRegFrompCodeOp): NEW, improved version of...
2848         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
2849           to use new pic16_getRegFrompCodeOp (works for more SFRs)
2850         * (pic16_BuildFlow): fixed skip instructions with label (did not start
2851           new flow)
2852         * (pic16_getJumptabpCode): NEW, needed in...
2853         * (LinkFlow): fixed handling of jumptables, calls and conditional
2854           branches
2855         * (pic16_InsertCommentAfter): NEW
2856         * (pic16_pCodeReplace): made verbose and flow preserving
2857         * (AnalyzeFlow): added call to data flow analysis
2858         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
2859         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
2860         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
2861
2862 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2863
2864         * src/SDCCast.c (decorateType): fixed bug #1105626
2865
2866 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
2867
2868         * device/include/asm/pic16/features.h,
2869         * pic18f*.h headers,
2870         * device/include/pic16/adc.h,
2871         * device/include/pic16/delay.h,
2872         * device/include/pic16/i2c.h,
2873         * device/include/pic16/malloc.h,
2874         * device/include/pic16/stdio.h,
2875         * device/include/pic16/stdlib.h,
2876         * device/include/pic16/string.h,
2877         * device/lib/pic16/libc/stdio/printf_tiny.c,
2878         * device/lib/pic16/libc/stdio/printf_small.c,
2879         * device/lib/pic16/libc/stdio/strmgpsim.c,
2880         * device/lib/pic16/libc/stdio/strmmssp.c,
2881         * device/lib/pic16/libc/stdio/strmusart.c,
2882         * device/lib/pic16/libc/stdio/vfprintf.c,
2883         * device/lib/pic16/libc/stdlib/ltoa.c,
2884         * device/lib/pic16/libc/stdlib/putchar.c,
2885         * device/lib/pic16/libc/stdlib/x_ftoa.c,
2886         * device/lib/pic16/libc/stdlib/memchrpgm.c,
2887         * device/lib/pic16/libc/stdlib/memchrram.c,
2888         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
2889         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
2890         * device/lib/pic16/libio/adc/adcbusy.c,
2891         * device/lib/pic16/libio/adc/adcread.c,
2892         * device/lib/pic16/libio/adc/adcsetch.c,
2893         * device/lib/pic16/libio/usart/ubaud.c,
2894         * device/lib/pic16/libio/usart/ubusy.c,
2895         * device/lib/pic16/libio/usart/udrdy.c,
2896         * device/lib/pic16/libio/usart/uopen.c,
2897         * device/lib/pic16/libio/usart/uputc.c,
2898         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
2899         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
2900         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
2901         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
2902         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
2903         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
2904         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
2905         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
2906         specific keywords to double underlined form,
2907         * device/lib/pic16/libc/Makefile.rules,
2908         * device/lib/pic16/libsdcc/Makefile.rules,
2909         * device/lib/pic16/libm/Makefile,
2910         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
2911         to compile with C standard set in Makefile.common
2912         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
2913         rand.c and crc.c in compilation process,
2914         * device/lib/pic16/libsdcc/int/divuint.c,
2915         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
2916         `c' from signed to unsigned,
2917         * device/lib/pic16/startup/crt0.c,
2918         * device/lib/pic16/startup/crt0i.c,
2919         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
2920         keywords to double underlined form, bug fixes in _do_cinit function
2921         which prevented the correct initialization of the .idata segment,
2922         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
2923         core to enter a infinite loop
2924         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
2925
2926 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2927
2928         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
2929
2930 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2931
2932         * device/include/Makefile.in: add support for hc08 subdirectory
2933         * device/include/hc08/: new subdirectory
2934         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
2935         Lucas Loizaga, thanks!
2936         * device/include/hc08/mc68hc908qy.h,
2937         * device/include/hc08/mc68hc908gp32.h,
2938         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
2939         their own directory. Changed internal macro names to use the compiler
2940         reserved namespace. Changed SDCC specific keywords to double
2941         underlined form.
2942         * device/include/math.h,
2943         * device/include/malloc.h,
2944         * device/include/stdarg.h,
2945         * device/include/stdbool.h
2946         * device/include/string.h,
2947         * device/include/tinibios.h,
2948         * device/include/ds400rom.h,
2949         * device/include/8051.h,
2950         * device/include/8052.h,
2951         * device/include/80c51xa.h,
2952         * device/include/at89c55.h,
2953         * device/include/at89S8252.h,
2954         * device/include/at89x51.h,
2955         * device/include/at89x52.h,
2956         * device/include/ds80c390.h,
2957         * device/include/reg764.h,
2958         * device/include/regc515c.h,
2959         * device/include/sab80515.h,
2960         * device/include/mcs51/c8051f000.h,
2961         * device/include/mcs51/c8051f018.h,
2962         * device/include/mcs51/c8051f020.h,
2963         * device/include/mcs51/c8051f040.h,
2964         * device/include/mcs51/c8051f060.h,
2965         * device/include/mcs51/c8051f120.h,
2966         * device/include/mcs51/c8051f300.h,
2967         * device/include/mcs51/c8051f310.h,
2968         * device/include/mcs51/c8051f320.h,
2969         * device/include/mcs51/c8051f330.h,
2970         * device/include/mcs51/c8051f350.h,
2971         * device/include/z180.h: Changed SDCC specific keywords to double
2972         underlined form.
2973
2974 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
2975
2976         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
2977         18F4455,
2978         * (pic16_assignConfigWordValue): disable testing of configuration
2979         register value with config mask,
2980         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
2981         function with port->fun_prefix,
2982         * (genFunction): when generating a naked interrupt function never
2983         create an absolute segment placed in interrupt vector address, place
2984         the actual interrupt function at IVA instead, when an interrupt
2985         function is generated with unspecified interrupt then do not create
2986         the absolute section,
2987         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
2988         code for generating a call to generic pointer get/put function with
2989         a call to function pic16_callGenericPointer(),
2990         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
2991         the call to the generic pointer get/put functions with prefixing the
2992         function name with port->fun_prefix,
2993         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
2994         * src/pic16/main.c (_process_pragma): prefix function with
2995         port->fun_prefix,
2996         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
2997         calling assembler, old 18Fxxxx macro is deprecated,
2998         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
2999         PC_ASMDIR in while condition,
3000         * (findInstruction): add PC_ASMDIR in while condition,
3001         * (buildCallTree): prefix main with port->fun_prefix,
3002         * (pic16_pCode2str): fixed bug that didn't emit the memory access
3003         identifier for variable with banked access in instructions BTFSS,
3004         BTFSC, BCF, BSF, BTG
3005         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
3006         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
3007         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
3008         perform optimization when enviroment variable NO_REG_OPT is set,
3009         * (insideLRBlock): NEW, return 1 if register is inside an
3010         INF_LOCALREGS block,
3011         * (RemoveRegFromLRBlock): remove a register that is completely
3012         eliminated by register optimization, but it is still left in local
3013         register store/restore in/from stack block,
3014         * (Remove2pcodes): after removing register, check to see if it
3015         should be removed from local register store/restore in/from stack
3016         block,
3017         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
3018         DUMMY_READ_VOLATILE,
3019
3020         * device/include/pic16/adc.h: minor prototype modifications and
3021         update,
3022         * device/include/pic16/malloc.h: added GPL notice various
3023         modifications,
3024         * device/include/pic16/stdint.h: NEW, standard header for ints
3025         * device/include/pic16/delay.h: NEW, header for delay functions,
3026         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
3027         delay1mtcy,
3028         * device/include/pic16/signal.h: NEW, header providing helper macros
3029         for implementing signal handlers,
3030         * device/include/pic16/stdio.h: added prototypes for functions,
3031         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
3032         prototypes for stdin and stdout, added macro PUTCHAR to
3033         automatically implement putchar function prototype,
3034         * device/include/pic16/usart.h: modified and updated USART library,
3035         * device/lib/pic16/libio/adc/,
3036         * device/lib/pic16/libio/i2c: some modifications to improve library
3037         performance,
3038         * device/lib/pic16/libc/stdio/: modifications for the new printf*
3039         family of functions,
3040         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
3041         family of functions and other sources,
3042         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
3043         of the PIC18Fxx[28] devices,
3044         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
3045         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
3046         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
3047         _do_cinit function, because the previous failed when local variables
3048         where not placed in the same memory bank,
3049         * device/lib/pic16/libsdcc/char/: various modifications to improve
3050         library performance,
3051         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
3052         information on the new functions of the c library and more...
3053
3054 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3055
3056         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
3057
3058 2005-03-26 Raphael Neider <rneider AT web.de>
3059
3060         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
3061           if condition == CARRY)
3062         * (genCmp): adapted to new genSkipc semantics
3063         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
3064           on rIfx (genCmp was broken)
3065
3066 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3067
3068         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
3069         * src/z80/main.c (_keywords[]),
3070         * src/SDCCglobal.h (struct options),
3071         * src/SDCC.y,
3072         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
3073         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
3074         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
3075         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
3076         always available in leading double underscore form. The C99 support is
3077         mostly missing, but it's a start.
3078         * support/regression/tests/bug-227710.c: fixed nonconforming use of
3079         reserved identifier "__data".
3080
3081 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
3082
3083         * src/mcs51/peeph.def: fixed bug 1170013
3084
3085 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
3086
3087         * device/include/mcs51reg.h: fixed bug 842007
3088
3089 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3090
3091         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
3092         last time.
3093
3094 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3095
3096         * src/port.h (struct PORT),
3097         * src/avr/ralloc.c (avr_assignRegisters),
3098         * src/avr/main.c,
3099         * src/ds390/ralloc.c (ds390_assignRegisters),
3100         * src/ds390/main.c,
3101         * src/hc08/ralloc.c (hc08_assignRegisters),
3102         * src/hc08/main.c,
3103         * src/mcs51/ralloc.c (mcs51_assignRegisters),
3104         * src/mcs51/main.c,
3105         * src/pic/ralloc.c (pic14_assignRegisters),
3106         * src/pic/main.c,
3107         * src/pic16/ralloc.c (pic16_assignRegisters),
3108         * src/pic16/main.c,
3109         * src/xa51/ralloc.c (xa51_assignRegisters),
3110         * src/xa51/main.c,
3111         * src/z80/ralloc.c (z80_assignRegisters),
3112         * src/z80/ralloc.h,
3113         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
3114         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
3115         * src/SDCCcse.h,
3116         * src/SDCCdflow.c (computeDataFlow),
3117         * src/SDCCdflow.h,
3118         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
3119         * src/SDCCloop.h,
3120         * src/SDCCcflow.c (*),
3121         * src/SDCCcflow.h,
3122         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
3123         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
3124         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
3125         immedDom() returning wrong block; probably fixes bug #1160833)
3126
3127 2005-03-20 Borut Razem <borut.razem AT siol.net>
3128
3129         * support/scripts/inc2h.pl: WIN32 port
3130
3131 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
3132
3133         * device/lib/makefile.in: added abs.c and labs.c
3134
3135 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
3136
3137         * device/include/stdint.h: added
3138         * device/lib/abs.c: added
3139         * device/lib/labs.c: added
3140         * device/include/stdlib.h: added abs() and labs() prototypes
3141         * device/lib/libsdcc.lib: added abs and labs
3142         * device/include/float.h,
3143         * device/lib/_fsmul.c,
3144         * device/lib/printf_fast.c,
3145         * device/lib/printf_tiny.c: updated comments
3146
3147 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3148
3149         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
3150         bug #1164313
3151
3152 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3153
3154         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
3155         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
3156
3157 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
3158
3159         * device/lib/printf_large.c: removed inline assembly for portability and
3160           readability. Use printf_fast if speed or size are more important.
3161         * src/pic16/gen.c: removed conditions around use of DEBUGpc
3162         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
3163
3164 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
3165
3166         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
3167         prevent compiler warning
3168
3169 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
3170
3171         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
3172         moved to level 0 and declared as static. Also they are explicit
3173         placed in access bank. This was necessery because some times they
3174         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
3175         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
3176         optimizations. Currently only compare to unsigned char is implemented,
3177         * src/pic16/gen.c: added fReturnIdx array,
3178         * (struct resolvedIfx) is moved to gen.h and made public,
3179         * (struct _G): added sregsAlloc and sregsAllocSet fields,
3180         * (aopForSym): added an optimization to directly store in stack of
3181         the operand of a SEND iCode,
3182         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
3183         but as registers instead (AOP_REG) using the fReturnIdx array,
3184         * (pic16_freeAsmop): remove the freed register from the
3185         _G.sregsAlloc field,
3186         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
3187         a compare of 'WREG',
3188         * (pic16_popGetTempRegCond): changed function prototype, now
3189         function takes also a bitVector argument v which holds the current
3190         set of registers that are allocated for stack access by aopForSym,
3191         registers allocated in aopForSym for accessing stack symbols are not
3192         any more part of the functions usedRegs field,
3193         * (genCall): some times aopOp is called for a stack variable to be
3194         send, aopForSym might perform the push, if this is true make sure
3195         that genCall doesn't push the variable twice by testing _G.resDirect,
3196         * (genFunction): changed testing for unspecified interrupt number
3197         from 256 to INTNO_UNSPEC,
3198         * modified selection scheme of frame pointer generation. Previously
3199         if function did use local registers a frame pointer was generated,
3200         now a frame pointer is generated only if function has arguments
3201         (that need PLUSW2 register access), or has stack arguments, or the
3202         compiler is not instructed to omit the frame pointer,
3203         * (genEndFunction): before restoring local registers that were saved
3204         in the function preamble, also restore the registers that *might*
3205         have been allocated for stack access,
3206         * (genRet): removed some old comments,
3207         * (genCmp, the active (RN's) version): added a call to the
3208         pic16_genCmp_special function to perform the compare with a more
3209         robust and optimized way,
3210         * (genInline): a feature has been added in inline code generation,
3211         which allows a wildcard variable substitution when writing inline
3212         assembly. Code is incomplete and experimental therefore undocumented,
3213         * (genCast): changed order of aopOp for result and right to allow
3214         aopForSym to directly load the result if possible,
3215         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
3216         perform an optimized compare on some selected special occasions,
3217         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
3218         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
3219         generate an IVT any more,
3220         * src/pic16/main.c (pic16_optionsTable): added command line option
3221         --optimize-cmp,
3222         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
3223         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
3224         macros,
3225         * src/pic16/NOTES: Raphael Neider added in list of active developers
3226         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
3227         jumptable_end to prevent bug #,
3228         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
3229         inCond and outCond fields,
3230         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
3231         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
3232         turn off register spilling,
3233         * (packRegsForOneUse): synced with other ports' versions although it
3234         is not used currently,
3235         * (pic16_packRegisters): added an optimization while reading
3236         structure bitfields, some registers may be saved (malloc code is
3237         decreased by 80 bytes)
3238
3239 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
3240
3241         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
3242         left is a bitfield, if yes, then don't optimize assignment. Perhaps
3243         this can be optimized more?
3244
3245 2005-03-10 Raphael Neider <rneider AT web.de>
3246
3247         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
3248           genNearPointerGet): (hopefully) fixed access to bitfields via
3249           pointers (p->bitN = x; and x = p->bitN; failed)
3250
3251 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
3252
3253         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
3254
3255 2005-03-09 Raphael Neider <rneider AT web.de>
3256
3257         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
3258
3259 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
3260
3261         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
3262         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
3263           (regTypeNum): set REG_BIT type if necessary
3264         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
3265         * support/regression/tests/critical.c: check bug 1144613
3266
3267 2005-03-02 Raphael Neider <rneider AT web.de>
3268
3269         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
3270
3271 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3272
3273         * src/avr/ralloc.c (serialRegAssign),
3274         * src/ds390/ralloc.c (serialRegAssign),
3275         * src/hc08/ralloc.c (serialRegAssign),
3276         * src/mcs51/ralloc.c (serialRegAssign),
3277         * src/pic/ralloc.c (serialRegAssign),
3278         * src/pic16/ralloc.c (serialRegAssign),
3279         * src/xa51/ralloc.c (serialRegAssign),
3280         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
3281
3282 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
3283
3284         * src/SDCCast.c (decorateType): fixed bug 1124787
3285
3286 2005-02-20 Hubert Sack <sack AT digiplan.de>
3287         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3288
3289         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
3290         patch #1121755
3291
3292 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3293
3294         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
3295         to keep the correct label reference count when adding/removing references
3296         to labels. A peephole file using this is appended to patch #1144962.
3297
3298 2005-02-14 Raphael Neider <rneider AT web.de>
3299
3300         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
3301         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
3302         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
3303           retrievals of result operand's value on assignment
3304
3305 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
3306
3307         * device/include/pic16/string.h: modified prototype for memccpy()
3308         to memccpy(void *, void *, char, size_t)
3309         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
3310         check whether to omit frame pointer or not,
3311         * (genInline): convert all occurences of "\n" to LF in inline
3312         assembler blocks, this helps formatting the inline text,
3313         * (pic16_loadFSR0): modified prototype,
3314         * (genNearPointerGet, genNearPointerSet): reorganization of code,
3315         removed some 8051 legacy code,
3316         * (genPackBits): enabled handling bitfields exceeding one byte in size,
3317         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
3318         before allocating temporary registers in functions,
3319
3320 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
3321
3322         * support/regression/tests/bitvars.c: corrected the "fix"
3323
3324 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
3325
3326         * support/regression/tests/bitvars.c,
3327         * support/regression/tests/bitwise.c,
3328         * support/regression/tests/rotate.c: "fixed" problems on Alpha
3329
3330 2005-02-10 Raphael Neider <rneider AT web.de>
3331
3332         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
3333           different size for Alpha
3334         * src/pic16/gen.c (genCmpEq) : improved compare with 0
3335
3336 2005-02-09 Raphael Neider <rneider AT web.de>
3337
3338         * src/SDCC.lex(doPragma) : save and restore warning options as well
3339           (also added new stack plus clone- and copyAndFreeSDCCERRG())
3340         * have #pragma less_pedantic set the errorlevel to WARNING
3341           (fixes #1117001)
3342         * (cloneOptimize) : fixed wrong malloc's size
3343         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
3344           facilitate correct handling of #pragma (save|restore)
3345
3346 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
3347
3348         * src/mcs51/gen.c: removed non-standard C nameless struct/union
3349
3350 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
3351
3352         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
3353
3354 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
3355
3356         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
3357
3358 2005-02-02 Raphael Neider <rneider AT web.de>
3359
3360         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
3361         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
3362         * (pic16_storeForReturn): fixed to allow returning function pointers
3363         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
3364         * device/include/pic16/{stddef.h,stdbool.h}: added
3365
3366 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
3367
3368         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
3369
3370 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
3371
3372         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
3373         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
3374          appeared to be required
3375
3376 2005-01-31 Borut Razem <borut.razem AT siol.net>
3377
3378         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
3379           include/mcs51 and include/z80 directories to the package
3380
3381 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3382
3383         * src/hc08/gen.c (genFunction): fixed bug #1112752
3384
3385 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3386
3387         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
3388
3389 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3390
3391         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
3392
3393 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
3394
3395         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
3396
3397 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
3398
3399         * device/include/c8051fxxx.h: removed these 6 files
3400         * device/include/mcs51/c8051fxxx.h: added these 11 new files
3401
3402 2005-01-26 Raphael Neider <rneider AT web.de>
3403
3404         * src/pic16/gen.c (genAssign): fixed assignment from longs
3405           in codespace (were cut to three bytes)
3406         * (genDummyRead): implemented (except for CODESPACE...),
3407           fixed bug #1108575
3408         * src/pic16/glue.c (emitStatistics): beautified
3409         * device/lib/pic16/libm/Makefile: added include path
3410
3411 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3412
3413         * src/z80/gen.c (aopPut): fixed bug #1103902
3414
3415 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3416
3417         * device/lib/expf.c: fixed bug #1095792
3418
3419 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
3420
3421         * device/lib/pic16/libm: added Math library sources
3422
3423 2005-01-24 Raphael Neider <rneider AT web.de>
3424
3425         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
3426           to enable upcast to pCodeOpReg2 (there is no type tag to
3427           differenciate the two and pic16_popGet2p cast into PCOR2)
3428         * src/pic16/main.c (_process_pragma): fixed another malloc bug
3429           (sizeof(sectNames) changed to sizeof(sectName))
3430           Both patches fix segfaults under MinGW.
3431
3432 2005-01-23 Raphael Neider <rneider AT web.de>
3433
3434         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
3435           Safe_[mc]?alloc()'ed variables
3436         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
3437           of (byte sized) temporaries (assign them to WREG for now)
3438         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
3439           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
3440           this might fix SIGSEGVs on MinGW...
3441         * src/SDCCopt.c (killDeadCode): restored original behaviour
3442           (volatile operands might get thrown away though)
3443
3444 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
3445
3446         * src/pic16/gen.c: fixed bug #1106975,
3447         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
3448         pointer update, INTCON is saved, global interrupts are disabled and
3449         restored after updateing TOS.
3450         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
3451         * added function attribute 'shadowregs' to take advantage of shadow
3452         registers,
3453         * added function attribute 'wparam' as an alternative to the wparam
3454         pragma,
3455         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
3456         user declares a non-ISR function as 'shadowregs',
3457         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
3458
3459 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
3460
3461         * .version: bumped version number to 2.4.8
3462         * device/lib/pic16/pics.all: list of PIC18F devices supported by
3463         pic16 port,
3464         * device/lib/pic16/libio/i2c/: I2C module support library,
3465         * device/include/pic16/i2c.h: I2C support library header,
3466         * device/lib/pic16/libc/stdio/: standard IO support sources,
3467         * (printf_small.c): printf_small() source, supports float print,
3468         * (printf_tiny.c): printf_tiny() source, does not support floats,
3469         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
3470         enable global optimizations for entire library source, other
3471         Makefiles in the source tree are also modified to reflect this,
3472         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
3473         function,
3474         * doc/sdccman.lyx: updated to reflect new changes,
3475         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
3476         sym->onStack if-case,
3477         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
3478         sbit, idata, _idata, xdata, _xdata,
3479         * added pragma library, to link an external library, (see doc),
3480         * removed command line options, --pomit-config-words, --pomit-ivt,
3481         --pleave-reset-vector,
3482         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
3483         when calling assembler to reflect memory model used, also define
3484         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
3485         reflect stack model used,
3486         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
3487         on stack return NULL,
3488
3489 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3490
3491         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
3492           of the operands is volatile. Fixes #1020220
3493
3494 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3495
3496         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
3497         * (OptimizeRegUsage): make sure that there is really no other flow where
3498           the first pCode is used
3499
3500 2005-01-22 Raphael Neider <rneider AT web.de>
3501
3502         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
3503           to fix #1106967 (pCode->seq are not set up correctly)
3504
3505 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3506
3507         * src/SDCCglue.c (glue): make sure code area is declared before the
3508         static initialization area.
3509
3510 2005-01-21 Raphael Neider <rneider AT web.de>
3511
3512         * device/lib/Makefile.in: fixed test for pic16 install dir
3513         * device/lib/pic16/*/Makefile*: modified compile flags to enable
3514           optimizations
3515         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
3516           added --optimize-goto compiler switch and pragma wparam documentation
3517         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
3518         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
3519           and PRODH closing bug #1071770 (peephole optimizer)
3520
3521 2005-01-19 Raphael Neider <rneider AT web.de>
3522
3523         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
3524           cmdLine buffers (used when calling sdcpp...) are large enough
3525           (MAX_PATH=256 truncates arguments leading to system halts when
3526           used in MinGW...)
3527         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
3528         * (genUminus): rewritten to for efficiency
3529         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
3530           used uninitialized in some cases)
3531         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
3532           copy the third byte from the int -- now assumes 0x80 (data memory)
3533         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
3534           operands (genAddLit expects the iCode's operands to swapped as
3535           well), fixed leftover bytes (crashed for short left operands)
3536         * (pic16_genMinusDec): performance improvements, removed false
3537           PIC14 emitSKPNCs
3538         * (pic16_genMinus): fixed to cope with differently sized operands
3539         * src/pic16/glue.c (pic16_glue): added new banksel optimization
3540           for --obanksel > 1
3541         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
3542         * src/pic16/graph.[ch]: implementation of directed graphs, used by
3543           new banksel optimization
3544         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
3545           analysis for temporary registers (segfaults...)
3546         * src/pic16/peeph.def: added rule
3547
3548 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
3549
3550         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
3551         which converts a float number to its ASCII representation
3552         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
3553         functions to convert the fractional and integer part of a float to ASCII,
3554         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
3555         realloc.c): added _MALLOC_SPEC to explicit place variables in data
3556         ram
3557         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
3558         _STATMEM macros,
3559         * device/include/pic16/adc.h: added GPL info,
3560         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
3561         a pCodeOp as tested operand,
3562         * (genNearPointerGet): optimized bit testing, does not use
3563         intermediate register for bit value, test directly instead with
3564         BTFSS, BTFSC, works only for single bits,
3565         * (genpic16Code): dump the name of the iCode in the asm,
3566         * src/pic16/ralloc.c (decodeOp): removed static declaration and
3567         renamed to pic16_decodeOp,
3568         * (serialRegAssign): do not allocate a temporary register for iCode
3569         sequences that test a single bit for 1/0
3570
3571 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
3572
3573         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
3574         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
3575         access stack and frame pointers. They are initially assigned to
3576         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
3577         accessing SFRs. Updated all occurences of modification of stack or
3578         frame pointer in gen.c and pcode.c,
3579         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
3580         assigning of a literal value to pointers,
3581         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
3582         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
3583         selected
3584
3585 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
3586
3587         * doc/sdccman.lyx: update documentation about stack pragma, added
3588         some info for stack memory models
3589
3590 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3591
3592         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
3593
3594 2005-01-08 Raphael Neider <rneider AT web.de>
3595
3596         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
3597           udata sections to fix bug #1097823
3598
3599 2005-01-05 Raphael Neider <rneider AT web.de>
3600
3601         * src/pic16/gen.c (genGenericShift): added handling of differently
3602           sized left operand and result
3603
3604 2005-01-04 Raphael Neider <rneider AT web.de>
3605
3606         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
3607         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
3608           to hold the condition bit)
3609         * added new version of genCmp (old code available via #define)
3610         * added new version of genShiftLeft/genShiftRight in a generic
3611           way, now supports shifting by negative values
3612         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
3613           shiftCount (expected by genGenericShift)
3614         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
3615         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
3616           dump
3617         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
3618           is an invalid literal too...)
3619
3620 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
3621
3622         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
3623         from Raphael Neider,
3624         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
3625         for 8-bit literals. This fixes some literal operands which are sign
3626         extended to 16-bits ints when instruction needs only 8-bits.
3627
3628 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
3629
3630         * device/lib/logf.c: added mcs51 assembly version
3631         * device/lib/expf.c: added mcs51 assembly version
3632         * device/lib/_logexpf.c: new shared asm code for expf and logf
3633         * device/include/math.h: add defines for assembly math library
3634         * device/lib/Makefile.in: build new _logexpf.c
3635         * device/lib/libfloat.lib: use new _logexpf.c
3636
3637 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3638
3639         * src/pic/device.c
3640         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
3641           device types which have less than 0x7f registers.
3642
3643 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3644
3645         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
3646
3647 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3648
3649         * device/lib/printf_fast.c: only build on supported arch.
3650         * device/lib/printf_tiny.c: only build on supported arch.
3651         * device/lib/printf_fast_f.c: only build if asm float lib
3652         * device/lib/_fsget1arg.c: only build if asm float lib
3653         * device/lib/_fsget2args.c: only build if asm float lib
3654         * device/lib/_fsnormalize.c: only build if asm float lib
3655         * device/lib/_fsreturnval.c: only build if asm float lib
3656         * device/lib/_fsrshift.c: only build if asm float lib
3657         * device/lib/_fsswapargs.c: only build if asm float lib
3658         * device/include/stdio.h: don't provide print_fast,
3659           print_fast_f, print_tiny prototypes if --xstack used
3660
3661 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
3662
3663         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
3664         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
3665           to the SOURCES
3666
3667 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3668
3669         * device/lib/printf_fast_f.c: same as printf_fast, but
3670           with floating point enabled
3671         * device/lib/printf_fast.c: minor tweaks
3672         * device/include/stdio.h: add printf_fast_f
3673
3674 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3675
3676         * src/SDCCmain.c: make --float-reent default for mcs51
3677         * device/lib/_fsadd.c: added mcs51 assembly version
3678         * device/lib/_fssub.c: added mcs51 assembly version
3679         * device/lib/_fsmul.c: added mcs51 assembly version
3680         * device/lib/_fsdiv.c: added mcs51 assembly version
3681         * device/lib/_fseq.c: added mcs51 assembly version
3682         * device/lib/_fsneq.c: added mcs51 assembly version
3683         * device/lib/_fsgt.c: added mcs51 assembly version
3684         * device/lib/_fslt.c: added mcs51 assembly version
3685         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
3686         * device/lib/Makefile.in: add _fscmp to build
3687         * device/lib/libfloat.lib: add _fscmp to build
3688
3689 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3690
3691         * device/lib/_fs2slong.c: added mcs51 assembly version
3692         * device/lib/_fs2sint.c: added mcs51 assembly version
3693         * device/lib/_fs2schar.c: added mcs51 assembly version
3694         * device/lib/_fs2ulong.c: added mcs51 assembly version
3695         * device/lib/_fs2uint.c: added mcs51 assembly version
3696         * device/lib/_fs2uchar.c: added mcs51 assembly version
3697         * device/lib/_slong2fs.c: added mcs51 assembly version
3698         * device/lib/_sint2fs.c: added mcs51 assembly version
3699         * device/lib/_schar2fs.c: added mcs51 assembly version
3700         * device/lib/_ulong2fs.c: added mcs51 assembly version
3701         * device/lib/_uint2fs.c: added mcs51 assembly version
3702         * device/lib/_uchar2fs.c: added mcs51 assembly version
3703         * device/include/float.h: added #define to select asm vs c
3704
3705 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
3706
3707         * device/lib/printf_fast.c: improvements to float output
3708         * device/include/float.h: add defines for assembly float library
3709         * device/lib/_fsget1arg.c: receive 1 float arg
3710         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
3711         * device/lib/_fsnormalize.c: normalize a float
3712         * device/lib/_fsreturnval.c: return float, various helper routines
3713         * device/lib/_fsrshift.c: right shift a float's mantissa
3714         * device/lib/_fsswapargs.c: swap 2 floats
3715         * device/lib/Makefile.in: build these 6 new files for mcs51
3716         * device/lib/libfloat.lib: add these 6 files to the library
3717
3718 2004-12-26 Borut Razem <borut.razem AT siol.net>
3719
3720         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
3721           built by gcc 3.4.2
3722
3723 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
3724
3725         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
3726           and fully reentrant and register bank neutral.
3727         * device/lib/printf_fast.c: added float (not enabled by default),
3728           added compact/slower integer (also not enabled by default),
3729           improved size/speed of fast integer code, other minor changes
3730         * device/include/stdio.h, device/lib/Makefile.in,
3731           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
3732
3733 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
3734
3735         * src/pic16/pcode.c: declaring variables other than at the start of a
3736           block is not supported in C by VC6.
3737
3738 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
3739
3740         * applied a previous patch from Raphael Neider that wasn't included
3741         in the previous commits, which fixes infinite loops within jumptable
3742         improvements,
3743         * made some fixes that previous patches introduced
3744
3745 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
3746
3747         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
3748         that fixes an issue with AOP_PCODE asmop's offset,
3749         * (pic16_popCopyReg): update instance field too,
3750         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
3751         function of pic port,
3752         * (genCmp, genAnd, genAssign),
3753         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
3754
3755 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
3756
3757         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
3758         variables initial values to idata section,
3759         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
3760         variables in some functions. This utilizes parmBytes field of iCode
3761         structure to hold the offset of the variable in stack. (might be
3762         able to use the stack field too?)
3763         * applied patch from Raphael Neider # ### , # ###
3764         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
3765         variable initial values in idata section,
3766         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
3767         for static variables with initial value
3768         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
3769         applied fix in while loop from Raphael Neider.
3770
3771 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
3772
3773         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
3774         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
3775         * src/ds390/ralloc.c (serialRegAssign): spill bits
3776         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
3777         * support/Util/SDCCerr.c,
3778         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
3779         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
3780         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
3781
3782 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
3783
3784         * device/include/sdcc-lib.h: inserted LGPL, added includes
3785           asm/ds390/features.h and asm/mcs51/features.h
3786         * device/include/asm/default/features.h,
3787         * device/include/asm/gbz80/features.h,
3788         * device/include/asm/z80/features.h: added empty _AUTOMEM
3789           and _STATMEM
3790         * device/include/asm/ds390/features.h,
3791         * device/include/asm/mcs51/features.h: added files with defines for
3792           _AUTOMEM and _STATMEM indicating automatic and static storage class
3793         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
3794         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
3795         * src/SDCCicode.c (geniCodeCast),
3796         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
3797         * src/SDCCloop.c (loopInduction): removed unused variable lr
3798         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
3799           to convertToFcall to include char modulo (RFE 1065037), added check
3800           if left operand is unsigned and use abs of literal value
3801         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
3802           as it doesn't work after conversion from peephole.def to peephole.rul
3803         * src/mcs51/gen.c (toBoolean): added check for size,
3804           (genModOneByte): optimized code for signed char modulo a literal
3805           power of 2 (thanks to Hubert Sack),
3806           (genRRC): removed unnecessary "clr c",
3807           (genRLC): replaced "add a,acc" with cheaper "rlc a"
3808         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
3809           jump optimization,
3810           swapped rules 256.c and 256.d,
3811           extended 256.d by using new multiple checks (thanks Erik),
3812           added rules 256.e and 256.f,
3813           updated rule 261.a and 261.b to new generated code
3814         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
3815
3816 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3817
3818         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
3819           induction related bugs, including first part of bug #1074377
3820
3821 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
3822
3823         * applied patch from bug-report #1076292,
3824         * applied patches for genAnd and Goto-optimizations for Raphael
3825         Neider,
3826         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
3827         dump a less iCode information,
3828         * src/pic16/device.h (pic16_options_t): added field debgen,
3829         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
3830         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
3831         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
3832         puclic,
3833         * (various functions): added macros FENTRY and FENTRY2 to functions,
3834         to emit function prologue,
3835         * (various functions): fixed indentation,
3836         * (genNearPointerGet): fixed loading of FSR0,
3837         * (genPackBits): applied patch from Raphael Neider to fix updating
3838         of FSR0 and touching only the modified bits,
3839         * src/pic16/genarith.c (various functions): added macros FENTRY to
3840         emit function prologue in comments,
3841         * src/pic16/pcode.h: added functions debugf2, debugf3,
3842         * src/pic16/ralloc.c: partial fix for packForPush caused
3843         segmentation fault,
3844
3845 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3846
3847         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
3848           <stsp AT users.sourceforge.net> with reversed byte order
3849         * support/regression/tests/rotate.c: added (ds390 skips some tests)
3850
3851 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3852
3853         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
3854           bug #1074377
3855         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
3856         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
3857
3858 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3859
3860         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
3861
3862 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3863
3864         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
3865           conditions,
3866           (setFromConditionArgs): friendly operand parser for peephole rules,
3867           (operandBaseName, operandsNotRelated): new peephole condition
3868           "operandsNotRelated" -- similar to "operandsNotSame", but takes
3869           architecture specific register naming into account, handles n-way
3870           comparisons, and supports quoted literals
3871         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
3872
3873 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3874
3875         * src/mcs51/peeph.def: fixed bug #1076940
3876
3877 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3878
3879         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
3880
3881 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3882
3883         Adding support for replacing ljmps with sjmps in jumptables
3884         generated for switch statements. For now you need to set the
3885         environment variable SDCC_SJMP_JUMPTABLE to enable this.
3886         Now 4 algorithms for mcs51 jumptable generation are used:
3887         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
3888         addresses loaded pc-relative for up to 112 cases and stack-pushing
3889         target addresses loaded with offset from dptr for up to 256 cases.
3890
3891         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
3892         * src/mcs51/main.c: adapted constants for switch table generation
3893         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
3894
3895 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
3896
3897         * device/lib/printf_large.c (_print_format): fixed bug 1073386
3898         * support/regression/tests/bug1057979.c: added test for bug 1073386
3899
3900 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3901
3902         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
3903         compilers
3904
3905 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3906
3907         * src/pic16/device.h,
3908         * src/pic16/genarith.c,
3909         * src/pic16/glue.c,
3910         * src/pic16/main.c,
3911         * src/pic16/pcode.c: applied patches #1068154 and #1070213
3912
3913 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
3914
3915         Large cummulative patch for pic16 port.
3916         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
3917         to call when a stack overflow occurs,
3918         * (malloc.h): added CVS Id tag,
3919         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
3920         variable,
3921         * added libc directory. The current version of LibC contains string
3922         functions, ctype functions and macros and some functions of the
3923         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
3924         be extensively tested in the future. Standard disclaimer here.
3925         Library is not automatically build yet. But one can build it by
3926         invoking 'make' inside the libc directory.
3927         * added ADC library under libio. Preliminary version yet.
3928
3929         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
3930         * src/pic16/gen.c (aopForRemat): asmop size is filled by
3931         aopForRemat() now and not by pic16_aopOp(),
3932         * (pic16_popGetTempReg): removed warning messgae when allocating
3933         temporary registers, its a buggy feature and will be removed,
3934         * (pic16_popGet): set register instance field in AOP_CRY,
3935         * (pic16_outBitC): fixed for results in size greater than 1,
3936         * (genUminusFloat): fixed for pic16, ported code from mcs51,
3937         * (pic16_storeForReturn): optimized return of 0,
3938         * (genCmp): experimental code for new genCmp which uses PIC18's
3939         special compare&skip instructions. Initial tests fail some times
3940         with variables grater than 1 byte in size, so new code is disabled,
3941         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
3942         a single bit,
3943         * (genCast): began a fix to optimize the casting of a bit to another
3944         bit, now assigning a bitfield to another bitfield will fail, sorry,
3945         * src/pic16/main.c: disabled the use of lr-support feature,
3946         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
3947         * added some function prototypes, added function _debugf prototype,
3948         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
3949         bits with offset (case PO_GPR_BIT),
3950         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
3951         command line,
3952         * (isBankInstruction): modified to return 0 for no banking instruction,
3953         and 1 for banking instruction,
3954         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
3955         caused stop processing pCodes after a inline assembly block,
3956         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
3957         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
3958         registers when it shouldn't,
3959         * src/pic16/ralloc.c (allocReg): add preliminary support for
3960         supporting a limited set of temporary registers,
3961
3962 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3963
3964         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
3965           genDataPointerSet): ensure assignments always copy in MSB to LSB
3966           order,
3967           (loadRegFromAop): recognize CLRH optimization,
3968           (genFunction): optimize RECEIVE iCodes in reentrant functions
3969
3970 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3971
3972         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
3973           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
3974           selected.
3975         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
3976         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
3977           contiguous with data
3978
3979 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3980
3981         * device/lib/_gptrget.c (_gptrget),
3982         * device/lib/_gptrgetc.c (_gptrgetc),
3983         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
3984           instead of sjmp to ret
3985         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
3986           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
3987
3988 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
3989
3990         * .version: bumped version to 2.4.7
3991         * device/lib/_gptrget.c (_gptrget): is now _naked
3992         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
3993         * device/lib/_gptrput.c (_gptrput): is now _naked
3994         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
3995           (createFunction): fixed xstack
3996         * src/SDCCglue.c (emitMaps): set allocation required for bit area
3997         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
3998           or bit either,
3999           (geniCodeCritical): store original interrupt state in an iTemp bit
4000           var unless stack-auto
4001         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
4002         * src/SDCCmain.c (setIncludePath): added include/target to search path
4003         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
4004         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
4005           prototype,
4006           (processFuncArgs): put bit vars in bit area
4007         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
4008           unsaveRBank): fixed xstack,
4009           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
4010           (genFunction, genEndFunction): fixed xstack,
4011           (genAssign): optimization don't walk backwards through mem
4012         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
4013         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
4014         * support/regression/Makefile: also make library (for stack-auto) when
4015           making "all" and added "test-mcs51-xstack-auto"
4016         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
4017         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
4018         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
4019         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
4020         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
4021           make-library by MAKE_LIBRARY
4022         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
4023           regression tests for xstack
4024         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
4025         * support/regression/tests/critical.c: test for critical on mcs51
4026
4027 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4028
4029         * support/regression/ports/ucz80/spec.mk: use include and lib files from
4030           built version of sdcc instead of installed version
4031
4032 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
4033
4034         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
4035         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
4036           vprintf.c now
4037         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
4038         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
4039           WARNING: remove device/lib/build/z80/printf.o by hand when
4040           updating from previous build!
4041         * device/lib/z80/printf.c: updated comment
4042         * support/regression/tests/bug1057979.c: test all ports now
4043         * support/regression/tests/bug1065458.c: file added
4044
4045 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4046
4047         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
4048           *_start and *_end symbols for static functions
4049
4050 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
4051
4052         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
4053           and search crt0.o in all library paths,
4054           (setIncludePath): proper handling of --nostdinc,
4055           (setLibPath): proper handling of --nostdlib
4056         * support/regression/Makefile,
4057         * support/regression/ports/ds390/spec.mk,
4058         * support/regression/ports/gbz80/spec.mk,
4059         * support/regression/ports/hc08/spec.mk,
4060         * support/regression/ports/mcs51/spec.mk,
4061         * support/regression/ports/mcs51-large/spec.mk,
4062         * support/regression/ports/mcs51-stack-auto/spec.mk,
4063         * support/regression/ports/z80/spec.mk: use include and lib files from
4064           built version of sdcc instead of installed version
4065         * doc/sdccman.lyx: fixed typo in --nostdinc
4066
4067 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
4068
4069         * src/pic/pcode.c,
4070         * src/pic/device.c,
4071         * src/pic/ralloc.c,
4072         * src/pic/gen.c : added support to generate code for struct bit fields.
4073
4074 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
4075
4076         * as/xa51/xa_version.h,
4077         * device/include/errno.h,
4078         * device/include/regc515c.h,
4079         * device/lib/_itoa.c,
4080         * device/lib/_ltoa.c,
4081         * device/lib/ser_ir_cts_rts.c,
4082         * sim/ucsim/xa.src/glob.cc,
4083         * sim/ucsim/xa.src/inst_gen.cc,
4084         * sim/ucsim/xa.src/xa_bit.cc,
4085         * sim/ucsim/xa.src/xa_sfr.cc,
4086         * sim/ucsim/z80.src/inst_dd.cc,
4087         * sim/ucsim/z80.src/inst_fdcb.cc,
4088         * support/scripts/keil2sdcc.pl,
4089         * src/pic16/pic16.dsp,
4090         * src/pic16/pic16a.dsp: corrected cvs line endings
4091         * device/lib/printf_large.c: fixed bug 1057979
4092         * src/pic16/gen.c: fixed non-C standard code
4093         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
4094         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
4095         * support/regression/ports/mcs51/support.c: reload T1 asap
4096         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
4097           pdata use and clear idata startup behaviour
4098         * support/regression/tests/bug1057979.c: added
4099
4100 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
4101
4102         * device/examples/ds390/ow390/ad26.h,
4103         * device/examples/ds390/ow390/cnt1d.h,
4104         * device/examples/ds390/ow390/crcutil.c,
4105         * device/examples/ds390/ow390/ownet.h,
4106         * device/examples/ds390/ow390/owsesu.c,
4107         * device/examples/ds390/ow390/swt12.h,
4108         * device/examples/ds390/ow390/swtoper.c,
4109         * device/examples/ds390/ow390/temp10.h,
4110         * device/examples/ds390/ow390/thermodl.c,
4111         * device/examples/ds390/tinitalk/tinitalk.dsp,
4112         * device/examples/ds390/tinitalk/tinitalk.dsw,
4113         * device/examples/mcs51/clock/hw.h,
4114         * device/examples/mcs51/simple2/go.bat,
4115         * device/examples/serialcomm/windows/serial.h,
4116         * device/examples/xa51/dummy.c,
4117         * device/examples/xa51/hello.c,
4118         * device/include/80c51xa.h,
4119         * device/include/at89x051.h: corrected cvs line endings
4120
4121 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
4122
4123         * src/pic16/main.c (options): added command line --gstack, to trace
4124         stack over/under flows,
4125         * added pragma 'wparam' to allow passing first byte of function
4126         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
4127         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
4128         call to __gstack_test function and sets up the symbol as extern,
4129         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
4130         * popaop): added call to pic16_testStackOverflow,
4131         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
4132         wparamList list,
4133         * (genCall, genPcall): now all parameters are passed via stack
4134         except in functions that are pass to wparam pragma in which WREG is
4135         used too,
4136         * (genPcall): REENTRANT flag is checked to see if variable prototype
4137         contains reentrant keyword, don't call a non-reentrant function, via
4138         a reentrant function pointer or vice versa, functions are never
4139         passed via WREG,
4140         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
4141         D.Winkler,
4142         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
4143         SIGSEGV when accessing a NULL register stucture,
4144         * (pic16_printGPointerType): modified to handle UPPER modifier for
4145         function initializers, changed prototype of function to simpler one,
4146         * (pic16_printIvalFuncPtr): check to see if function is already
4147         added in externs list,
4148         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
4149         optimized a move from W to SFR with a move to the same register
4150         later after a CALL,
4151         * device/lib/pic16/debug: NEW directory, contains debug features
4152         which are enabled when linking with libdebug.lib, currently command
4153         line option --gstack enables stack pointer tracing for over/under
4154         flow, corresponding sources are in debug/gstack
4155
4156 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
4157
4158         * doc/sdccman.lyx: updated SDCC version,
4159         * (PIC16 port): update list of command line options,
4160         * src/pic16/device.h (structure pic16_options_t): added field gstack
4161         to enable stack overflow tracing on push/pops,
4162         * src/pic16/device.c (statistics structure): added statistics
4163         structure,
4164         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
4165         pic16_dump_int_registers): increase statistics counters for each
4166         * variable which is encountered
4167         * (pic16_dump_usection): emit each .udata variable to its own udata
4168         section,
4169         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
4170         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
4171         parameters via stack, otherwise use old scheme,
4172         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
4173         assembler output file,
4174         * src/pic16/main.c: added command line options --gstack to enable
4175         push/pop tracing for stack overflow,
4176         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
4177         instructions): added size of each instruction,
4178         * (pic16_countInstruction): estimate size of instructions in
4179         the_pFile list, inline assembly blocks are not counted,
4180         * (pic16_FixRegisterBanking): trace previous register usage, when
4181         banksel optimizations is greater than 0, don't emit a redudant
4182         banksel directive,
4183
4184 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
4185
4186         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
4187         * src/pic16/ralloc.c : applied same fix for pic16.
4188         * src/pic/gen.c : tidied it up a little.
4189
4190 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4191
4192         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
4193         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
4194
4195 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4196
4197         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
4198
4199 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4200
4201         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
4202         non-reentrant function __modsint in the interrupt function (thus
4203         corrupting math operations during serial I/O)
4204         * device/lib/ser_ir.c: as above, changed buffersize
4205         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
4206         256.c,d for zeroing
4207         * doc/Makefile: added option -t for rsync
4208
4209 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4210
4211         * src/SDCCast.h (struct ast),
4212         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
4213
4214 2004-10-20 Borut Razem <borut.razem AT siol.net>
4215
4216         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
4217         package
4218
4219 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
4220
4221         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
4222         makefile targets,
4223         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
4224         support functions to replace long sequences of MOVFF's from access
4225         bank registers to stack and vice versa,
4226         * src/pic16/device.h: added new field opt_flags, where optimization
4227         flags can be set to enable certain features,
4228         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
4229         * pBlock, (genFunction, genEndFunction): surroung loop for
4230         saving/loading used registers in stack with PC_INFO pCodes,
4231         INF_LREGS. Code in between can then be optimized by pCode optimizer
4232         to support function calls,
4233         * (genDataPointerSet): fixed bug which loaded float fields in
4234         structures with corrupt data,
4235         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
4236         in a standard way debug info on stderr. Feature used for developing
4237         and debugging only,
4238         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
4239         obsolete chunks of code,
4240         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
4241         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
4242         * pic16/src/pcode.c (pic16_newpCodeInfo,
4243         * (pic16_newpCodeOpLocalRegs),
4244         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
4245         feature,
4246         * (pic16_pCodeConstString): printing of the initial value of a
4247         symbol as a comment is inhibited since parsing was already done by
4248         copyStr and output is corrupt,
4249         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
4250
4251 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4252
4253         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
4254
4255 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
4256
4257         * as/mcs51/lkarea.c: removed old K&R style,
4258           (lnksect): changed check on boundary error,
4259           (lnksect2): changed check on boundary error,
4260           (lnksect2): extend XSTK to end of page if size = 1
4261         * as/mcs51/lkmain.c: removed old K&R style,
4262           (Areas51): create l_IRAM symbol
4263         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
4264         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
4265           model-mcs51-stack-auto, added model-mcs51-xstack-auto
4266         * device/lib/_mullong.c: added version to be compiled with xstack
4267         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
4268         * device/lib/mcs51/crtxclear.asm: clear pdata as well
4269         * device/lib/mcs51/crtxstack.asm: fixed comment
4270         * src/SDCCglue.c: maxInterrupts defaults to 0,
4271           (emitMaps): added pdata,
4272           (createInterruptVect): (re)moved default,
4273           (glue): added pdata,
4274           (glue): moved __start__xstack to XSTK with default size 1
4275         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
4276           and options.float_rent when options.stackAuto is set,
4277           (linkEdit): only write XDATA_NAME if provided on command line
4278         * src/SDCCmem.h,
4279         * src/SDCCmem.c: added pdata
4280         * src/port.h: added pdata_name to PORT
4281         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
4282           (saveRegisters, unsaveRegisters): removed usage of B,
4283           (genMinus): fixed accumulator clash,
4284           (genJumpTab): added comment, this needs another look
4285         * src/mcs51/gen.c: added check for "B in use" paranoia,
4286           added pushB() and popB()
4287         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
4288           chance
4289         * src/avr/main.c,
4290         * src/ds390/main.c,
4291         * src/hc08/main.c,
4292         * src/mcs51/main.c,
4293         * src/pic/main.c,
4294         * src/pic16/main.c,
4295         * src/xa51/main.c,
4296         * src/z80/main.c: (reset_regparms) made void parameter explicit and
4297           added PSEG (PAG,XDATA) or NULL to port specifier
4298         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
4299         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
4300           (_mcs51_genInitStartup): removed __start__xstack equ,
4301           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
4302         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
4303         * src/z80/gen.c (_rleAppend): fixed warnings
4304         * support/regression/tests/zeropad.c: added pdata test
4305         * .version: bumped to 2.4.6
4306
4307 2004-10-17 Borut Razem <borut.razem AT siol.net>
4308
4309         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
4310         as a part of nightly build
4311
4312 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
4313
4314         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
4315         WREG holds the first byte function parameters,
4316         * (aopForSym): take special case for symbols which are in FARSPACE
4317         but in CODESPACE too,
4318         * (assignResultValue): modified to take into account _G.useWreg,
4319         * (genCall): don't use wreg for parameter passing when function is
4320         declared as reentrant, too, added optimization INCF to stack
4321         pointer when stack parameter count is 1,
4322         * (genFunction, genEndFunction): refurnished and fixed to not using
4323         wreg for passing parameters when function has varargs or is
4324         reentrant, fixed bug with symbol name compare for generating
4325         functions in absolute address,
4326         * (pic16_storeForReturn): refurnished,
4327         * (genCmp): began writing a new version of the function, not ready
4328         yet, therefore it is disabled,
4329         * (genAssign): do not read code memory when assigning a function to
4330         a pointer function,
4331         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
4332         array of characters, not pointer,
4333         * (pic16initialComments): in debug mode emit an .ident directive for
4334         the assembler,
4335         * (_process_pragma): emit a new warning type (internal to pic16)
4336         when setting stack to default length, emit a similar warning when
4337         placing a function at absolute address and address is not word aligned
4338         * (_pic16_parseOptions): added 'return TRUE' statement,
4339         * (_pic16_linkEdit): if compiling a source, then add the source's
4340         file object, first in the list of objects to link,
4341
4342 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
4343
4344         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
4345         * src/pic/main.c : removed VC warning.
4346         * src/pic/gen.c : changed comment.
4347
4348 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
4349
4350         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
4351         reference to a deprecated symbol _GPTRREG was causing failure to
4352         link. Thanks G. M. Gallant for the info.
4353
4354 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
4355
4356         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
4357         comments for Bugs item #954788.
4358
4359 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
4360
4361         * src/pic16/device.c (pic16_dump_gsection,
4362         * pic16_groupRegistersInSection): handle symbols declared to be in
4363         access bank differently,
4364         * src/pic16/gen.c (struct _G): added field resDirect,
4365         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
4366         send values read from stack directly to result and don't allocate
4367         temporary values,
4368         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
4369         same registers,
4370         * (pic16_sameRegsOfs): NEW,
4371         * (freeAsmop): if _G.resDirect is set then do not mark registers as
4372         free because they were not allocated from temporary pool,
4373         * pic16_popRegFromString): workaround to fix a problem with
4374         allocating variables twice or never,
4375         * (genGenPointerGet): using PRODL instead of FSR0H,
4376         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
4377         instead of FSR0H,
4378         * (genAssign): take advantage of the _G.resDirect flag,
4379         * (genCast): around line 11844, use mov2f instead of directly
4380         MOVFF'ing between operands to account for literal values,
4381         * src/pic16/genutils.c: some new debug functions for gpsim have been
4382         added,
4383         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
4384         float with integer part only,
4385         * src/pic16/main.c (_process_pragma): handle pragma udata access to
4386         place variables in access bank
4387         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
4388         updated sources to reflect recent changes in gen.c
4389
4390 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
4391
4392         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
4393         sources that searched for headers in installation path, now the
4394         device/include/pic16 is used,
4395         * src/pic16/glue.c (pic16glue),
4396         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
4397         .line directives if not in debug mode, this suppresses assembler's
4398         warnings for ignored directives
4399
4400 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
4401
4402         * src/port.h: made reset_regparms prototype void parameter explicit.
4403         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
4404         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
4405         * doc/sdccman.lyx: documented warning disabling and how to use
4406           printf_large to make it print floats.
4407         * device/include/stdbool.h: NEW
4408         * device/lib/_atof.c,
4409         * device/lib/_divuint.c,
4410         * device/lib/_divulong.c,
4411         * device/lib/expf.c,
4412         * device/lib/printf_large.c,
4413         * device/lib/sincosf.c,
4414         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
4415         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
4416           a completely reentrant lib.
4417
4418 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
4419
4420         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
4421         * device/include/pic16/stdio.h: fixed bug with colon
4422
4423 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
4424
4425         * device/include/pic16/stdio.h,
4426         * device/include/pic16/stdlib.h,
4427         * device/include/pic16/math.h: NEW
4428         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
4429         declared as _naked to reduce overhead
4430         * device/lib/Makefile.in (target port-specific-objects-pic16):
4431         changed * to *.* so to ignore the CVS directory,
4432         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
4433         stacked variables back in stack,
4434         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
4435         corruption
4436
4437 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
4438
4439         * .version: bumped version number to 2.4.5
4440         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
4441         * support/Util/SDCCerr.c (messages structure): added entry for
4442         W_POSSBUG2
4443
4444         Large cumulative patch for pic16 port and libraries.
4445         * device/include/pic16/sdcc-lib.h,
4446         * device/include/pic16/stdarg.h,
4447         * device/include/asm/pic16/features.h,
4448         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
4449         * device/include/pic16/float.h: changes reentrant keyword with
4450         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
4451         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
4452         updated target build-libraries to include objects from gptr,
4453         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
4454         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
4455         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
4456         all function headings,
4457         * src/SDCCmain.c: added global parameter userIncDirsSet,
4458         * (parseCmdLine): when option -I is encountered add directory to
4459         userIncDirsSet too,
4460         * src/version.awk: added space between control and long,
4461         * src/pic16/NOTES: added some notes for the port,
4462         * src/pic16/gen.c: added prototype for mov2fp function,
4463         * (fReturnpic16[]): properly named return value registers,
4464         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
4465         * (aopForSym): added code to handle symbols with onStack flag set,
4466         symbols onStack are allocated PTRSIZE bytes,
4467         * (aopFreeAsmop): handles special case where asmops are stack objects,
4468         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
4469         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
4470         added argument lock to trace flaws in allocating temporary registers
4471         when developing port,
4472         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
4473         * (pic16_popRegFromString): reenabled allocating a direct register
4474         from string,
4475         * (assignResultValue): various beautifications,
4476         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
4477         referenced function argument,
4478         * (genIpush): reenabled to allow stacked arguments, handles only
4479         ic->parmPush iCodes,
4480         * (genCall, genPcall): major changes to allow for variable argument
4481         functions, fixed a bug with falsely restoring stack pointer after
4482         returning from call,
4483         * (genFunction): pending code for critical function,
4484         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
4485         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
4486         * (genNearPointerGet): fixed bug with indirect reading, was always
4487         reading from INDF0
4488         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
4489         pointers,
4490         * (genAddrOf): rewrote code to take address of a stacked function parameter
4491         * (genCast): fixed casting to generic pointer type,
4492         * src/pic16/gen.h: added AOP_STA,
4493         * (struct asmop): added field stk,
4494         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
4495         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
4496         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
4497         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
4498         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
4499         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
4500         generic pointers,
4501         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
4502         and library paths,
4503         * (pic16_port structure): generic pointer size is set to 3,
4504         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
4505         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
4506         compiler warning,
4507         * src/pic16/ralloc.c (allocReg): prevent allocating register when
4508         operand is an iTemp,
4509
4510 2004-09-24 Martin Helmling <mh AT octo-soft.de>
4511
4512         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
4513         * debugger/mcs51/simi.c: addapt new syntax of s51
4514
4515 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
4516
4517         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
4518         * src/pic16/pcode.c: commented out some calls to free() in order to
4519         fix bug #989576,
4520
4521 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4522
4523         * src/SDCCicode.h,
4524         * src/SDCCicode.c (isiCodeInFunctionCall),
4525         * src/avr/ralloc.c (selectSpil),
4526         * src/pic/ralloc.c (selectSpil),
4527         * src/pic16/ralloc.c (selectSpil),
4528         * src/ds390/ralloc.c (selectSpil),
4529         * src/hc08/ralloc.c (selectSpil),
4530         * src/xa51/ralloc.c (selectSpil),
4531         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
4532         stack in the middle of a function call sequence (fixes bug #1020268)
4533         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
4534         costs associated with the minimum switch case.
4535
4536 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4537
4538         * src/SDCC.lex: fixed bug #1030549
4539
4540 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4541
4542         * src/SDCCcse.h (struct cseDef),
4543         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
4544         over a function call if the CSE is derived from a symbol whose
4545         address has been taken (fixes bug #1029883)
4546         * support/regression/tests/bug-1029883: a new regression test for
4547         this bug
4548
4549 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4550
4551         * src/hc08/gen.c (emitinline): fixed bug #1029778
4552         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
4553         to a cast object is no longer a syntax error ("fixes" bug #1030006,
4554         and starts toward RFE #905167)
4555
4556 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
4557
4558         * src/pic16/gen.c (mov2f): New function to move an operand to
4559         another without considering if it is a literal or a register,
4560         * (pic16_sameRegs): don't check if they are both AOP_REG,
4561         * (AccRsh): removed andmask=0 lines,
4562         * (genLeftShift): duplicated to be improved in future versions,
4563         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
4564         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
4565         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
4566         * (pic16initMnemonics): added initialization for POC_INFSNZW,
4567         * (insertBankSwitch): fixed inserting banksel directives algorithm
4568         for instructions that follow a skip instruction, this fixes a report
4569         for broken subtraction code generation,
4570         * src/pic16/ralloc.c (deassignLRs): do not free register if current
4571         iCode is a left op, just in case result and right share the same
4572         registers
4573
4574 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4575
4576         * src/hc08/main.c,
4577         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
4578         preservation of HX
4579         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
4580         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
4581         on 2004-09-12; it was buggy
4582
4583 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
4584
4585         * src/SDCCsymt.h: removed RESULT_CHECK
4586         * src/SDCCast.c,
4587         * src/SDCCglue.c,
4588         * src/SDCCval.c,
4589         * src/pic/glue.c,
4590         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
4591
4592 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
4593
4594         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
4595         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
4596         configuration values no more rejected by compiler, they are assigned
4597         to configuration registers with a warning message instead,
4598         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
4599         the for-loop so last conf register is emitted too,
4600         * (_pic16_initPaths): link library libsdcc.lib by default,
4601         * (_hasNativeMulFor): modified test for multiplication according to
4602         Raphael Neider's remarks. Integer multiplication is also done with
4603         support functions,
4604         * device/include/pic16/pic18fregs.h: corrected type error in while
4605         testing and including 18f6720 header file
4606
4607 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
4608
4609         * src/pic16/device.h (pic16_options): removed field use_crt,
4610         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
4611         until an optimization to handle single bits is added,
4612         * (pic16_loadFSR0): moved before genUnpackBits,
4613         * (genAnd): some white lines removed,
4614         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
4615         leave_reset flags in pic16_options when using crt modules,
4616
4617 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
4618
4619         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
4620           for bugs 898889 & 979599. Also used some safer print instructions.
4621
4622 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
4623
4624         * src/pic16/device.h (pic16_options_t): added field use_crt,
4625         crt_name, no_crt,
4626         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
4627         catch a probable future bug,
4628         * src/pic16/gen.c: aopIdx function commented out,
4629         * (genAssign): commented out old code which used aopIdx,
4630         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
4631         code, added if conditionals to take into account the --use-crt
4632         command line options,
4633         * src/pic16/main.c (pic16_optionsTable): added new command line
4634         options, --use-crt= and --no-crt,
4635         * (_pic16_linkEdit): now the proper crt object is added in the
4636         linker command line except than when --no-crt is specified,
4637         * src/pic16/pcode.c,
4638         * src/pic16/pcode.h: added some structures and functions for a new
4639         optimization scheme to compansate for instruction overhead between
4640         same iCodes, this scheme is currently under development and is not
4641         working in any way,
4642         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
4643         to && operator,
4644         * device/lib/pic16/startup/crt0i.c,
4645         * device/lib/pic16/startup/crt0iz.c: added global char variable
4646         __uflags to force the generation of an idata section
4647
4648 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
4649
4650         * doc/Makefile,
4651         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
4652         * doc/sdccman.lyx: updated sdcc version to 2.4.4
4653
4654 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4655
4656         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
4657         Frieder) and clarified the default code optimization mode
4658
4659 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4660
4661         * src/SDCC.lex (doPragma, process_pragma),
4662         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
4663         "opt_code_size", and "opt_code_balanced"
4664         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
4665         regrouped options by category, added support for category headers
4666         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
4667         and "--opt-code-size"
4668         * doc/sdccman.lyx: documented these new options and pragmas
4669         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
4670         preference into account
4671
4672 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4673
4674         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
4675           geniCodePreDec): Fixed bug 904237 by generating a warning
4676         * src/SDCCerr.h,
4677         * src/SDCCerr.c: added warning W_SIZEOF_VOID
4678
4679 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
4680
4681         * src/pic/device.c : When no max ram set validate full memory range.
4682         * src/pic/pcode.c,
4683         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
4684
4685 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4686
4687         * device/lib/_gptrget.c,
4688         * device/lib/_gptrput.c: updated comment
4689         * device/lib/calloc.c,
4690         * device/lib/free.c,
4691         * device/lib/malloc.c,
4692         * device/lib/realloc.c: added LGPL, made them reentrant-safe
4693         * src/SDCCcse.c (cseBBlock),
4694         * src/SDCCicode.c (printOperand, geniCodeArray),
4695         * src/SDCCicode.h (struct operand): fixed bug 868103
4696         * support/regression/tests/bug-868103.c: added
4697         * src/SDCCast.c (searchLitOp),
4698         * src/SDCCcse.h (struct cseDef),
4699         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
4700         * src/SDCCicode.h (struct operand),
4701         * src/SDCCsymt.h (struct sym_link),
4702         * src/avr/gen.c (hasInc),
4703         * src/ds390/gen.c (hasInc),
4704         * src/hc08/gen.c (genPlusIncr, hasInc),
4705         * src/mcs51/gen.c (hasInc),
4706         * src/pic16/glue.c (pic16_printIvalChar),
4707         * src/pic16/ralloc.c (regWithIdx),
4708         * src/xa51/gen.c (hasInc) : removed warnings
4709         * src/SDCCast.c (createBlock): added comment ???
4710         * src/hc08/ralloc.c: updated comments
4711
4712 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4713
4714         * doc/sdccman.lyx: updated section on switch statements, added
4715         section about semaphore locking
4716         * doc/Makefile: added option -info for latex2html
4717         * device/lib/_gptrget.c,
4718         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
4719
4720 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4721
4722         * src/pic/device.h,
4723         * src/pic/device.c,
4724         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
4725          maxram is less than 0x100.
4726
4727 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4728
4729         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
4730
4731 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4732
4733         * src/port.h,
4734         * src/mcs51/main.c,
4735         * src/ds390/main.c,
4736         * src/z80/main.c,
4737         * src/hc08/main.c,
4738         * src/pic/main.c,
4739         * src/pic16/main.c,
4740         * src/avr/main.c,
4741         * src/xa51/main.c
4742         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
4743         a jump table is the best form for a switch statement, including
4744         automatic insertion of missing cases to make the case range
4745         continuous. Developed in collaboration with Frieder Ferlemann.
4746
4747 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4748
4749         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
4750         accumulator result if it needs sign extension
4751
4752 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4753
4754         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
4755
4756 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4757
4758         * device/lib/gbz80/printf.c,
4759         * device/lib/z80/printf.c: removed define for NULL
4760
4761 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4762
4763         * as/xa51/xa_link.c,
4764         * device/examples/ds390/ow390/ad26.c,
4765         * device/examples/ds390/ow390/cnt1d.c,
4766         * device/examples/ds390/ow390/counter.c,
4767         * device/examples/ds390/ow390/ds2480.h,
4768         * device/examples/ds390/ow390/ds2480ut.c,
4769         * device/examples/ds390/ow390/findtype.c,
4770         * device/examples/ds390/ow390/gethumd.c,
4771         * device/examples/ds390/ow390/owllu.c,
4772         * device/examples/ds390/ow390/ownetu.c,
4773         * device/examples/ds390/ow390/swt12.c,
4774         * device/examples/ds390/ow390/swtloop.c,
4775         * device/examples/ds390/ow390/temp.c,
4776         * device/examples/ds390/ow390/temp10.c,
4777         * device/examples/ds390/ow390/thermo21.c,
4778         * device/examples/ds390/ow390/tinilnk.c,
4779         * device/examples/ds390/ow390/tstfind.c,
4780         * device/examples/serialcomm/windows/serial.cpp,
4781         * device/examples/serialcomm/windows/test_serialcomm.cpp,
4782         * device/include/reg51.h: fixed line endings for cvs
4783
4784 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4785
4786         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
4787         packRegsForAccUse, packRegisters): new accumulator register
4788         packing algorithm
4789         * support/regression/ports/hc08/support.c (_putchar): suppress
4790         warning of unused variable
4791         * src/SDCCicode.c: added SWAP entry to codeTable
4792
4793 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
4794
4795         * device/lib/sprintf.c: forgot to add this file before previous commit
4796
4797 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
4798
4799         * src/pic16/gen.c (genPackBits): added operand right in function
4800         parameters, load result directly if p_type is POINTER (that is
4801         called by genNearPointerSet)
4802         * (genUnPackBits): added operand left in function parameters,
4803         * (genNearPointerGet, genNearPointerSet): prevent the loading of
4804         FSR0 if accessing bitfields,
4805
4806 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
4807
4808         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
4809           _print_format; updated printf, sprintf, vsprintf
4810         * device/include/asm/default/features.h: corrected comment/define
4811         * device/lib/Makefile.in: added sprintf.c
4812         * device/lib/libsdcc.lib: added sprintf module
4813         * device/lib/printf_large.c,
4814         * device/lib/vprintf.c,
4815         * device/lib/sprintf.c: totally refactored printf_large and vprintf
4816           into these 3 files
4817         * support/regression/Makefile: changed ALL_PORTS into a usefull default
4818         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
4819         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
4820           hc08 test
4821         * support/regression/tests/zeropad.c: define idata as data for hc08
4822
4823 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4824
4825         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
4826         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
4827         labels are referenced at least once (even if a reference is not found)
4828         * src/hc08/gen.c (emitcode): set isComment flag for comments
4829         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
4830         loads), rules 6a..6b (optimize jumps to return)
4831
4832 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4833
4834         * device/lib/acosf.c (acosf),
4835         * device/lib/asinf.c (asinf),
4836         * device/lib/atanf.c (atanf),
4837         * device/lib/ceilf.c (ceilf),
4838         * device/lib/cosf.c (cosf),
4839         * device/lib/coshf.c (coshf),
4840         * device/lib/cotf.c (cotf),
4841         * device/lib/fabsf.c (fabsf),
4842         * device/lib/floorf.c (floorf),
4843         * device/lib/log10f.c (log10f),
4844         * device/lib/logf.c (logf),
4845         * device/lib/sinf.c (sinf),
4846         * device/lib/sinhf.c (sinhf),
4847         * device/lib/sqrtf.c (sqrtf),
4848         * device/lib/tanf.c (tanf),
4849         * device/lib/tanhf.c (tanhf),
4850         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
4851         replaced all instances of "reentrant" in the library functions
4852         defined in math.h with this macro.
4853         * support/regression/tests/float_trans.c: reenabled test for hc08
4854
4855 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
4856
4857         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
4858         erroneously deleted
4859
4860 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4861
4862         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
4863         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
4864         multi-byte volatile operands are used
4865         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
4866         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
4867         initialization to area GSINIT0 so that it would always precede
4868         any static initializers in GSINIT
4869         * support/regression/tests/zeropad.c: fixed idata define for hc08
4870         * support/regression/tests/bug-927659.c,
4871         * support/regression/tests/float_trans.c: disabled tests for hc08
4872         pending missing library routines
4873         * .version: increased version number to 2.4.4 - hc08 port now passes
4874         regression tests
4875
4876
4877 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
4878
4879         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
4880         * Makefile.common.in,
4881         * as/Makefile,
4882         * as/hc08/Makefile.in,
4883         * as/mcs51/Makefile.in,
4884         * as/z80/Makefile.in,
4885         * debugger/mcs51/Makefile.in,
4886         * device/include/Makefile.in,
4887         * device/lib/Makefile.in,
4888         * doc/Makefile,
4889         * link/Makefile,
4890         * link/z80/Makefile.in,
4891         * packihx/Makefile.in,
4892         * sim/ucsim/main_in.mk,
4893         * sim/ucsim/avr.src/Makefile.in,
4894         * sim/ucsim/doc/Makefile.in,
4895         * sim/ucsim/gui.src/serio.src/Makefile.in,
4896         * sim/ucsim/hc08.src/Makefile.in,
4897         * sim/ucsim/s51.src/Makefile.in,
4898         * sim/ucsim/xa.src/Makefile.in,
4899         * sim/ucsim/z80.src/Makefile.in,
4900         * src/Makefile.in,
4901         * support/cpp2/Makefile.in,
4902         * support/librarian/Makefile,
4903         * support/makebin/Makefile: added DESTDIR to the install path proposed
4904         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
4905         * doc/sdccman.lyx: added DESTDIR documentation
4906
4907 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
4908
4909         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
4910         instruction for interrupt handlers, use fast returns when returning
4911         from high priority interrupts
4912
4913 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4914
4915         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
4916         code generation
4917         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
4918         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
4919         bugs, ported much of Bernhard's code from mcs51
4920         * src/mcs51/gen.c (genSend),
4921         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
4922         than one when calling a reentrant function
4923         * device/lib/_mullong.c: defined an alternate struct layout for big
4924         endian ports (hc08)
4925
4926 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4927
4928         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
4929         test
4930
4931 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4932
4933         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
4934         are sane and complete before asking the port its prefered parameter
4935         passing method (fixes bug #1017633)
4936         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
4937         and _ret3
4938
4939 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4940
4941         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
4942         problem in bitfields >= 8 bits.
4943
4944 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4945
4946         * src/SDCCsymt.c: undid changes that were not meant to be committed
4947
4948 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4949
4950         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
4951
4952 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4953
4954         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
4955           copied and wrong bit got inverted
4956
4957 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4958
4959         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
4960         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
4961         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
4962         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
4963         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
4964         assignments to bitfields at known addresses
4965         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
4966         reads from bitfields at known addresses
4967         * src/hc08/ralloc.c (packRegisters),
4968         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
4969         genhc08Code): optimize pointer get values used as conditionals
4970         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
4971         and branch
4972
4973 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4974
4975         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
4976         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
4977         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
4978         as conditionals
4979
4980 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4981
4982         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
4983
4984 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4985
4986         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
4987         related problems
4988
4989 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
4990
4991         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
4992
4993 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4994
4995         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
4996         mcs51 port
4997
4998 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
4999
5000         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
5001
5002 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5003
5004         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
5005         cases use more compact code.
5006
5007 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
5008
5009         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
5010
5011 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5012
5013         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
5014
5015 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5016
5017         * src/SDCCsymt.h,
5018         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
5019         parameter of changePointer() from symbol* to sym_link*
5020         * src/SDCCast.c (decorateType): call changePointer() for CAST op
5021         * src/SDCCsymt.c (compareType): void* type is castable to other
5022         pointers, but not necesarily an exact match.
5023         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
5024         is no longer blindly treated as an exact match.
5025         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
5026
5027 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
5028
5029         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
5030
5031 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
5032
5033         * src/pic/gen.c,
5034         * src/pic/pcode.c,
5035         * src/pic/ralloc.h,
5036         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
5037
5038 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
5039
5040         * src/pic/device.c,
5041         * src/pic/device.h,
5042         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
5043
5044 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5045
5046         * src/mcs51/gen.c (emitcode): fixed bug #992819
5047
5048 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
5049
5050         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
5051           there's no need to make it worse
5052
5053 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5054
5055         * src/mcs51/ralloc.c (deassignLR),
5056         * src/ds390/ralloc.c (deassignLR),
5057         * src/hc08/ralloc.c (deassignLR),
5058         * src/z80/ralloc.c (deassignLR),
5059         * src/pic/ralloc.c (deassignLR),
5060         * src/pic16/ralloc.c (deassignLR),
5061         * src/avr/ralloc.c (deassignLR),
5062         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
5063         rlivePoint): fixed another part of bug #971834
5064
5065 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5066
5067         * src/z80/main.c: enabled "critical" keyword
5068         * src/z80/mappings.i,
5069         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
5070         functions (fixes bug #979646)
5071         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
5072
5073 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5074
5075         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
5076           such as c:\mydir.
5077
5078 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
5079
5080         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
5081           doesn't disable too much optimizations
5082
5083 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
5084
5085         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
5086
5087 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
5088
5089         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
5090
5091 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
5092
5093         * src/pic/gen.c tidied up tabs
5094         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
5095         * src/pic/main.c tidied up tabs
5096         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
5097         * src/pic/pcoderegs.c tidied up tabs
5098         * src/pic/ralloc.c tidied up tabs
5099
5100 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
5101
5102         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
5103         to S_FIXED for pic16 port and when symbol is not in level 0,
5104         allocate for S_REGISTER storage class and pic16 port, too,
5105         * src/pic16/device.h: prototype for checkSym,
5106         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
5107         * (pic16_assignConfigWordValue): test the value and the mask to
5108         validate that the value is suitable for the configuration word,
5109         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
5110         collect extern declared symbols, don't emit symbol twice, check
5111         first if symbol is in publics set first,
5112         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
5113         * added command line '--fstack' which enables an experimental
5114         feature for stack access, too buggy to be used yet...
5115         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
5116         * (pic16_allocDirReg): when register has storage class S_REGISTER
5117         allocate in pic16_dynAccessRegs,
5118         * device/include/pic16/pic18f????.h: modified configuration word
5119         naming convention, words started as CONFIG0H but should be CONFIG1H
5120
5121 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
5122
5123         * device/include/mcs51reg.h: fixed bug 970993
5124
5125 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
5126
5127         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
5128         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
5129         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
5130         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
5131         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
5132         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
5133           error/warning numbers,
5134           added function setWarningDisabled()
5135         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
5136         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
5137           _memcmp.c _memmove.c calloc.c realloc.c free.c
5138         * support/regression/tests/malloc.c: added tests for new functionality
5139         * support/regression/tests/zeropad.c: added tests for truncated initializers
5140           and initialized char arrays starting with '\x0'
5141         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
5142
5143 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
5144
5145         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
5146
5147 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5148
5149         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
5150         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
5151         peephole 177.e. Thanks to anonymous
5152
5153 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
5154
5155         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
5156         function isn't used in the source but referenced as a
5157         variable initializer then declare it as extern in .asm file
5158
5159 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
5160
5161         * .version: increased version number to 2.4.3
5162
5163         Adding version extension according to ChangeLog CVS revision
5164         * src/Makefile.in (target all): added dependency 'version.h'
5165         * (rule version.h): added rule to create version.h from ChangeLog,
5166         * (rule dep): added dependency version.h,
5167         * src/version.awk: AWK script to create version.h
5168         * src/SDCCdwarf2.c (dwWriteModule),
5169         * src/SDCCglue.c (initialComments),
5170         * src/SDCCmain.c (printVersionInfo): modified to write after
5171         version string the version extension number,
5172         * src/SDCCutil.c: included "version.h"
5173         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
5174         number,
5175         * src/SDCCutil.h: added prototype for getBuildNumber
5176
5177         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
5178         includeDirsSet, too,
5179         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
5180         const char [] is found in function prototype...
5181
5182         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
5183         moving to WREG with source is already in WREG,
5184         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
5185         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
5186         * (aopForSym): stack'ed symbols are partially supported, added
5187         if-clause to support symbols in FARSPACE,
5188         * (sameRegs): added test for AOP_ACC to see if registers are same,
5189         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
5190         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
5191         * (pic16_popRegFromString): will not allocate a new register if it
5192         doesn't find one by name, bug may have introduced...
5193         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
5194         * (genIpush): revived to use pic16 port's stack,
5195         * (genAddrOf): added incomplete case for stack'ed operand,
5196         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
5197         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
5198         can handle multibyte operands,
5199         * src/pic16/glue.c (pic16_printIval*): some debug info added,
5200         * (pic16initialComments): added message for MPLAB compatibility
5201         mode enabled,
5202         * src/pic16/main.h: prototype for pic16_mplab_comp,
5203         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
5204         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
5205         * (_pic16_linkEdit): NEW, handles link stage, transferred here
5206         because of increased complexity of procedure,
5207         * (_process_pragma): stack pragma changed to format 'stack pos len',
5208         emit symbol '_stack_end' to conform with gplink,
5209         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
5210         to search for register,
5211         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
5212         PO_GPR_REGISTER,
5213         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
5214         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
5215         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5216         case for PO_GPR_REGISTER,
5217         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
5218         dies, the new era is ahead !...
5219         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
5220         pic16_dynInternalRegs,
5221         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
5222         * (pic16_allocDirReg): minor optimizations and bug fixes,
5223         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
5224
5225         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
5226         load stack and frame pointer with address of 'stack_end' symbol
5227
5228 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
5229
5230         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
5231         without source code but only variable initializers
5232
5233 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
5234
5235         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
5236         external are not declared as extern to reduce overhead while linking
5237
5238 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
5239
5240         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
5241
5242 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
5243
5244         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
5245           Yee Keat for the patch
5246         * src/SDCCast.c (decorateType): fixed bug #979599
5247         * src/ds390/gen.h: removed local fReturnSizeDS390
5248         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
5249         * src/ds390/gen.c (genAnd, genOr, genXor),
5250         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
5251
5252 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
5253
5254         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
5255         add relFilesSet to $3, manipulate $2 to handle linking of object
5256         files without source files in command line,
5257         * device/include/pic16 (all headers): added ID location macros,
5258         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
5259         entries for ID location bytes,
5260         * (pic16_assignIdByteValue): NEW,
5261         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
5262         added field dumpcalltree to pic16_options_t,
5263         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
5264         is used instead of pic16_Gstack_base_addr, check if (ifx) before
5265         emitting rFalseIfx label after check_carry label,
5266         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
5267         pic16_emitDIRegs), NEW
5268         * (pic16glue): dump .calltree file when option --calltree found,
5269         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
5270         * (_pic16_genAssemblerPreamble): emit ID locations after
5271         configuration registers,
5272         * (pic16_linkCmd): modifications of the link command,
5273         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
5274         * (pic16_pCodeInitRegisters): don't init stack registers,
5275         * (pic16_findPrevInstruction): fixed bug,
5276         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
5277         bug with immediate registers,
5278         * (buildCallTree): traces stack push and pop,
5279         * (pct2): dump also stack usage for each function,
5280         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
5281         * (pic16_allocDirReg): various modifications,
5282         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
5283         fixed to 1,
5284
5285 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
5286
5287         * src/pic16/pcode.c: removed buggy double colon
5288
5289 2004-07-01 Borut Razem <borut.razem AT siol.net>
5290
5291         * support/scripts/sdcc.nsi: added include/pic16 to setup
5292
5293 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
5294
5295         * device/lib/Makefile.in: fixed bug in target objects-pic16,
5296         * device/lib/pic16/Makefile: prefixed with dash (-) command under
5297         target 'clean',
5298         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
5299         specific command line arguments. Also added sample lkr script
5300         for placing a variable at a specific memory bank.
5301         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
5302         at a specific memory bank,
5303         * (pic16_dump_isection): fixed bug which caused string literals to
5304         be omitted when dumping idata section,
5305         * (pic16_groupRegistersInSection): added code to handle registers
5306         in specific memory banks,
5307         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
5308         public, all references are renamed too,
5309         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
5310         AOP_DPTR2,
5311         * (pic16_storeForReturn): added case to handle when dest is WREG,
5312         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
5313         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
5314         pic16_rel_udata, check to see if that register is marked as being
5315         a member of a specific memory bank,
5316         * (pic16_printIvalCharPtr): added code to add string literals either
5317         to code or the idata sections,
5318         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
5319         also accept the 'udata' pragma,
5320         * src/pic16/main.h: new structure types sectName and sectSym
5321         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
5322         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
5323         * (pic16_findPrevInstruction): fixed, it returned nothing,
5324         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
5325         instruction combinations,
5326         * (pic16_FixRegisterBanking): heavily reorganised,
5327         * (pic16_AnalyzeBanking): if generating banksel directives is
5328         disabled, then don't call FixRegisterBanking at all,
5329         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
5330         completely removed,
5331         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
5332
5333 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
5334
5335         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
5336         Phuah Yee Keat <yk.phuah AT nestac.com>
5337
5338 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5339
5340         * src/pic16/glue.c (pic16createInterruptVect): function now emits
5341         correctly the IVT even if it is relocated to some other location
5342
5343 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5344
5345         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
5346         * device/include/pic16/pic18f2220.h: NEW,
5347         * device/lib/pic16/libdev/pic18f2220.c: NEW,
5348         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
5349         * src/pic16/device.c (struct Pics16): added info for 18f2220,
5350         * src/pic16/device.h (struct pic16_options): added ivt_loc and
5351         nodefaultlibs, ivt_loc is the location of the interrupt vector
5352         table, and nodefaultlibs signs that default libraries should not be
5353         linked in link stage,
5354         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
5355         according to --ivt-loc argument,
5356         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
5357         when pragma stack is found,
5358
5359 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5360
5361         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
5362         256 (range check), 257 (do while), 258.a-f (bit banging
5363         f.e. on 3-wire SPI bus)
5364
5365 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5366
5367         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
5368         variables used exclusively within a loop
5369
5370 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
5371
5372         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
5373
5374 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5375
5376         * src/SDCClrange.c (computeClash): fixed bug #971834
5377
5378 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5379
5380         * src/mcs51/gen.c (genCmp): fixed bug #975903
5381         * src/hc08/gen.c (operandsEqu),
5382         * src/ds390/gen.c (operandsEqu),
5383         * src/z80/gen.c (operandsEqu),
5384         * src/pic/gen.c (operandsEqu),
5385         * src/pic16/gen.c (operandsEqu),
5386         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
5387         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
5388
5389 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5390
5391         * src/SDCCcse.c (cseBBlock): fixed bug #966963
5392
5393 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
5394
5395         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
5396         default case in switch statement,
5397         * glue.c (pic16_initPointer): expr is initialised via decoarteType
5398         to eliminate problem with initialisation of pointers, but problem
5399         still exists,
5400         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
5401         * (emitStaticSegment): removed various lines emitting debug info,
5402         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
5403         added processor registers for utilizing EEPROM,
5404         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
5405         configurable and set 8
5406
5407 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
5408
5409         * .version: increased version number to 2.4.2,
5410
5411         Cumulative patch for pic16 port
5412         * src/pic16/device.c: changed scheme to dump initial values for
5413         variables in idata segment, all print_idata* functions were removed,
5414         now the pic16_printIval* will be called,
5415         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
5416         * _pic16_printPointerType, pic16_printPointerType,
5417         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
5418         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
5419         NEW, similar to the respective functions in SDCCglue.c,
5420         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
5421         way, emitting hex bytes,
5422         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
5423
5424 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5425
5426         * src/avr/ralloc.c (serialRegAssign),
5427         * src/xa51/ralloc.c (serialRegAssign),
5428         * src/pic/ralloc.c (serialRegAssign),
5429         * src/pic16/ralloc.c (serialRegAssign),
5430         * src/hc08/ralloc.c (serialRegAssign),
5431         * src/z80/ralloc.c (serialRegAssign),
5432         * src/ds390/ralloc.c (serialRegAssign),
5433         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
5434
5435 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5436
5437         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
5438         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
5439
5440 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
5441
5442         Cumulative patch for pic16 port:
5443         * src/pic16/device.h (typedef PIC16_device) modified fields for
5444         defining microcontrollers,
5445         * src/pic16/device.c: added new info for all devices in Pics16 array,
5446         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
5447         to be optimised out by the pCode optimiser,
5448         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
5449         specially, bug reported by G.M. Gallant,
5450         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
5451         as force'd so that cannot be optimised out by pCode optimiser,
5452         * src/pic16/pcode.c,
5453         * src/pic16/pcodepeeph.c,
5454         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
5455         they are disabled by default, but can be enabled explicit with
5456         command argument --denable-peeps, for testing,
5457         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
5458         --pomit-ivt in COMPILE_FLAGS
5459
5460 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5461
5462         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
5463           compilation on MSVC
5464
5465 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5466
5467         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
5468
5469 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5470
5471         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
5472         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
5473
5474 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
5475
5476         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
5477         would only assign 0x300001 register.
5478
5479 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
5480
5481         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
5482         in COMPILE_FLAGS. Thanks to G. Gallant for report.
5483
5484 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5485
5486         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
5487         for ds80c400
5488         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
5489         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
5490         added peephole 254 (left shift), 255 (jump table)
5491
5492 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
5493
5494         * device/lib/Makefile.in: removed comment line with model-pic16,
5495         * (target port-specific-objects-pic16): the libraries and objects
5496         are copied to the build directory form the device/lib/pic16/bin
5497         directory
5498
5499         Cumulative patch concerning pic16 port:
5500         * library directory has been re-organized,
5501         * added support for PIC18F1220,
5502         * added headers and library sources for chips 18f1220,18f6520,
5503         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
5504
5505         * configuration registers setting has changed, now each supported
5506         device has a complete description of the registers it uses,
5507         * all initialisations are moved to idata sections, these section
5508         can be absolute or relocatable,
5509         * fixed initialisation of codespace variables,
5510         * fixed warning about PCLATU and gpsim,
5511         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
5512         * (genAssign): use table reads when assigning from variables in codespace,
5513         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
5514         char/int variables placed in codespace,
5515         * (pic16_emitConfigRegs): NEW, emits a list with configuration
5516         registers set in .asm file, no need for --pomit-config-words anymore,
5517         * (pic16glue): some 8051 legacy segments are commented out
5518         (to be removed completely),
5519         * added support for alternative assembler and linker with --asm=
5520         and --link= command line arguments,
5521         * peepholes are disabled automatically in the port, no need to
5522         specify on command line,
5523         * port supports natively char/int/long multiplication, but converts
5524         all divisions to support functions,
5525         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
5526         to the file set in variable $2,
5527         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
5528         strings in ASCII format and not in hex,
5529         * ralloc.c (serialRegAssign): added a triplet of conditional calls
5530         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
5531         allocate proper register if iCodes aren't temporary,
5532
5533 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
5534
5535         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
5536
5537 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
5538
5539         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
5540         is commented out
5541
5542 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5543
5544         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
5545         computed address is reused
5546         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
5547         multi-byte bitfields
5548
5549 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5550
5551         * src/z80/gen.c: (genArrayInit): must check for pointers too
5552
5553 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5554
5555         * support/regression/tests/zeropad.c: never meant to commit the
5556           nestedstruct test: removed, added check for GCC version
5557
5558 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
5559
5560         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
5561         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
5562         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
5563           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
5564           bugs 928906 and 954082 half-empty initializers
5565         * src/SDCCsymt.h,
5566         * src/SDCCsymt.c (getAllocSize): added for above fix
5567         * src/z80/gen.c (genArrayInit): fixed bug 741044
5568         * support/regression/tests/zeropad.c: added tests
5569
5570 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
5571
5572         * src/pic16/device.c (pic16_dump_section): corrected bug which
5573         caused some symbols of the libraries to be misplaced
5574
5575 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
5576
5577         * src/pic16/glue.c,
5578         * src/pic16/ralloc.h,
5579         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
5580         to fix conflict with pic port
5581
5582 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
5583
5584         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
5585         externs configuration variables,
5586         * src/pic16/ralloc.h,
5587         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
5588         prototype in header, commented out some debug messages
5589
5590 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
5591
5592         * src/pic16/glue.c,
5593         * src/pic16/main.c,
5594         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
5595         for gpasm COFF object generation. Thanks to D. Hawkins for
5596         his patch info
5597
5598 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5599
5600         * src/ds390/main.c,
5601         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
5602         Brock for spotting this)
5603         * src/ds390/gen.c (genEndFunction),
5604         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
5605         interrupt handler and critical. Disable push/pop optimizations when
5606         peephole optimizations disabled.
5607
5608 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
5609
5610         Updated pic16 library sources and headers.
5611         * device/lib/pic16/pic18f*/ ,
5612         * device/include/pic16/*.h: modified to handle structured SFR
5613         definitions
5614
5615 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
5616
5617         * src/port.h (PORT structure): added hook initPaths, now each
5618         port can declare its own default search paths,
5619         which can been seen with the --print-search-dirs option,
5620         see pic16 port for example,
5621         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
5622         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
5623         * (doPrintSearchDirs): NEW, replaces in a central manner the
5624         printing of search dirs which was split in set*Paths functions,
5625         * (main): added call to port->initPaths and doPrintSearchDirs,
5626         * src/avr/main.c,
5627         * src/ds390/main.c,
5628         * src/hc08/main.c,
5629         * src/izt/i186.c,
5630         * src/izt/tlcs900h.c,
5631         * src/mcs51/main.c,
5632         * src/pic/main.c,
5633         * src/pic16/main.c: modified port structures to reflect addition of
5634         initPaths hook,
5635
5636         * src/pic16/device.c (regCompare): registers are finally sorted by name,
5637         * (pic16_dump_section): for registers in same address reserve memory once,
5638         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
5639         to no_banksel,
5640         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
5641         result is greater in size than right or left,
5642         * (pic16_genUMult8X8_8): there are some cases where the result can
5643         be 16 bits size, so handle these,
5644         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
5645         * (pic16_outBitC): modified to emit pcodes,
5646         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
5647         or not,
5648         * (genDivOneByte): implemented algorithm to divide 8-bits,
5649         * (genCmp): uncommented goto, but issues still exist,
5650         * (genAnd): fixed a bug with variables >8bits,
5651         * (genPackBits): optimization added that uses BCF/BSF to change a
5652         single bit,
5653         * (genAssign): fixed bug when assigning floating point literals,
5654         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
5655         __sdcc_gsinit_startup label,
5656         * src/pic16/main.c (_pic16_init): removed search directory
5657         initialisations,
5658         * (_pic16_initPaths): NEW, used to initialise search directories,
5659         * (_hasNativeMulFor): support functions for all except char/int
5660         multiplication, and char division,
5661         * (PIC16_port struct): modified entry for native mul support,
5662         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
5663         no_banksel option,
5664         * (buildCallTree): call to register_usage is ifdef'ed out,
5665
5666 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5667
5668         * device/include/string.h: applied Stas Sergeev's patch to make this
5669         header file compatible with the preprocessor -Wundef option
5670         * src/SDCCmain.c (main): abort compilation if preprocessor reports
5671         failure (fixes bug #941458)
5672
5673 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5674
5675         * src/SDCCopt.c (killDeadCode): fixed bug #907733
5676         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
5677         that the variable, not the function, should be static
5678         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
5679         to be consistent with non-literal case
5680
5681 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5682
5683         * src/SDCCast.c (isConformingBody): fixed bug #949967
5684         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
5685         convilong): fixed bug #952086
5686
5687 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5688
5689         * src/SDCCmem.c (allocVariables): fixed bug #955321
5690
5691 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5692
5693         * src/hc08/main.c (_hc08_genAssemblerEnd),
5694         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
5695         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
5696         completely eliminated the use of a temporary file
5697         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
5698         when more than one file linked
5699         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
5700
5701 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5702
5703         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
5704         which fixes bug #543481
5705         * support/regression/tests/bug-751703.c: fixed comments left from a
5706         cut and paste error
5707         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
5708         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
5709         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
5710         scopes
5711         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
5712         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
5713         are now changed to underscores in moduleName
5714
5715 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5716
5717         * as/mcs51/lkmem.c: better fix for bug #954173
5718
5719 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
5720         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5721
5722         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
5723         * device/include/c8051f000.h,
5724         * device/include/c8051f120.h,
5725         * device/include/c8051f300.h,
5726         * device/include/c8051f310.h,
5727         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
5728         PWM16) and detab'ed
5729
5730 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5731
5732         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
5733         and mailing lists, doc'ed --no-peep-comments, removed reference
5734         to knoppix (newest version has no LyX/LaTeX), other minor changes
5735         * src/SDCCglue.c (glue): save 2 bytes stack space with
5736         option --main-return. The ljmp could probably be avoided too
5737
5738 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5739
5740         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
5741
5742 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5743
5744         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
5745         * src/SDCCopt.c (isLocalWithoutDef),
5746         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
5747         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
5748         (credit to Maarten Brock for patch #949363, on which this is based)
5749         * support/regression/tests/bug-751703.c: some test cases of extern used
5750         within inner scopes.
5751
5752 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5753
5754         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
5755         SPEC_STRUCT
5756         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
5757         struct definitions
5758         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
5759         dwWriteLabel): fix to create valid debugger symbols even when
5760         the module name has non-alphanumeric symbols in it
5761         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
5762         when a variable's allocation has been optimized away
5763
5764
5765 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5766
5767         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
5768         * src/hc08/main.c,
5769         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
5770         * src/mcs51/main.c,
5771         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
5772         * src/ds390/main.c,
5773         * src/z80/gen.c (z80_emitDebuggerSymbol),
5774         * src/z80/main.c,
5775         * src/pic/gen.c (pic14_emitDebuggerSymbol),
5776         * src/pic/main.c,
5777         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
5778         * src/pic16/main.c,
5779         * src/avr/gen.c (avr_emitDebuggerSymbol),
5780         * src/avr/main.c,
5781         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
5782         * src/xa51/main.c,
5783         * src/SDCCdebug.c (emitDebuggerSymbol),
5784         * src/SDCCdebug.h,
5785         * src/port.h: added a debugger struct to the port struct. Added a
5786         callback for defining debugger symbols
5787
5788         * src/SDCCast.c (createLabel),
5789         * src/SDCC.y (labeled_statement): mark all compiler generated labels
5790         with isitmp = 1
5791         * src/SDCCicode.h,
5792         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
5793         iCode back to the ast for the function
5794
5795         * src/hc08/ralloc.c (hc08_assignRegisters),
5796         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
5797         unneeded fields from the regs struct.
5798         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
5799         pushReg() & pullReg() functions instead of emitcode()
5800
5801         * src/hc08/gen.c (genLabel, genhc08Code),
5802         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
5803
5804         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
5805         debugger hooks
5806
5807         * src/hc08/gen.c (genEndFunction, genhc08Code),
5808         * src/hc08/gen.h,
5809         * src/mcs51/gen.c (genEndFunction, gen51Code),
5810         * src/mcs51/gen.h,
5811         * src/ds390/gen.c (genEndFunction, gen390Code),
5812         * src/ds390/gen.h,
5813         * src/z80/gen.c (genEndFunction, genZ80Code),
5814         * src/z80/gen.h,
5815         * src/z80/z80.h,
5816         * src/pic/gen.c (genEndFunction, genpic14Code),
5817         * src/pic/gen.h,
5818         * src/pic16/gen.c (genEndFunction, genpic16Code),
5819         * src/pic16/gen.h,
5820         * src/avr/gen.c (genEndFunction, genAVRCode),
5821         * src/avr/gen.h,
5822         * src/xa51/gen.c (genEndFunction, genXA51Code),
5823         * src/xa51/gen.h,
5824         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
5825         specific code to cdbFile.c and out of the backend code generators
5826
5827         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
5828         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
5829         starting address is now 0
5830
5831         * as/hc08/asm.h,
5832         * as/hc08/m08pst.c,
5833         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
5834         assembler directive for DWARF support
5835         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
5836
5837         * src/src.dsp,
5838         * src/Makefile.in,
5839         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
5840
5841 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5842
5843         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
5844         and inappropriate peephole optimization in jump tables
5845
5846 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5847
5848         * as/hc08/m08pst.c,
5849         * src/SDCCglue.c: sdccopt works for the hc08 port now
5850
5851 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
5852
5853         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
5854
5855 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5856
5857         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
5858
5859 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5860
5861         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
5862         rules
5863         * src/SDCCmain.c,
5864         * src/SDCCglobl.h,
5865         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
5866         comments from the peephole optimizer replacement rules
5867         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
5868         symbols
5869         * src/SDCCcse.c (updateSpillLocation),
5870         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
5871         equivalents
5872         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
5873         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
5874         objects far pointers
5875
5876 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5877
5878         * src/SDCCsymt.h: a missing part of my last change
5879         * src/pic/ralloc.c (regTypeNum),
5880         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
5881
5882 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5883
5884         * src/SDCCicode.h,
5885         * src/SDCCicode.c (aggrToPtrDclType),
5886         * src/SDCCptropt.h,
5887         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
5888         ptrPseudoSymConvert),
5889         * src/pic/ralloc.c (regTypeNum),
5890         * src/pic16/ralloc.c (regTypeNum),
5891         * src/hc08/ralloc.c (regTypeNum),
5892         * src/ds390/ralloc.c (regTypeNum),
5893         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
5894         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
5895
5896 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5897
5898         * link/z80/lkmain.c (afile),
5899         * as/hc08/lkmain.c (afile),
5900         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
5901         prevent a pointer problem when a filename has no directory and
5902         no extension specified.
5903
5904 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5905
5906         * link/z80/lkmain.c (afile): allow periods in directory names
5907         * link/z80/lkmain.c (afile),
5908         * as/mcs51/lkmain.c (afile),
5909         * as/hc08/lkmain.c (afile): allow linker script file to have an
5910         extension other than ".lnk"
5911         * link/z80/lklex.c (getfid),
5912         * link/z80/lkmain.c (parse),
5913         * as/mcs51/lklex.c (getfid),
5914         * as/mcs51/lkmain.c (parse),
5915         * as/hc08/lklex.c (getfid),
5916         * as/hc08/lkmain.c (parse): Support comments in the linker script
5917         file on lines by themselves and after filenames
5918
5919 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5920
5921         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
5922
5923 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5924
5925         * src/z80/peeph-z80.def: removed some peephole rules that don't
5926         work with multibyte arithmetic (fixed bug #937126)
5927         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
5928         to registers and not global variables
5929         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
5930         geniCodePreInc, geniCodePostDec, geniCodePreDec,
5931         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
5932         checking for assignments not internally generated (fixed bug #931895)
5933         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
5934         structure member (fixed bug #930072)
5935
5936 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5937
5938         * src/SDCCmain.c (linkEdit),
5939         * src/hc08/main.c (_hc08_parseOptions),
5940         * as/hc08/Makefile.in,
5941         * as/hc08/aslink.h,
5942         * as/hc08/asm.h,
5943         * as/hc08/m08pst.c,
5944         * as/hc08/lkrloc.c (relr, rele),
5945         * as/hc08/lkarea.c (lnkarea)
5946         * as/hc08/lkmain.c (afile, parse),
5947         * as/hc08/lkelf.c: support for ELF output
5948         * as/hc08/lks19.c (s19),
5949         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
5950
5951 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5952
5953         * as/mcs51/lkihx.c: Fixed bug #899105.
5954
5955 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5956
5957         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
5958         .dsp files from Unix to DOS.
5959
5960 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5961
5962         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
5963         function pointers; we have been compliant for several months now.
5964         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
5965         change that was accidently commented out
5966         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
5967         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
5968         bug #922319
5969
5970 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5971
5972         * src/hc08/gen.c: output of all of the internal debugging information
5973         is now controlled by the D() macro; it is disabled by default
5974
5975 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5976
5977         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
5978         harder to keep the same registers during a CAST iCode
5979         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
5980         long via int can be done in a single cast, if the signedness is
5981         correct.
5982         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
5983         putchar() in tinibios.c in ds390's library
5984
5985 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
5986
5987         * src/SDCCast.c (decorateType): fixed bug #898889,
5988         cast result of a literal complement too
5989         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
5990         fixed check for bitfields
5991
5992 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
5993
5994         * src/SDCCicode.c (geniCodeLogic): made it static,
5995         (geniCodeLogicAndOr): added in order to fix bug #905492,
5996         (ast2iCode): fixed bug #905492
5997         * support/regression/tests/bug-905492.c: added
5998         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
5999         (processParms): fixed bug #927659: don't copy parms, this will clear
6000         decorated flag
6001         * support/regression/tests/bug-927659.c: added
6002
6003 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
6004
6005         * src/SDCCast.c (addCast): don't cast float to char
6006         * device/lib/libsdcc.lib: added _memmove
6007
6008 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
6009
6010         * device/lib/large/Makefile: fixed parallel execution by
6011         replacing `make` by `$(MAKE)`
6012
6013 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6014
6015         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
6016         offsets (fixes bug #923936)
6017
6018 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
6019
6020         * device/lib/small/Makefile: fixed parallel execution by
6021         replacing `make` by `$(MAKE)`
6022
6023 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
6024
6025         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
6026
6027 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
6028
6029         * src/pic/gen.c (genCpl): multi-byte complements were not working.
6030         * src/regression/Makefile: Regression test was not running.
6031
6032 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
6033
6034         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
6035         complement if possible
6036         * src/SDCCval.c (valComplement),
6037         * src/SDCCicode.c (operandOperation): fixed complement of literal
6038         * support/regression/tests/onebyte.c (testComplement): added
6039
6040 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
6041
6042         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
6043         return an optimized tree; actually replace actParm with the new tree
6044         * src/SDCCast.h: added some parantheses to remove side effects
6045         * support/regression/tests/bug-920866.c
6046
6047 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
6048         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
6049         Bit operands were not being handled properly in the pic14 port.
6050         (now src/regression/add.c passes again).
6051
6052 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6053
6054         * src/SDCC.y (labeled_statement): case and default no longer require
6055         a following statement (RFE #893037)
6056
6057 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6058
6059         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
6060         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
6061         disabled (fixes bug #916294)
6062         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
6063         "mov a,acc"; patch provided by Lenny Story
6064         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
6065
6066 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6067
6068         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
6069         functions
6070         * src/ds390/gen.c (genFunction, genEndFunction),
6071         * src/ds390/ralloc.c (ds390_assignRegisters),
6072         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
6073         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
6074         pushed if there are parameters passed on the stack. Also, a cleaner
6075         way to decide if r0/r1 should be pushed/popped. (Together they fix
6076         bug #918693)
6077
6078 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6079
6080         * doc/sdccman.lyx,
6081         * device/lib/mcs51/crtpagesfr.asm,
6082         * device/lib/mcs51/crtxinit.asm,
6083         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
6084         to avoid confusion with Si Lab's SFRPAGE register.
6085
6086 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6087
6088         * src/SDCCglue.c (emitMaps): allow public sfr variables
6089         * src/SDCCglue.c (initialComments): include compiler build date
6090         with compiler version and put the timestamp of the generated
6091         assembly file on a serperate line to be less confusing.
6092         * src/port.h: added genInitStartup hook
6093         * src/avr/main.c,
6094         * src/ds390/main.c,
6095         * src/hc08/main.c,
6096         * src/pic/main.c,
6097         * src/pic16/main.c,
6098         * src/xa51/main.c,
6099         * src/z80/main.c: genInitStartup initialize as NULL (default to
6100         historical behaviour)
6101         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
6102         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
6103         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
6104         library instead of hard coding it into the compiler.
6105         * support/regression/ports/mcs51-stack-auto/spec.mk,
6106         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
6107         * device/lib/mcs51/Makefile,
6108         * device/lib/small/Makefile,
6109         * device/lib/large/Makefile,
6110         * device/lib/mcs51/crtpagesfr.asm,
6111         * device/lib/mcs51/crtstart.asm,
6112         * device/lib/mcs51/crtxclear.asm,
6113         * device/lib/mcs51/crtxinit.asm,
6114         * device/lib/mcs51/crtclear.asm,
6115         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
6116         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
6117         and into user configurable files.
6118         * device/lib/clean.mk: clean mcs51 directory too
6119         * support/regression/tests/longlit.c: added static to T1 declaration
6120         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
6121         accesses in the initialization code
6122
6123 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6124
6125         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
6126         OSCTRIMVAL as noted in bug #916008
6127
6128 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6129
6130         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
6131         in loops with multiple exits (reported as incorrect registers
6132         used by Martin Helmling in Sdcc-user list)
6133
6134 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6135
6136         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
6137         made ds390 register extensions look less like error messages
6138
6139 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6140
6141         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
6142         reported by Adam Wozniak in Sdcc-user list
6143
6144 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
6145
6146         * src/SDCCast.c (decorateType): fixed with bug and promotion in
6147         arithmetic optimizations, added debug output
6148
6149 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
6150
6151         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
6152         * sdcc.spec: updated and split sdcc into 3 rpms
6153         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
6154         needed for literals of LEFT_OP and '+'
6155         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
6156         introduced RESULT_TYPE_NOPROM
6157         (geniCodeMultiply): fixed logic for decision if mul is optimized to
6158         left shift
6159         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
6160         limited promotion to int only for '*'
6161         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
6162
6163 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
6164
6165         * src/pic16/gen.c (genSkip),
6166         (genc16bit2lit), (gencjneshort): commented out
6167         (is_LitOp): new helper function, checks operand type
6168         (genCmpEq): rewritten
6169
6170 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
6171
6172         * support/regression/tests/bug-908454.c: added
6173
6174 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
6175
6176         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
6177         * src/SDCCicode.c (usualBinaryConversions): op needs int type
6178         (geniCodeCast): cosmetic, don't preserve bit storage class
6179         (geniCodeLeftShift): added promotion
6180         (geniCodeLogic): fixed regression
6181         * src/SDCCsymt.c (computeTypeOr): accept bits too
6182         (compareType): 2nd part of fix for bug #908454, needed for bitfields
6183
6184 2004-03-07  Borut Razem <borut.razem AT siol.net>
6185
6186         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
6187
6188 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
6189
6190         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
6191         version of pic16_genPackRegisters which does not check if ic is a
6192         CAST operator,
6193         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
6194         function cause string1.c regression test fails
6195
6196 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
6197
6198         * sim/ucsim/configure.in,
6199         * sim/ucsim/configure,
6200         * sim/ucsim/doc/Makefile.in: use docdir
6201         * src/SDCC.y: fixed sbit atrributes
6202         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
6203         * src/SDCCast.c (decorateType): |^& need special promotion handling
6204         * src/SDCCast.h,
6205         * src/SDCCsymt.h: moved definition of RESULT_TYPE
6206         * src/SDCCsymt.h (computeType),
6207         * src/SDCCicode.c: computeType() needs op
6208         * src/SDCCsymt.c (checkTypeSanity),
6209         * doc/sddman.lyx: "plain" bitfields are unsigned
6210         * src/SDCCsymt.c (computeTypeOr): added
6211         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
6212         |^& ops
6213         * src/SDCCval.c (val*): computeType() needs op
6214         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
6215         * support/regression/tests/onebyte.c: added tests for |^&
6216
6217 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
6218
6219         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
6220         for writing icode into asm output.
6221
6222 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
6223
6224         * src/pic16/device.c: added some debug lines enabled
6225         with macro DEBUG_CHECK,
6226         * src/pic16/genarith.c: more debug in genPlus,
6227         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
6228         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
6229         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
6230         * (aopForSym): onStack symbols are re-placed in data memspace,
6231         and onStack flag is cleared,
6232         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
6233         copy temporary pcodeop,
6234         * (genPcall): added warning for not updating PCLATU,
6235         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
6236         always true for pic16 port,
6237         * (genMultOneWord): NEW, supports integer multiplication,
6238         * (genMult): modified to call genMultOneWord,
6239         * (ifxForOp): added warning when return NULL,
6240         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
6241         flag is set before call to operandFromSymbol for implicit
6242         added structures,
6243         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
6244         options.intlong_rent are set by default,
6245         * (_hasNativeMulFor): modified to allow port generation of integer
6246         multiplication,
6247         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
6248         set regtype to REG_SFR for all registers, restricting seting the
6249         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
6250
6251 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6252
6253         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
6254         more than 500 times in the regression tests
6255
6256 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6257
6258         * support/Util/SDCCerr.h,
6259         * support/Util/SDCCerr.c,
6260         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6261         enumerator_list),
6262         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
6263         for symbol conflicts.
6264         * support/valdiags/tests/enum.c,
6265         * support/valdiags/tests/tentdecl.c,
6266         * support/valdiags/tests/struct.c: expect possible error messages
6267         referring to original symbol definitions.
6268         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
6269         * src/SDCCsymt.h,
6270         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
6271
6272 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
6273
6274         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
6275
6276 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
6277
6278         * src/pic16/ralloc.c (newReg): fixed bug #908929
6279
6280 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6281
6282         * src/ds390/gen.c: added missing #include "main.h"
6283
6284 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
6285
6286         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
6287         checking if symbol is already in set,
6288         * src/pic16/device.h: prototype for checkAddSym,
6289         * src/pic16/gen.c: (_G): added entry interruptvector,
6290         * (assignResultValue): removed some commented out lines,
6291         * (genFunction): check for ISR via sym->type, absolute section for
6292         interrupt code is created via a new pBlock, the goto instruction is
6293         placed now correctly at the interrupt vector position, changed all
6294         references from ivec to _G.interruptvector,
6295         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
6296         is the interrupt is a high priority one, same for return from ISR,
6297         * src/pic16/glue.c: changed all calls of addSetHead for publics and
6298         externs to calls of checkAddSym,
6299         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
6300         pic16_pcode_verbose flag is set,
6301         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
6302         * src/pic16/pcoderegs.c: message about how many registers are saved
6303         will only be emitted if pic16_pcode_verbose flag is set,
6304
6305 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6306
6307         * src/ds390/ralloc.h,
6308         * src/ds390/ralloc.c (ds390_regWithIdx),
6309         * src/ds390/gen.c (emitcode),
6310         * src/ds390/main.h,
6311         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
6312         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6313         ds390operandCompare, getRegsRead, getRegsWritten,
6314         initializeAsmLineNode): customized instruction size calculation for
6315         ds390, started basis for some register optimizations
6316         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
6317         corresponding assembly output
6318         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
6319         missing push/pop of r0/r1. Optimized push/pops
6320
6321 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6322
6323         * src/mcs51/main.c (instructionSize): fixed ACALL size
6324         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
6325
6326 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
6327
6328         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
6329         the sorting of rlist with NULL elements
6330         * (print_idataType, print_idata): NEW to create idata sections
6331         * src/pic16/device.h: idataSymSet new variable
6332         * src/pic16/gen.c (genFunction): fixed some bugs in string
6333         comparing, improved the absolute section creation for ISRs,
6334         added FSR0L/FSR0H in registers that are saved in an ISR,
6335         * (genInline): fixed the processing of inline snippets,
6336         now they undergo no process by the peephole optimizer
6337         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
6338         are placed in idataSymSet,
6339         * (pic16emitStaticSeg): extern symbols are added in externs,
6340         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
6341         switching when aboslute variables are placed in access bank memory
6342         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
6343         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
6344         commented out with #if,
6345         * (pic16_packRegisters): reintroduce the check for CAST because some
6346         symbols are not correctly handled,
6347         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
6348         pCodeInstruction instead of pCode,
6349         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
6350         pCodeAsmDir definition,
6351         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
6352         directive, then the argument directive is emitted without the leading
6353         tab, hack for inline labels which must be in the first column,
6354         * (compareLabel,pic16_findNextInstruction),
6355         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
6356         * (insertBankSwitch): modified for the new pCodeAsmDir,
6357
6358 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6359         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
6360
6361         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
6362         instance,
6363         * (pushSide): commented out with #if,
6364         * (assignResultValue): fixed some typos in saving
6365         registers,
6366         * (genPcall): FIXED and sync'ed with genCall,
6367         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
6368         * (genNearPointerGet): fixed to handle some more cases,
6369         implementation scheme via table reads,
6370         * (genConstPointerGet): modified to access code memory correct,
6371         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
6372         and improved to handle some cases
6373         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
6374         instead of "RETLW" for init data
6375         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
6376         not IN_DIRSPACE, work around to reduce bank switching when aboslute
6377         variables are placed in access bank memory (<0x80 and >=0xf80),
6378         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
6379         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
6380         TBLWT_POSTDEC,TBLWT_PREINC
6381         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
6382         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
6383         directives
6384         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
6385         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
6386         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
6387         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
6388
6389 2004-02-29  Borut Razem <borut.razem AT siol.net>
6390
6391         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
6392         support/Util/findme.h, support/Util/system.h: enhance binary relative
6393         search for lib and include by using findProgramPath()
6394
6395 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6396
6397         * src/SDCCpeeph.h,
6398         * src/SDCCpeeph.c (pcDistance),
6399         * src/port.h,
6400         * src/mcs51/ralloc.h,
6401         * src/mcs51/ralloc.c (mcs51_regWithIdx),
6402         * src/mcs51/main.h,
6403         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
6404         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6405         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
6406         size calculation port specific, started basis for some register
6407         optimizations
6408         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
6409         missing push/pop of r0/r1. Optimized push/pops
6410         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
6411         * device/lib/_modsint.c (_modsint),
6412         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
6413         and stack version so regression tests pass
6414
6415 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
6416
6417         * src/Makefile.in (dep): include SLIBOBJS in dependency check
6418         * src/SDCCast.c (decorateType): catch another small optimization
6419         with '?' operator
6420         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
6421         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
6422         modified to finally use computeType() all over SDCC,
6423         see Feature Request #877103
6424         * src/SDCCval.h: cosmetic
6425         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
6426         valCompare(); regression tested in muldiv.c
6427         * support/regression/tests/muldiv.c (testMod): mod sign follows
6428         dividend only
6429
6430 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
6431
6432         * src/SDCCast.c (decorateType): fixed bug #902362
6433         * doc/INSTALL.txt: fixed install instructions for win32
6434
6435 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
6436
6437         * device/include/Makefile.in (install): fixed by replacing spaces
6438         by tabs
6439         * doc/README.txt,
6440         * doc/INSTALL.txt: updated for release
6441         * doc/sdccman.lyx: added warning for --xstack being buggy
6442
6443 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
6444
6445         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
6446         to eliminate build warnings.
6447         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
6448
6449 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
6450            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6451
6452         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
6453         removed -penable-stack, added comment for stack pragma, added
6454         warning for not initializing the stack/frame registers, removed
6455         comment at interrupts section
6456
6457         Stack is made permanent, there is no ability to disable stack usage.
6458         * src/pic16/device.h,
6459         * src/pic16/device.c: removed all references to USE_STACK macro,
6460         * src/pic16/device.c (pic16_dump_section): when no elements in
6461         rlist, free rlist before return,
6462         * (pic16_dump_int_registers): NEW, internal registers are a new set
6463         of general purpose registers reused by each function,
6464         * (checkAddReg): returns 1 if registers is added to set,
6465         * (pic16_groupRegistersInSection): when a registers is of type
6466         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
6467         * src/pic16/device.h: memRange and Assigned Memory are deleted,
6468         SRCASECMP macro is moved here from device.c
6469         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
6470         PO_PCLATU, PO_PRODL, PO_PRODH,
6471         * (pic16_pCodeOpType, genMinus,
6472         changed compares to "a" register, with AOP_ACC,
6473         * (pic16_genPlus): fixed some bugs and indented properly,
6474         * (pic16_addSign): changed size to size+offset in the MOVWF
6475         instruction,
6476         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
6477         multiply 8-bit operand by literal, result is 8-bit,
6478         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
6479         multiply 2 8-bit operand, result is 8-bit,
6480         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
6481         genUMult8X*_16,
6482         * src/pic16/gen.c: changed accUse to contain WREG only,
6483         * (pic16_emitcomment): renamed to pic16_emitpcomment,
6484         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
6485         true, do not use immediate addressing any more unless sym is a
6486         pointer in codespace,
6487         * (aopForRemat): do not use immediate addressing when symbol not in
6488         codespace and when symbol's address is requested,
6489         * (aopOp): for-loop in if(sym->accUse) is modified for the new
6490         accUse size (= 1),
6491         * (aopGet): added case for AOP_ACC and don't return "accumulator
6492         bug" but WREG instead,
6493         * (popGetTempReg): pushes contents of temporary register in stack,
6494         * (popReleaseTempReg): pops contents of temporary register from
6495         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
6496         * (pic16_popGet): separated case AOP_ACC to return register WREG
6497         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
6498         or PO_IMMEDIATE and initializes their instance/offset appropriately,
6499         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
6500         the use of immediate pointers to certain cases only.
6501
6502         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
6503         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
6504         * (assignResultValue, genCall, genRet): modified to use the new
6505         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
6506         genPcall is still broken,
6507         * (genFunction): added code to create 'A' type pBlocks when
6508         interrupt functions are generated, code not extensively tested yet,
6509         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
6510         * (genEndFunction): modified so ISRs pop stored registers from stack,
6511         * (genMultOneByte): cleanup,
6512         * (AccRsh): added flag andmask, to and result with appropriate mask,
6513         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
6514         * (genDataPointerGet): fixed and reenabled its use,
6515         * (genNearDataPointerGet): bugs fixed,
6516         * (genDataPointerSet): bugs fixed,
6517         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
6518         pic16_DumpSymbol, pic16_DumpOp,
6519         * src/pic16/genutils.h: function prototypes for the above functions,
6520         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
6521         pointers,
6522         * (pic16emitRegularMap): many many many improvements, but needs a
6523         major cleanup,
6524         * src/pic16/main.c: enable_stack in pic16_options is removed,
6525         * (_pic16_parseOptions): removed command line options -penable-stack,
6526         * (_process_pragma): emit stack symbol only when stack pragma is
6527         processed,
6528         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
6529         redirected to FSR0L/FSR0H pair,
6530         * (pic16_get_op, pic16_get_op2): modifications and improvements,
6531         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
6532         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
6533         for immediates,
6534         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
6535         * (dumpPicOptype): NEW,
6536         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
6537         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
6538         with movff instruction,
6539         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
6540         added pic16_int_regs, some packRegsFor* functions are commented out,
6541         because produce errors,
6542         * src/pic16/NOTES: minor modifications
6543
6544 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6545
6546         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
6547         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
6548         --pack-iram.
6549         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
6550         * as/mcs51/lkaomf51.c: fixed bug #895763
6551
6552 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
6553
6554         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
6555
6556 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6557
6558         * doc/sdccman.lyx: added details about the HC08 storage classes and
6559         interrupts, fixed the register usage info for z80 & gbz80
6560
6561 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
6562
6563         * doc/sdccman.lyx: added more pic16 port documentation
6564         * device/include/pic16/: added header pic18fregs.h
6565
6566 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
6567
6568         * doc/sdccman.lyx: added Vangelis' contribution
6569
6570 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6571
6572         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
6573         extend to the next CALL or PCALL, not just to the next CALL.
6574
6575 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
6576
6577         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
6578
6579 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6580
6581         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
6582         bug #895752 and a better fix for bug #716790
6583
6584 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6585
6586         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
6587
6588 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6589
6590         * doc/sdccman.lyx: minor changes, minor changed
6591
6592 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
6593
6594         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
6595         which can't handle SDCC_NEWONEBYTEOPS,
6596         (geniCodeMultiply): removed conversion from mult to shift for pic14
6597         and pic16
6598
6599 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6600
6601         * src/hc08/gen.h,
6602         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
6603         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
6604         thus fixing bug #895406
6605
6606 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
6607
6608         * device/lib/_modsint.c,
6609         * device/lib/_modslong.c: sign follows divisor only
6610         * src/hc08/gen.c (genMultOneByte): if result size is 1,
6611         signs or signedness can be ignored
6612         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
6613         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
6614         added optimization for IFX,
6615         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
6616         arguments;
6617         reenabled optimization for IFX, which was removed on 2004-01-11
6618         * src/SDCCast.h: added return type IFX
6619         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
6620         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
6621         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
6622         SDCC_OLDONEBYTEOPS selects the old behaviour
6623         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
6624         changed again and commented promotion rule
6625         * src/SDCCval.c (valDiv): promotion no longer necessary
6626         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
6627         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
6628         rewritten
6629         * support/regression/tests/onebyte.c: added
6630
6631 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
6632
6633         * gen.c (genInline): reverted to old code for assemnling inline
6634         code because of bug reported James Chadd
6635
6636 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
6637
6638         * ralloc.h: missing declarations from previous patch,
6639         seems that patch for ralloc.h was never applied, fixed
6640
6641 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6642            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6643
6644         * pcode.c,
6645         * pcode.h,
6646         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
6647         indirect addressing. Marked FSR0 as deprecated
6648         * gen.c (pointerCode): commented out, not needed now
6649         (pic16_popGet2p): new MOVFF helper function
6650         (genGenPointerGet),
6651         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
6652         (shiftRLong): removed duplicate debugging info
6653
6654 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6655
6656         * src/ds390/gen.c (genNearPointerGet),
6657         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
6658         optimization with bits, but not bitfields.
6659         * src/ds390/ralloc.c (packRegisters),
6660         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
6661
6662 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
6663
6664         * src/SDCCcse.c (algebraicOpts): copy operands before modification
6665
6666 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6667
6668         * src/SDCCsymt.h,
6669         * src/SDCCicode.c (operandFromSymbol),
6670         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
6671         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
6672         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
6673         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
6674         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
6675         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
6676         bug #892038
6677         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
6678         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
6679         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
6680         * src/SDCCsymt.c (newSymbol),
6681         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6682         enumerator_list),
6683         * src/SDCCval.h,
6684         * src/SDCCval.c (newiList): fixed bug #885705
6685
6686 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6687
6688         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
6689         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
6690
6691 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6692
6693         * device/include/c8051f120.h,
6694         * device/include/c8051f300.h,
6695         * device/include/c8051f310.h: added/updated header files for Silicon
6696         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6697         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
6698         in new section Submitting patches
6699
6700 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6701
6702         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
6703         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6704         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6705         genGenPointerSet),
6706         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
6707         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6708         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6709         genGenPointerSet),
6710         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
6711         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6712         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6713         genGenPointerSet),
6714         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
6715         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6716         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6717         genGenPointerSet): fixed bug #892400
6718         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
6719         to eliminate build warnings.
6720         * src/SDCCast.c (processParms),
6721         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
6722         fixed bug 751859
6723         * support/valdiag/valdiag.py: added GCC to the list of defines active
6724         when compiling with gcc
6725
6726 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6727
6728         * support/Util/SDCCerr.h,
6729         * support/Util/SDCCerr.c,
6730         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
6731         with an incomplete type (fixed bug #883734)
6732         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
6733
6734 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6735
6736         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
6737
6738 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6739
6740         * src/SDCCast.c (decorateType),
6741         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
6742         function pointer implementation
6743         * support/regression/tests/funptrs.c: added tests to verify both forms
6744         of function pointers work correctly. Added tests to verify parameters
6745         are passed in the correct order.
6746
6747 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
6748
6749         * device.c (regCompare): registers are sorted by ascending
6750         address and increasing size,
6751         * main.c (_pic16_finaliseOptions): removed the declaration
6752         of compiler macro MCU. Now a macro of the format pic18fxxxx
6753         will be defined from the command line
6754
6755 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6756             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6757
6758         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
6759         PCOP_RLCF was overwritten!
6760         * gen.c (genSkip): commented out calls to pic16_emitcode,
6761         * (genCmpEQ): fixed "long" compares, only high word did get compared,
6762         * (genlshTwo),
6763         * (genRRC): added debugging info,
6764         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
6765         overwritten while shifting,
6766         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
6767         overwritten while shifting,
6768         * (AccLsh),
6769         * (AccRsh),
6770         * (shiftLLeftOrResult),
6771         * (shiftRLeftOrResult),
6772         * (shiftRLong),
6773         * (shiftLLong): Implemented with pic16_emitpcode
6774         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
6775         * (genLeftShift): Fixed bug, operand for shift by variable always
6776         was "and"ed with 0x0f,
6777         * (genLeftShiftLiteral),
6778         * (genrshTwo),
6779         * (genRightShiftLiteral): added debugging info,
6780         * (genrshFour): added comment,
6781         * (genRightShift): determined signedness from operand "left"
6782         instead of "result"
6783
6784 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6785
6786         * src/SDCCicode.c (geniCodeParms),
6787         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
6788         function pointers, fixed function pointer bugs #861242 and #861896
6789
6790 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6791
6792         * device/include/c8051f000.h,
6793         * device/include/c8051f120.h,
6794         * device/include/c8051f300.h: added header files for Silicon
6795         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6796
6797 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
6798
6799         * src/SDCCast.c (processParams): added new type flow and restructured
6800         (gatherAutoInit): added new type flow
6801         (addCast): cosmetic changes
6802         (getLeftResultType): added new type flow for array indices, patch
6803         provided by Stas, see FR #877103
6804         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
6805         array index patch by Stas
6806         * src/SDCCast.h: added prototype getResultTypeFromType()
6807         * src/SDCCval.h,
6808         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
6809         * src/pic/glue.c (pic14emitStaticSeg),
6810         * src/pic16/glue.c (pic16emitStaticSeg),
6811         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
6812         for initialization of symbols
6813         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
6814         * support/Util/SDCCerr.h:
6815         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
6816         * .version: bumped version number to 2.3.8
6817         * device/include/Makefile.in (install),
6818         * doc/Makefile (install): changed to 'rm `find ...`' construct to
6819         avoid warnings
6820
6821 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
6822
6823         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
6824         Slade Rich fixed an optimization bug
6825         * src/pic/pcodepeep.c,
6826         * src/pic/pcoderegs.c
6827         * doc/Makefile (install): added test for directory
6828
6829 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6830
6831         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
6832         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
6833         * src/pic/ralloc.c (getRegPtr, getRegGpr),
6834         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
6835         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
6836         * as/mcs51/asexpr.c (term),
6837         * as/hc08/asexpr.c (term): fixed bug #887146
6838
6839 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6840
6841         * src/z80/gen.c (genMult): handle single byte result product
6842         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
6843         DUMMY_READ_VOLATILE (fixed bug #886367)
6844
6845 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6846
6847         * support/regression/tests/libmullong.c: fixed logic, on little endian
6848         hosts we ended without a mullong_wrapper()
6849
6850 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6851
6852         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
6853         virus/worm forged address usage.
6854
6855 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6856
6857         Fixed promotion, it should be done on AST level:
6858         * src/SDCCast.c (addCast): added promotion to int
6859         (decorateType): updated call to upCast()
6860         * src/SDCCicode.c (geniCodeLeftShift): removed call to
6861         usualUnaryConversions()
6862
6863 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
6864
6865         * support/regression/tests/literalop.c (mulWrapper): Added a
6866         wrapper to remove integer overflow warnings.
6867
6868         * support/regression/tests/float_trans.c: Made work on host.
6869
6870         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
6871         location of sz80.
6872
6873         * support/regression/generate-cases.py (main): Changed from inline
6874         to a main method.
6875
6876         * doc/Makefile (install): Changed to depth first to get rid of
6877         missing directory install warning.
6878
6879         * as/Makefile (install-doc): Made work on Mac.
6880
6881 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
6882
6883         * src/SDCCast.c: added an additional type flow in decorateType() of
6884         opposite direction, see feature request #860006; it's enabled at runtime
6885         by setting the environment variable SDCC_NEWTYPEFLOW
6886         * src/SDCCast.h: changed prototype of decorateType()
6887         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
6888         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
6889         'char' to 'int' can be omitted, if both operands are 'unsigned char';
6890         see feature request #877103
6891         * src/SDCCval.c: updated call of decorateType()
6892         (valBitwise): fixed bug #882876
6893         (valMinus): added promotion
6894         (valLogicAndOr): result is unsigned
6895         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
6896         * src/SDCCsymt.c (computeType),
6897         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
6898         must not cause an unsigned operation
6899         * src/pic/glue (pic14emitRegularMap),
6900         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
6901
6902 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
6903
6904         * src/pic/pcode.c (PCodeID): commented out left over debug code
6905
6906 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
6907
6908         * support/valdiag/tests/overflow.c: added shift tests
6909         * src/pic/device.c,
6910         * src/pic/gen.c,
6911         * src/pic/gen.h,
6912         * src/pic/glue.c,
6913         * src/pic/main.c,
6914         * src/pic/pcode.c,
6915         * src/pic/pcode.h,
6916         * src/pic/pcodepeep.c,
6917         * src/pic/pcoderegs.c,
6918         * src/pic/ralloc.c,
6919         * src/pic/ralloc.h: applied patch from Slade Rich;
6920         added support for multiple code pages and multiple RAM banks on the
6921         PIC 14 port. The ASM files now no longer simply assume all the
6922         code / RAM are in the same page / bank. This means the linker can
6923         safely allocate code/RAM of separate ASM files to different pages/banks.
6924         * doc/sdccman.lyx: added Slade's tips
6925         * src/mcs51/peeph.def: fixed bug #880768
6926
6927 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6928
6929         * src/hc08/ralloc.c (rematStr): fixed bug #879282
6930         * src/SDCCast.c (decorateType): fixed bug #880197
6931
6932 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
6933
6934         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
6935         getopt.h.
6936
6937         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
6938         strtof is not part of C89 and isn't included with Mac OS X.
6939
6940 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6941
6942         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
6943         shiftL2Left2Result): fixed bug #879326
6944         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
6945         (genMultOneByte): fixed bug in signed vs unsigned multiplication
6946         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
6947         address fetch for clr instruction
6948         * device/lib/hc08/_mulint.c: created optimized assembly version
6949         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
6950
6951 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
6952
6953         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
6954         proposed in FR #877103
6955
6956 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
6957
6958         * src/SDCCval.c (cheapestVal): added missing checks
6959         * src/SDCCicode.c (usualBinaryConversions): fixed condition
6960         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
6961
6962 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
6963
6964         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
6965         equal operands
6966
6967 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
6968
6969         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
6970         loaded with the linker search paths (-L arguments) and the libraries
6971         to be linked with the current source (-l arguments). Changes
6972         currently will affect only the pic16 port.
6973         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
6974         include path the port specific paths and port specific libraries,
6975         * gplink command now contains the $3 argument,
6976         * src/pic16/device.h,
6977         * src/pic16/device.c,: structure PIC_device is made public and
6978         renamed to PIC16_device, the same for variable Pics which is renamed
6979         to Pics16. Updated all references to them.
6980         * src/pic16/glue.c (pic16glue): corrected bug with code
6981         initialization which bypassed the variable initializations block.
6982
6983         * device/lib/pic16/Makefile.rules: removed --penable-stack from
6984         COMPILE_FLAGS and added the --nostdinc option
6985
6986 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6987
6988         * device/include/mc68hc908jb8.h: Register defs for another member
6989         of the hc08 family. Contributed by Bjorn Bringert - thanks!
6990
6991 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
6992
6993         Documenting changes from previous commits.
6994         * configure.in (version 1.56),
6995         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
6996         when generating output files to configure the pic16 library,
6997         but now I've commented it out, since gputils aren't installed in the
6998         SF compile farm, so library won't compile
6999
7000         * device/lib/Makefile.in (version 1.56): initially I've added in
7001         target 'all' the prerequestive 'model-pic16' so it compiled the
7002         pic16 library, but now I've commented it out for the same reasons
7003         above,
7004         * added targets 'model-pic16' and 'objects-pic16' to compile the
7005         library
7006         * added target 'port-specific-objects-pic16' to handle the
7007         generated libraries and copy them into the build/ directory
7008         * added target 'clean-intermediate-pic16' to clean intermediate
7009         files into pic16 directory
7010         * in target 'installdirs' added line to create directory pic16 in
7011         the installation path
7012
7013         * device/include/Makefile.in (version 1.11): in target 'install'
7014         added lines to copy all header files to installation path,
7015         * in target 'installdirs' added line create directory for pic16
7016         headers in the installation path
7017
7018 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
7019
7020         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
7021          a function call
7022
7023 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
7024
7025         * configure,
7026         * device/lib/configure.in,
7027         * device/lib/configure: fixed for autoconf 2.57
7028
7029 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7030
7031         * src/z80/main.c (_parseOptions): fixed the portmode= command line
7032         option so that it actually works. Made it specific to the z80, since
7033         the gbz80 doesn't have these kinds of I/O ports.
7034
7035 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7036
7037         * device/include/z180.h,
7038         * device/lib/_memcpy.c,
7039         * device/lib/_memmove.c,
7040         * device/lib/_mulint.c,
7041         * device/lib/ser_ir.c,
7042         * device/lib/ser_ir_cts_rts.c,
7043         * device/lib/_strcmp.c,
7044         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
7045         * src/z80/main.c (_process_pragma): add support for pragmas bank and
7046         portmode; added deprecation warning for bank= and protmode= forms.
7047         Also, guard against buffer overflow.
7048         * src/z80/gen.c (aopGet): generate better code for sfr banked read
7049
7050 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7051
7052         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
7053         changed interrupt vector table generation to only emit declared vectors.
7054         * device/include/Makefile.in: added missing backslash
7055         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
7056
7057 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
7058
7059         Mainly changes to support compilation of the device libraries
7060         * src/pic16/device.c: stack is allocated via symbol and not
7061         via literal number. The symbol is placed in the corresponding
7062         position of the data ram
7063         * (pic16_dump_section): relocatable and absolute uninitialized
7064         data are now emitted in sorted order to reduce section naming,
7065         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
7066         weren't marked as being in the access bank,
7067
7068 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
7069
7070         Added portion of GNU PIC Library under the directory
7071         device/include/pic16 and device/lib/pic16. These files
7072         contain the declarations of SFRs for the PIC18Fxx2 devices.
7073         The directory is initialized via configure from toplevel.
7074
7075 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
7076
7077         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
7078         the spilllocations to be compared correctly
7079
7080 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
7081
7082         * src/SDCCast.c (decorateType): fixed bug introduced today
7083
7084 2004-01-12  Borut Razem <borut.razem AT siol.net>
7085
7086         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
7087         doc/sdccman.lyx: upper case pragmas are deprecated
7088
7089 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
7090
7091         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
7092         in simpler and even better code
7093
7094 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
7095
7096         * src/SDCCicode.c (operandOperation): fixed bug #874819
7097         * src/SDCCast.c (decorateType): fixed
7098         char foo (unsigned long ul) { return ul > 0; }
7099
7100 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7101
7102         * doc/sdccman.lyx: Moved and added some sections, small changes
7103         all over. Telling LaTeX to be less strict with word spacing
7104         to better keep the right margin. Changed some notes about
7105         maintainance of the ports in section 3.2.1 - is it OK like this?
7106
7107 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
7108
7109         SDCC source changes:
7110         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
7111         convilong): modified to inform the pic16 port that builtin functions
7112         are external
7113
7114         PIC16 PORT specific changes:
7115         * src/pic16/device.c pic16_dump_equates() added,
7116         processor registers declared internally by the port are emitted in
7117         the translation as equates,
7118         * src/pic16/gen.c: inline code is passed unprocessed to the
7119         translation,
7120         * (pic16_popGetLit2): fnuction modified to take second operand as
7121         pCodeOp pointer and not as literal,
7122         * (popRegFromIdx): prefixed with pic16_,
7123         * (pic16_popCombine2): modified to receive already allocated pCode
7124         operands,
7125         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
7126         * (genFunction): initializes local stack frame and pushes on stack
7127         all the registers used by this function,
7128         * (genEndFunction): restores all registers from stack and restores
7129         stack frame,
7130         * src/pic16/glue.c (pic16emitRegularMap): various changes and
7131         improvements,
7132         * (pic16glue): changed the program startup sequence,
7133         * added new dbName code 'A' for functions placed in absolute section
7134         * src/pic16/main.c: added function attribute _naked,
7135         * added pragma 'code' to place a fnuction at an absolute address,
7136         * added command line arguments --debug-ralloc and --pcode-verbose,
7137         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
7138         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
7139         * (pic16_newpCodeOpLit2): modified to take the second operand as
7140         pCodeOp pointer,
7141         * (pic16_printpBlock): modified to emit each function in a separate
7142         section,
7143         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
7144         UPPER for immediate operands,
7145         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
7146         instruction,
7147         * src/pic16/peeph.def: all peepholes with movff are commented out,
7148         because there is a problem in the pcode peep optimizer,
7149         * src/pic16/ralloc.c: the register allocator can now reuse local
7150         function symbols for another function. This saves register usage.
7151         * src/pic16/ralloc.h: added flag isLocal in structure regs,
7152
7153         Added file src/pic16/NOTES with information about program writing on
7154         the current port version.
7155
7156 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7157
7158         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
7159         and peephole 252 (array access)
7160
7161 2004-01-09  Borut Razem <borut.razem AT siol.net>
7162
7163         * src/SDCCmain.c : fixed #872250: -l command line defined library
7164           files are scanned before standard library files
7165
7166 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7167
7168         * src/SDCCast.c (decorateType): fixed bug #874046
7169
7170 2004-01-09  Borut Razem <borut.razem AT siol.net>
7171
7172         * support/scripts/sdcc.nsi: remove previous installation
7173
7174 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7175
7176         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
7177         bytes for last interrupt vector (mcs51)
7178         * sdcc.spec: fixed typo
7179
7180 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7181
7182         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
7183         gen51Code): more efficient parameter receive for --model-large
7184         ("bug" #845294)
7185
7186 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7187
7188         * src/ds390/main.c,
7189         * src/z80/main.c: added missed needLinkerScript flags (more than
7190         one port structure defined in these file)
7191         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
7192         bug #795325
7193
7194 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
7195
7196         * src/SDCCmain.c: removed various references to DEFAULT_PORT
7197         * src/port.h: added flag needLinkerScript in port->linker
7198         structure to inform whether to create a .lnk file or not,
7199         * src/avr/main.c,
7200         * src/ds390/main.c,
7201         * src/hc08/main.c,
7202         * src/mcs51/main.c,
7203         * src/pic/main.c,
7204         * src/pic16/main.c,
7205         * src/xa51/main.c,
7206         * src/z80/main.c: changed appropriately to configure
7207         needLinkerScript flag
7208         * src/pic/gen.c,
7209         * src/pic16/gen.c (genAddrOf): fixed bug #863624
7210         * src/pic/glue.c: added variable udata_section_name to
7211         override default uninitialized data segment definition for
7212         devices only with SHAREBANK memory (reported from Erik Epetrich)
7213         * (pic14emitOverlay): modified to emit a commented overlay segment
7214         directive when no overlay data exist
7215         * (picglue): modified to emit uninitialized data segment
7216         according to udata_section_name
7217         * src/pic/main.c (_pic14_parseOptions): added command line
7218         options --udata-section-name=[name] to override default
7219         udata definition name
7220         * modified _linkCmd and _asmCmd to include compiler passed
7221         arguments via -W option
7222         * src/pic16/main.c: added $l in _asmCmd, changed extension for
7223         object file from '.rel' to '.o' in port->linker structure,
7224         changed size of fptr from 2 to 3 in port structure
7225
7226 2004-01-07  Borut Razem <borut.razem AT siol.net>
7227
7228         * support/scripts/sdcc.nsi: update PATH
7229         * support/scripts/sdcc.ico: craeted
7230
7231 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
7232
7233         * device/include/Makefile.in: fix install
7234         * doc/Makefile: fix install
7235
7236 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7237
7238         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
7239         in bug #860505
7240         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
7241         how the function variable allocation summary is displayed; also
7242         include information about variables allocated to the overlay
7243         segment
7244
7245 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7246
7247         * as/mcs51/lkmain.c: Help about -Y option
7248         * as/mcs51/lkarea.c: Fixed gcc warnings
7249
7250 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
7251
7252         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
7253         fixed warning
7254         * support/valdiag/tests/overflow.c: added
7255         * src/SDCCast.c (decorateType),
7256         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
7257         LEFT_OP (left shift)
7258
7259 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7260
7261         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
7262         (default behaviour).
7263
7264 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7265
7266         A python script to validate compiler diagnostic messages. It can be
7267         used to verify that sdcc complains about bad c source code and
7268         gives a good location of the error.
7269         * support/valdiag/Makefile,
7270         * support/valdiag/valdiag.py,
7271         * support/valdiag/tests/*
7272
7273 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7274
7275         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
7276         * src/SDCCsymt.c (newEnumType),
7277         * src/SDCCsymt.h
7278         * support/Util/SDCCerr.c,
7279         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
7280         enum related bugs.
7281         * support/regression/tests/enum.c: added test for enum values that
7282         require at least 2 bytes of storage.
7283
7284 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7285
7286         * src/common.h: added ifndef/define/endif macros
7287         around the header file.
7288         Bug reported from Jesus Calvino-Fraga
7289
7290 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
7291
7292         * sdcc.spec: updated
7293         * device/include/Makefile.in: don't install CVS directories
7294         * device/lib/Makefile.in: added removal of CVS directories after install
7295         * doc/Makefile: fixed install, added local_icons
7296         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
7297         * src/mcs51/gen.c (genRightShift): fixed bug #870788
7298         * src/ds390/gen.c (genRightShift): fixed bug #870788
7299         * src/SDCCast.c (decorateType): fixed bug #870781
7300
7301 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7302
7303         PIC16 port related changes:
7304         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
7305         added variable stackPos,
7306
7307         * gen.c: genCall, assignResultValue: added support for
7308         pushing/retrieving function parameters to/from stack,
7309         genFunction,genEndFunction: setup stack frame for the
7310         generated function,
7311         genAddrOf: will be changed according to bug 863624
7312
7313         * added files genutils.c and genutils.h which contain gen*
7314         debugged and optimised functions extracted from gen.c
7315
7316         * glue.c: added variable 'externs' which holds extern symbols,
7317         pic16emitRegularMap: is modified to properly handle relocatable
7318          symbols under the new scheme,
7319         pic16createInterruptVect: is modified
7320         pic16printPublics: is modified to emit 'global' assembler directives,
7321         added pic16_printExterns to print extern symbols,
7322         pic16glue: initializes stack/frame pointer in the beginning of
7323         the assembly output. Temporary hack, will be corrected later,
7324         because gplink yet does not support stack and SDCC does not
7325         yet support a type of crt0.o object to create the final binary.
7326
7327         * Removed many lines that contain 8051 legacy code.
7328         * The code is finally placed under a 'code' directive.
7329         * Added port specific options.
7330
7331         * _process_pragma: simplified since now we do not need *special*
7332         include file to define SFR registers. But a separate header
7333         will be needed. This will be developed later.
7334         * _pic16_parseOptions: added, parses port specific options:
7335         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
7336         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
7337         --preplace-udata-with=
7338
7339         * _pic16_setDefaultOptions: modified to initialize section names,
7340         but hack is temporarly out of order since it needs improvement.
7341         * _pic16_genAssemblerPreamble: configuration words are emitted by
7342         their address instead of their name. This part is incomplete and
7343         supports only the 18Fxx2 devices. Other devices will emit an error
7344         during assembly since they do not contain the same set of config
7345         registers
7346         * _pic16_genIVT: is modified,
7347
7348         * pcode.c: added definitions for some hardware registers that are needed
7349         for stack support
7350         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
7351         All PCI entries are updated. Now LFSR is supported.
7352         * Removed pic16_pciTRIS is mentioned by mdubuc in source
7353         * added pic16_newpCodeOpLit2 to support instructions with
7354         two literal arguments
7355         * pic16_pCode2str: corrected code that emits assembler instructions
7356         with two literal operands and those that have an access bit modifier
7357         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
7358         this fixes a bug which caused some labels to be lost, when an
7359         assembler directive was added, i.e. banksel,
7360         * pic16_FixRegisterBanking: improved logic that causes the insertion
7361         of bank switching,
7362         * InlineFunction: functions that are called once, are not any more
7363         inlined. This can be a port option in the future,
7364
7365         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
7366
7367         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
7368         hold the corresponding uninitialized symbols,
7369         * pic16_allocProcessorRegister: registers have explicit marked the
7370         accessBank field,
7371         * pic16_allocInternalRegister: registers are explicit marked as
7372         not used,
7373         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
7374         processing list, so bit registers were lost,
7375         *
7376
7377         * ralloc.h: added field 'accessBank' and original symbol operand
7378         in register definition,
7379         * removed the field isMapped from register definition,
7380
7381         ** Several functions have been removed from various sources:
7382         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
7383         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
7384         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
7385         pic16_assignRelocatableRegisters
7386
7387         ** others have been introduced:
7388         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
7389         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
7390
7391 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
7392
7393         * support/scripts/inc2h.pl: changed definition of BIT_AT
7394         to emit 'sbit at' instead of 'bit at'. This was a request.
7395
7396         PIC16 port related preliminary changes:
7397         * gen.c: prefixed function popRegFromString with
7398         pic16_ and all references to it corrected
7399         * pcode.c: all pic16_pc_* hardware registers prefixed
7400         with underscore (_),
7401         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
7402         * ralloc.c: newReg(): when register is REG_SFR then
7403         set address to rIdx,
7404         pic16_allocProcessorRegister(): marks register wasUsed=0
7405         pic16_writeUsedRegs(): added a call to assign processor
7406         registers via pic16_assignFixedRegisters
7407
7408 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7409
7410         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
7411         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
7412         variables in unused register banks.  Also the SSEG is placed
7413         wherever there is enough space for it, and IDATA can be anywhere
7414         in internal RAM.  For now compile using -Wl-Y[stack_size].
7415         The mem file is different for this option as well, since it
7416         makes no sense of talking about DSEG lenght.
7417
7418 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
7419
7420         * src/SDCClrange.c: fixed bug 869095 that caused segfault
7421         in certain cases, e.g. when ROM assignment, patch provided
7422         from Albert den Haan.
7423
7424 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
7425
7426         Many signedness and type propagation fixes:
7427         * src/SDCCicode.c: made geniCodeCast() static
7428         replaced SPEC_ by IS_ (cosmetic)
7429         (operandOperation): fixed div and mod operation
7430         (usualBinaryConversions): added support for promotion of char
7431         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
7432         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
7433         (geniCodeAdd): an array index will stay unsigned, even if promoted
7434         from char to int
7435         (geniCodeArray): ditto
7436         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
7437         * src/SDCCsymt.c (computeType): added more support for char;
7438         promotion of char is selectable by promoteCharToInt, fixed signedness
7439         for all cases
7440         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7441         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7442         * src/SDCCval (val*): replaced signedness calculation by
7443         computeType()
7444         rearranged if-branches (cosmetic)
7445         (valShift): added warning W_SHIFT_CHANGED
7446         (valCompare): fixed problem with different types
7447         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
7448         * support/regression/tests/literalop.c: added many cases
7449         * support/regression/tests/ast_constant_folding.c: changed finally to
7450         'unsigned int'
7451         * .version: new year, new version: 2.3.7
7452         * src/SDCCmain.c (main): applied patch #866468
7453         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
7454         provided by Scott Bronson
7455         * doc/sdccman.lyx: updated documentation for sdcdb
7456         updated and added chapter tips
7457
7458 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7459
7460         * src/SDCCsymt.h: missing from yesterday's commits
7461
7462 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7463
7464         * src/SDCC.y (struct_or_union_specifier),
7465         * support/Util/SDCCerr.c,
7466         * support/Util/SDCCerr.h: verify that struct & union tags are used
7467         as declared.
7468
7469 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7470
7471         * src/SDCCglobl.h: missing from yesterday's commits
7472
7473 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7474
7475         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
7476         sft_attributes, struct_declaration, parameter_declaration,
7477         type_name, start_block, declaration_list),
7478         * src/SDCC.lex (check_type): support redefinition of typedef names
7479
7480 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7481
7482         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
7483         aligned xdata arrays. Erik helped me with the if clause.
7484
7485 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7486
7487         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
7488         warning
7489
7490 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7491
7492         * src/SDCCast.h,
7493         * src/SDCCast.c (newAst_),
7494         * src/SDCCicode.h,
7495         * src/SDCCicode.c (ast2iCode, newiCode),
7496         * src/SDCCglobl.h,
7497         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
7498         expr, statement, expression_statement, selection_statement,
7499         iteration_statement, expr_opt, jump_statement): foundation for tracking
7500         sequence points
7501         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
7502         point code too)
7503
7504 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7505
7506         * support/Util/SDCCerr.c,
7507         * src/SDCCast.h,
7508         * src/SDCCast.c (createCase, createDefault, decorateType),
7509         * src/SDCClabel.c (labelUnreach),
7510         * src/SDCC.y (labeled_statement, jump_statement): More improvements
7511         to error messages.
7512         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
7513         (with thanks to Stas Sergeev)
7514         * device/include/time.h,
7515         * device/lib/time.c (CheckTime): suppress unreachable code warning
7516
7517 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7518
7519         * src/SDCCast.c (createIvalCharPtr),
7520         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
7521         bug #753752)
7522         * support/regression/tests/nullstring.c: tests for these two bugs
7523
7524 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7525
7526         * support/Util/SDCCerr.h,
7527         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
7528         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
7529         about storage class and 'at' used inside struct or union
7530         * src/SDCCBBlock.c (iCodeFromeBBlock),
7531         * src/SDCCcse.c (ifxOptimize),
7532         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
7533         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
7534         printIval, emitStaticSeg, emitOverlay),
7535         * src/SDCClabel.c (deleteIfx),
7536         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
7537         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
7538         gatherAutoInit, processParms),
7539         * support/Util/SDCCerr.h,
7540         * support/Util/SDCCerr.c (werrorfl): Support for better error location
7541         reporting for post-parse errors.
7542
7543 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7544
7545         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
7546         implicit casts via union; they don't work on big endian systems
7547         (possible fix for bug #861138)
7548
7549 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7550
7551         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
7552         * src/mcs51/main.c: fixed the fix for bug #737001
7553
7554 2003-12-15  Borut Razem <borut.razem AT siol.net>
7555
7556         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
7557
7558 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7559
7560         * support/makebin/makebin.c: put output in binary mode
7561
7562 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7563
7564         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
7565         xdata and data memory on startup. Set the environment variable
7566         SDCC_NOGENRAMCLEAR to disable this.
7567         * src/mcs51/peephole.def,
7568         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
7569         (allows non-interrupt and interrupt code to safely compete for a resource
7570         without the non-interrupt code having to disable interrupts)
7571
7572 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7573
7574         * src/SDCCicode.c (geniCodeAdd),
7575         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
7576         with valFromType if type might be a pointer and host is big endian).
7577         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
7578         types, not just integer types.
7579         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
7580         multiply defined with mismatching "at" address.
7581
7582 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7583
7584         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
7585         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
7586         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
7587         with embedded nulls (fixed bug #753752)
7588
7589 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7590
7591         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
7592         Apparently this did not see much testing (endless loop)
7593
7594 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7595
7596         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
7597
7598 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7599
7600         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
7601         gracefully handle NULL memmap pointers
7602
7603 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7604
7605         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
7606         instead of deleting the iCode when an operand is volatile
7607         * src/z80/gen.c (genDummyRead),
7608         * src/mcs51/gen.c (genDummyRead),
7609         * src/ds390/gen.c (genDummyRead),
7610         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
7611         not just IC_RIGHT
7612         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
7613         * src/SDCC.y: fixed bug #850420
7614
7615 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7616
7617         Applied z80 i/o port patch from Peter Townson and fixed some operators
7618         to better handle operands in A register.
7619         * device/include/z180.h
7620         * src/SDCC.y
7621         * src/SDCCglue.c
7622         * src/z80/gen.c
7623         * src/z80/gen.h
7624         * src/z80/main.c
7625         * src/z80/peeph-z80.def
7626         * src/z80/peeph.def
7627         * src/z80/z80.h
7628
7629 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7630
7631         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
7632
7633 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7634
7635         * device/lib/hc08/_mullong.c: Removed extra #endif
7636
7637 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7638
7639         * sim/ucsim/hc08.src/inst.cc,
7640         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
7641         carries from x to h
7642         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
7643         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
7644         * device/include/stdarg.h: fixed varargs for hc08
7645         * device/lib/Makefile.in,
7646         * device/lib/hc08/Makefile,
7647         * device/lib/hc08/_mulint.c,
7648         * device/lib/hc08/_mullong.c: fixed some endian problems
7649
7650 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7651
7652         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
7653         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
7654         * device/lib/_gptrget.c,
7655         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
7656
7657 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7658
7659         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
7660         * src/SDCCast.c (astErrors): fixed bug #846007
7661         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
7662
7663 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7664
7665         * src/SDCCast.c (decorateType): disabled a transformation I added in
7666         revision 1.188 (access to fields of a structure at an absolute address);
7667         it breaks with bitfields, extern declarations, and gcse analysis.
7668         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
7669         could be assigned through a pointer, so don't complain.
7670         * src/SDCCast.c (astErrors),
7671         * src/SDCCast.h,
7672         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
7673
7674 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
7675
7676         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
7677         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
7678         output of __config directives, since gpasm now supports them
7679         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
7680         pre-processor macro, i.e. -DMCU=p18f452
7681         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
7682         and modified to handle 'cast' icode similarly to '=' icode
7683         * src/pic16/device.h (typedef struct PIC_device): added field
7684         'extMIface' to indicate that chip has external memory interface
7685         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
7686         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
7687         18F8720
7688
7689 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7690
7691         * src/SDCC.y (pointer): fixed bug #846006
7692         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
7693         * src/SDCCast.c (decorateType): fixed bug #846009
7694         * src/ds390/peeph.def,
7695         * src/ds390/gen.c (genAnd, genOr),
7696         * src/mcs51/peeph.def,
7697         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
7698
7699 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7700
7701         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
7702         * src/SDCCdflow.c
7703         * src/SDCCcse.c
7704         * src/SDCCcse.h
7705         * src/SDCCBBlock.h
7706         * src/SDCCBBlock.c
7707
7708 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
7709
7710         fixed bug #845089
7711         * src/SDCCbitv.h,
7712         * src/SDCCbitv.c: added function to free a bitvector
7713         * src/SDCClrange.h,
7714         * src/SDCClrange.c: added function to recompute the liveranges
7715         * src/avr/ralloc.c,
7716         * src/ds390/ralloc.c,
7717         * src/hc08/ralloc.c,
7718         * src/mcs51/ralloc.c,
7719         * src/pic/ralloc.c,
7720         * src/pic16/ralloc.c,
7721         * src/xa51/ralloc.c,
7722         * src/z80/ralloc.c: recompute the liveranges after register packing
7723
7724 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
7725
7726         * src/SDCCloop.c (newInduction): fixed bug #845630
7727
7728 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7729
7730         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
7731         inadvertantly left behind from my 2003-11-12 change
7732
7733 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7734
7735         Updated headers I neglected to commit yesterday.
7736         * src/SDCClrange.h,
7737         * src/SDCCicode.h
7738
7739 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7740
7741         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
7742         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
7743         * src/SDCCopt.c (eBBlockFromiCode),
7744         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
7745         the creation of the key hash table from the sequencing so it can be used
7746         earlier (for some GCSE bug fixes still pending)
7747
7748 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7749
7750         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
7751         * support/regression/tests/addsub.c: testing genPlus shortcut
7752
7753 2003-11-15  Borut Razem <borut.razem AT siol.net>
7754
7755         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
7756
7757 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7758
7759         * src/SDCCcse.c (cseBBlock): fixed bug #527779
7760         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
7761         ordering is immaterial.
7762         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
7763
7764 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7765
7766         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
7767         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
7768         (SIGSEV) of bug #840381
7769         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
7770         unlink new file before rename if new and old filenames are the same)
7771
7772 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7773
7774         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
7775         uninitialized variables) for the mcs51. Set environment variable
7776         SDCC_GENRAMCLEAR to test.
7777         xdata initialization slightly shorter
7778
7779 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7780
7781         * src/SDCCsymt.h,
7782         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
7783         #838241 & 780691 (basicly the same bug)
7784         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
7785         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
7786
7787 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
7788
7789         * src/SDCCmain.c (linkEdit): "fix" #834252
7790
7791 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7792
7793         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
7794         * src/SDCCast.h,
7795         * src/SDCC.y: fixed bug #819403
7796
7797 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7798
7799         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
7800         the reentrant attribute.
7801         * src/hc08/gen.c (genPackBits): added missing stack readjustment
7802         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
7803         simulation
7804         * src/SDCCast.c (decorateType): fixed bug with storage class not being
7805         updated during pointer dereference; f.e. ~(((char *)1)*) was being
7806         erroneously reduced to a literal.
7807         * src/hc08/ralloc.c (packRegisters, rematStr),
7808         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
7809         some cases
7810
7811 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7812
7813         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
7814         * doc/sdccman.lyx: changed from 'article' to 'book'
7815         * doc/Makefile: readded test_suite_spec and cdbfileformat
7816
7817 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
7818
7819         * device/include/stdlib.h: include malloc.h to comply with ANSI
7820         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
7821
7822 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7823
7824         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
7825         * doc/clean.mk: also remove *.out files
7826         * doc/sdccman.lyx: some additions, larger top/bottom margins
7827
7828 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7829
7830         * src/SDCC.y: fixed bug #837365
7831         * support/regression/tests/bitopcse.c
7832         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
7833         a symbol (might be valop instead)
7834         * device/lib/Makefile.in: added errno.c to HC08SOURCES
7835         * device/lib/clean.mk: added hc08 to the cleaning list
7836
7837 2003-11-04  Borut Razem <borut.razem AT siol.net>
7838
7839         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
7840           made 2003-11-04
7841         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7842           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
7843           malloc is declared in standard stdlib.h
7844
7845 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7846
7847         * device/lib/hc08/Makefile: need to clean .rel not .o files
7848         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
7849
7850 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7851
7852         * src/port.h,
7853         * src/hc08/main.c,
7854         * src/mcs51/main.c,
7855         * src/ds390/main.c,
7856         * src/z80/main.c,
7857         * src/avr/main.c,
7858         * src/pic/main.c,
7859         * src/pic16/main.c,
7860         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
7861         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
7862         tests (which uses the port's oclsExpense function)
7863         * src/SDCC.y,
7864         * src/SDCCast.c,
7865         * src/SDCCicode.c,
7866         * src/hc08/gen.c,
7867         * src/ds390/gen.c,
7868         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
7869
7870 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7871
7872         * src/SDCCcse.c (ifxOptimize),
7873         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
7874         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
7875         deleting the IFX iCode.
7876         * src/hc08/ralloc.c: reduced unneeded slocs
7877         * src/hc08/gen.c: fixed bug in asmopToBoolean
7878
7879 2003-11-04  Borut Razem <borut.razem AT siol.net>
7880
7881         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
7882           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7883           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
7884           transferred to configure
7885
7886 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
7887
7888         Use headers defined in the C[++] standards:
7889         * sim/ucsim/gui.src/serio.src/fileio.cc
7890         * sim/ucsim/gui.src/serio.src/frontend.cc
7891         * sim/ucsim/gui.src/serio.src/main.cc
7892         * sim/ucsim/gui.src/serio.src/posix_signal.cc
7893         * support/Util/NewAlloc.c
7894         * as/hc08/lklibr.c
7895         * as/mcs51/lklibr.c
7896         * as/z80/aslist.c
7897         * as/z80/assym.c
7898
7899 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7900
7901         * Added MSVC projects for hc08 assembler and linker:
7902         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
7903         /as/hc08/link_hc08.dsp
7904
7905 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
7906
7907         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
7908
7909 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
7910
7911         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
7912
7913 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7914
7915         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
7916
7917 2003-10-31  Borut Razem <borut.razem AT siol.net>
7918
7919         * support/cpp2/cpplib.h,
7920           support/cpp2/cpplib.c,
7921           support/cpp2/cpplex.c,
7922           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
7923           to switch _asm block preprocessing on / off. Default is
7924           #pragma preproc_asm +
7925
7926 2003-10-31  Borut Razem <borut.razem AT siol.net>
7927
7928         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
7929           when outputting comment blocks (when executed with -C option) and
7930           _asm (SDCPP specific) blocks
7931
7932 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7933
7934         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
7935
7936 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
7937
7938         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
7939
7940 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
7941
7942         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
7943         * src/SDCCast.c (decorateType): fixed bug #832664
7944
7945 2003-10-31  Borut Razem <borut.razem AT siol.net>
7946
7947         * support\cpp2\cpplex.c: fixed for SDCPP:
7948           comments(when executed with -C option) and _asm blocks
7949           were included even if they where in skipped #if block.
7950           Applied solution from GCC cpp 3.3.2
7951
7952 2003-10-31  Borut Razem <borut.razem AT siol.net>
7953
7954         * src/SDCC.lex: sdcc now understands both formats:
7955           '# <line_number> <file_name>' and
7956           '#line <line_number> <file_name>'
7957         * support/cpp2/cppmain.c: sdcpp now generates the standard
7958           '# <line_number> <file_name>' instead of former
7959           '#line <line_number> <file_name>'
7960
7961 2003-10-30  Borut Razem <borut.razem AT siol.net>
7962
7963         * support/cpp2/cpphash.h,
7964         * support/cpp2/cpplib.h
7965         * support/cpp2/cpplex.c,
7966         * support/cpp2/cppmain.c,
7967         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
7968
7969 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7970
7971         Fixed a number of problems revealed by bug #827883.
7972         * src/SDCCloop.c (loopInvariants): Spill location of the
7973         result operand should be recomputed if extracted from
7974         a loop. Also, don't extract assignments of an iTemp
7975         from a literal.
7976         * src/SDCCast.c (isConformingBody): loop reversal should
7977         not occur if the control variable is involved with a
7978         relational operator.
7979
7980 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
7981
7982         * .version: bumped to 2.3.6 to reflect the big improvements
7983         made by Erik and Klaus. Thanks!
7984
7985 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
7986
7987         Replaced the livrange code.
7988         * src/SDCClrange.c: added new LR code
7989         * src/SDCCloop.c,
7990         * src/SDCCBBlock.h: removed remainig parts from old LR code
7991         * src/ds390/ralloc.c,
7992         * src/ds390/gen.c: minor fixes to make it work with new code
7993
7994 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7995
7996         * as/hc08/asm.h,
7997         * as/hc08/lkrloc.c,
7998         * src/hc08/gen.c,
7999         * src/hc08/ralloc.c: Fix various warnings related to the hc08
8000         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
8001         (tweaked fix for bug #818696)
8002
8003 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8004
8005         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
8006
8007 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8008
8009         * src/SDCCmain.c,
8010         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
8011         * src/mcs51/gen.c (gencjneshort),
8012         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
8013         more efficient (per Scott Bronson's suggestion)
8014
8015 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8016
8017         Extended the semantics of the critical keyword to include
8018         individual statements. See RFE #827755 and #799831
8019         * src/SDCC.y
8020         * src/SDCCicode.c
8021         * src/SDCCopt.c
8022         * src/SDCCast.c
8023         * support/Util/SDCCerr.c
8024         * support/Util/SDCCerr.h
8025         * src/mcs51/gen.c
8026         * src/ds390/gen.c
8027         * src/hc08/gen.c
8028
8029 2003-10-19  Borut Razem <borut.razem AT siol.net>
8030
8031         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
8032
8033 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8034
8035         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
8036         Fixed bug #818696
8037         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
8038         and predecrement operand is displayed
8039
8040 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
8041
8042         * src/SDCCval.c (valMinus): fixed bug #826041
8043
8044 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8045
8046         Some hc08 related updates that I missed earlier
8047         * sim/ucsim/stypes.h
8048         * support/regression/ports/hc08/spec.mk
8049
8050 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8051
8052         New target "hc08" for the Motorola 68hc08 family of micros
8053
8054         * configure
8055         * configure.in
8056         * Makefile
8057         * src/hc08/*
8058         * src/SDCCmain.c
8059         * src/port.h
8060         * sim/ucsim/hc08.src/*
8061         * sim/ucsim/configure.in
8062         * src/ucsim/configure
8063         * sim/ucsim/packages_in.mk
8064         * as/hc08/*
8065         * as/Makefile
8066         * device/include/mc68hc908qy.h
8067         * device/lib/hc08/*
8068         * device/lib/Makefile.in
8069         * support/regression/ports/hc08/*
8070         * support/regression/Makefile
8071
8072 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8073
8074         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
8075         regression test
8076         * src/ds390/gen.c (genCast): fixed bug #821957
8077
8078 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
8079
8080         * device/lib/logf.c: "fixed" overlay bug
8081         * support/regression/ports/host/spec.mk: added m library
8082         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
8083         * support/regression/tests/float_trans: added (for Eric)
8084
8085 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
8086
8087         * src/mcs51/gen.c (genCpl): fixed bug
8088         http://sf.net/mailarchive/message.php?msg_id=6263915
8089
8090 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
8091
8092         * src/SDCCast.c (decorateType): added extended constant folding
8093         * src/SDCCsymt.c (computeType): cleanup
8094         * src/SDCCval.c (valShift): minor optimization
8095         * support/regression/tests/ast_constant_folding.c: added
8096
8097 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8098
8099         * src/SDCCmain.c: removed some unintended changes
8100
8101 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8102
8103         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
8104         * src/z80/gen.c: fixed part of bug #817589
8105         * src/SDCCsymt.c (checkFunction): fixed bug #817895
8106
8107 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
8108
8109         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
8110         * src/SDCCcflow.c
8111         * src/SDCCcse.c
8112         * src/SDCCdflow.c
8113         * src/SDCClabel.c
8114         * src/SDCClrange.c
8115         * src/SDCCmem.c
8116         * src/SDCCopt.c
8117         * src/SDCCpeeph.c
8118         * src/SDCCset.c
8119         * src/avr/ralloc.c
8120         * src/ds390/ralloc.c
8121         * src/izt/ralloc.c
8122         * src/mcs51/ralloc.c
8123         * src/pic/ralloc.c
8124         * src/pic16/ralloc.c
8125         * src/xa51/ralloc.c
8126         * src/z80/ralloc.c
8127         * src/z80/gen.c: removed unused label "release:"
8128
8129 2003-10-06  Borut Razem <borut.razem AT siol.net>
8130
8131         * src/SDCC.lex: removed definition of unused variables
8132           save_optimize and save_options
8133
8134 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
8135
8136         * clean.mk: removed '=' in "-maxdepth=1"
8137         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
8138         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
8139
8140 2003-10-06  Borut Razem <borut.razem AT siol.net>
8141
8142         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
8143           my_unput() replaced by unput()
8144
8145 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
8146
8147         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
8148         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
8149         type-punned pointer will break strict-aliasing rules"
8150         Old LR behaviour is again default; Klaus' LR can be choosen by
8151         defining the environment variable LRKLAUS
8152         * src/SDCCBBlock.h
8153         * src/SDCCloop.c
8154         * src/SDCClrange.c
8155         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
8156         * clean.mk: fixed removal of files in bin/CVS/
8157         * device/lib/clean.mk: fixed removal of directories small and large
8158         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
8159         * src/SDCCicode.c,
8160         * src/SDCCval.c: removed superflous test for pedantic
8161
8162 2003-10-05  Borut Razem <borut.razem AT siol.net>
8163
8164         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
8165           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
8166           message "unmatched #pragma SAVE and #pragma RESTORE"
8167
8168 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8169
8170         * doc/sdccman.lyx: various additions and updates (interrupts, inline
8171           assembly, critical functions, atomic, nojtbound)
8172
8173 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
8174
8175         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
8176         * src/SDCCBBlock.h
8177         * src/SDCCloop.c
8178         * src/SDCCloop.h
8179         * src/SDCClrange.c
8180
8181 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8182
8183         * src/z80/gen.h,
8184         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8185         * src/mcs51/gen.h
8186         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8187         * src/ds390/gen.h
8188         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8189         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
8190         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
8191
8192 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8193
8194         * src/z80/gen.c (genRet): fixed bug #524753
8195         * src/z80/gen.c (genCast): fixed internal error on cast from
8196         pointer to long
8197         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
8198         fix for bug #477835 to the z80
8199         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
8200         for tracking iCodes in the peephole optimizer for z80
8201
8202 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8203
8204         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
8205         the other part of bug #814548
8206         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
8207
8208 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
8209
8210         * src/SDCCcse.c: fixed part of bug #814548
8211
8212 2003-09-28  Borut Razem <borut.razem AT siol.net>
8213
8214         * src/asm.c: rewrite of printILine() to use temporary file instead
8215           a pipe
8216         * src/xa51/main.c: commented out declaration of int rewinds
8217
8218 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8219
8220         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
8221
8222 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8223
8224         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
8225         * src/asm.c (printILine): Fixed bug #811015
8226
8227 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8228
8229         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
8230         freeing.
8231
8232 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8233
8234         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
8235         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
8236         to correctly handle general case of AOP_PAIRPTR
8237         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
8238
8239 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8240
8241         * src/mcs51/ralloc.c (fillGaps),
8242         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
8243         register positioning bug)
8244
8245 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
8246
8247         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
8248
8249 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8250
8251         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
8252         genCodePointerGet, genGenPointerGet, genFarPointerSet,
8253         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
8254         (ralloc doesn't intentionally do this now, but perhaps later)
8255         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
8256         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
8257         register positioning bugs (Fixed bug #762602 and #795325)
8258         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
8259         (Fixed bug #808779)
8260         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
8261         lines that --i-code-in-asm generates
8262
8263 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8264
8265         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
8266         trying to fclose a FILE* that was already closed.
8267
8268 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8269
8270         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
8271         of const struct should be treated as if const themselves)
8272
8273 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
8274
8275         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
8276
8277 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8278
8279         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
8280         Unix (/n) and DOS (/r/n) line terminations.
8281
8282 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8283
8284         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
8285         bug #613775
8286
8287 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8288
8289         * src/mcs51/gen.c (genFunction, genEndFunction),
8290         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
8291         and restore of EA so that stack offsets to parameters are
8292         correct when using both critical and reentrant/stack-auto.
8293         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
8294         size (can be triggered in error if sloc is shared between
8295         different sized objects)
8296         * device/include/float.h: fixed macros to explicitly use
8297         unsigned long where needed
8298
8299 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
8300
8301         Feature req. 799831: added code to allow nesting of critical functions
8302         * src/mcs51/gen.c (genFunction, genEndFunction)
8303         * src/ds390/gen.c (genFunction, genEndFunction)
8304
8305 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8306
8307         * src/SDCCsymt.c (sclsFromPtr),
8308         * src/SDCCsymt.h,
8309         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
8310         support for standard C idiom of memory mapped variables; for
8311         example, *((xdata int*)0x1234) = 1 is now internally equivalent
8312         to xdata int at 0x1234 tempvar = 1.
8313         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
8314         provided by Akiya ISHIDA
8315
8316 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
8317
8318         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
8319         * src/SDCCval.c (constVal): added reduction from int to char
8320         * src/SDCCval.c (valMult, valDiv): fixed sign handling
8321         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
8322         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
8323         to ignore the sign
8324         * support/regression/tests/shifts.c: fixed
8325
8326 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8327
8328         * src/z80/gen.c (genXor): Fixed bug #805445
8329
8330 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8331
8332         Fixed bug #621531 (const & volatile confusion in the type chain).
8333         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
8334         refer to the const or volatile state of the pointer itself.
8335
8336         * src/SDCCast.c
8337         * src/SDCCglue.c
8338         * src/SDCCicode.c
8339         * src/SDCCsymt.c
8340         * src/SDCCval.c
8341         * src/SDCC.y
8342         * src/SDCCsymt.h
8343         * src/pic/gen.c
8344         * src/pic/ralloc.c
8345         * src/pic16/gen.c
8346         * src/pic16/ralloc.c
8347         * support/regression/tests/const.c
8348
8349 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8350
8351         When checking for duplicated modules, use absolute paths
8352         instead of relative paths.  Files changed:
8353
8354         * as/mcs51/lklib.c
8355         * link/z80/lklib.c
8356
8357 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8358
8359         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
8360
8361 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8362
8363         * device/include/string.h: added size_t typedef, changed
8364         prototypes to use size_t, eliminated separate reentrant and
8365         non-reentrant declarations, added _memmove declaration
8366         * device/lib/_memcpy.c: changed to use size_t instead of int,
8367         changed /4 to >>2 to avoid division library call
8368         * device/lib/_memcmp.c,
8369         * device/lib/_memset.c,
8370         * device/lib/_strncat.c,
8371         * device/lib/_strncpy.c,
8372         * device/lib/_strncmp.c: changed to use size_t instead of int
8373         * device/lib/_memmove.c: new file (fixed bug #772294)
8374         * device/lib/Makefile.in: added _memmove.c
8375         * device/lib/z80/asm_strings.s: fixed bug #772290
8376         * support/regression/tests/bitfields.c: attempt to fix host assertion
8377         failure on amd64-unknown-linux2.2
8378
8379 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8380
8381         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
8382         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
8383         * as/z80/asmain.c (main): fixed bug #801766
8384
8385 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
8386
8387         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
8388         compilers
8389
8390 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8391
8392         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
8393         reported in bug #800609
8394
8395 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
8396
8397         * Top header beautifications in src/pic16 directory:
8398           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
8399           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
8400           pcoderegs.h, ralloc.c, ralloc.h
8401         * main.c: added top header and GPL license notice
8402         * pcode.c: fixed the if-conditional warning
8403
8404 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
8405
8406         * device/lib/_mullong.c: replaced int by short for gcc
8407
8408 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8409
8410         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
8411         and JUMPTABLE iCodes properly now (worked by accident before)
8412         * src/mcs51/gen.c (leftRightUseAcc),
8413         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
8414         iCode properly now. Use getSize instead of nRegs since a & b
8415         aren't part of the nRegs tally.
8416
8417 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
8418
8419         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
8420         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
8421           before instructions that use the _STATUS register
8422
8423 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
8424
8425         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
8426         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
8427         fetching of the pointer
8428         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
8429         copied from genNearPointerSet()
8430         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
8431         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
8432         If they pop r0/r1 they must be called in the opposite order than aopOp().
8433         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
8434         (resp. --stack-auto), prepared for --xstack
8435
8436 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8437
8438         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
8439
8440 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8441
8442         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
8443         these ports have their own __sdcc_external_start()
8444
8445 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
8446
8447         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8448         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
8449         type for bits was changed. It resulted in bit variables becoming
8450         global, which is not permitted in PIC 14 assembly output.
8451
8452 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8453
8454         * doc/sdccman.lyx: various additions and updates. Rearranged sections
8455
8456 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8457
8458         Z80 and MCS51 linkers complaint if a public symbol is defined
8459         in more than one library module:
8460
8461         * as/mcs51/lklib.c
8462         * link/z80/lklib.c
8463         * as/mcs51/Makefile.in
8464
8465 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8466
8467         A few small changes that speed up the peephole optimizer.
8468
8469         * src/SDCCpeeph.c
8470
8471 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8472
8473         Try to make the peephole optimizer smarter by maintaining
8474         an association between the assembly source code and the
8475         iCodes that originated them. Put this information to use
8476         with a new peephole rule condition "notVolatile" so that
8477         the rules can be aggressive yet still safe.
8478
8479         * src/SDCCpeeph.c
8480         * src/SDCCpeeph.h
8481         * src/mcs51/gen.c
8482         * src/mcs51/peeph.def
8483
8484 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8485
8486         Fixed bug #741761
8487
8488         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
8489         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
8490         if the left or right operand symbols have the accuse flag set.
8491
8492 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8493
8494         Changed the type of the result of the ! (NOT) operator to char;
8495         previously it returned the same type as the source. This allows
8496         us to eliminate all the genFloatNot functions (all of its target
8497         implementations were very buggy) since !float can use the same
8498         code as !long now.
8499
8500         * src/SDCCicode.c (ast2iCode): ! returns char
8501         * src/mcs51/gen.c (genNot, genNotFloat),
8502         * src/ds390/gen.c (genNot, genNotFloat),
8503         * src/z80/gen.c (genNot, genNotFloat),
8504         * src/pic/gen.c (genNot, genNotFloat),
8505         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
8506
8507 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
8508
8509         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8510         1. Interrupt would not compile properly. Ensure PCLATH register is saved
8511            during interrupts. Ensure WSAVE is located at a shared bank address.
8512         2. Fixed page selection in some places
8513         3. Fixed BTFSS/C to where necessary use registers directly and not simply
8514            the registers name strings.
8515         4. Fixed "signed / unsigned compare" compiler warnings.
8516         5. The PIC port manages its own allocation of the general purpose
8517            registers, but makes no attempt to reuse them. As a result when
8518            compiling it soon runs out of general purpose registers. Some
8519            additional code was added to the files pcode.c and device.c to walk
8520            through the function call tree and rename the registers so that they
8521            get reused.
8522
8523         * src/pic/device.c
8524         * src/pic/gen.c
8525         * src/pic/glue.c
8526         * src/pic/pcode.c
8527         * src/pic/pcode.h
8528         * src/pic/ralloc.c
8529         * src/pic/ralloc.h
8530         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
8531         genPlus() & genMinus() when the result is the same as left or right
8532
8533 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8534
8535         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
8536
8537 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8538
8539         Made bitfield a distinct type from bit so that bitfields
8540         convert as per ANSI C and bits retain their traditional
8541         boolean style behaviour. Implemented bitfield support in
8542         the z80 port.
8543
8544         * src/SDCCsymt.h,
8545         * src/SDCCsymt.c,
8546         * src/SDCCast.c,
8547         * src/cdbFile.c,
8548         * src/mcs51/gen.c,
8549         * src/ds390/gen.c: bit v bitfield split
8550         * src/z80/gen.c: New support for bitfields
8551         * support/regression/tests/bitfields.c: reenabled z80,
8552         added more tests
8553
8554 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8555
8556         Rules 246.x, 247.x relate to bitfields, the others speed up
8557         access to xdata mapped I/O devices.
8558
8559         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
8560
8561 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8562
8563         Cleaned up genPackBits and genUnpackBits and added two helper
8564         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
8565         for literal assignments in genPackBits (thanks to Frieder for
8566         reminding me).
8567
8568         * src/mcs51/gen.c
8569         * src/ds390/gen.c
8570
8571 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8572
8573         Fixed bug #748310 (pointer to function type mishandled when the
8574         function name is omitted). Also fixed a SIGSEGV when a function
8575         attribute (reentrant, etc) is used on a non-function or on a
8576         function but misplaced before the parameter list.
8577
8578         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
8579         bug #748310
8580         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
8581         * support/Util/SDCCerr.h,
8582         * support/Util/SDCCerr.c: Added func attr misuse error msg
8583
8584 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
8585
8586         Fixed bug #787649 by anonymous
8587         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
8588         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
8589
8590 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8591
8592         Fixed numerous bitfield problems.
8593
8594         * src/SDCC.y: More bitfield related error checking
8595         * src/SDCCsymt.h,
8596         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
8597         * support/Util/SDCCerr.h,
8598         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
8599         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
8600         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
8601         * support/regression/tests/bitfields.c: tests added
8602
8603 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8604
8605         Made the constant following the "interrupt" keyword optional. If
8606         omitted, the function will not automatically be given an entry
8607         in the interrupt vector table (similar to #pragma NOIV, but
8608         less syntacticly kludgy). The interrupt number is also now
8609         range checked. Also fixed a bug in the high order bit example
8610         in the manual.
8611
8612         * src/SDCC.y
8613         * src/SDCCmem.c
8614         * src/SDCCglue.c
8615         * src/SDCCsymt.h
8616         * support/Util/SDCCerr.c
8617         * support/Util/SDCCerr.h
8618         * doc/sdccman.lyx
8619
8620 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
8621
8622         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
8623         * src/SDCCicode.c (operandOperation): rewritten some ops
8624         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
8625         * src/SDCCsymt.c (computeType): literals are handled the same way as any
8626         other type
8627         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
8628         be re-activated by defining REDUCE_LITERALS)
8629         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
8630         unsigned, but are signed by default
8631         * src/SDCCval.c (constVal): rearranged
8632         * src/SDCCval.c (valMod): preliminary fix
8633         * src/SDCCval.c (valCastLiteral): use TYPE_* types
8634         * support/regression/literalop.c: added, work in progress
8635
8636 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8637
8638         Generate warnings for useless declarations like "char data;"
8639         that don't do what new users expect.
8640
8641         * src/SDCC.y
8642         * support/Util/SDCCerr.h
8643         * support/Util/SDCCerr.c
8644
8645 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
8646
8647         * src/SDCCval.c (valMult): fix overflow detection of negative int
8648
8649 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8650
8651         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
8652
8653         Changes to support big endian targets:
8654
8655         * src/ports.h
8656         * src/SDCCglue.c
8657         * src/avr/main.c
8658         * src/ds390/main.c
8659         * src/izt/i186.c
8660         * src/mcs51/main.c
8661         * src/pic/main.c
8662         * src/pic16/main.c
8663         * src/xa51/main.c
8664         * src/z80/main.c
8665
8666 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
8667
8668         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
8669         * device/lib/time.c: fixed warning "integer overflow in expression"
8670
8671 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
8672
8673         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
8674         * src/SDCCval.c (constVal): changed default to signed; hex and octal
8675         constants are unsigned; added recognition of "u" flag for unsigned
8676         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
8677         * src/SDCCval.c (valDiv, valMod): fixed signdness
8678         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
8679         signedness of modulo, left and right shift
8680         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
8681         * support/Util/SDCCerr.h: added warning W_INT_OVL
8682         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
8683         * src/SDCCast.c (ast_print): improved output of constants
8684
8685 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8686
8687         Fixed some warnings when building with MSVC:
8688
8689         * as\mcs51\asdata.c
8690         * as\z80\asdata.c
8691         * as\mcs51\asm.h
8692         * as\z80\asm.h
8693         * link\z80\aslink.h
8694         * link\z80\lkdata.c
8695         * link\z80\lkeval.c
8696         * link\z80\lkgb.c
8697         * link\z80\lkihx.c
8698         * link\z80\lks19.c
8699         * link\z80\lksym.c
8700         * support\cpp2\cpplib.c
8701         * src\ds390\gen.c
8702         * src\mcs51\gen.c
8703
8704 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
8705
8706         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
8707
8708 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8709
8710         * support\librarian\clean.mk: Do not remove Makefile.
8711         * support\librarian\Makefile: added.
8712
8713 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8714
8715         Added librarian to MSVC build:
8716         * all.dsp
8717         * sdcc.dsw
8718         * support\librarian\librarian.dsp
8719
8720         'configure' not needed for librarian, removed:
8721         * support\librarian\configure
8722         * support\librarian\configure.in
8723         * support\librarian\config_in.h
8724         * support\librarian\Makefile.in
8725
8726         Hopefully these ones built the librarian and the rest of sdcc properly:
8727         * Makefile
8728         * Makefile.common.in
8729
8730         Messed up 'configure', so revert to previous version:
8731         * configure
8732         * configure.in
8733
8734 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
8735
8736         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
8737         there, while the mantissa of a double is "only" 53 bits wide.
8738
8739 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8740
8741         Adding sdcclib to the build.  MSVC project coming soon.
8742         Files added/changed:
8743
8744         * support\librarian\clean.mk
8745         * support\librarian\configure
8746         * support\librarian\configure.in
8747         * support\librarian\config_in.h
8748         * support\librarian\Makefile.bcc
8749         * support\librarian\Makefile.in
8750         * support\librarian\sdcclib.c
8751         * Makefile.bcc
8752         * Makefile
8753         * Makefile.common.in
8754         * configure
8755         * configure.in
8756
8757 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8758
8759         Linker now complaints if linked modules have conflicting options, for
8760         example, one compiled using --model-large and another one compiled with
8761         --model-small.  The following files were modified:
8762
8763         * as\mcs51\asdata.c
8764         * as\mcs51\aslink.h
8765         * as\mcs51\asm.h
8766         * as\mcs51\asmain.c
8767         * as\mcs51\asout.c
8768         * as\mcs51\i51pst.c
8769         * as\mcs51\lkdata.c
8770         * as\mcs51\lklibr.c
8771         * as\mcs51\lkmain.c
8772         * as\z80\asdata.c
8773         * as\z80\asm.h
8774         * as\z80\asmain.c
8775         * as\z80\asout.c
8776         * as\z80\z80pst.c
8777         * link\z80\aslink.h
8778         * link\z80\lkdata.c
8779         * link\z80\lklibr.c
8780         * link\z80\lkmain.c
8781         * src\SDCCglue.c
8782
8783 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8784
8785         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
8786         as/mcs51/lklibr.c: Generate a warning when a library is not found.
8787
8788 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
8789
8790         * src/z80/mappings.i: fix _mul[us][int,long] entries
8791
8792 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8793
8794         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
8795
8796 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8797
8798         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
8799         * support/regression/tests/bitopcse.c: added
8800         fixed warning:
8801         * src/avr/gen.c:
8802         * src/pic/gen.c:
8803         * src/pic16/gen.c:
8804         * src/z80/gen.c:
8805         * src/xa51/gen.c:
8806
8807 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8808
8809         added support for new library format to z80, gbz80 linkers:
8810         *link/z80/aslink.h
8811         *link/z80/lklex.c
8812         *link/z80/lklib.c
8813         *link/z80/lklist.c
8814
8815 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8816
8817         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
8818         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
8819
8820 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
8821
8822         added DUMMY_READ_VOLATILE:
8823         * src/SDCC.y:
8824         * src/avr/gen.c:
8825         * src/xa51/gen.c:
8826         * src/z80/gen.c:
8827         * src/pic/gen.c:
8828         * src/pic16/gen.c:
8829         * src/mcs51/gen.c:
8830         * src/ds390/gen.c:
8831         * src/SDCCcse.c (algebraicOpts): many improvements
8832         * src/SDCCcse.h: removed algebraicOpts()
8833         * src/SDCCicode.c (picDummyRead): added
8834
8835 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8836
8837         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
8838         "Insufficient space in data memory".
8839
8840 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8841
8842         * src/mcs51/gen.c: fixed bug #771358
8843         * src/z80/gen.c: fixed bug #759087
8844
8845 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
8846
8847         * src/pic16/glue.c: minor cleanup by Vangelis
8848
8849 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8850
8851         * device/include/regc515c.h: fixed #758477
8852         * device/lib/_gptrget.c: saving some cycles in generic pointer get
8853         * device/lib/_gptrput.c: saved a few bytes
8854         * my tab spacing is 8, yours too?)
8855         * device/lib/_ser.c: process RX bytes earlier than TX bytes
8856         * device/lib/serial.c: process RX bytes earlier than TX bytes
8857         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
8858
8859 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8860
8861         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
8862
8863 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8864
8865     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
8866
8867 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
8868
8869         * device/lib/Makefile.in: bad fix, reverted to 1.43
8870
8871 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
8872
8873         * device/lib/Makefile.in: added missing z80 object files
8874
8875 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
8876
8877         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
8878         pic16 progress by Vangelis:
8879         * src/SDCCglobl.h:
8880         * src/SDCCmain.c:
8881         * src/pic/Makefile:
8882         * src/pic:
8883         * pic/Makefile:
8884         * pic16/device.c:
8885         * pic16/device.h:
8886         * pic16/gen.c:
8887         * pic16/gen.h:
8888         * pic16/genarith.c:
8889         * pic16/glue.c:
8890         * pic16/main.c:
8891         * pic16/pcode.c:
8892         * pic16/pcode.h:
8893         * pic16/pcodepeep.c:
8894         * pic16/peeph.def:
8895
8896 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8897
8898     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
8899
8900 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8901
8902     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
8903     added gbz80 build to MSVC project.
8904     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
8905     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
8906     from 8051 stuff and setup so it links using a .lnk file.
8907
8908 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8909
8910     * support/librarian/sdcclib.c: sdcc librarian.
8911     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
8912     with sdcclib.
8913
8914 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8915
8916     * as/mcs51/lkmain.c: properly handle extensions in function afile.
8917
8918 2003-07-02  Borut Razem <borut.razem AT siol.net>
8919
8920         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
8921         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
8922         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
8923         src/xa51/main.c, src/z80/main.c:
8924         virtualization of glue() function: each port has it's own glue function,
8925         which is accessed by do_glue function pointer in PORT.general structure
8926
8927 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
8928
8929         * DS800C400 fun, improved ROM interface and tinibios.
8930
8931 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
8932
8933         * More support for DS80C400. Now includes beginning of interface to ROM.
8934
8935 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
8936
8937         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
8938
8939 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8940
8941         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
8942
8943 2003-06-19  Borut Razem <borut.razem AT siol.net>
8944
8945         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
8946
8947 2003-06-19  Borut Razem <borut.razem AT siol.net>
8948
8949         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
8950         fixed Z80 port - crt0.o: cannot open.
8951
8952 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
8953
8954         * support/Util/MySystem.c (merge_command): revert bad fix
8955
8956 2003-06-18  Borut Razem <borut.razem AT siol.net>
8957
8958         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
8959
8960 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8961
8962         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8963         option --use-stdout sends errors to stdout instead of stderr.
8964
8965 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
8966
8967         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
8968
8969 2003-06-15  Borut Razem <borut.razem AT siol.net>
8970
8971         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
8972         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
8973         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
8974         fixed width array of pointers replaced with sets;
8975         multiple include and lib paths ared transferred to preprocessor and linker
8976         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
8977         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
8978         fixed width array of pointers
8979         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
8980         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
8981         fixupPath(), getPathDifference()
8982         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
8983         fixed width array of pointers
8984
8985 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
8986
8987         * src/pic16/ralloc.c: fix warnings
8988         * src/pic16/pcode.c: fix warning
8989
8990 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
8991
8992          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
8993         know all the details, but essentially this set of changes enable
8994         the pic16 port to generate movff instructions and generate assembler
8995         directives,
8996         * src/SDCCmain.c:
8997         * src/pic16/gen.c:
8998         * src/pic16/glue.c:
8999         * src/pic16/pcode.c:
9000         * src/pic16/device.c:
9001         * src/pic16/main.c:
9002         * src/pic16/pcode.h:
9003         * src/pic16/pcoderegs.c:
9004         * src/pic16/ralloc.c:
9005         * src/pic16/ralloc.h:
9006
9007 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9008
9009         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
9010         added option --vc, so sdcc errors and warnings are compatible with
9011         Microsoft Visual Studio.
9012
9013 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9014
9015         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
9016           device/lib/libfloat.lib: added atof function.
9017
9018 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
9019
9020         * doc/sdccman.lyx: updated to Lyx 1.3
9021         * doc/cdbfileformat.lyx: updated to Lyx 1.3
9022         * doc/test_suite_spec.lyx: updated to Lyx 1.3
9023         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
9024
9025 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
9026
9027         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
9028
9029 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9030
9031         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
9032           additions to the "related tools/documentation" section
9033
9034 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
9035
9036         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
9037
9038 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
9039
9040         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
9041         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
9042
9043 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
9044
9045         * doc/sdccman.lyx: fix double dash and other minor things
9046         * doc/Makefile: fix double dash
9047
9048 2003-05-28  Karl Bongers(patches from Martin Helmling)
9049         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
9050           condition and ignore commands.
9051
9052 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9053
9054         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
9055           is in parts still quite out of date, I did changes as far as I felt makes sense
9056           for a non-native english speaker.
9057           Please feel free to add to the manual or to correct my changes.
9058         * doc/Makefile: undid touching the date of intermediate tex files.
9059
9060 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9061
9062         * doc/sdccman.lyx: Manual has an index now
9063
9064 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
9065
9066         Finalize muluint/mulsint and mululong/mulslong merging:
9067         * device/lib/_mulint.c
9068         * device/lib/_mullong.c
9069         * device/lib/gbz80/mul.s
9070         * device/lib/gbz80/stubs.s
9071         * device/lib/z80/mul.s
9072         * device/lib/z80/stubs.s
9073         * src/SDCCsymt.c (initCSupport)
9074
9075 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9076
9077         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
9078         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
9079           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
9080           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
9081           instead of /Zm500.
9082
9083 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9084
9085         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
9086           the regression tests I'm not brave enough to enable 245.b, 245.c
9087         * doc/sdccman.lyx: added latex preamble for hyperref package.
9088           Using pdflatex this will give you a hyperlinked pdf file with
9089           bookmarks. (prepend '%' before /usepackage if this breaks something)
9090
9091 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9092
9093          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
9094
9095 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
9096
9097         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
9098
9099 2003-05-21    <johan AT balder>
9100
9101         * src/SDCCglue.c (printIval): fixed bug #739934
9102
9103 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
9104
9105         Applied patch from bug 737905 (renamed yylineo to mylineno):
9106         * src/altlex.c
9107         * src/SDCCast.c
9108         * src/SDCglobl.h
9109         * src/SDCC.lex
9110         * src/SDCCsymt.c
9111         * src/SDCCval.c
9112         * src/pic16/pcode.c: Cleaned warnings
9113         * src/pic16/pcodeflow.c: Cleaned warnings
9114         * src/pic16/pcoderegs.c: Cleaned warnings
9115
9116 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
9117
9118         * src/pic16/pcode.c: Cleaned warnings
9119         * src/pic16/pcodepeep.c: Cleaned warnings
9120         * src/pic16/ralloc.c: Cleaned warnings
9121
9122 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
9123
9124         * doc/sdccman.lyx: fixed bug 739745
9125         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
9126
9127 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
9128
9129         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
9130         it can be defined with CFLAGS when running configure
9131         * src/SDCCmain.c: fixed compiling + linking with object files
9132
9133 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
9134
9135         * configure.in: configure for pic16 port,
9136             added --disable-pic16-port
9137         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
9138         * src/SDCCmain.c: linkOptions is changed to set *,
9139             added if/endif conditional macros to remove options help
9140             messages from optionsTable when a port is not configured, added
9141             support for the PIc16 port in the ports table, when executing
9142             the compiler with no port specified on command line, a default
9143             port is selected with the new macro DEFAULT_PORT which is
9144             defined in port.h, in setDefaultOptions() linkOptions is removed
9145             from initialization assignment, since now it is a set,
9146             parseCmdLine uses setParseWithComma for linkOptions, in
9147             linkEdit() linkOptions are accessed with new function indexSet()
9148             which returns the i'th item of a set variable. See SDCCset.c, in
9149             linkEdit() when calling buildCmdLine(), added linkOptions as
9150             last argument. Now users can pass arguments to gplink via the
9151             -Wl option, main() uses pic16glue() to glue up pic16 programs
9152         * src/SDCCpeeph.c: various changes to support pic16
9153         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
9154             return the i'th item of the set
9155         * src/SDCCset.h: added function prototype for indexSet()
9156         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
9157         * src/clean.mk: added pic16 in CLEANALLPORTS variable
9158         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
9159             added macro DEFAULT_PORT
9160         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
9161         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
9162             generated
9163         * src/pic16/glue.c: commented out some error producing lines
9164         * src/pic16/main.c: __config directives are commented out to stop
9165             gpasm complaining and test the linkage with gplink, _linkCmd and
9166             _asmCmd changed to be more gplink and gpasm friendly
9167         * src/pic16/peeph.def: peep rule 3 is commented out, since it
9168             produced an error when parsed, peep rule 12 is added to utilize
9169             movff, but it is commented out since the pCode does not support
9170             yet a command with 2 address arguments
9171
9172 2003-05-18    <johan AT balder>
9173
9174         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
9175         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
9176 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
9177
9178         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
9179   Added feature to script commands from file.
9180
9181 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
9182
9183         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
9184         * src/SDCCutil.c: include ctype.h for win32
9185
9186 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
9187
9188         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
9189
9190 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
9191
9192         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
9193   Fixed so you can set breakpoints prior to run, run does not stop
9194   on entry now.  Add tbreak.  Other enhancements and fixes for use
9195   with ddd.
9196
9197 2003-05-12  Borut Razem <borut.razem AT siol.net>
9198
9199         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
9200
9201 2003-05-11  Borut Razem <borut.razem AT siol.net>
9202
9203         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
9204         the path of bin directory, so that PATH is the only env. variable, which has to be set
9205         in case of standard installation.
9206         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
9207         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
9208         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
9209
9210 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
9211
9212         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
9213         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
9214         temp files are in the port dir; clean the gen/test directory when
9215         generating new test.c
9216         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
9217         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
9218         * support/regression/tests/zeropad.c: added
9219
9220 2003-05-09    <johan AT balder>
9221
9222         * src/SDCCglue.c: fixed bug #597940
9223
9224 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
9225
9226         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
9227   cache sfr, optimize next,step, fix off by one sourceline,
9228   support ddd list function.
9229         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
9230
9231 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
9232
9233         * support/regression/HTMLgen.py: added compare_s2f()
9234         * support/regression/Makefile: redo 1.27
9235         * support/regression/generate-cases.py: redo 1.5
9236
9237 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
9238
9239         * support/regression/tests/float.c: workaround 33 bit hex constant
9240         * support/regression/tests/simplefloat.c: fix division for host
9241
9242 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
9243
9244         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
9245         that tame's the PIC's over-aggressive optimizer.
9246
9247 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9248
9249          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
9250          support for MSVC.
9251
9252 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
9253
9254         Initial support for DS80C400. "Hello world" runs on TINIm400
9255         (with polled I/O).
9256
9257 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
9258
9259          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
9260          * Some notes on ddd usage added in debugger/README
9261          Martin Helmling adding more features and fixes for ddd GUI debugger.
9262          Code added for nexti, stepi, up, down, and other adjustments.
9263
9264 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
9265
9266         * src/pic/pCodepeep.c non-wildcard asmops are now handled
9267         * src/pic/peeph.def Added two rules to optimize carry manipulation
9268         * src/pic/* removed debug printfs
9269
9270 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
9271
9272         * debugger/mcs51/cmd.c: added header newalloc.h
9273
9274 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
9275
9276         * as/Makefile: new EXEEXT
9277         * as/z80/Makefile: remove trailing slash of BUILDIR
9278         * as/z80/clean.mk: new EXEEXT
9279         * Makefile.common.in: add to CFLAGS (and others), don't replace it
9280         * support/cpp2/Makefile.in: new EXEEXT
9281         * src/pic/glue.c (pic14emitRegularMap): fixed warning
9282
9283 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
9284
9285         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
9286         EXEEXT was introduced to fix all related problems with targets
9287         "clean", "install" and "uninstall"; a couple of further flaws
9288         especially with "clean" have been fixed too
9289         * as/mcs51/Makefile.in
9290         * as/mcs51/clean.mk
9291         * as/z80/Makefile
9292         * Makefile
9293         * clean.mk
9294         * debugger/mcs51/Makefile.in
9295         * debugger/mcs51/clean.mk
9296         * link/z80/Makefile
9297         * link/z80/Makefile.in
9298         * link/z80/clean.mk
9299         * link/Makefile
9300         * packihx/Makefile.in
9301         * packihx/clean.mk
9302         * sim/ucsim/Makefile
9303         * sim/ucsim/clean.mk
9304         * sim/ucsim/avr.src/Makefile.in
9305         * sim/ucsim/avr.src/clean.mk
9306         * sim/ucsim/s51.src/Makefile.in
9307         * sim/ucsim/s51.src/clean.mk
9308         * sim/ucsim/xa.src/Makefile.in
9309         * sim/ucsim/xa.src/clean.mk
9310         * sim/ucsim/z80.src/Makefile.in
9311         * sim/ucsim/z80.src/clean.mk
9312         * sim/ucsim/main_in.mk
9313         * sim/ucsim/packages_in.mk
9314         * sim/ucsim/gui.src/Makefile.in
9315         * sim/ucsim/gui.src/serio.src/Makefile.in
9316         * sim/ucsim/gui.src/serio.src/clean.mk
9317         * src/Makefile.in
9318         * src/clean.mk
9319         * support/cpp2/Makefile.in
9320         * support/cpp2/clean.mk
9321         * support/makebin/Makefile
9322         * support/makebin/clean.mk
9323         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
9324         * doc/sdccman.lyx: --program-suffix no longer needed
9325
9326 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
9327
9328          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
9329          Martin Helmling added support for ddd GUI debugger.
9330          Code added to display assembly, set variables, and other commands
9331          to interface to ddd.
9332
9333 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
9334
9335         * as/Makefile: fix target clean
9336         * as/clean.mk: fix target clean
9337         * as/z80/clean.mk: fix target clean
9338
9339 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
9340
9341         * Makefile.common.in: added  AT EXEEXT AT
9342         * configure.in: removed all mingw32 stuff
9343         * configure: rebuilt from configure.in
9344         * doc/sdccman.lyx: updated section "installation"
9345         * support/scripts/sdcc_mingw32: adapted to configure
9346         * support/scripts/sdcc_cygwin_mingw32: added
9347
9348 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
9349
9350         * src/pic Added object file support for the PIC port
9351         * src/pic Applied patch from Craig Franklin (this started the object file support)
9352         * src/regression Updated the PIC regression tests for object files
9353
9354 2003-04-20  Borut Razem <borut.razem AT siol.net>
9355
9356         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
9357           lklex.c: In function `getfid':
9358           lklex.c:203: warning: array subscript has type `char'
9359         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
9360           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
9361         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
9362           stack handling macros
9363
9364 2003-04-19  Borut Razem <borut.razem AT siol.net>
9365
9366         * "handling space characters in file path" task:
9367         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
9368         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
9369         * support/Util/MySystem.h: make it self-sufficient
9370         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
9371           src/z80/main.c, sdcc/as/mcs51/lklex.c:
9372           handling space characters in file path
9373         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
9374           (it will be used by assemblers, which have their own includes, e.g. gpasm)
9375         * support/Util/MySystem.c: handling space characters in executable's path
9376
9377 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
9378
9379         * as/z80/Makefile: fix permanent rebuild of z80
9380         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
9381         * support/regression/tests/bitfields.c: added Johan's bitfields.c
9382
9383 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
9384
9385         * src/SDCCopt.c: add special case optimization to replace modulo by
9386           a power of two with a bitwise AND.
9387
9388 2003-04-18    <johan AT balder>
9389
9390         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
9391
9392 2003-04-17    <johan AT balder>
9393
9394         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
9395         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
9396
9397 2003-04-13  Borut Razem <borut.razem AT siol.net>
9398
9399         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
9400         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
9401           fixed mingw problem in adl_NORMALIZE_PATH
9402
9403 2003-04-12  Borut Razem <borut.razem AT siol.net>
9404
9405         * fixed "#pragma SAVE/RESTORE can not be nested":
9406         * src/SDCC.lex: reworked pragma handling functions
9407         * sdcc/src/SDCCglobl.h: reworked stack handling macros
9408         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
9409
9410 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9411
9412         * src/SDCCutil.c (pathEquivalent): defined but not used
9413         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
9414         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
9415         * configure: rebuilt from configure.in
9416         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9417         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9418         * device/include/Makefile.in: replace sdcc_datadir
9419         * device/lib/Makefile.in: replace sdcc_datadir
9420         * Makefile.common.in: add LDFLAGS from configure
9421         * packihx/Makefile.in: use LDFLAGS
9422         * src/Makefile.in: use LDFLAGS
9423         * support/cpp2/Makefile.in: add LDFLAGS from configure
9424         * support/makebin/Makefile: use LDFLAGS
9425         * .version: bumped version number to 2.3.5
9426
9427 2003-04-12  Borut Razem <borut.razem AT siol.net>
9428
9429         * completed "different paths" task:
9430         * src/SDCCmacro.c: fixed bug in handling quotes
9431         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
9432         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
9433
9434 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9435
9436         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
9437
9438 2003-04-11 kevin Vigor <kevin AT vigor.nu>
9439
9440         * ds390/gen.c ds390/peeph.def: fix bug 706781
9441
9442 2003-04-11  Borut Razem <borut.razem AT siol.net>
9443
9444         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
9445
9446 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
9447
9448         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
9449         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
9450          set - this bit used to not be set...).
9451         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
9452           bad code in PIC Port
9453         * src/regression/and2.c added to test bug 609268
9454         * src/regression/Makefile added and2.c to regression test
9455
9456
9457 2003-04-08    <johan AT CP255758-A>
9458
9459         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
9460         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
9461         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
9462
9463 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
9464
9465         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
9466         fix bug #487815
9467         * support/cpp2/Makefile.in: fix bug #487815
9468         * configure: rebuilt from configure.in
9469         * Makefile.common.in: docdir changed, new path suffixes
9470         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9471         * sdcc_vc_in.h: reflect changes from sdccconf.h
9472         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
9473         * src/SDCCutil.h: remove BINDIR hack
9474         * doc/sdccman.lyx: update new path hierarchy
9475
9476 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9477
9478         * src/SDCCpeeph.c: added okToRemoveSLOC test
9479
9480 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9481
9482         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
9483
9484 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9485
9486         * src/SDCCpeeph.c: added labelIsReturnOnly test
9487         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
9488
9489 2003-04-05    <johan AT balder>
9490
9491         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
9492         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
9493         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
9494         * src/SDCCast.c: fixed a warning
9495         * src/SDCCast.h: fixed a warning
9496         * src/SDCCicode.c (operandFromAst): fixed a warning
9497
9498 2003-04-04    <johan AT balder>
9499
9500         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
9501         * src/SDCCast.c (decorateType): fixed bug #715076
9502         * src/SDCC.y: fixed bug #702907
9503
9504 2003-04-03    <johan AT balder>
9505
9506         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
9507         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
9508         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
9509         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
9510         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
9511
9512 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
9513
9514         * _decdptr.c: fix return values
9515         * _gptrget.c: fix return values
9516         * _gptrgetc.c: fix return values
9517         * _gptrput.c: fix return values
9518         * _mulint.c: fix return values
9519         * as/z80/Makefile: fix 'make -j' problem
9520
9521 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
9522
9523         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
9524         * configure.in: big cleanup, updated to autoconf 2.5x
9525         * configure: rebuilt from configure.in
9526         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9527         * sdcc_vc_in.h: reflect changes from sdccconf.h
9528         * doc/Makefile: fixed a flaw in "make install"
9529
9530 2003-04-02    <johan AT balder>
9531
9532         * src/ds390/gen.c (genCmp): no comments
9533         * src/mcs51/gen.c (genCmp): no comments
9534         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
9535         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
9536
9537 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
9538
9539         * support/regression/generate-cases.py: place generated file in given sub directory
9540         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
9541         * support/regression/Makefile: improvements for 'make -j';
9542         side effect: it's simpler and faster now
9543
9544 2003-03-31  Borut Razem <borut.razem AT siol.net>
9545
9546         * src/z80/main.c: link-{port} and as-{port} defined without path
9547         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
9548
9549 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
9550
9551         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
9552
9553 2003-03-30  Borut Razem <borut.razem AT siol.net>
9554
9555         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
9556           changed type of list parameter to set
9557         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
9558         * src/port.h: changed type of do_assemble() parameter to set
9559         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
9560           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
9561           definition of "cppoutfilename" macro with NULL value in preProcess()
9562         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
9563         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
9564         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
9565           replaced with set *binPathSet
9566         * shash_add() deallocates the item, if allready exsists, before adding the new one
9567         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
9568
9569 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
9570
9571         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
9572           a nested for loop bug in the PIC port
9573         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
9574           for loops
9575
9576 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
9577
9578         * support/Util/dbuf.h: remove C++ stuff to make it portable
9579
9580 2003-03-28  Borut Razem <borut.razem AT siol.net>
9581
9582         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
9583           literal strings in stringLiteral()
9584         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
9585         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
9586           to the project
9587
9588 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
9589
9590         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
9591
9592 2003-03-26    <johan AT balder>
9593
9594         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
9595         * src/ds390/gen.c (saveRegisters): catched symbol abuse
9596         * src/SDCCast.c (decorateType): fixed " -v < 3"
9597
9598 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
9599
9600         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
9601         Added Lenny Story's debug infrastructure changes:
9602         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
9603         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
9604         * src/cdbFile.c: added
9605         * src/SDCCdebug.c: added
9606         * src/SDCCdebug.h: added
9607         * src/SDCCast.c (createFunction)
9608         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
9609         * src/SDCCmain.c (parseCmdLine, main)
9610         * src/SDCCmem.c (redoStackOffsets)
9611         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
9612         * src/SDCCsymt.h
9613         * src/common.h
9614         * src/avr/gen.c (genAVRCode)
9615         * src/ds390/gen.c (gen390Code)
9616         * src/mcs51/gen.c (gen51Code)
9617         * src/pic/gen.c (genpic14Code)
9618         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
9619         * src/xa51/gen.c (genXA51Code)
9620         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
9621
9622 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9623
9624         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
9625         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
9626
9627 2003-03-22    <johan AT balder>
9628
9629         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
9630
9631 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
9632
9633         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
9634         * doc/cdbfileformat.lyx: added, written by Lenny Story
9635         * doc/Makefile: added cdbfileformat.lyx
9636         * doc/clean.mk: added cdbfileformat.lyx
9637
9638 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
9639
9640         * src/mcs51/peeph.def: fix bug #705773
9641
9642 2003-03-20    <johan AT balder>
9643
9644         An sfr/sbit can have an "at #" AND an initializer
9645         * src/SDCCsymt.c (checkSClass):
9646         * src/SDCCmem.c (allocGlobal):
9647         * src/SDCCmem.c (allocLocal):
9648         * src/SDCCast.c (createBlock):
9649
9650 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
9651
9652         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
9653
9654 2003-03-16    <johan AT balder>
9655
9656         Undid the hackup of const and volatile, the problem is much bigger
9657         * src/SDCC.y:1.65
9658         * src/SDCCast.c:1.171
9659         * src/SDCCglue.c:1.138
9660         * src/SDCCicode.c:1.146
9661         * src/SDCCsymt.c:1.150
9662         * src/SDCCval.c:1.65
9663
9664 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
9665
9666         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
9667         * src/ds390/gen.c (genAddrOf): fixed bug #704087
9668
9669 2003-03-13    <johan AT balder>
9670
9671         Hackup const and volatile modifiers in type chains a bit:
9672         * src/SDCC.y:1.63
9673         * src/SDCCast.c:1.169
9674         * src/SDCCglue.c:1.136
9675         * src/SDCCicode.c:1.143
9676         * src/SDCCsymt.c1.146
9677         * src/SDCCsymt.h1.59
9678         * src/SDCCval.c:1.63
9679
9680 2003-03-12    <johan AT balder>
9681
9682         * src/SDCCBBlock.h: more LRH debugging junk
9683         * src/SDCCcflow.h: more LRH debugging junk
9684         * src/SDCCloop.c: more LRH debugging junk
9685         * src/SDCC.y (struct_declaration): fixed bug #697590
9686         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
9687         * src/ds390/gen.c (aopForRemat): fixed bug #700031
9688         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
9689
9690 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9691         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
9692         test function names must now match exactly).
9693         * src/SDCCcse.c: added special case in findCheaperOp to allow
9694         extending a short integer. Makes less awful code for bug 700121 test case.
9695
9696 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9697
9698         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
9699         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
9700
9701 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9702
9703         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
9704         actually called (operandsNotEqual() was called for all
9705         operandsNotEqualX tests).
9706
9707 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9708
9709         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
9710         with shorter literals. Fixes bug 700121.
9711
9712 2003-03-11    <johan AT balder>
9713
9714         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
9715
9716 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
9717
9718         * src/SDCCloop.c (mergeRegions): an evil beast is dead
9719         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
9720
9721 2003-03-10  Borut Razem <borut.razem AT siol.net>
9722
9723         * src/SDCCmain.c: pipe preprocessor's output
9724         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9725         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9726         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9727         which closes all pipes in pipeSet set
9728         * src/SDCCset.c: free deleted item in function deleteSetItem()
9729         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9730         moved from z80 to src subproject
9731         * .version: increased version number to 2.3.4
9732
9733 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
9734
9735         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
9736         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
9737         * support/regression/ports/xa51/spec.mk: fix typo
9738
9739 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
9740
9741         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
9742
9743 2003-03-09  Borut Razem <borut.razem AT siol.net>
9744
9745         * src/SDCCmain.c: pipe preprocessor's output
9746         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9747         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9748         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9749         which closes all pipes in pipeSet set
9750         * src/SDCCset.c: free deleted item in function deleteSetItem()
9751         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9752         moved from z80 to src subproject
9753
9754 2003-03-09  Borut Razem <borut.razem AT siol.net>
9755
9756         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
9757         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
9758         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
9759         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
9760         * src/SDCCglobl.h: unification of WIN32 native definitions
9761
9762 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9763
9764         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
9765
9766 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9767
9768         * src/configure.in:   check for endianess (even while cross-compiling)
9769         * src/configure:      check for endianess (even while cross-compiling)
9770         * src/configure_in.h: check for endianess (even while cross-compiling)
9771         * src/avr/gen.c:        remove old endianess stuff
9772         * src/mcs51/gen.c:      remove old endianess stuff
9773         * src/ds390/gen.c:      remove old endianess stuff
9774         * src/pic/gen.c:        remove old endianess stuff
9775         * src/pic/genarith.c:   remove old endianess stuff
9776         * src/pic/glue.c:       fix endianess check
9777         * src/pic16/gen.c:      remove old endianess stuff
9778         * src/pic16/genarith.c: remove old endianess stuff
9779         * src/pic16/glue.c:     fix endianess check
9780         * src/xa51/gen.c:       remove old endianess stuff
9781         * src/z80/gen.c:        fix endianess check
9782         * src/SDCCglue.c:       fix endianess check
9783         * src/ds390/peeph.def: fix bug 700036
9784
9785 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9786
9787         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
9788         * src/configure: find appropriate data-types on host for SDCC's int and long
9789         * src/configure.in: find appropriate data-types on host for SDCC's int and long
9790         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
9791         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
9792
9793 2003-03-07    <johan AT balder>
9794
9795         Just a big NOOP:
9796                 some minor cleanups before the big shot
9797                 OP_DEFS and OP_USES now use Kevin's protection
9798                 new option --nolabelopt
9799
9800         * src/SDCCBBlock.c:
9801         * src/SDCCast.c,:
9802         * src/SDCCcflow.c:
9803         * src/SDCCcse.c:
9804         * src/SDCCicode.c:
9805         * src/SDCCicode.h:
9806         * src/SDCClabel.c:
9807         * src/SDCCloop.c:
9808         * src/SDCCmain.c:
9809         * src/ds390/ralloc.c:
9810         * src/mcs51/ralloc.c:
9811         * src/pic/ralloc.c:
9812         * src/xa51/ralloc.c:
9813         * src/z80/ralloc.c:
9814
9815 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
9816
9817         * src/pic/pcode.c (get_op): fix 64 bit warnings
9818         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
9819         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
9820         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
9821         * support/regression/tests/malloc.c: fix 64 bit warnings
9822
9823 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
9824
9825         * src/mcs51/gen.c (genMinus): fixed bug 696436
9826
9827 2003-03-02  Borut Razem <borut.razem AT siol.net>
9828
9829         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
9830
9831 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
9832
9833         * configure.in: test for mkstemp
9834         * sdccconf_in.h: add HAVE_MKSTEMP
9835
9836 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
9837
9838         * device/include/ctype.h: removed warning while using --stack-auto
9839         * device/include/malloc.h: removed warning while using --stack-auto
9840         * device/include/string.h: removed warning while using --stack-auto
9841
9842 2003-02-23  Borut Razem <borut.razem AT siol.net>
9843
9844         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
9845         because NDEBUG is defined (see man assert)
9846         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
9847
9848 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9849
9850         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
9851         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
9852
9853 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9854
9855         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
9856         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
9857
9858 2003-02-18    <johan AT balder>
9859
9860         * as/mcs51/asmain.c (asmbl): module can start with a digit
9861         * as/z80/asmain.c (asmbl): module can start with a digit
9862
9863 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
9864
9865         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
9866         * src/asm.c: fix pipe() for Mingw32
9867
9868 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
9869
9870         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
9871         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
9872         make -V work again; --c1mode reads now from stdin
9873         * doc/sdccman.lyx: added --c1mode
9874         * support/Util/SDCCerr.c: new messages for c1 mode
9875         * support/Util/SDCCerr.h: new messages for c1 mode
9876         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
9877
9878 2003-02-15    <johan AT balder>
9879
9880         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
9881
9882 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
9883
9884         * doc/sdccman.lyx: Environment variables, -o and other minor things
9885
9886 2003-02-14    <johan AT balder>
9887
9888         * src/xa51/main.c: before anyone really tries to use it :)
9889
9890         * Install doc's in share/sdcc/doc
9891         * removed some obsolete files
9892         * Do a proper make distclean and uninstall
9893         M Makefile.common.in
9894         R sdccbuild.sh
9895         M as/Makefile
9896         M device/include/Makefile.in
9897         M device/lib/Makefile.in
9898         M doc/sdccman.lyx
9899         M link/Makefile
9900         M sim/ucsim/doc/Makefile.in
9901         M src/clean.mk
9902         R src/avr/peeph.rul
9903         R src/xa51/peeph.rul
9904         M support/cpp2/Makefile.in
9905         M support/makebin/Makefile
9906
9907
9908 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
9909
9910         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
9911
9912 2003-02-10  Borut Razem <borut.razem AT siol.net>
9913
9914         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
9915         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
9916         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
9917         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
9918         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
9919         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
9920         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
9921         src/z80/Makefile.bcc: Borland Makefile cleanup
9922         * as/z80/Makefile.bcc: Added Borland Makefile
9923         * support/cpp2/borland.h: Removed
9924
9925 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
9926
9927         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
9928         * src/SDCC.lex: new pragma NOIV
9929         * src/SDCCglobl.h: new pragma NOIV
9930         * src/SDCCmem.c: new pragma NOIV
9931
9932 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9933
9934         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
9935
9936 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9937
9938         * src/SDCCmain.c: signal handling is switched off by --debug
9939         * doc/Makefile: small fix for install; use clean.mk again
9940         * doc/clean.mk: clean *.pdf and *.html too
9941
9942 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
9943
9944         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
9945         * device/lib/printfl.c: fix a ds390 bug by making it portable
9946         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
9947         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
9948         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
9949         * debugger/mcs51/cmd.c: converted multi-line string literals
9950         * sim/ucsim/globals.cc: converted multi-line string literals
9951         * src/SDCCmain.c: introduced signal handler to remove temp files
9952         * doc/Makefile: small tweaks, implement clean
9953         * doc: removed generated files
9954
9955 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9956
9957         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
9958         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
9959         Address Record is not correctly generated for DS390."
9960
9961 2003-02-02  Borut Razem <borut.razem AT siol.net>
9962
9963         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
9964         * as/mcs51/asm.h: fixed compilation with Borland C
9965         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
9966         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
9967         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
9968         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
9969         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
9970         src/z80/Makefile.bcc: delete $(LIB) only if exist
9971         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
9972
9973 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
9974
9975         * device/include/malloc.h: introduced NULL
9976         * device/include/string.h: introduced NULL
9977         * device/include/stdlib.h: introduced NULL
9978         * device/lib/_memcpy.c: removed NULL
9979         * device/lib/_strcat.c: removed NULL
9980         * device/lib/_strchr.c: removed NULL
9981         * device/lib/_strcmp.c: removed NULL
9982         * device/lib/_strcpy.c: removed NULL
9983         * device/lib/_strcspn.c: removed NULL
9984         * device/lib/_strlen.c: removed NULL
9985         * device/lib/_strncat.c: removed NULL
9986         * device/lib/_strncmp.c: removed NULL
9987         * device/lib/_strncpy.c: removed NULL
9988         * device/lib/_strpbrk.c: removed NULL
9989         * device/lib/_strrchr.c: removed NULL
9990         * device/lib/_strspn.c: removed NULL
9991         * device/lib/_strstr.c: removed NULL
9992         * device/lib/_strtok.c: removed NULL
9993         * device/lib/malloc.c: removed NULL, include own header
9994
9995 2003-02-02    <johan AT balder>
9996
9997         * 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
9998         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
9999         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
10000         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
10001         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
10002         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
10003
10004 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10005
10006         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
10007         area 'DATA'"
10008
10009 2003-02-01    <johan AT balder>
10010
10011         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
10012
10013 2003-01-31    <johan AT CP255758-A>
10014
10015         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
10016
10017 2003-01-30    <johan AT balder>
10018
10019         * src/SDCCBBlock.c: automatic bug detection
10020         * src/SDCCicode.c: automatic bug detection
10021
10022 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10023
10024         * src/SDCCglobl.h:   now --xram-size 0 works
10025         * src/SDCCmain.c:    now --xram-size 0 works
10026
10027 2003-01-29    <johan AT balder>
10028
10029         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
10030
10031 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10032
10033         * as/mcs51/aslink.h: Added options --xram-size and --code-size
10034         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
10035         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
10036         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
10037         * src/SDCCglobl.h:   Added options --xram-size and --code-size
10038         * src/SDCCmain.c:    Added options --xram-size and --code-size
10039
10040 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
10041
10042         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
10043         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
10044
10045 2003-01-27    <johan AT balder>
10046
10047         * src/SDCC.y: fixed bug #613764
10048
10049 2003-01-26    <johan AT balder>
10050
10051         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
10052         * src/SDCCsymt.h: fixed bug #673374
10053         * src/SDCCglue.c: fixed bug #661910
10054         * src/SDCCast.c: fixed bug #458099 and 673374
10055
10056 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
10057
10058         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
10059         * as/mcs51/strcmpi.h: added
10060         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
10061         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
10062         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
10063         * as/mcs51/assym.c: strcmpi -> as_strcmpi
10064         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
10065         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
10066         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
10067         * as/mcs51/Makefile.aslink: new module strcmpi
10068         * as/mcs51/Makefile.asx8051: new module strcmpi
10069         * as/mcs51/Makefil.bcc: new module strcmpi
10070         * as/mcs51/Makefile.in: new module strcmpi
10071         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
10072
10073 2003-01-26    <johan AT balder>
10074
10075         * src/SDCCglue.c: reverted back to 1.124
10076         * src/SDCCast.c: reverted back to 1.156
10077         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
10078
10079 2003-01-25    <johan AT balder>
10080
10081         * src/SDCCglue.c: A better fix for bug #661910
10082         * src/SDCCast.c: A better fix for bug #661910
10083         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
10084
10085 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
10086
10087         * src/Makefile.in: remove spawn.o
10088         * src/SDCCmain.c: remove spawn.h
10089         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
10090         * src/spawn.c: removed
10091         * src/spawn.h: removed
10092         * support/regression/ports/ds390/spec.mk: link with -r
10093
10094 2003-01-24    <johan AT CP255758-A>
10095
10096         * src/ds390/gen.c (aopOp): fixed bug #667458
10097         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
10098         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
10099         (createIvalCharPtr): an ival doesn't always have a storage class anymore
10100
10101 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
10102
10103         * src/mcs51/peeph.def: better assembler identation by Frieder
10104         * src/mcs51/gen.c: better assembler identation by Frieder
10105
10106 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
10107
10108         * as/z80/string.h: removed for gcc 3.2
10109         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
10110         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
10111
10112 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
10113
10114         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
10115         * src/SDCCpeeph.c (replaceRule): fix bug #663503
10116         * support/regression/Makefile: separate temp files for ports
10117         * support/regression/generate-cases.py: separate temp files for ports
10118         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
10119         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
10120
10121 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
10122
10123         * moved tinitalk to device/examples/ds390
10124
10125 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
10126
10127         * as/mcs51/lkmem.c: rflag is for DS390
10128         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
10129         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
10130                          (linkEdit): move mem- and map-files the same way as ihx-files
10131         * src/z80/main.c (_setDefaultOptions): removed --generic
10132         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
10133         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
10134         * src/pic/glue.c (picglue): --c1mode works again
10135         * src/pic16/glue.c (pic16glue): --c1mode works again
10136         * src/asm.c (printCLine): fix #660034
10137
10138 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
10139
10140         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
10141         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
10142         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
10143         * as/mcs51/lkmem (summary): better fix for sp problem
10144         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
10145         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
10146         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
10147                                               remove --stack-after-data
10148
10149 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
10150
10151         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
10152         * src/SDCCutil.c (join): ugly bug: missing '\0'
10153         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
10154
10155 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
10156
10157         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
10158         * src/port.h: typo
10159         * src/pic/main.c (_asmCmd): gpasm supports -o
10160         * src/z80/main.c: more general macros
10161         * device/lib/Makefile.in: remove intermediate files
10162
10163 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
10164
10165         * .version: Bumped version number to 2.3.3
10166         * src/SDCCBBlock.c: new option -o
10167         * src/SDCCglobl.h: new option -o
10168         * src/SDCCglue.c: new option -o
10169         * src/SDCCmain.c: new option -o
10170         * src/asm.c: new option -o
10171         * src/ds390/main.c: new option -o
10172         * src/pic/glue.c: new option -o
10173         * src/pic/pcode.c: new option -o
10174         * src/pic/ralloc.c: new option -o
10175         * src/pic16/glue.c: new option -o
10176         * src/pic16/pcode.c: new option -o
10177         * src/pic16/ralloc.c: new option -o
10178         * src/z80/main.c: new option -o
10179         * device/lib/Makefile.in: use -o
10180         * support/regression/ports/ds390/spec.mk: use -o
10181         * support/regression/ports/gbz80/spec.mk: use -o
10182         * support/regression/ports/mcs51/spec.mk: use -o
10183         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
10184         * support/regression/ports/z80/spec.mk: use -o
10185         * support/regression/ports/ucz80/spec.mk: use -o
10186         * support/regression/ports/xa51/spec.mk: use -o
10187         * support/regression/fwk/lib/timeout.c: fix usage string
10188
10189 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
10190         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
10191
10192 2003-01-07    <johan AT balder>
10193
10194         * src/SDCCast.c (decorateType): fixed bug #600035
10195
10196 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
10197         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
10198         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
10199         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
10200         * src/pic/pcode.c: outcommented unused variable to remove warnings
10201         * src/pic/ralloc.c: outcommented unused variable to remove warnings
10202
10203 2003-01-06    <karl AT turbobit.com>
10204         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
10205    regression tests.
10206
10207 2003-01-06    <johan AT balder>
10208
10209         * src/SDCCicode.c: fixed array add
10210
10211 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
10212         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
10213         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
10214
10215 2003-01-04    <johan AT balder>
10216
10217         * src/SDCCval.c (getNelements): fixed the initialized array of structures
10218
10219 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10220         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
10221
10222 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
10223         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
10224         * support/regression/tests/bug-524697.c: fit mem usage into 8032
10225
10226 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
10227         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
10228
10229 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
10230         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
10231
10232 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
10233         * src/mcs51/main.c: removed {bindir}{sep} from aslink
10234
10235 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10236
10237     * in \sdcc\as\mcs51\ changed these files in order to create an
10238     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
10239     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
10240     following files to include the previous two files: aslink.dsp,
10241     Makefile.aslink, Makefile.bcc, and Makefile.in.
10242
10243     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
10244     .adb instead of .cdb
10245
10246 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10247
10248         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
10249         value from option --iram-size.
10250
10251 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10252
10253         * \sdcc\as\mcs51\lklist.c: added boundary check before using
10254         dram[] array.
10255
10256 2002-09-18    <wiml AT hhhh.org>
10257
10258         * SDCClrange.h: exposed setFromRange() and setToRange()
10259         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
10260           packRegsForAccUse() (bug 542397)
10261         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
10262           multiple times and emitting the fetch operations more than once
10263           added aopGetUsesAcc() function to allow binary operators to
10264           fetch their operands in the correct order; made genMinus() emit
10265           compact code for X = LITERAL - Y
10266
10267 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10268         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
10269         sprintf() in line 1267.
10270
10271 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10272         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
10273         like ports.
10274
10275 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10276         Changes to aslink (All the changes are marked with 'JCF'):
10277
10278         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
10279         summary().
10280
10281         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
10282         area BSEG.  Also moves, if possible, the DATA area down into the internal
10283         ram so more space is available.
10284
10285         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
10286         sflag.
10287
10288         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
10289         not bytes.  Function summary() which creates a memory usage summary
10290         file with extension .mem.  Reports of overlaping stack and small stack
10291         size.  If the space for the stack is less than 16 bytes aslink trows a
10292         warning.
10293
10294         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
10295         the 8051.  Option 'y' for memory summary output file.
10296
10297         Changes to sdcc (All the changes are marked with 'JCF'):
10298
10299         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
10300
10301         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
10302         overlaying area for it (uses RegBankUsed[4]).
10303
10304         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
10305         bank zero as used by default.  By default aslink locates the stack
10306         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
10307         the creation of the .mem file.  Delegates the allocation of data area
10308         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
10309         the begining of the stack area to aslink.
10310
10311         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
10312         glue() in SDCCglue.c creates an area for it.
10313
10314 2002-09-03  Borut Razem <borut.razem AT siol.net>
10315         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
10316         sdcc/src/pic/glue.c:
10317         introduced atexit() handler for teporay files removal in case of
10318         errors, assertions, ...
10319
10320 2002-08-29  Borut Razem <borut.razem AT siol.net>
10321         * sdcc/support/cpp2/auto-host_vc_in.h:
10322         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
10323         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
10324         Maybe there is a similar problem with BORLANDC? It should be checked!
10325
10326         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
10327         corrected improper use of assert: the assignment to clr variable was done inside the assert.
10328         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
10329         was not executed, and the compiler (cl) launched a warning:
10330         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
10331
10332 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
10333         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
10334
10335 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
10336         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
10337
10338         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10339           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
10340           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
10341           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10342           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
10343           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
10344           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
10345         - added Release configuration in VS projects
10346         - review of compiler an linker options
10347         - VC .exe files are generated in bin_vc directory, not to interfere
10348           with binaries generated from other projects (cygwin, mingw, bcc ...)
10349
10350         * sdcc/src/yacc.dsp: added
10351
10352         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
10353         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
10354         and insert the version number definitions from .version
10355
10356         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
10357
10358         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
10359         added - genarate auto-host.h using auto-host_vc_in.h as template
10360
10361         * sdcc/sdcc_vc.h,
10362         removed from CVS, generated automatically
10363
10364 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
10365         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
10366
10367 2002-08-11  Borut Razem <borut.razem AT siol.net>
10368         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
10369
10370 2002-08-10  Borut Razem <borut.razem AT siol.net>
10371         * src/SDCCmain.c (main):
10372         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
10373         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
10374         The consequence was that some temporary files were not removed.
10375
10376         * src/SDCCglue.c:
10377         unification of code in functions tempfilename() and tempfile():
10378         function tempnam() is defined in Visual Studio 6.0 and .NET
10379
10380         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
10381
10382         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10383           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
10384         - removed compiler command line option /WX: Treats all warnings as errors
10385         - update a list of source files, included into the project
10386
10387         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10388           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
10389         changed project type to Generic Project so that can be correcly converted to VS.NET project
10390
10391         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
10392
10393         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
10394
10395         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
10396
10397         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
10398         added return 0 statements after assert() to make compiler happy
10399
10400         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
10401         added newline in the def file to keep MSC compiler satisfied
10402
10403         * sdcc/src/z80/gen.c:
10404         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
10405           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
10406         - solved MSC error in function aopDump()
10407
10408         * sdcc_vc.h: define PREFIX as "\\sdcc"
10409
10410 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
10411         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
10412
10413 2002-06-22  Scott Dattalo <scott AT dattalo.com>
10414         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
10415         - Rewrote the register banking algorithm.
10416         - Added pCode live-range analysis to registers (for now, only non-used and
10417         singly-used registers optimized away)
10418
10419         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
10420
10421         * 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.
10422
10423 2002-05-10  Scott Dattalo <scott AT dattalo.com>
10424         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
10425
10426 2002-04-22  Michael Hope  <michaelh AT vroom>
10427
10428         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
10429
10430         * configure.in (DD_COPT): Added include support required for gbdk.
10431
10432         * .version: Bumped version number just to increase it.
10433
10434         * src/SDCCmain.c: Added -nostdinc to the default options.
10435
10436 2002-04-15  Michael Hope  <michaelh AT vroom>
10437
10438         * device/lib/z80/printf.c (sprintf): Added.
10439
10440         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
10441
10442         * src/z80/peeph.def: Added transpose redundent load rule.
10443
10444         * src/z80/main.c: Added force callee saves for jaune.
10445
10446         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
10447
10448         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
10449
10450 2002-03-28  Johan Knol  <johan AT balder>
10451
10452         * src/SDCCval.c: fixed bug #532436
10453
10454 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10455         * /src/port.h:
10456         Added "char *Processor" field to the port structure.
10457
10458         * /src/SDCCmain.c:
10459         Added -p option. Allows port dependent processor to be specified.
10460
10461         * all ports:
10462         Initialized the new field char *Processor field to NULL in all ports
10463
10464         * /src/pic/*:
10465         Compiler generated registers for interrupt context saving
10466         were not getting allocated.
10467
10468 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
10469
10470         * /src/SDCCast.c:
10471         Fixed left shift. Will promote the left side of a left shift
10472         if a) left shifting more than size of operand or b) when assigned
10473         to something size > size of left side
10474
10475 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10476         * src/pic/*
10477         tons of changes. Register allocation has been
10478         rewritten. Added customization for the various PICs. Flow
10479         analysis is restructured. ...
10480
10481         * src/pic/device.h:
10482         Added
10483
10484         * src/pic/device.c:
10485         Added. device.c is a PIC port hack to accomodate variations
10486         in PIC devices.
10487
10488 2002-03-13  Michael Hope  <michaelh AT vroom>
10489
10490         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
10491
10492 2002-03-04  johanknol  <johanknol AT manik>
10493
10494         * /src/SDCCval.c: fixed
10495
10496         const unsigned char arr[][2] = { { 0, 1 } };
10497         t18.c:1: error: Initializer element is not constant
10498
10499 2002-03-04  bela  <bela AT manik>
10500
10501         * /device/include/mcs51reg.h:
10502         ds89c420 register definition update
10503
10504 2002-03-03    <johan AT FRIJA>
10505
10506         * support/Util/SDCCerr.c: did something, but don't no why anymore
10507
10508         * support/regression/tests/bug-524691.c: made it a little less shy
10509
10510         * src/SDCCast.c (decorateType): fixed bug #524697
10511
10512         * src/SDCCast.c: made some lineno improvements
10513
10514         * src/SDCCval.c (getNelements): changed warning to error
10515
10516         * src/SDCCglue.c (printIvalArray): changed warning to error
10517
10518         * src/SDCCicode.c: fixed a warning for mingw
10519
10520         * src/SDCCast.c (decorateType): fixed the << promotion for ops
10521
10522         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
10523
10524 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
10525
10526         * src/ds390/peeph.def:
10527         Added some more peephole rules
10528
10529         * src/ds390/gen.c: Various fixes & enhancements
10530
10531         * src/SDCClrange.c, src/SDCClrange.h:
10532         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
10533
10534         * src/ds390/ralloc.c:
10535         various fixes & enhancements (ds390) specific
10536
10537         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
10538         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
10539         from rallocs.
10540
10541         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
10542
10543 2002-03-02    <johan AT FRIJA>
10544
10545         * src/SDCCast.c (decorateType): fixed bug #524708
10546
10547         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
10548
10549         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
10550
10551 2002-03-01  Michael Hope  <michaelh AT vroom>
10552
10553         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
10554
10555         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
10556
10557 2002-03-01    <johan AT FRIJA>
10558
10559         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
10560
10561         * src/SDCCast.c (decorateType): fixed bug #524209
10562
10563         * src/SDCCval.c (valNot): fixed bug #524195
10564
10565 2002-02-26    <johan AT balder>
10566
10567         * src/xa51/gen.c: fixed a warning
10568
10569         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
10570
10571         * src/SDCCast.c (decorateType): fixed bug #522534
10572
10573 2002-02-23    <johan AT balder>
10574
10575         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
10576
10577 2002-02-22    <johan AT balder>
10578
10579         * src/SDCCast.c: fixed bug #514865
10580
10581         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
10582
10583 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
10584
10585         * sdcc/src/SDCCloop.c:
10586         Previous fix was not good. basic blocks that have "break" or "return" are
10587         not really partof a loop , but live ranges used in these blocks should
10588         be live thru the entire loop, so set partOfLoop but don't add them to
10589         loop region
10590
10591 2002-02-21    <johan AT FRIJA>
10592
10593         * src/SDCCcse.c: fixed bug #514308
10594
10595 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
10596
10597         * src/SDCCloop.c:
10598         Fixed BUG #519583. If a conditional block ended in a return/break
10599         statement inside a loop, it was not being considered part of the loop.
10600
10601         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
10602
10603 2002-02-10  Karl Bongers <karl AT turbobit.com>
10604
10605         * debugger/*:
10606         Fixed up SDCDB debugger somewhat.  Updated debugger/README
10607         with lots of comments and notes.
10608
10609         * device/examples/test2.c:
10610         Fix bug, "red" variable not being initialized(compiler complained).
10611
10612         * device/examples/Makefile, examples/test3.c:
10613         Add Makefile in device/examples folder, compiles test3.c
10614         for use as a multiple module SDCDB test case.
10615
10616         * sim/ucsim/cmd.src/cmdset.cc:
10617         Took out debug printfs in ucsim "next" command.
10618
10619         * sim/ucsim/xa.src:
10620         Karl and Johan start ucsim XA support.  Most dissassembly working,
10621         about 75% emulation done(plenty of work remaining).
10622
10623         * sim/ucsim/z80.src:
10624         Add Z80 support to ucsim, add test-ucz80 regression test,
10625         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
10626         Notice z80 compiler fails on examples/test3.c/crc code.
10627
10628 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
10629
10630         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
10631         Added support for --parms-in-bank1
10632
10633         * src/ds390/peeph.def:
10634         added a few more peephole optimzations
10635
10636         * src/ds390/main.c:
10637         1) added __builtin_inp & __builtin_outp used to read in data of given length
10638            from a memory mapped port
10639         2) added __builtin_memcmp
10640         3) added __builtin_swapw swap bytes of a short
10641
10642         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
10643         1) handle multiple send & receives from register bank1
10644         2) ralloc can now allocate DPTR1 to some liveRanges
10645
10646         * src/SDCCsymt.c, src/SDCCsymt.h:
10647         changes to handle multiple sends & receives
10648
10649         * src/SDCCptropt.h:
10650         added some pointer arithmetic optimization
10651
10652         * src/SDCCptropt.c:
10653         added some pointer arithmetic optimizations but not stable yet so not
10654         called from anywhere (will get this working shortly)
10655
10656         * src/SDCCopt.c: fixed for multiple sends & receives
10657
10658         * src/SDCCmain.c:
10659         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
10660         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
10661            set preprocessor defines (depending on options)
10662
10663         * src/SDCCicode.c, src/SDCCicode.h:
10664         changes made to handle multiple sends & receives
10665
10666         * src/SDCCglobl.h:
10667         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
10668
10669         * src/SDCCcse.c, src/SDCCcse.h:
10670         added function findbackward def (to be used in upcoming optimization)
10671
10672         * src/SDCCcflow.c, src/SDCCcflow.h:
10673         added function returnAtEnd - to determine if a basic block terminates with
10674         a RETURN iCode
10675
10676         * src/SDCCast.c, src/SDCCast.h:
10677         added option parms-in-bank1
10678
10679         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
10680         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
10681         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
10682         adjusted for --parms-in-bank1 option
10683
10684         * device/include/string.h:
10685         donot redefine "reentrant" keyword
10686
10687         * device/include/ds80c390.h: Added some more SFRs
10688
10689 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
10690
10691         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
10692
10693 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
10694
10695         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
10696
10697 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
10698
10699         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
10700
10701 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
10702
10703         * Added --xram-movc option
10704
10705 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
10706
10707         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
10708
10709 2002-01-11  Johan Knol
10710
10711         * Added math lib of Jesus Calvino-Fraga
10712
10713 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
10714
10715         * src/SDCCmain.c (processFile): fix processing of ../../src.c
10716         * support/regression/Makefile: new target test-mcs51-stack-auto
10717         * support/regression/ports/mcs51-stack-auto/spec.mk: added
10718
10719 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10720
10721         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
10722
10723 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10724
10725         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
10726
10727 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
10728
10729         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
10730
10731         * src/SDCCglue.h: add definition for printIvalChar()
10732
10733 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10734
10735         * src/SDCCast.c: fix #498138 by Johan
10736
10737         * src/SDCCglue.c: fix #498138 by Johan
10738
10739 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10740
10741         * support/regression/Makefile: fix clean
10742
10743         * support/regression/ports/ds390/support.c: fix transmission of last character
10744
10745 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
10746
10747         * /sdcc/src/ds390/gen.c:
10748         a) improved computing address of stack variable
10749         b) took out some #if 0 code
10750         c) improved parmBytes adjustment
10751         d) improved genPlusIncr & genMinusIncr
10752         e) genCmp could generate bad code (when left assigned to DPTR)
10753         f) Fixed bug in hasInc
10754
10755         * /sdcc/src/ds390/ralloc.c:
10756         a) packRegsForSupport could mess up live information (Fixed)
10757         b) packRegsDPTRuse could be incorrect for left & right shift
10758
10759         * /sdcc/src/mcs51/ralloc.c:
10760         packRegsForSupport could mess up the live information (Fixed)
10761
10762         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
10763
10764         * /sdcc/src/SDCCast.c:
10765         can reverse a loop even if function call is present as long
10766         as the loop control variable is local & is not passed as parameter
10767
10768 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10769
10770         * /sdcc/ChangeLog: *** empty log message ***
10771
10772         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
10773         More builtin function additions for TININative
10774
10775         * /sdcc/src/ds390/ralloc.c:
10776         Had broken the regression testsuite
10777
10778         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
10779
10780         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
10781         Added funcattr hasStackParms will be set for reentrant functions when there
10782         are paramteres on the stack, this helps in minimizing frame pointer generation
10783         typeFromStr can handle function pointers now
10784
10785         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
10786         *** empty log message ***
10787
10788 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10789
10790         * /src/ds390/gen.c, /src/ds390/main.c:
10791         More builtin function additions for TININative
10792
10793         * /src/ds390/ralloc.c:
10794         Had broken the regression testsuite
10795
10796         * /src/SDCCast.c: Fixed a bug in dumptree
10797
10798         * /src/SDCCsymt.c, /src/SDCCsymt.h:
10799         Added funcattr hasStackParms will be set for reentrant functions when there
10800         are paramteres on the stack, this helps in minimizing frame pointer generation
10801         typeFromStr can handle function pointers now
10802
10803         * /doc/builtins.txt, /doc/TININative.txt:
10804         *** empty log message ***
10805
10806
10807 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10808
10809         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
10810         ALPHA version for -mTININative
10811
10812         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
10813         updated to reflect changes in the port structure
10814
10815         * /src/port.h:
10816         added function do_assemble (similar to do_link) if non-null this function
10817         will be called to do assembly (-mTININative) requires a multi command
10818         assembly
10819         added function genAssemblerEnd will be called to generate assembler Epilogue
10820
10821         * /src/SDCCsymt.c:
10822         added _JavaNative to debug info printing
10823
10824         * /src/SDCCmain.c: added option --tini-libid
10825         added port->do_assemble function (-mTININative) has a multi command assemble
10826
10827         * /src/SDCCglue.c: Disabled "constExpr" check
10828         added port->genAssemblerEnd function
10829
10830         * /src/SDCCglobl.h: Added option --tini-libid value
10831
10832         * /src/SDCCast.h:
10833         tookout optimizeCompare from the header (has no external references)
10834
10835         * /src/SDCCast.c: made one more function "static"
10836
10837 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
10838
10839         * src/z80/mappings.i: Added z80asm support.
10840
10841         * src/z80/main.c: Added z80asm support on --asm=z80asm
10842
10843         * src/z80/gen.c: Fixed asm portability issues.
10844
10845         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
10846
10847         * src/SDCCglue.c (printExterns): Added global/extern split.
10848
10849 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
10850
10851         * support/regression/Makefile: added test for mcs51 model large
10852
10853         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
10854
10855         * support/regression/ports/gbz80/spec.mk: added -mgbz80
10856
10857 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
10858
10859         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
10860
10861 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
10862
10863         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
10864
10865         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
10866
10867 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
10868
10869         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
10870
10871         * support/regression/tests/simplefloat.c: Port to mcs51.
10872
10873 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
10874         * support/regression/tests/bug-485362.c: Added.
10875
10876         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
10877
10878         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
10879
10880         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
10881
10882         * src/z80/gen.c (aopDump): Added a dump function.
10883
10884 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
10885         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
10886
10887         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
10888
10889         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
10890
10891         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
10892
10893         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
10894
10895         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
10896
10897         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
10898
10899         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
10900
10901         * support/regression/ports/ds390/support.c: Use tinibios.
10902
10903         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
10904
10905 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
10906
10907         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
10908         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
10909
10910         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
10911
10912         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
10913
10914 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
10915
10916         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
10917
10918         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
10919         (packRegsForIYUse): Created and optimised.
10920
10921 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10922
10923         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
10924 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
10925
10926         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
10927
10928         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
10929
10930         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
10931
10932 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10933
10934         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
10935
10936         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
10937
10938 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10939
10940         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
10941
10942         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
10943
10944         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
10945
10946 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10947
10948         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
10949         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
10950         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
10951
10952         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
10953
10954         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
10955         (genNotFloat): Added.
10956         (genUminusFloat): Added.
10957
10958         * device/lib/z80/Makefile: Added floating pt stubs.
10959
10960         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
10961
10962         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
10963
10964         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
10965
10966 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10967
10968         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
10969
10970         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
10971
10972         * sdcc/support/regression/Makefile: Add port ds390.
10973
10974         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
10975
10976         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
10977
10978         * sdcc/support/regression/ports/ds390/spec.mk: Added.
10979
10980         * sdcc/support/regression/ports/ds390/support.c: Added.
10981
10982         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
10983
10984         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
10985
10986         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
10987
10988 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
10989
10990         * device/include/malloc.h: Added z80 and gbz80 support.
10991
10992         * device/lib/gbz80/heap.s: Added.
10993
10994         * device/lib/z80/heap.s: Added.
10995
10996         * device/lib/malloc.c: Added z80 and gbz80 support.
10997
10998         * support/regression/tests/malloc.c (testMalloc): Added.
10999
11000         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
11001
11002         * support/regression/tests/bug-478094.c: Added.
11003
11004         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
11005
11006 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
11007
11008         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
11009
11010         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
11011
11012         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
11013
11014         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
11015
11016         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
11017
11018 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
11019
11020         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
11021
11022 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
11023
11024         * support/regression/tests/bug-477927.c: Added.
11025
11026         * src/z80/peeph.def: Added minor rules.
11027
11028         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
11029
11030         * src/z80/peeph.def: Added jump optimisation modification.
11031
11032 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
11033
11034         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
11035
11036 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
11037
11038         * support/regression/tests/funptrs.c: Added.
11039
11040 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
11041
11042         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
11043
11044 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
11045
11046         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
11047
11048         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
11049
11050         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
11051         (movLeft2ResultLong): Created.
11052
11053         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
11054         (joinPushes): Added.  Joins two char pushes into a word push.
11055
11056 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
11057
11058         * support/cpp2/Makefile.in (install): Added creation of dest dir.
11059
11060         * support/makebin/Makefile (install): Added creation of dest dir.
11061
11062 2001-10-24 Karl Bongers <karl AT turbobit.com>
11063
11064         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
11065
11066 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
11067
11068         * src/z80/ralloc.c: Turned off faulty pack for one use.
11069
11070         * src/z80/peeph-gbz80.def: Removed redundent restart options.
11071
11072         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
11073
11074 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
11075
11076         * support/regression/Makefile: Improved clean
11077
11078         * support/regression/ports/gbz80/spec.mk: Added clean
11079
11080         * support/regression/ports/host/spec.mk: Added clean
11081
11082         * support/regression/ports/z80/spec.mk: Added clean
11083
11084         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
11085
11086         * support/regression/ports/mcs51/timeout.c: little improvements
11087
11088 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
11089
11090         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
11091
11092         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
11093
11094         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
11095
11096 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
11097
11098         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
11099
11100         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
11101
11102 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
11103         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
11104
11105         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
11106
11107         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
11108
11109         * src/mcs51/main.c (_linkCmd): Added bin path to command.
11110
11111         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
11112
11113         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
11114
11115         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
11116
11117         * support/regression/tests/longor.c: Added.
11118
11119 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
11120
11121         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
11122
11123         * as/mcs51/aslink.h: define PATH_MAX
11124
11125         * as/mcs51/asm.h: define PATH_MAX
11126
11127         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
11128
11129         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
11130
11131         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
11132
11133         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
11134
11135         * src/SDCCglobl.h: define PATH_MAX
11136
11137         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
11138
11139         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
11140
11141 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
11142
11143         * src/z80/gen.c (gencjneshort): Fixed
11144
11145         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
11146
11147 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
11148
11149         * support/regression/tests/bug-469671.c: Added.
11150
11151         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
11152
11153 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
11154
11155         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
11156
11157         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
11158
11159 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
11160
11161         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
11162
11163         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
11164
11165         * src/device/lib/_mullong.c : removed hint: nooverlay bug
11166
11167         * src/device/lib/_divuint.c : removed hint: nooverlay bug
11168
11169         * src/device/lib/_divulong.c: removed hint: nooverlay bug
11170
11171         * src/device/lib/_moduint.c : removed hint: nooverlay bug
11172
11173         * src/device/lib/_modulong.c: removed hint: nooverlay bug
11174
11175 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
11176
11177         * 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.
11178
11179         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
11180
11181         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
11182
11183 2001-10-07    <johan AT FRIJA>
11184
11185         * device/lib/gets.c (gets): fixed the return value.
11186
11187 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
11188         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
11189
11190         * 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.
11191
11192         * 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.
11193
11194         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
11195
11196         * src/pic/gen.c: Removed Safe_strdup.
11197
11198         * configure.in: Added option to enable libgc support.
11199
11200         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
11201         (bitVectUnion): Optimised.
11202         (bitVectIntersect): Optimised.
11203         (bitVectBitsInCommon): Optimised.
11204         (bitVectCplAnd): Optimised.
11205
11206         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
11207
11208 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11209
11210         * src/SDCCmain.c: distinguish between assembler debug and plain options
11211
11212         * src/avr/main.c:   remove standard assembler options
11213
11214         * src/ds390/main.c: remove standard assembler options
11215
11216         * src/mcs51/main.c: remove standard assembler options
11217
11218         * src/port.h: removed "PENDING" comment
11219
11220 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11221
11222         * src/device/lib/_mulint.c  : new, with assember functions
11223
11224         * src/device/lib/_mullong.c : new, with assember functions
11225
11226         * src/device/lib/_divuint.c : with assember functions
11227
11228         * src/device/lib/_divsint.c : with assember functions
11229
11230         * src/device/lib/_divulong.c: with assember functions
11231
11232         * src/device/lib/_divslong.c: with assember functions
11233
11234         * src/device/lib/_moduint.c : with assember functions
11235
11236         * src/device/lib/_modsint.c : with assember functions
11237
11238         * src/device/lib/_modulong.c: with assember functions
11239
11240         * src/device/lib/_modslong.c: with assember functions
11241
11242         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
11243
11244         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
11245
11246         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
11247                                       replaced _mululong.c and _mulslong.c by _mullong.c
11248
11249 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11250
11251         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
11252
11253 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
11254
11255         * src/SDCCglue.c: test, if win32api is available for MINGW
11256
11257 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
11258
11259         * src/SDCCsymt.c: no more _modifier in printTypeChain()
11260         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
11261         * support/regression/ports/gbz80/spec.mk: removed GENERIC
11262         * support/regression/ports/host/spec.mk: removed GENERIC
11263         * support/regression/ports/mcs51/spec.mk: removed GENERIC
11264         * support/regression/ports/z80/spec.mk: removed GENERIC
11265
11266 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
11267
11268         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
11269
11270         * support/regression/tests/bug-467035.c: Created.
11271
11272 2001-10-01    <johan AT FRIJA>
11273
11274         * src/SDCC.y: fixed bug #466586 part 1
11275
11276 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
11277
11278         * SDCCicode.c: z80 has no generic pointers
11279         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
11280
11281 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
11282
11283         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
11284
11285 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
11286
11287         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
11288
11289         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
11290
11291 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
11292
11293         * configure.in: Fixed up so that ucsim is only configured once.
11294
11295         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
11296
11297         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
11298         (getPathDifference): As above.
11299
11300         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
11301
11302         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
11303
11304 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
11305         * .version: Updated to 2.3.1
11306
11307         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
11308         Added copyright header.
11309
11310         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
11311         (assemble): Added support for macro based assembler commands.
11312         (linkEdit): Added support for macro based linker commands.
11313         (preProcess): Changed the pre-processor to use macros.
11314         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
11315         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
11316
11317         * device/lib/z80/crt0.s: Added module name for debugging.
11318
11319 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
11320
11321         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11322
11323         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
11324
11325         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
11326
11327         * src/Makefile.in: Added SDCCmacro and SDCCutil
11328
11329 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
11330
11331         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11332
11333 2001-09-16    <johan AT FRIJA>
11334
11335         * 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.
11336
11337 2001-09-15    <johan AT FRIJA>
11338
11339         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
11340         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
11341
11342 2001-09-11    <johan AT FRIJA>
11343
11344         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
11345
11346 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
11347
11348         * support/regression/tests/bug-460444.c: Added test case.
11349
11350         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
11351         (genCast): Added justification for all of the asserts.
11352
11353 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
11354
11355         * support/regression/support.c: _xdata replaced by xdata
11356
11357         * support/regression/spec.mk: removed _generic
11358
11359 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
11360
11361         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
11362
11363         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
11364         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
11365
11366         * src/z80/peeph.def: Added a rule to optimise shift then compare.
11367
11368         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
11369
11370         * support/regression/tests/bug-460010.c: Added test case.
11371
11372         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
11373
11374 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
11375
11376         * support/regression/Makefile: inter-port-clean adjusted for mcs51
11377
11378         * support/regression/testfwk.c: removed workaround for bug #436344
11379
11380         * support/regression/tests/bp.c: use less memory with mcs51
11381
11382         * support/regression/tests/bug-441448.c: use less memory
11383
11384         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
11385
11386         * support/regression/collate-results.py: typo
11387
11388 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
11389
11390         * support/regression/tests/fetchoverlap.c: Added new test case.
11391
11392         * support/regression/tests/bp.c: Added new test case.
11393
11394         * support/regression/tests/bug-448984.c: Added new test case.
11395
11396         * support/regression/tests/pow2shifts.c: Added new test case.
11397
11398         * src/z80/gen.c: Turned off the noise it normally generates for the release.
11399         (genlshTwo): Fixed right shift for count > 8.
11400
11401         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
11402
11403 2001-09-08    <johan AT FRIJA>
11404
11405         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
11406
11407 2001-09-07    <johan AT FRIJA>
11408
11409         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
11410
11411         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
11412
11413 2001-09-06    <johan AT FRIJA>
11414
11415         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
11416         * bernhard noted me at this: "() equals to (void)" (1.38)
11417
11418 2001-09-05    <johan AT FRIJA>
11419
11420         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
11421
11422 2001-09-04    <johan AT FRIJA>
11423
11424         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
11425
11426
11427 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
11428
11429         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
11430
11431 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
11432
11433         * link/z80/aslink.h: Fixed path for PATH_MAX
11434
11435 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
11436
11437         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
11438
11439         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
11440
11441         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
11442
11443         * 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.
11444
11445 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
11446
11447         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
11448         (genCmp): Fixed up genCmp for the GB with longs.
11449
11450         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
11451
11452         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
11453
11454         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
11455
11456         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
11457
11458 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
11459
11460         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
11461
11462 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
11463
11464         * 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.
11465
11466         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
11467
11468 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
11469
11470         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
11471
11472         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
11473
11474 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
11475
11476   * sim/ucsim/configure:    little improvement of Cygwin-detection
11477   * sim/ucsim/configure.in: little improvement of Cygwin-detection
11478   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
11479   * support/regression/tests/bug-221100.c: small changes for mcs51
11480   * support/regression/tests/bug-221168.c: small changes for mcs51
11481   * support/regression/tests/bug-227710.c: small changes for mcs51
11482   * support/regression/tests/staticinit.c: small changes for mcs51
11483   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
11484   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11485   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11486
11487 $Revision$