* configure.in, configure, doc/Makefile.in:
[fw/sdcc] / ChangeLog
1 2006-05-01 Borut Razem <borut.razem AT siol.net>
2
3         * configure.in, configure, doc/Makefile.in:
4           sync with nightly build makefile - latex, dvipdf and dvips
5           not needed any more
6
7 2006-04-30 Bernhard Held <bernhard AT bernhardheld.de>
8
9         * support/scripts/sdcc.nsi: removed all Readmes and Makefiles
10         in the library source
11
12 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
13
14         * support/regression/ports/hc08/spec.mk: fixed bug 1478892
15
16 2006-04-28 Raphael Neider <rneider AT web.de>
17
18         * src/pic16/pcode.c (pic16_newpCodeOpLit12),
19         * src/pic16/gen.c (pic16_popGetLit12): NEW, create 12 bit literal,
20           (pic16_loadFSR0): handle 12 bit literals correctly, fixes #1440527
21         * src/pic16/pcode.h: added prototype for pic16_newpCodeOpLit12()
22
23 2006-04-28 Bernhard Held <bernhard AT bernhardheld.de>
24
25         * device/lib/pic/libdev/Makefile.in,
26         * device/lib/hc08/Makefile.in,
27         * device/lib/gbz80/Makefile.in,
28         * device/lib/z80/Makefile.in,
29         * device/lib/ds390/Makefile.in,
30         * device/lib/ds400/Makefile.in: added srcdir to include search path,
31         thanks to Borut for the bug report
32         * configure.in,
33         * configure: always create doc/Makefile independent from --enable-doc
34         * Makefile.in: always install from directory doc independent from
35         --enable-doc
36         * device/lib/pic/Makefile.in: added libdev again, it was erroneously
37         removed
38         * device/lib/pic/libdev/Makefile.in: fixed VPATH build
39         * doc/Makefile.in: install *.txt if present
40         * device/include/Makefile.in (install): added installation of pic/*.inc
41         and pic/*.txt files again, they were erroneously removed
42
43 2006-04-28 Raphael Neider <rneider AT web.de>
44
45         * src/pic/{gen.c,main.h,pcode.c},
46         * src/pic16/{gen.c,pcode.c}: quietened compiler warnings
47             concerning signedness with casts
48
49 2006-04-28 Raphael Neider <rneider AT web.de>
50
51         * src/pic/gen.c (genFunction): set global pic14_hasInterrupt on
52             definition of an interrupt handler,
53         * src/pic/glue.c (pic14_emitInterruptHandler): moved output of
54             interrupt handler stuff from picglue() to separate routine,
55           (picglue): enabled definition of intr handlers in files w/o main()
56
57 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
58
59         * support/librarian/sdcclib.c: moved include <limits.h> up to enable
60           compilation with MSVC 2005 Express Edition (VC8)
61
62 2006-04-26 Bernhard Held <bernhard AT bernhardheld.de>
63
64         * device/lib/Makefile: fixed build of gbz80 lib
65
66 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
67
68         * support/regression/tests/bug-460010.c,
69         * support/regression/tests/bug-524691.c,
70         * support/regression/tests/bug-716242.c: removed conditional defines
71           that are already in testfwk.h
72
73 2006-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
74
75         * src/ds390/gen.c (AccAXRrl1, AccAXLrl1): changed to real rotate by 1,
76           (AccAXRsh1): added, shift right by 1,
77           (AccAXLsh, AccAXRsh, AccAXRshS): updated for AccAXRrl1, AccAXRsh1 and
78            AccAXLrl1
79         * support/regression/tests/rotate.c: use <stdint.h> and enabled ds390
80
81 2006-04-25 Bernhard Held <bernhard AT bernhardheld.de>
82
83         * src/SDCCast.c (decorateType): partial fix for RFE 1475769,
84         remove cast to same type
85         * src/SDCCast.c (decorateType): fix for RFE 1475742,
86         optimize 'ifx (op == 0)' resp. 'ifx (op != 0)'
87         * as/z80/Makefile,
88         * link/z80/Makefile: removed, they have moved to
89         Makefile.in files
90         * configure,
91         * configure.in: replaced duplicate message about ucsim by missing sdcpp
92         * install-sh: fix bug #1204398 by setting umask 0022
93         * device/lib/Makefile: separate build of z80 and gbz80 lib
94
95 2006-04-24 Bernhard Held <bernhard AT bernhardheld.de>
96
97         Enabled VPATH feature: changed nearly all Makefiles (149 files).
98         See sdccman.lyx '2.4.10 VPATH feature' about how to use it.
99
100         One basic decision: e.g. src/clean.mk includes further files. In order
101         to make this work there are two solutions:
102         - rename another dozen clean.mk to clean_in.mk, add srcdir to them and
103           run configure on them. This way they can use
104           'include $(srcdir)/port-clean.mk'
105         - always include clean.mk by the Makefile at the same level. To avoid
106           that `make clean` tries to include and build Makefile.dep the
107           MAKECMDGOALS are examined (see e.g. src/Makefile.in). This has been
108           implemented, because now even `make uninstall` doesn't create
109           Makefile.in. clean.mk could be eliminated by pasting it in
110           Makefile.in.
111
112         * debugger/mcs51/Makefile.in: build own objects from library sources
113         (SLIB, SDCC) in current directory
114
115         * configure, configure.in: renamed --disable-device-lib-build in
116         --disable-device-lib; added --enable-doc, the required tools are
117         searched by configure; added result message; the toolchain for the
118         belonging ports are now only built, if the port is enabled.
119
120         * support/regression/*: all output is written in directory gen, because
121         the fwk and ports directories don't livet in the build tree using vpath
122
123         * doc/sdccman.lyx: renamed --disable-device-lib-build to
124         --disable-device-lib, added --enable-doc, added section VPATH
125
126         * sim/ucsim/configure.in,
127         * sim/ucsim/configure.in: hc08 couldn't be disabled, now hc08 and
128         z80 are enabled by default
129
130 2006-04-24 Raphael Neider <rneider AT web.de>
131
132         * src/pic/device.c (pic14_assignConfigWordValue): remember assignments
133             to config word, "pic14_"-prefixed some extern functions
134           (pic14_emitConfigWord): emit __config directive(s) if assignment to
135             config word has been found
136         * src/pic/device.h: added prototypes
137         * src/pic/pcode.c: added "pic14_"-prefix where needed
138         * src/pic/ralloc.c (IS_CONFIG_ADDRESS,pic14_assignRegisters): cosmetic
139             fixup
140         * src/pic/glue.c (pic14_constructAbsMap): handle assignments to config
141             words,
142           (pic14emitRegularMap): ignore config words,
143           (pic14createInterruptVect): moved generating __config directives away
144           (picglue): have __config directives emitted
145
146 2006-04-24 Borut Razem <borut.razem AT siol.net>
147
148         * doc/Makefile: sync with nightly build makefile
149
150 2006-04-24 Raphael Neider <rneider AT web.de>
151
152         * src/pic/pcoderegs.c (OptimizeRegUsage): do not optimize
153             registers that have not been assigned proper liveranges,
154             fixes #1469504 and #1474602,
155           (pCodeRegOptimizeRegUsage): fixed typo in comment
156
157 2006-04-24 Borut Razem <borut.razem AT siol.net>
158
159         * device/examples/main8051.c: deleted - it was removed from CVS
160           24.mar.2000 and after that modified 18.feb.2001, so it reappered
161           after the transition to Subversion
162         * src/SDCCalloc.h: deleted - it was removed  from CVS
163           3.feb.2001 and after that modified 18.feb.2001, so it reappered
164           after the transition to Subversion
165         * sim/ucsim/cpu.gif, sim/ucsim/interrupt.gif, sim/ucsim/new.gif,
166           sim/ucsim/serial1.gif, sim/ucsim/serial2.gif,
167           sim/ucsim/term_cpuopt.gif, sim/ucsim/timers.gif, sim/ucsim/wins.gif,
168           sim/ucsim/post.jpg, sim/ucsim/UCsim.jpg: corrected
169
170 2006-04-22 Maarten Brock <sourceforge.brock AT dse.nl>
171
172         * as/asx8051.dsp: added mcs51/strcmpi.h
173         * as/hc08/as_hc08.dsp: added asm.h, m6808.h, strcmpi.h
174         * as/hc08/aslink.h: updated lnksect prototype
175         * as/hc08/asm.h,
176         * as/mcs51/asm.h: added a_addr to struct area and s_org to struct sym
177         * as/hc08/asmain.c,
178         * as/mcs51/asmain.c (asmbl): init dot.s_org for S_ORG,
179           (newdot): handle A_ABS
180         * as/hc08/asout.c,
181         * as/mcs51/asout.c (outarea): output address
182         * as/hc08/lkaomf51.c,
183         * as/mcs51/lkaomf51.c: disabled unused array UsageType
184         * as/hc08/m08pst.c,
185         * as/mcs51/i51pst.c,
186         * as/z80/z80pst.c: "ABS" is not A_OVR
187         * as/hc08/lkarea.c (newarea): read a_addr,
188           (lnkarea): added codemap array, sort absolute areas to the front,
189            combine all GSINITx/GSFINAL,
190           (find_empty_space, allocate_space): new functions,
191           (lnksect): return next address, handle absolute sections
192         * as/mcs51/lkarea.c (newarea): read a_addr,
193           lnksect2 prototype changed,
194           (lnkarea2): define codemap unsigned, combine all GSINITx/GSFINAL,
195           (find_empty_space, allocate_space): new, factored out of lnksect2,
196           (lnksect2): return next address, handle absolute sections
197         * as/hc08/lkhead.c,
198         * as/mcs51/lkhead.c (newhead): head is absolute but not overlay
199         * as/hc08/lklibr.c (addfile, fndsym),
200         * as/mcs51/lklibr.c (addfile, buildlibraryindex, fndsym): prevent
201           index out of range and detect both '\' and '/'
202         * device/include/mcs51/c8051f200.h: added _XPAGE, removed bad comment
203         * device/include/stdbool.h: removed SDCC_ds390 from check to pass
204           regression tests (ds390 cannot return bool yet)
205         * doc/sdccman.lyx: changed version number, document changed --no-peep,
206           document critical interrupts on z80, document changed SDCC define
207         * src/asm.c (_asxxxx_mapping): fixed .org directive,
208           (_a390_mapping): added .org directive
209         * src/hc08/gen.c (transferAopAop): made bytemask log to fix warning,
210           (genMultOneByte): fixed warnings
211         * src/hc08/hc08.dsp: lowered warning level to 2 to suppress pedantic
212           ones
213         * src/pic16/device.c: removed newReg prototype, removed BYTE_IN_LONG
214         * src/pic16/gen.c (pic16_popGetLabel): made parameter key signed,
215           (pic16_genLeftShiftLiteral, genRightShiftLiteral): fixed warnings
216         * src/pic16/gen.h: changed prototype for pic16_popGetLabel
217         * src/pic16/main.c: removed newReg prototype
218         * src/pic16/pcode.c,
219         * src/pic16/pcode.h (pic16_emitDB): changed parameter c to int to fix
220           warnings
221         * src/pic16/pic16.dsp: lowered warning level to 2 to suppress pedantic
222           ones
223         * src/pic16/ralloc.c
224         * src/pic16/ralloc.h (newReg): changed type to int and size to unsigned
225           to fix warnings
226         * src/pic/pcode.c (allocInternalRegister): changed parameter optype
227           from short to PIC_OPTYPE
228         * src/pic/pic.dsp: lowered warning level to 2 to suppress pedantic ones
229         * src/pic/ralloc.c (newReg, allocInternalRegister): changed parameter
230           optype from short to PIC_OPTYPE
231         * src/port.h: made int_size unsigned to fix warnings
232         * src/SDCC.y: fixed warning on MSVC
233         * src/SDCCicode.c (getArraySizePtr): return unsigned int
234         * src/SDCCopt.c (convertToFcall): fixed warnings
235         * src/SDCCsymt.h: removed double prototype for genSymName
236         * src/xa51/ralloc.c (allocReg): made size unsigned int, type int and
237           offset int to fix warnings
238
239 2006-04-22 Borut Razem <borut.razem AT siol.net>
240
241         * doc/sdccman.lyx, */Makefile, */Makefile.in:
242           references to CVS replaced with Subversion
243
244 2006-04-21 Borut Razem <borut.razem AT siol.net>
245
246         * doc/sdccman.lyx, */Makefile, */Makefile.in:
247           references to CVS replaced with Subversion
248
249 2006-04-19 Borut Razem <borut.razem AT siol.net>
250
251         * src/version.awk: adapted for svn
252         * /asxxxx/asxhtml/*.gif: set property svn:mime-type to image/gif
253           sim/ucsim/doc/*.gif: set property svn:mime-type to image/gif
254           sim/ucsim/doc/*.jpg: set property svn:mime-type to image/jpeg
255           /binutils-avr/etc/*.vi, *.jin: removed all properties
256           support/scripts/sdcc.ico: set property svn:mime-type to image/x-icon
257
258 2006-04-19 Borut Razem <borut.razem AT siol.net>
259
260         * CVS to Subversion migration completed
261
262 2006-04-18 Borut Razem <borut.razem AT siol.net>
263
264         * support/scripts/sdcc.nsi: removed unexisting ${DEV_ROOT}\lib\pic\*.o,
265           ${DEV_ROOT}\lib\src\pic\libdev\*.S, ${DEV_ROOT}\lib\src\pic\libdev\*.inc
266
267 2006-04-17 Borut Razem <borut.razem AT siol.net>
268
269         * device/include/Makefile.in: added pic/*.inc to the installation
270
271 2006-04-15 Bernhard Held <bernhard AT bernhardheld.de>
272
273         * support/regression/collate-results.py: fixed output in case of
274         a valdiag error
275         * support/regression/generate-cases.py: fixed splitting of pathnames
276         with dots
277         * as/hc08/lklibr.c (addfile),
278         * as/mcs51/lklibr.c (addfile): fixed off-by-one bug
279
280 2006-04-11 Raphael Neider <rneider AT web.de>
281
282         * src/pic16/gen.c (getFreePtr, pic16_popRegFromString),
283         * src/pic16/ralloc.c (pic16_allocregWithName): removed debug output
284         * src/pic16/pcode.c (assignValnums): fixed #1460578
285
286 2006-04-11 Raphael Neider <rneider AT web.de>
287
288         * device/lib/pic/libdev/*.c,
289         * device/include/pic/*.h: replaced sfr and data with __sfr and __data,
290           fixes #1468739, enables compilation in --std-c99 mode
291         * support/scripts/inc2h.pl: emit __sfr/__data instead of sfr/data
292
293 2006-04-11 Raphael Neider <rneider AT web.de>
294
295         * src/pic/device.c (find_device): removed debug output
296           (list_valid_pics): enabled verbose listing of supported devices
297         * device/include/stdbool.h: define bool as char for pic14/16 as well
298
299 2006-04-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
300
301         * src/SDCC.y: allow using brackets here: "__interrupt (1) __using (1)"
302
303 2006-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
304
305         * .version: bumped version to 2.5.6
306         * src/pic/ralloc.c (newReg): MSVC doesn't support __builtin_return_address
307
308 2006-04-06 Raphael Neider <rneider AT web.de>
309
310         * .version: bumped version to 2.5.6 (pic14 ABI changed)
311         * src/SDCCmain.c: add -DSDCC_PROCESSOR=<id> for pic14 port
312         * src/pic/glue.c (emitSymbolToFile,pic14_constructAbsMap,
313           pic14emitRegularMap,pic14emitMaps): moved output for absolute symbols to
314             pic14_constructAbsMap
315           (pic14printPublics): declare absolute global symbols as global
316           (pic14createInterruptVect),
317         * src/pic/ralloc.c (IS_CONFIG_ADDRESS): support second config word,
318           (newReg): assume new registers unused, use correct name in
319             hashtable (reg->name instead of name), more debugLog output
320         * src/pic/device.h (PIC_device): added fields for verbose output
321         * src/pic/device.c: moved device definition to pic14devices.txt,
322             added routines for runtime parsing of pic14devices.txt,
323             added support for second config word
324         * src/pic/main.c (_process_pragma): removed #pragma maxram,
325           (_pic14_keywords): no longer accept "bit" and "sbit" keywords
326           (_pic14_initPaths): add search paths with "pic" suffix (not "pic14")
327           (_pic14_parseOptions): moved pCodeInitRegisters here
328           (_pic14_do_link): add "pic$(ARCH).lib" to linker arguments
329         * src/pic/pcode.c (AnalyzeBanking): bail out on unset processor,
330           (pCodeInitRegisters): rewrapped comments, perpared new approach to
331             handling the pseudo stack
332         * device/lib/Makefile.in: ignore failures in objects-pic16,
333         * device/lib/pic/{configure,configure.in,Makefile}: added libdev/
334         * device/lib/pic/NEWS: document new dependency on picXXX.lib
335         * device/lib/pic/Makefile.subdir,
336         * device/lib/pic16/Makefile.subdir: improved clean rules
337         * device/lib/pic/libdev/: NEW, pic14 device libraries
338         * device/lib/pic/libsdcc/_gptr{get,put}{1,2,3,4}.S: use _X not X
339         * device/lib/pic/libsdcc/macros.inc: use _X not X, declare default SFRs
340         * device/include/Makefile.in: create subdir and install pic14 headers
341         * device/include/pic/p16f_common.inc: removed unused declarations
342         * device/include/pic/pic16*.h: added header files for 100+ 14 bit
343             PICs from inc2h.pl v1.6,
344             replaced BIT_AT macros with struct declarations
345         * device/include/pic/pic14devices.txt: definition of supported devices,
346             all above improvements contributed by Zik Saleeba, thanks
347         * support/scripts/inc2h.pl: removed BIT_AT, replaced with structs
348         * support/scripts/sdcc.nsi: also install pic14 device libraries and
349             headers
350
351 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
352
353         * device/include/mcs51/c8051f410.h: added interrupt numbers,
354         * device/include/mcs51/c8051f200.h: old SiLabs mcu completes the list,
355           thanks to Charles Olds
356
357 2006-04-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
358
359         * debugger/mcs51/cmd.c (infoRegisters): show return address on stack
360
361 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
362
363         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug 1464657
364         * src/mcs51/gen.c (genJumpTab): fixed bug in medium model
365         * support/regression/bug1464657.c: added, new test
366
367 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
368
369         * src/SDCCmain.c (preProcess): implemented RFE 1449908, define SDCC as the
370           version number
371
372 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
373
374         * src/SDCCpeeph.c (initPeepHole): implemented RFE 1460196, when both
375           --no-peep and --peep-file <file> are used don't use default rules but
376           do use the <file>
377
378 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
379
380         * src/mcs51/gen.c (genCall): fixed bug 1457608
381
382 2006-03-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
383
384         * doc/sdccman.lyx: reverted to version 1.129 of december as my latest
385         changes seem to cause (trigger?) problems with the build system.
386
387 2006-03-29 Maarten Brock <sourceforge.brock AT dse.nl>
388
389         * src/SDCCpeeph.c (operandsLiteral): new, added,
390           (callFuncByName): inserted operandsLiteral
391         * src/mcs51/peeph.def: reenabled 132.e, added extra check to 132.x
392
393 2006-03-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
394
395         * doc/sdccman.lyx: added paragraph "Use of SDCC in Education"
396         * src/mcs51/peeph.def: disabled rule 132.e fixing bug #1453093
397
398 2006-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
399
400         * src/z80/gen.c (genFunction, genEndFunction): fixed bug 1160666,
401           implemented patch 1120823 Thanks to Willy De la Court (normal
402           interrupts need an interrupt number now if they are made critical),
403           and enabled nesting of critical functions though not for gbz80
404           (genCritical, genEndCritical): added functions
405           (genZ80Code): added cases for CRITICAL and ENDCRITICAL
406         * src/z80/mappings.i: added "ei" to all mappings
407
408 2006-03-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
409
410         * sim/ucsim/cmd.src/newcmdcl.h: applied patch fixing GCC 4.1 build
411         submitted by the Debian SDCC maintainer Aurelien Jarno:
412         "Credits goes to Martin Michlmayr, who rebuilt the whole Debian
413         archive with gcc 4.1 on mips and wrote the patch"
414
415 2006-03-16 Raphael Neider <rneider AT web.de>
416
417         * src/pic16/genarith.c (genAddLit): simplified and fixed case where
418           the left operand is shorter than the result (c* = lit-c* + int),
419           fixes bug #1450796
420         * src/pic16/gen.c (genRightShift): check IS_SYMOP before accessing
421           OP_SYMBOL
422
423 2006-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
424
425         * src/.version: increased version number to 2.5.5
426         * src/SDCCmain.c (linkEdit): do not test for PIC16 target since, PIC16
427         linking is done manually in pic16 port's _linkEdit,
428         * src/SDCCsymt.c (compStructSize): for target PIC16 and shell variable
429         PIC16_PACKED_BITFIELDS, compact bitfield structures as much as possible,
430         * src/pic16/gen.c (aopForSym): when direct register name is WREG then
431         allocate asmop as AOP_ACC,
432         (aopForRemat): added parameter 'bool result' in function declaration,
433         (pic16_aopGet): return AOP_ACC when accessing WREG,
434         (pic16_popGetTempReg): minor modification,
435         (pic16_popRegFromIdx): first try with 'pic16_regWithIdx' then with
436         'pic16_allocWithIdx',
437         (genPcall): removed ftype, usage of OP_SYM_TYPE asserted error when
438         calling function in absolute addresses,
439         (genAssign): take into account AOP_ACC asmop,
440         * src/pic16/pcode.c (pic16_newpCodeOpReg): minor modifications,
441         * src/pic16/pcoderegs.c: some debug functions and lines added,
442         * src/pic16/ralloc.c (decodeRegType): added but commented out,
443         * (pic16_typeRegWithIdx): search 'pic16_dynInternalRegs' for given
444         register too,
445         * (pic16_findFreeReg, pic16_findFreeRegNext): allocate new register via
446         call to allocReg, not by manually allocating a new one,
447         (pic16_assignRegisters): now before going through the register
448         allocating functions mark all registers as free. This eliminates some
449         side effects resulting from peephole parser done earlier in the backbone
450
451 2006-03-13 Maarten Brock <sourceforge.brock AT dse.nl>
452
453         * src/SDCCicode.c (geniCodeLogic),
454         * src/SDCCast.c (decorateType): applied patch by Bernhard for rfe 1422617
455
456 2006-03-10 Maarten Brock <sourceforge.brock AT dse.nl>
457
458         * src/mcs51/gen.c (sameReg): new, checks if two aop regs are the same,
459           (genSend): bugfix, do not allocate and free twice,
460           (shiftRLong): handle partially overlapping aops
461         * support/regression/tests/bitopcse.c: fixed warning redefined idata
462
463 2006-03-08 Borut Razem <borut.razem AT siol.net>
464
465         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata
466           for pic16
467
468 2006-03-08 Maarten Brock <sourceforge.brock AT dse.nl>
469
470         * support/regression/tests/bug1409955.c: new, added
471         * src/mcs51/gen.h: changed asmop.freed:1 to asmop.allocated for tracking
472         * src/mcs51/gen.c (newAsmop): set asmop.allocated to 1,
473           (aopForSym, aopOp): increment asmop.allocated if reused,
474           (freeAsmop): decrement asmop.allocated and check for zero instead of
475           using asmop.freed,
476           (freeForBranchAsmop): use asmop.allocated instead of asmop.freed,
477           (genNot, genCpl, genUminus, genMinus, genMult, genDiv, genMod, genCmpGt,
478            genCmpLt, genAndOp, genOrOp, genAnd, genOr, genXor, genRRC, genRLC,
479            genGetHbit, genGetAbit, genGetByte, genGetWord, genSwap,
480            genLeftShiftLiteral, genLeftShift, genRightShiftLiteral,
481            genSignedRightShift, genRightShift, genDataPointerGet,
482            genPagedPointerGet, genFarPointerGet, genCodePointerGet,
483            genGenPointerGet, genDataPointerSet, genAssign, genCast): free asmop's
484             in reverse order from allocation,
485           (genPlus, genCmpEq): free asmop's in reverse order from allocation and
486             added swappedLR to keep track
487         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata,
488           pdata & code for GCC, z80, gbz80 & hc08
489         * support/regression/tests/zeropad.c: moved defines to testfwk.h
490
491 2006-03-08 Raphael Neider <rneider AT web.de>
492
493         * src/pic16/main.c (_hasNativeMulFor): fixed bug #1444425
494
495 2006-03-07 Maarten Brock <sourceforge.brock AT dse.nl>
496
497         * device/include/mcs51/c8051f410.h: new SiLabs mcu
498         * src/ds390/peeph.def: disabled 186.d and 227.a as fix for #1434401
499         * support/regression/tests/array.c: added parenthesis, made arrays unsigned
500
501 2006-03-06 Borut Razem <borut.razem AT siol.net>
502
503         * support/regression/ports/pic16/spec.mk: link with libm18f.lib,
504           made the linker quiet
505
506 2006-03-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
507
508         * src/pic16/gen.c (genPcall): fixed bug #1443644
509         * src/pic16/device.h (struct pic16_options_t): added 'int CATregs' flag
510         which dumps before the function entry point a data byte which represents
511         the number of the local variables used by the specified function, added
512         'xinst' for initial support for Extended Instruction Support,
513         * src/pic16/gen.c (aopForSym, pic16_aopGet): beautifications,
514         (pic16_testStackOverflow): do not prefix GSTACK_TEST_NAME with
515         port->fun_prefix anymore (may change later),
516         (genFunction, genEndFunction): do not store/restore local registers for
517         _main (this should take care the --main-return command line option in
518         the future),
519         (genOr): removed some legacy pic-port instructions,
520         * src/pic16/genarith.c (genAddLit): re-enabled old code because
521         performing operations with SFR's causes data to be written more than
522         once to each SFR. Perhaps SFRs should be handled in special cases...
523         * src/pic16/glue.c: macros BIG_ENDIAN and BYTE_IN_LONG are moved to
524         pcode.h
525         * src/pic16/main.c (_process_pragma): stack bound checking did not take
526         into account for stack starting position,
527         (struct OPTIONS pic16_optionsTable): added command line argument
528         --extended or -y for Extended Instruction Support,
529         * src/pic16/ralloc.c (pic16_decodeOp): added case for FUNCTION,
530         (deassignLRs): *** perhaps the most important change, old 'for' code
531         (commented out for reference), didn't account for some registers which
532         were left marked 'not free' after a pointer operation. The change
533         reduces register usage a lot in some cases
534
535 2006-03-04 Borut Razem <borut.razem AT siol.net>
536
537         * support/regression/ports/hc08/spec.mk: remove *.asm in traget
538           _clean
539         * support/regression/tests/bug-524697.c: decreased array size for
540           mcs51 to fit into the internal RAM
541         * support/regression/Makefile.in: a little bit more verbose
542
543 2006-03-03 Borut Razem <borut.razem AT siol.net>
544
545         * support/regression/fwk/lib/testfwk.c,
546           support/regression/fwk/include/testfwk.h: introduced function
547           _prints(), nonrecursive _printn(), call _initEmu() from main()
548         * support/regression/ports/gbz80/support.asm,
549           support/regression/ports/ucz80/support.asm,
550           support/regression/ports/z80/support.asm,
551           support/regression/ports/ds390/support.c,
552           support/regression/ports/hc08/support.c,
553           support/regression/ports/host/support.c,
554           support/regression/ports/mcs51/support.c,
555           support/regression/ports/xa51/support.c: added empty _initEmu()
556           function
557         * support/regression/ports/pic16/gpsim.cmd,
558           support/regression/ports/pic16/spec.mk,
559           support/regression/ports/pic16/support.c,
560           support/regression/Makefile.in: added pic16 regression test
561
562 2006-03-01 Raphael Neider <rneider AT web.de>
563
564         * src/pic16/gen.c (genPcall,pic16_derefPtr,genGenPointerGet,
565           genConstPointerGet): use safe way of generating MOVFF to cover
566             literals as well as registers, fixes bug #1440527
567         * src/pic16/glue.c (pic16_printIvalBitFields): prevent NULL pointer
568             dereference
569           (pic16_printIvalUnion,pic16_isUnion): NEW, handle initialized unions
570             more correctly, fixes bug #1232186
571           (pic16_printIval): use pic16_printIvalUnion() for initialized unions
572         * src/pic16/main.c (_pic16_linkEdit): reorder linker arguments to make
573             gplink guess the correct processor in more cases, applied patch
574             from Till Riedel attached to and fixing bug #1436552
575
576 2006-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
577
578         * support/regression/tests/array.c: added, contains check for #1434401
579         * src/mcs51/peeph.def: disabled 186.d as temporary fix for #1434401
580
581 2006-02-16 Maarten Brock <sourceforge.brock AT dse.nl>
582
583         * device/include/mcs51/at89s8253.h: new, thanks to Krzysztof Polomka
584         * device/include/mcs51/at89S8252.h: fixed, thanks to Krzysztof Polomka
585         * device/include/mcs51/c8051f326.h,
586         * device/include/mcs51/c8051f340.h: new SiLabs mcu's
587         * device/include/mcs51/c8051f000.h,
588         * device/include/mcs51/c8051f018.h,
589         * device/include/mcs51/c8051f020.h: used () with __at, renamed IDLE,STOP to
590           PCON_IDLE,PCON_STOP and added sfr16 definitions
591
592 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
593
594         * src/mcs51/gen.c (genPlus, genMinus, genMult, genGetAbit, genGetByte,
595           genGetWord): fixed bug 1409955
596
597 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
598
599         * device/include/hc08/mc68hc908gp32.h,
600         * device/include/hc08/mc68hc908jb8.h: removed AWUL, added PTA6 & PTA7
601
602 2006-02-13 Maarten Brock <sourceforge.brock AT dse.nl>
603
604         * src/SDCCast.c (constExprValue): return NULL if not a value
605         * src/SDCCglue.c (printIvalArray): fixed bug 1225568
606         * src/hc08/gen.c(genUnpackBits, genUnpackBitsImmed): fixed bug 1019480
607         * support/regression/tests/bitfields.c: enabled signed bitfield for all
608
609 2006-02-13 Borut Razem <borut.razem AT siol.net>
610
611         * src/regression/ptrarg.c: added, fails due to bug #1430967
612         * src/regression/Makefile: ptrarg.c added, ...
613
614 2006-02-12 Maarten Brock <sourceforge.brock AT dse.nl>
615
616         * src/z80/gen.c (genUnpackBits): fixed bug 1019480
617         * support/regression/tests/bitfields.c: enabled signed bitfield for z80
618
619 2006-02-11 Borut Razem <borut.razem AT siol.net>
620
621         * src/SDCCmain.c: Added "sdcc: Calling linker..." if --verbose,
622           print "Processor: xxx" message to stdout only if --verbose
623
624 2006-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
625
626         * src/SDCCglue.c (printIvalStruct): fixed bug 1426356 union initializer
627         * support/regression/tests/bug1426356.c: added
628         * support/regression/tests/bitfields.c: removed 2 tests
629
630 2006-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
631
632         * device/include/mcs51/at89c51snd1c.h: updated comments, see patch 1428901
633         * device/include/mcs51/c8051f330.h,
634         * device/include/mcs51/c8051f350.h: used () with __at, renamed IDLE,STOP to
635           PCON_IDLE,PCON_STOP and added sfr16 definitions
636         * device/lib/_divsint.c,
637         * device/lib/_divuint.c,
638         * device/lib/_divulong.c,
639         * device/lib/_divulong.c: renamed a,b to x,y to avoid confusion, fixed
640           register bank bug for small stackauto
641
642 2006-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
643
644         * support/regression/fwk/lib/timeout.c: include <stdlib.h> for exit()
645
646 2006-02-08 Maarten Brock <sourceforge.brock AT dse.nl>
647
648         * support/regression/ports/mcs51-xstack-auto/spec.mk: forgot -I(...)/mcs51
649         * all.dsp: corrected several bin paths
650         * device/include/mcs51/c8051f120.h,
651         * device/include/mcs51/c8051f300.h,
652         * device/include/mcs51/c8051f310.h: used () with __at and renamed IDLE,STOP
653           to PCON_IDLE,PCON_STOP
654         * device/include/mcs51/c8051f320.h: see above, also added sfr16 definitions
655         * device/lib/printf_large.c (output_float): fixed bug 1388703
656         * support/regression/tests/bug1057979.c: added test for bug 1388703
657
658 2006-02-08 Raphael Neider <rneider AT web.de>
659
660         * src/pic/pcode.c (pciTRIS): fixed typo,
661           (BuildFlow,LinkFlow_pCode): added (disabled) debug output,
662           (LinkFlow): fixed handling of flows that end in a call,
663           (ReuseReg): perform safety check earlier
664         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed
665             to work with flows at the beginning of a pBlock,
666             fixes #1426557 (Symbol not previously defined),
667           (pic14_ReMapLiveRanges): NEW, destroy and rebuild register
668             usage information
669           (RemoveUnusedRegisters): update register usage info
670         * src/pic/ralloc.c (newReg): prevent duplicate registers from being
671             created, reuse existing ones instead
672         * src/pic/gen.c (genPcall): fixed #1424719
673
674 2006-02-07 Bernhard Held <bernhard AT bernhardheld.de>
675
676         * link/z80/lkmain.c,
677         * link/z80/lklex.c,
678         * link/z80/lkdata.c,
679         * link/z80/aslink.h: fixed build on current cygwin:
680         replaced getline() by lk_getline()
681
682 2006-02-01 Borut Razem <borut.razem AT siol.net>
683
684         * src/regression/add.c, src/regression/add2.c, src/regression/add3.c,
685           src/regression/add4.c, src/regression/and1.c, src/regression/and2.c,
686           src/regression/arrays.c, src/regression/b.c, src/regression/bank1.c,
687           src/regression/bool1.c, src/regression/bool2.c,
688           src/regression/bool3.c, src/regression/call1.c,
689           src/regression/compare.c, src/regression/compare10.c,
690           src/regression/compare2.c, src/regression/compare3.c,
691           src/regression/compare4.c, src/regression/compare5.c,
692           src/regression/compare6.c, src/regression/compare7.c,
693           src/regression/compare8.c, src/regression/compare9.c,
694           src/regression/configword.c, src/regression/for.c,
695           src/regression/inline.c, src/regression/mult1.c,
696           src/regression/nestfor.c, src/regression/or1.c,
697           src/regression/pointer1.c, src/regression/ptrfunc.c,
698           src/regression/rotate1.c, src/regression/rotate2.c,
699           src/regression/rotate3.c, src/regression/rotate4.c,
700           src/regression/rotate5.c, src/regression/rotate6.c,
701           src/regression/rotate7.c, src/regression/string1.c,
702           src/regression/struct1.c, src/regression/sub.c,
703           src/regression/sub2.c, src/regression/switch1.c,
704           src/regression/while.c, src/regression/xor.c,
705           src/regression/create_stc, src/regression/simulate,
706           src/regression/rt.sh, src/regression/Makefile: reenabled Scott's PIC14
707           regression tests
708         * src/regression/gpsim_assert.h: added
709
710 2006-01-28 Bernhard Held <bernhard AT bernhardheld.de>
711
712         * src/ds390/gen.c (unsaveRegisters): fixed literal function pointer
713         ((void (code *) (void)) 0) ();
714         * as/hc08/aslex.c,
715         * as/hc08/aslink.h,
716         * as/hc08/asm.h,
717         * as/hc08/asmain.c,
718         * as/hc08/lkdata.c,
719         * as/hc08/lklex.c,
720         * as/hc08/lkmain.c,
721         * as/mcs51/aslex.c,
722         * as/mcs51/aslink.h,
723         * as/mcs51/asm.h,
724         * as/mcs51/asmain.c,
725         * as/mcs51/lkdata.c,
726         * as/mcs51/lklex.c,
727         * as/mcs51/lkmain.c,
728         * as/z80/aslex.c,
729         * as/z80/asm.h,
730         * as/z80/asmain.c: fixed build on current cygwin:
731         replaced getline() by as_getline()
732
733 2006-01-27 Bernhard Held <bernhard AT bernhardheld.de>
734
735         * src/SDCC.y: fixed bug #716242, exchanged pointer and function
736         declarator in the symbol chain
737         * src/SDCCsymt.h,
738         * src/SDCCsymt.c (processFuncPtrArgs): added, removes "(void)"
739         parameter list for function pointers
740         * src/SDCCast.c (decorateType): added call of processFuncPtrArgs()
741         * support/regression/tests/bug-716242.c: added
742
743 2006-01-20 Bernhard Held <bernhard AT bernhardheld.de>
744
745         * src/SDCCicode.c (geniCodeAdd, geniCodeArray): use char for array
746         offset if possible
747         * src/SDCCast.c (getLeftResultType): 255 fits in char, not 256
748
749 2006-01-18 Bernhard Held <bernhard AT bernhardheld.de>
750
751         * src/SDCCast.c (backPatchLabels): fixed bug #1408066: made it
752         inifinitely recurseable, added static
753         * support/regression/tests/bug-1408066.c: added
754
755 2006-01-17 Bernhard Held <bernhard AT bernhardheld.de>
756
757         * src/SDCCicode.h,
758         * src/SDCCicode.c (newiTempPreheaderLabel, newiTempLoopHeaderLabel):
759         renamed, added possibility to create "postLoopLbl"-labels
760         * src/SDCCBBlock.c (iCodeBreakDown): renamed newiTempPreheaderLabel to
761         newiTempLoopHeaderLabel
762         * src/SDCCloop.c (newInduction, newRegion, backEdges, insertIntoLoop,
763         isNotInBlocks, addToExitsMarkDepth, createLoop, dominatedBy,
764         addDefInExprs, assignmentsToSym, isOperandInvariant, pointerAssigned,
765         hasNonPtrUse, loopInvariants, addressTaken, findInduction,
766         findDefInRegion, mergeRegions, ifMerged, mergeInnerLoops): made static,
767         (pinduction, pregion, hasIncomingDefs, findLoopEndSeq): disabled,
768         (basicInduction): fixed bug #136564, made static,
769         (loopInduction): changed parameter of basicInduction, made static,
770         (addPostLoopBlock): added
771         * src/SDCCloop.h: removed backEdges, pregion, pinduction,
772         loopOptimizations, addressTaken, findDefInRegion, hasIncomingDefs,
773         findLoopEndSeq
774         * support/regression/tests/bug-136564.c: added
775         * support/regression/ports/mcs51-xstack-auto/spec.mk: added
776         --std-sdcc99 to LIBSDCCFLAGS
777
778 2006-01-16 Bernhard Held <bernhard AT bernhardheld.de>
779
780         * src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false
781         while loop
782         * support/regression/tests/bug-1406131.c: added
783
784 2005-12-31 Bernhard Held <bernhard AT bernhardheld.de>
785
786         * src/SDCCast.c (decorateType): fix promotion of unary minus
787         * src/SDCCsymt.c (computeType): beautified
788         * src/SDCCval.c (cheapestVal): beautified, old non-Ansi version removed,
789         (valUnaryPM, valComplement): fix sign and promotion,
790         (valNot): ANSI: result type is int (SDCC: unsigned char)
791         * support/regression/tests/uminus.c: speedup by removing superflous
792         test case 'int'
793         * support/regression/tests/onebyte.c: added promotion and signedness
794         tests for unary minus
795         * support/regressions/tests/bug-477927.c: disable warning about
796         uninitialized variables
797         * support/regression/tests/not.c: added
798
799 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
800
801         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
802         * src/mcs51/gen.c (gen51Code): show final register usage after
803         fillGaps in asm with --i-code-in-asm
804         * src/SDCClrange.c (sequenceiCode, setLiveFrom, setLiveTo,
805         markLiveRanges, markAlive, findNextUseSym, findNextUse, unvisitBlocks,
806         incUsed, rliveClear, adjustIChain): made static,
807         (setFromRange): excluded because it's unused,
808         (findPrevUseSym, markWholeLoop): added,
809         (findPrevUse): rewritten; fixes bug 895992; now a complete search
810         through all branches of predecessors enables sdcc to emit the warning
811         W_LOCAL_NOINIT, marking of outermost loop was incomplete,
812         (rlivePoint): made static, added parameter emitWarnings which is only
813         true during the first run out of two,
814         (findRecursiveSucc, findRecursivePred): removed,
815         (computeLiveRanges): made static, added parameter emitWarnings,
816         (dumpIcRlive): added for debugging only
817         * src/SDCClrange.h: added boolean parameter to computeLiveRanges(),
818         removed prototype of setFromRange()
819         * src/SDCCopt.c (eBBlockFromiCode): added new parameter emitWarnings
820         in call of computeLiveRanges()
821         * support/regression/tests/bug-895992.c: added
822         * support/regression/tests/bug-971834.c: added
823         * support/valdiag/tests/bug-895992.c: added
824         * support/valdiag/tests/bug-971834.c: added
825
826 2005-12-18 Raphael Neider <rneider AT web.de>
827
828         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
829           (genUnpackBits): improved code for direct operands,
830           (genPackBits): improved code for literal assignment to bitfields
831             and for direct destination operands (no FSR indirection),
832             prevented redundant AND, fixes #1362800,
833           (AccLsh): added parameter to disable masking of the result
834         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
835           skip instructions with side-effects (like incfsz),
836           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
837         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
838         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
839           fixes #1375263
840
841 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
842
843         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
844         volatile variables as spill location
845
846 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
847
848         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
849         replacing literals
850         * support/regression/tests/bug-1376320.c: added
851
852 2005-12-08 Raphael Neider <rneider AT web.de>
853
854         * src/pic/device.c: renamed is_shared to pic14_is_shared
855         * src/pic/gen.c (genIfx): re-enabled handling of sbits
856         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
857           (is_valid_identifier): added for above workaround
858
859 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
860
861         * device/lib/Makefile.in: fixed to enable port-specific-objects
862         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
863           char, thanks Hubert Sack
864         * doc/sdccman.lyx: documented --xstack-loc,
865           elaborated a bit more on interrupts and pitfalls,
866           removed "setjmp/longjmp unsupported",
867           documented some unsupported C99 features
868         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
869         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
870           if, thanks Hubert Sack
871         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
872         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
873           make make_library
874         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
875           regression tests can report resource usage (rfe 700441)
876         * support/regression/collate-results.py: report resource usage
877         * support/regression/ports/ds390/spec.mk,
878         * support/regression/ports/hc08/spec.mk,
879         * support/regression/ports/mcs51/spec.mk,
880         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
881         * support/regression/ports/ds390/uCsim.cmd,
882         * support/regression/ports/hc08/uCsim.cmd,
883         * support/regression/ports/mcs51/uCsim.cmd,
884         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
885         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
886           library, use the default one
887         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
888           building the library
889
890 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
891
892         * config.dsp: added dependency on .version and configure_vc.awk
893         * device/include/setjmp.h: updated for --stack-auto and --xstack
894         * device/include/mcs51/at89c51snd1c.h: corrected line endings
895         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
896         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
897         * device/lib/libsdcc.lib: added _setjmp
898         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
899           (decorateType): fixed bug 1372851,
900           (optimizeGetHbit): fixed warning
901         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
902           array initialisation
903         * support/regression/tests/bug1057979.c: added test for bug 1358192
904         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
905
906 2005-12-03 Borut Razem <borut.razem AT siol.net>
907
908         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
909           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
910
911 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
912
913         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
914         createIval): implement symbol independant "flexible array member",
915         (createIvalCharPtr): implemented flexible array initialisation with a
916         string
917         * src/SDCCsymt.c (copyStruct): removed,
918         (getSize): fixed misleading comment,
919         (getAllocSize): removed, the additional allocation size is now in
920         sym->flexArrayLength,
921         (checkStructFlexArray): new, syntax checks for flexible array members,
922         (compStructSize): added syntax checks for "flexible array members"
923         (copyStruct): removed,
924         (copyLinkChain): removed inefficient fix for bug 770487
925         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
926         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
927         symbol->flexArrayLength
928         * src/SDCCerr.c,
929         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
930         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
931         * support/regression/tests/structflexarray.c: added
932         * support/valdiag/tests/structflexiblearray.c: added
933
934 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
935
936         * src/SDCCast.c (decorateType): fixed bug 1368489
937         * support/Util/SDCCerr.c,
938         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
939
940 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
941
942         * device/include/mcs51/at89c51snd1c.h: added file submitted by
943           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
944
945 2005-11-27 Borut Razem <borut.razem AT siol.net>
946
947         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
948           support/cpp2/mkdeps.h: added command line option
949           -obj-ext=<extension> to SDCPP to define object file externion, used
950           for generation of make dependencies (-M)
951         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
952
953 2005-11-26 Borut Razem <borut.razem AT siol.net>
954
955         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
956           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
957           added pic and pic16 libraries
958
959 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
960
961         * device/include/float.h: Corrected typo in prototype of __fsgt
962
963 2005-11-25 Borut Razem <borut.razem AT siol.net>
964
965         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
966           added creation of model-mcs51-stack-auto libraries
967
968 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
969
970         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
971         and fields-list too
972         * src/SDCCast.c (createIvalArray): removed obsolete comment
973
974 2005-11-24 Borut Razem <borut.razem AT siol.net>
975
976         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
977           added missing device/lib/mcs51/crt*.asm sources
978
979 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
980
981         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
982
983 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
984
985         * device/lib/_fs2schar.c,
986         * device/lib/_fs2sint.c,
987         * device/lib/_fs2slong.c: optimized inline asm
988
989 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
990
991         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
992           Better handling of floats between -1.0 and 0.0.
993
994 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
995
996         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
997           (the missing "if"s prohibited removal of redundant labels)
998
999 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1000
1001         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
1002           Properly convert floats between -1.0 and 0.0 to long, int, and char
1003           types (max integer value of negative floats tends to zero).
1004         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1005           Removed changes made so to work properly with floats between
1006           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
1007           and _fs2char.c
1008
1009 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1010
1011         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
1012         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
1013         (genCast) cosmetic change
1014         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
1015         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
1016         from mcs51
1017         * support/regression/tests/bitfields (testSignedBitfields): added
1018
1019 2005-11-18 Borut Razem <borut.razem AT siol.net>
1020
1021         * sdcc/device/lib/Makefile.in: remove all unnecessary files
1022         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
1023           introduced SILENT option to make building of pic16 libraries less
1024
1025 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1026
1027         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1028           Now they work properly with floats between -1.0 and 0.0
1029         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
1030
1031 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
1032
1033         * src/SDCCicode.c (printOperand): added missing else
1034
1035 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1036
1037         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
1038         reformatted for better readability
1039         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
1040         signed bitfields
1041
1042 2005-11-17 Borut Razem <borut.razem AT siol.net>
1043
1044         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
1045           introduced SILENT option to make building of pic16 libraries less
1046           verbose - used for nightly snapshot build
1047         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
1048           available on Win32 platforms.
1049         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
1050           medium, large, pic and pic16
1051
1052 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1053
1054         * device/lib/printf_large.c: Temporary patch for bug 1358192:
1055           printf("%f"...) sets fraction to zero.
1056
1057 2005-11-16 Raphael Neider <rneider AT web.de>
1058
1059         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
1060           fixes #1357221
1061         * src/pic/gen.c (genIfx): implemented for CARRY bit
1062         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
1063           to generic pointers, fixes #1357332,
1064           (pic16_movLit2f): NEW,
1065           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
1066
1067 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
1068
1069         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
1070
1071 2005-11-11 Raphael Neider <rneider AT web.de>
1072
1073         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
1074         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
1075           compute pointer's type from operand,
1076           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
1077           improved single bit reads, fixes bug #1353379
1078
1079 2005-11-09 Borut Razem <borut.razem AT siol.net>
1080
1081         * support/scripts/sdcc.nsi: added lib/pic to the package
1082
1083 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
1084
1085         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
1086
1087 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
1088
1089         * support/regression/tests/bug1348008.c: added
1090         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
1091         * support/regression/tests/bug1337835.c: updated comment
1092
1093 2005-11-06 Borut Razem <borut.razem AT siol.net>
1094
1095         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1096           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1097           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1098           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1099           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
1100           dynamic construction of cl_error_class and derivates - 2.nd try
1101
1102 2005-11-05 Borut Razem <borut.razem AT siol.net>
1103
1104         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
1105           bug, which caused Bus Errors on sparc solaris
1106
1107 2005-11-04 Borut Razem <borut.razem AT siol.net>
1108
1109         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1110           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1111           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1112           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1113           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
1114           and derivates to resolve the initialization problem on OSX
1115
1116 2005-11-02 Borut Razem <borut.razem AT siol.net>
1117
1118         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1119           corrected typo - #include <winsock2.h>
1120
1121 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
1122
1123         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
1124           (_asxxxx_mapping): added org directive for future enhancements
1125
1126 2005-11-01 Borut Razem <borut.razem AT siol.net>
1127
1128         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1129           enabled sockets on WIN32
1130         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
1131
1132 2005-10-31 Borut Razem <borut.razem AT siol.net>
1133
1134         * support/regression/generate-cases.py: escape backslashes in {testcase}:
1135           WIN32 backslash path delimiters should be escaped when used in C strings
1136         * support/regression/tests/bitfields.c: exclude failing assertions for
1137           __CYGWIN32__ and __MINGW32__ hosts
1138
1139 2005-10-30 Borut Razem <borut.razem AT siol.net>
1140
1141         * src/SDCCutil.c: corrected double comparison typo
1142
1143 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
1144
1145         * device/lib/medium/Makefile: added for new memory model medium
1146         * device/include/asm/mcs51/features.h: updated for medium/pdata
1147         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
1148           added Multiply & Accumulate sbit's and MAC0_PAGE define
1149         * device/include/mcs51/c8051f300.h: added sfr16 definitions
1150         * device/include/mcs51/c8051f310.h: added sfr16 definitions
1151         * device/lib/_mullong.c: update for medium model
1152         * device/lib/incl.mk: added medium model
1153         * doc/sdccman.lyx: documented medium model
1154         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
1155         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
1156         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
1157         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
1158           (allocParms): set SCLS and OCLS to pdata for medium model
1159         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
1160           for pdata,
1161           (powof2): return <0 if not power of 2
1162         * src/avr/gen.c (genBitWise): use updated powof2
1163         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
1164           (shiftR2Left2Result): small optimization in setup, save acc when storing,
1165           (shiftLLeftOrResult): use B if necessary
1166         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
1167         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
1168         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
1169         * support/regression/Makefile.in: added test-mcs51-medium
1170         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
1171
1172 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
1173
1174         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
1175         specifier unsigned
1176         * device/lib/time.c (mktime): fixed bug 1334315
1177
1178 2005-10-28 Raphael Neider <rneider AT web.de>
1179
1180         * device/include/pic/p16f_common.inc: added common declarations
1181         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
1182
1183 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1184
1185         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
1186           (aopPutUsesAcc): added to predict accumulator use,
1187           (assignResultValue): save acc if necessary,
1188           (genMinusDec): store result if indirectly addressed,
1189           (genDivOneByte):  save acc if necessary,
1190           (movLeft2Result): bugfix if left already in acc,
1191           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
1192             attention to accumulator use (esp. pdata),
1193           (genReceive): receive pdata correctly
1194         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
1195         * src/SDCCicode.h: added isOperandInPagedSpace prototype
1196
1197 2005-10-27 Raphael Neider <rneider AT web.de>
1198
1199         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
1200
1201 2005-10-27 Raphael Neider <rneider AT web.de>
1202
1203         * .version: changed version to 2.5.4
1204         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
1205         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
1206           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
1207             arithmetics support routines
1208         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
1209         * device/lib/Makefile.in: also create installdir for pic
1210
1211         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
1212           pic14 port as well
1213         * src/pic/device.c (dump_sfr): rewritten to delegate register
1214           placement to the linker (use `extern sym' rather than sym EQU addr),
1215           (validAddress): fixed to check last specified address
1216         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
1217           (popGetLit): truncate literal value to 8 bit,
1218           (popGet): moved assert to more appropriate place
1219           (popGetExternal): create pCode operand from and mark the according
1220             symbol as being `extern'
1221           (popGetAddr): added sanity check on immediate's offset, provide
1222             GPOINTER tag on demand
1223           (aopPut): fixed for immediates,
1224           (mov2w_op): move operand's address or contents to WREG (depending on
1225             operand type), safer variant of mov2w,
1226           (movwf,call_libraryfunc): NEW, handy abbreviations,
1227           (get_argument_pcop,get_return_val_pcop,pass_argument,
1228           get_returnvalue): interface for accessing function parameters and
1229             return values,
1230           (assignResultValuei,genRet): use new parameter/return value interface
1231           (pic14_getDataSize): back to old version handling generic pointers,
1232           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
1233             provided implementation and/or fixed old one,
1234           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
1235             calls, removed legacy 8051 reference code
1236           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
1237           (loadSignToC): NEW, move the operands sign bit to CARRY,
1238           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
1239             genRightShiftSigned, accepts negative shift counts,
1240           (setup_fsr): load FSR and adjust IRP (indirect memory access),
1241           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
1242             generic pointers, __data pointers and __code pointers,
1243           (genUnpackBits,genPackBits): rewritten to work with generic pointers
1244             and signed bitfields, limit bitfields to 8 bit,
1245           (genDataPointerGet): fixed number of bytes read,
1246           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
1247           (genPointerGet,genPointerSet): fixed handling of __code pointers,
1248             pointers to constant data are no longer assumed to point to __code
1249             space, removed invalid pointer types,
1250           (bitpatternFromVal): retrieve the PICs representation of an integer
1251             or float literal,
1252           (genDataPointerSet): fixed assigning to po_immediate operands,
1253           (genGenPointerSet): implemented as library call,
1254           (genIfx): fixed incorrect condition,
1255           (genAddrOf): limit generic pointers' addresses to 2 bytes,
1256             provide GPOINTER tag according to destination's storage class,
1257           (genCast): added code to handle casting to generic pointers, added
1258             sign-/zero extension of the result
1259           (aop_isLitLike,op_isLitLike): fixed handling of immediates
1260         * src/pic/gen.h: added macros to access IRP bit in STATUS register
1261         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
1262           extend the result
1263         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
1264           address/register resides in the shared banks
1265           (emitSymbolToFile): improved to handle global and `pinned' symbols,
1266             put all variables into separate sections (have the linker arrange
1267             them)
1268           (picglue): put init code and interrupt handlers in separate sections
1269         * src/pic/main.c: added port specific options table, modified to PORT
1270           structure to make GPOINTERs 3 byte, added pic14_options
1271           (_pic14_do_link): private linking routine (update paths to libraries,
1272             add libsdcc.lib by default)
1273         * src/pic/main.h: declare pic14_options
1274         * src/pic/pcode.c: fixed instructions i/o relations,
1275           (RegCond): reverted to correct version,
1276           (newpCodeOpLit): truncate literals to 8 bit,
1277           (genericPrint): added debug output,
1278           (getRegFromInstruction): fixed for various operand types, simplified
1279           (BuildFlow): fixed broken handling of isntructions with labels
1280           (LinkFlow): start at last instruction in flow (skip trailing comments),
1281             pass the flow on to the next instruction after CALL
1282           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
1283           (insertPCodeInstruction): fixed inserting after a skip instruction,
1284           (DoBankSelect): fixed for labeled instructions
1285           (OptimizepBlock): honor --nopeep switch
1286           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
1287         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
1288         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
1289           (pCodeOptime2pCodes): allow disabling this optimization via
1290             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
1291             but is still buggy), started implementation of a dataflow based
1292             pCode optimization (CSE + dead code elimination)
1293           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
1294         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
1295           names are independant of the stack location and therefore portable across
1296           devices
1297
1298 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1299
1300         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
1301           (selectSpil): fixed bug 1337835 by not spilling bit variables
1302         * support/regression/tests/bug1337835.c: added test for this bug
1303         * src/mcs51/peeph.def: restart after rule 3.c,
1304           addded rules 263.x to optimize loading constants
1305
1306 2005-10-26 Raphael Neider <rneider AT web.de>
1307
1308         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
1309         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
1310           (genAssign): emit warning when casting literals to generic pointer
1311             type, also applies when taking the address of a fixed variable,
1312           (genCast): improved casting to generic pointers
1313         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
1314           extern variables, added verbose error message
1315         * device/include/pic16/{string.h,errno.h}: added #pragma library c
1316
1317 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
1318
1319         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
1320         carry must be complemented too
1321         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
1322         could be emitted by genMinus
1323         * src/SDCCval.c (constVal): fixed bug 1305065
1324
1325 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
1326
1327         * src/SDCCast.c (addCast): added promotion for bit variables
1328         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
1329         promotion casts + optimisation
1330         (optimizeGetWord): fix warning 'i' might be used uninitialized
1331         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
1332         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
1333
1334 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
1335
1336         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
1337         all chars are promoted to int; promotion should be handled in SDCCast.c
1338
1339 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1340
1341         * device/lib/_strcmp.c: Fixed bug 1326457
1342
1343 2005-10-11 Raphael Neider <rneider AT web.de>
1344
1345         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
1346         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
1347
1348 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
1349
1350         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
1351         * support/regression/tests/sfr16.c: added test for the sfr32 bug
1352
1353 2005-10-04 Raphael Neider <rneider AT web.de>
1354
1355         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
1356           device/lib/pic16/pics.all: added pic18f1320
1357         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
1358
1359 2005-09-30 Raphael Neider <rneider AT web.de>
1360
1361         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
1362         * src/pic16/devices.inc: NEW, provides device descriptions
1363         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
1364
1365 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
1366
1367         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
1368           GETHBIT
1369
1370 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
1371
1372         * doc/sdccman.lyx: updated Highest Order Bit documentation,
1373           documented Any Order Bit, Higher Order Byte and Higher Order Word
1374         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
1375         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
1376           (optimizeGetAbit): new, to get any bit, not only the high bit,
1377           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
1378           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
1379           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
1380           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
1381             RIGHT_OP: also try GETBYTE, GETWORD optimization,
1382             GETABIT, GETBYTE, GETWORD: decorate them,
1383           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
1384           (ast_print): added GETABIT, GETBYTE, GETWORD
1385         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
1386         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
1387           (geniCodeBinary): new generic binary icode,
1388           (ast2iCode): added GETABIT, GETBYTE, GETWORD
1389         * src/port.h: updated comment for PORT.hasExtBitOp
1390         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
1391           (genGetByte): new, to get a single byte,
1392           (genGetWord): new, to get a word from a long,
1393           (gen51Code): added GETABIT, GETBYTE, GETWORD
1394         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
1395
1396 2005-09-23 Raphael Neider <rneider AT web.de>
1397
1398         * configure.in, configure: have device/lib/pic configured
1399         * device/lib/Makefile.in: added model-pic14
1400         * device/lib/clean.mk: added pic/ to clean rule
1401         * device/lib/pic: added rudimentary pic14 library providing support
1402           functions for multiplication/division/generic pointer access
1403         * src/SDCCopt.c (convilong): mark support functions as extern
1404           for pic14 port as well
1405         * src/pic/gen.c (genMult): added assertions,
1406           (genpic14Code): emit warning on unhandled iCodes
1407         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
1408         * src/pic/pcode.c (pCodeOpCopy),
1409         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
1410           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
1411           SFR_REGISTER}), made safe for future extensions
1412         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
1413           instructions even if preceeded by SKIP instructions (also remove
1414           them); removed unused code
1415         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
1416           prevents leaving parts of the structure uninitialized after copying
1417
1418 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
1419
1420         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
1421           ago by me
1422         * support/regression/tests/addsub.c: added test for the bug
1423
1424 2005-09-21 Raphael Neider <rneider AT web.de>
1425
1426         * device/include/pic16/pic18f1220.h,
1427           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
1428         * device/lib/pic16/Makefile.rules: added missing opening paren
1429         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
1430           are provided in genutils.c,
1431           (genUminusFloat,genUminus,genCmpEq): added asserts on different
1432           operand/result sizes,
1433           (genCmp): assert on NULL pointers first, then check deref'ed values
1434         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
1435           result size
1436
1437 2005-09-18 Raphael Neider <rneider AT web.de>
1438
1439         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
1440           as these are now unused,
1441           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
1442         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
1443           local, avoids uninitialized pointer dereference on r->name
1444         * src/pic16/ralloc.c (newReg): fixed indentation
1445
1446 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
1447
1448         * src/SDCCval.c (constVal): fixed bug 730366
1449         * support/Util/SDCCerr.c,
1450         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
1451
1452 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
1453
1454         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
1455
1456 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
1457
1458         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
1459
1460 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
1461
1462         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
1463           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1464         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
1465           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1466         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
1467         * packihx/packihx.c (hexDigit): made c unsigned char
1468         * as/mcs51/lklibr.c (fndsym),
1469         * link/z80/lkgb.c (gb),
1470         * link/z80/lklibr.c (fndsym),
1471         * link/z80/lkrloc.c (relr),
1472         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
1473         * src/SDCC.lex (checkCurrFile, process_pragma),
1474         * src/SDCCglue.c (spacesToUnderscores),
1475         * src/SDCCmain.c (setParseWithComma, processFile),
1476         * src/asm.c (tvsprintf, printCLine),
1477         * src/avr/gen.c (emitcode, aopPut),
1478         * src/ds390/gen.c (emitcode),
1479         * src/hc08/gen.c (emitcode, emitinline),
1480         * src/mcs51/gen.c (emitcode, genInline),
1481         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1482           tokenizeLineNode),
1483         * src/pic/ralloc.c (debugLog),
1484         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1485           tokenizeLineNode),
1486         * src/pic16/ralloc.c (debugLog),
1487         * src/z80/main.c (_process_pragma):
1488            made all ctype.h function calls safe
1489         * src/SDCCopt.c: include math.h for fabs
1490         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
1491           and used them throughout the code to make ctype.h function calls safe
1492         * src/ds390/main.c (asmLineNodeFromLineNode),
1493         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
1494         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
1495            unsigned char*
1496         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
1497           (newpCodeAsmDir): made ctype.h function calls safe
1498         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
1499           pic16_emitcode):  made lbp unsigned char*
1500         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
1501           (pic16_newpCodeAsmDir): made ctype.h function calls safe
1502         * src/xa51/gen.c (emitcode),
1503         * src/z80/gen.c (_emit2): made lbp unsigned char*
1504         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
1505            char*
1506
1507 2005-09-05 Raphael Neider <rneider AT web.de>
1508
1509         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
1510           access bank splitpoint
1511
1512 2005-09-05 Raphael Neider <rneider AT web.de>
1513
1514         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
1515
1516 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
1517
1518         * .version: changed to version 2.5.3
1519         * doc/sdccman.lyx: changed version to 2.5.3,
1520           documented --codeseg and --constseg and pragma codeseg and constseg,
1521           documented bit parameters (reentrant) and bit returning
1522         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
1523            currFunc->recvSize, but is this ok for all ports?
1524           (ast2iCode): result of ~ on unsigned char must be cast to int for
1525            bool to work
1526         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
1527           function pointers in bit space
1528         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
1529           (processFuncArgs): call port.reg_parm() with reentrancy info
1530         * src/port.h,
1531         * src/avr/main.c,
1532         * src/ds390/main.c,
1533         * src/hc08/main.c,
1534         * src/pic/main.c,
1535         * src/pic16/main.c,
1536         * src/xa51/main.c,
1537         * src/z80/main.c: port.reg_parm prototype extended with
1538           "bool reentrant" parameter
1539         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
1540           options.stackAuto for allocating bit register parameters
1541         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
1542           (genSend): set BitBankUsed if it is,
1543           (selectRegBank): factored out of genCall for use in genPcall,
1544           (genCall): removed redundant dtype assignmen, use selectRegBank,
1545           (genPcall): handle returning in Carry properly, save in F0 if needed,
1546           (genReceive): handle bit register parameters
1547         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
1548           (mcs51_assignRegisters): enable bit registers for all reentrant
1549            functions and don't set BitBankUsed unconditionally
1550         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
1551         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
1552         * support/regression/tests/funptrs.c: added tests for BOOL and for return
1553
1554 2005-08-27 Borut Razem <borut.razem AT siol.net>
1555
1556         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
1557         ppc-osx (Darwin) does not support -u option. It seems that it is
1558         supported only on Linux - GNU cp
1559
1560 2005-08-25 Borut Razem <borut.razem AT siol.net>
1561
1562         * sim/ucsim/gui.src/serio.src/Makefile.in,
1563           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
1564           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1565           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
1566           install and strip, since the strip at /usr/ccs/bin should be used
1567           on solaris
1568
1569 2005-08-24 Borut Razem <borut.razem AT siol.net>
1570
1571         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
1572
1573 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
1574
1575         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
1576         ffffffffu
1577
1578 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
1579
1580         * as/mcs51/aslink.h: completed lkrloc.c prototypes
1581         * as/mcs51/lkmain.c (link_main): fixed warning
1582         * device/include/stdbool.h: ds390 has no advanced bit support yet
1583         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
1584         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
1585         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
1586           and updated their macros
1587         * src/SDCCval.c (constVal): updated comment for renamed b_long
1588
1589 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
1590
1591         * as/mcs51/asdata.c: changed ctype['['] to BINOP
1592         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
1593           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
1594           (oprio): set priority for '['
1595         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
1596            and adb_24_bit
1597         * as/mcs51/asm.h: added defines R_BIT and S_BIT
1598         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
1599         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
1600         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
1601           added overlayable BIT_BANK area
1602         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
1603           (summary2): explain 'T' in legenda
1604         * as/mcs51/lkrloc.c: replaced old K&R style,
1605           (relr): added R_BIT processing,
1606           (errmsg): added "Bit-addressable relocation error",
1607           (adb_bit): added for converting from byte- to bit-addressable space,
1608           (adb_24_bit): added for converting from byte- to bit-addressable space
1609         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
1610            used in reentrant functions now even as return value
1611         * device/lib/_gptrput.c (_gptrput): removed obsolete code
1612         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
1613           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
1614         * src/SDCCglobl.h: added indicator BitBankUsed
1615         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
1616            the bit registers b0-b7
1617         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
1618           (geniCodeCast): fixed bug 1263853,
1619           (geniCodeLogicAndOr): put result in bool or char,
1620           (geniCodeReceive): added parameter func for accessing the return type,
1621           (geniCodeFunctionBody): pass func to geniCodeReceive
1622         * src/SDCCmain.c: added indicator BitBankUsed
1623         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
1624         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
1625           (checkSClass): don't put automatic bool/bit on stack,
1626           (checkFunction): removed check on function cannot return bit
1627         * src/SDCCsymt.h: added newBoolLink prototype
1628         * src/mcs51/gen.c (rb1regs): added bit registers,
1629           (movc): created for assigning to carry,
1630           (pushReg, popReg): created for pushing registers,
1631           (sameRegs): check both AOP_REG and AOP_CRY types,
1632           (aopOp): handle bit registers,
1633           (aopPut): optimization no self-assign,
1634           (saveRegisters): push reg->base (bits) only once for bit registers,
1635            and use pushReg,
1636           (unsaveRegisters): pop reg->base only once and use popReg,
1637           (assignResultValue): added parameter func and return in carry for bits,
1638           (genIpush): optimization no reload in A if not changed,
1639           (genSend): bit parameters in reentrant functions are passed in bit
1640            registers by first assigning to bits in B, then save registers and
1641            copy B to bits,
1642           (genCall): handle returning in Carry properly, save it in F0 if needed,
1643           (genPcall): updated assignResultValue call, this is not safe yet for bit
1644            returning function !!!
1645           (genFunction): don't generate equ's for bit registers and use pushReg,
1646           (genEndFunction): take care of bit returning functions and use popReg,
1647           (genRet): return bit in Carry,
1648           (genIfx): optimize bit registers and other directly addressable bits,
1649           (genReceive): updated assignResultValue call
1650         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
1651           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
1652            registers when using stack-auto
1653         * src/mcs51/ralloc.c (_G): added allBitregs,
1654           (regs8051): added the bit registers,
1655           (createStackSpil): use macro IS_BIT,
1656           (getRegBit): added to allocate a bit register, else spill,
1657           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
1658           (updateRegUsage): factored out to ease stepping while debugging,
1659           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
1660            also allocate bit registers,
1661           (fillGaps): handle bit registers,
1662           (findAllBitregs): added to create bit vector with all bit registers,
1663           (mcs51_allBitregs): returns this bit vector,
1664           (mcs51_assignRegisters): when using stack-auto use bit registers for
1665            passing parameters and creating local variables
1666         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
1667
1668 2005-08-22 Borut Razem <borut.razem AT siol.net>
1669
1670         * device/lib/Makefile.in: replaced find option -or with -o
1671           to make it run on solaris
1672
1673 2005-08-22 Raphael Neider <rneider AT web.de>
1674
1675         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
1676           fixes #1265442 (crash on Solaris)
1677
1678 2005-08-20 Borut Razem <borut.razem AT siol.net>
1679
1680         * configure, configure.in: added tests for libsocket and libnsl libraries,
1681           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
1682           from support/regression/Makefile.in
1683         * support/regression/Makefile.in: added
1684         * device/lib/pic16/Makefile.common.in: force make to use bash shell
1685         * sim/ucsim/libtool: regenerated on sparc-solaris
1686         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1687           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
1688           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
1689           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
1690           sparc-solaris, which doesn't use GNU ld linker
1691         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
1692         * as/Makefile: find on sparc-solaris does not support -maxdepth option
1693
1694 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
1695
1696         * src/mcs51/peeph.def: updated comments
1697
1698 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1699
1700         * device/lib/_gptrget.c,
1701         * device/lib/_gptrput.c: slightly shorter
1702         * doc/sdccman.lyx: incremented version
1703         * src/mcs51/peeph.def: moved peephole comments to the line of first
1704           change to better keep line correlation, reanimated 186.e
1705         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
1706
1707 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
1708
1709         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
1710           David Saxton with quotes around file name.
1711
1712 2005-08-15 Borut Razem <borut.razem AT siol.net>
1713
1714         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
1715           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
1716           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
1717           make tests run on x86_64 platform
1718
1719 2005-08-13 Raphael Neider <rneider AT web.de>
1720
1721         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
1722           as it might be executed DURING a build (parallel make is wonderful)
1723
1724 2005-08-13 Raphael Neider <rneider AT web.de>
1725
1726         * device/lib/Makefile.in (port-specific-objects-pic16):
1727           revert to cp $(PORT)/bin/*.* $(PORTDIR)
1728         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
1729           dependency
1730         * device/lib/pic16/Makefile.rules: build subdirs before creating
1731           the library, removed builddir rule, create $(builddir) early in
1732           recurse rule, use empty recurse rule for leaf directories
1733         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
1734           mkdir errors (race condition), removed duplicate suffix "hex"
1735           from clean rules
1736         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
1737         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
1738           prevents mkdir -p from aborting on Alpha
1739
1740 2005-08-12 Raphael Neider <rneider AT web.de>
1741
1742         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
1743           db-statements in order to allow for arrays of pointers in code
1744           sections to be placed without interspersed 0-padding, fixes
1745           bug #1256215
1746         * (emitStatistics): fixed division by zero for pic18f1220
1747         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
1748           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
1749         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
1750         * (pic16_pCodeConstString): keep track of already emitted string
1751           literals to prevent "duplicate definitions of symbol _str_NR"
1752         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
1753           debug message
1754         * device/lib/Makefile.in: ignore failing PIC16 library builds
1755         * device/lib/pic16/Makefile: do not build if gputils are missing
1756         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
1757
1758 2005-08-10 Raphael Neider <rneider AT web.de>
1759
1760         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
1761           my last commit)
1762
1763 2005-08-10 Raphael Neider <rneider AT web.de>
1764
1765         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
1766           Rokas' patch to add the new fixed point type "__fixed16x16"
1767         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
1768           functions for __fixed16x16 arithmetics
1769         * device/lib/pic16: reimplemented the build system to support
1770           a separate build directory, better handling of libio (create
1771           the library in a separate subdir for each architecture) and
1772           easier configuration (centralized in Makefile.common)
1773
1774 2005-08-07 Raphael Neider <rneider AT web.de>
1775
1776         * src/pic16/gen.c (genrshTwo): fixed sign extension
1777         * src/pic16/device.c: added pic18f2320, 4220 and 4320
1778         * device/include/pic16/pic18f2220.h: changed some bit definitions,
1779           added T0CONbits
1780         * device/include/pic16/pic18f4220.h: NEW, header for
1781           pic18f4220 and pic18f4320
1782         * device/include/pic16/pic18fregs.h: added new devices,
1783           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
1784         * device/include/pic16/signal.h: resolved name clashes
1785           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
1786           to also allow testing for interrupt enable bits, added
1787           comments on how to use the macros
1788         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
1789         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
1790           register definitions for the devices
1791         * device/lib/pic16/pics.all: added new devices
1792         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
1793           allocated memory
1794         * device/lib/pic16/libc/stdlib/memfree: do not count
1795           the block header as free memory
1796         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
1797           simplified and added missing end-of-blocklist-marker
1798           (reported by Peter Onion, fixes #1252814)
1799         * (_mergeHeapBlock): fixed loop condition
1800         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
1801           len==0, restructured code
1802         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
1803           up a bit, reduced bitfield accesses, prevent endless loops
1804           in case of heap corruption
1805         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
1806           "unreferenced arguments/must return a value" warnings
1807         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
1808           replaced BAUDREG with SPBRG
1809         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
1810           device/lib/pic16/debug/gstack/gstack.c: replaced
1811           _naked, _asm, _endasm with __naked, __asm, __endasm
1812
1813 2005-08-05 Raphael Neider <rneider AT web.de>
1814
1815         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
1816           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
1817
1818 2005-08-05 Borut Razem <borut.razem AT siol.net>
1819
1820         * device/lib/Makefile.in: added missing ';'
1821         * configure: removed ^M characters
1822
1823 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1824
1825         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
1826           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
1827           License
1828
1829 2005-08-04 Borut Razem <borut.razem AT siol.net>
1830
1831         * configure.in: pic16 libraries build 2nd try - enable running
1832           configure in device/lib/pic16
1833         * configure: regenerated from configure.in
1834         * device/lib/Makefile.in: create $(PORT)/bin directory
1835
1836 2005-08-03 Raphael Neider <rneider AT web.de>
1837
1838         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
1839           to get/set values via pointers
1840         * (genUnpackBits,genPackBits): changed detection of
1841           ptr->bitfield vs. sym.bitfield, fixed access via generic
1842           pointers, removed dead (wrong) code for multibyte bitfields
1843         * (genNearPointerGet, genGenPointerGet): removed useless code,
1844           fixed bitfield detection, fixes #1250594
1845         * (genNearPointerSet): removed useless code
1846         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
1847           and introduced macro pic16_emitpcode that conditionally emits
1848           the origin of the following pCode (useful for debugging SDCC)
1849         * src/pic16/pcode.c: changed (and disabled) some debug outputs
1850         * (createDefmap): fixed handling of LFSR for --optimize-df
1851
1852 2005-08-02 Borut Razem <borut.razem AT siol.net>
1853
1854         * device/lib/Makefile.in: pic16 libraries build enabled since
1855           gputils-0.13.2 are now localy installed at sourceforge's compile farm
1856
1857 2005-08-02 Raphael Neider <rneider AT web.de>
1858
1859         * src/pic16/gen.c (genPackBits): removed deprecated warning
1860         * (genGenPointerSet): fixed bitfield detection
1861
1862 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1863
1864         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
1865
1866 2005-07-31 Raphael Neider <rneider AT web.de>
1867
1868         * device/lib/pic16/libdev/pic18f458.c,
1869           device/include/pic16/pic18f458.h: added missing T0CONbits
1870
1871 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
1872
1873         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
1874
1875 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
1876
1877         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
1878
1879 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1880
1881         * device/include/mcs51/at89c51ed2.h: added.
1882
1883 2005-07-23 Raphael Neider <rneider AT web.de>
1884
1885         * src/pic/gen.h: added emitpcode macro for debugging
1886         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
1887           and replace by macro adding debug information on demand
1888         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
1889         * (gencjne): tried to fix; replaced with correct (slower) code
1890         * (gen{Unp,P}ackBits): fixed single bit access
1891         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
1892         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
1893           previous instruction
1894         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
1895           register has to be handled with care (forbidding movement
1896           of assignments/uses, removing assignments completely, ...)
1897         * (pCodeOptime2pCodes): make use of regIsSpecial
1898         * added lots of debugging output (commented out)
1899         * src/pic/rallloc.c (deassignLRs): prevent operand registers
1900           from being reused as result UNLESS it is known to work
1901
1902 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
1903
1904         * support/Util/dbuf.h: include <stddef.h> for size_t
1905         * .version: changed to version 2.5.2
1906
1907 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1908
1909         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
1910
1911 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1912
1913         * src/hc08/gen.c (genMinus): fixed bug #1241835,
1914           (genModOneByte): removed needless psha/pula
1915
1916 2005-07-22 Raphael Neider <rneider AT web.de>
1917
1918         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
1919           have PIC14 handled like PIC16, fixes broken pic14 linker calls
1920         * src/pic/gen.c (resolveIfx): do not "invent" labels
1921         * (genSkipc): changed to positive logic
1922         * (genSkipCond): removed as no longer needed
1923         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
1924           backport from PIC16
1925         * (genLeftShift): check operands are in different registers
1926         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
1927           INCF does not update CARRY...
1928         * src/pic/main.c: fixed _linkCmd
1929         * src/pic/pcode.c (unlinkpCode): added inactive code
1930         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
1931           alive (do not assign result and operand overlapping registers)
1932
1933 2005-07-22 Raphael Neider <rneider AT web.de>
1934
1935         * src/pic/device.c (dump_sfr): replaced register declaration with
1936           call to emitSymbolToFile() to avoid duplicate symbols
1937         * (assignRelocatableRegisters): do not declare external symbols
1938         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
1939           right (take size of type, not etype)
1940         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
1941         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
1942         * (packRegsForAccUse): disabled assignment of WREG as
1943           the result reg to prevent occurence of just fixed #1235003,
1944           fixes #1242954
1945         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
1946           symbols (avoids duplicate symbols in .asm file)
1947         * (pic14emitRegularMap): use emitSymbolToFile()
1948         * src/pic/gen.c (aopOp): fixed spillLocation handling
1949         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
1950         * (genDataPointerSet): removed unneccessary variables/output
1951
1952 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
1953
1954         * as/mcs51/lkarea.c: enlarged codemap for banked memory
1955         * device/lib/mcs51/crtbank.asm: added # to 0x0F
1956
1957 2005-07-21 Raphael Neider <rneider AT web.de>
1958
1959         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
1960           architecture cannot handle them efficiently, fixes bug #1235003
1961         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
1962           check for empty sets before using them (fixes bug #1232190)
1963
1964 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
1965
1966         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
1967           (lnksect2): generate warnings for memory overlap
1968         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
1969           constseg to set the name of these segments so you can instruct the linker
1970           to place them in banks
1971         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
1972         * src/SDCCglobl.h: added MODEL_HUGE to enum,
1973           added code_seg and const_seg to options
1974         * src/SDCCglue.c (emitMaps): use options.const_seg,
1975           (createInterruptVect): put interrupt vectors in segment HOME,
1976           (glue): put HOME before static segment and put the main glue in HOME,
1977           (glue): use options.code_seg
1978         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
1979         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
1980           these segments so you can instruct the linker to place them in banks
1981           (linkEdit): use code_loc for HOME segment which should be the first
1982           segment in code memory now
1983         * src/SDCCmem.c: fixed more stuff like bug 1238386
1984         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
1985           (changePointer): don't change function pointers to code pointers for
1986           banked functions,
1987           (compareType): added exceptional check for banked function pointers
1988         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
1989         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
1990           after static in code memory
1991         * src/mcs51/gen.c: added aopLiteralLong prototype,
1992           (aopForSym): use getSize for functions,
1993           (genCall): generate banked calls over one trampoline __sdcc_banked_call
1994           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
1995           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
1996           the segment,
1997           (genPcall): use call for literal function pointers and generate banked
1998           calls over the one trampoline so there's only one place for the user to
1999           modify according to his/hers hardware,
2000           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
2001           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
2002         * src/mcs51/main.c: added keyword banked,
2003           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
2004         * support/Util/SDCCerr.c,
2005         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
2006           needed for passing the bank and address to the trampoline
2007         * device/lib/mcs51/crtbank.asm: added for bankswitching
2008         * device/lib/mcs51/Makefile: added crtbank
2009
2010 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2011
2012         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
2013           for fields at offset 0 of a struct or union as reported
2014           on 2005-07-07 in the developer mailing list.
2015
2016 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
2017
2018         * src/SDCCmem.c: fixed bug 1238386
2019
2020 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2021
2022         * src/mcs51/peeph.def: added labelrefcounting for peepholes
2023           (patch #1144962), added peephole 300, enabled 259.x
2024         * doc/sdccman.lyx: removed screenshot and provided link instead
2025
2026 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2027
2028         * doc/sdccman.lyx: added section about debugging with ddd
2029         * doc/figures/ddd_example.eps: screenshot of debugging session
2030
2031 2005-07-04 Raphael Neider <rneider AT web.de>
2032
2033         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
2034           like CODE pointers, fixes #1115683
2035         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
2036           call, fixes bugs #1232211, #1228110,
2037           fixed wrong casts to pCodeFlow from pCodeInstructions
2038
2039 2005-07-04 Raphael Neider <rneider AT web.de>
2040
2041         * src/pic/gen.c (popGet): changed assert to allow for
2042           bit operands
2043         * (popGetAddr): changed signature to provide
2044           an additional index, patched all call sites
2045         * (genCmpEq): handle literal-like operands correctly
2046         * (genAddrOf): added sanity checks on __code/__data pointers
2047         * (genAssign): added handling of symbols from __code section
2048         * (gencjne): do not generate code for comparisons whose result
2049           is neither stored nor used, fixes bug #1171114
2050         * (AccLsh, AccRsh): operate on operand instead of WREG
2051         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
2052           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
2053           by known count
2054         * rewrote complete shift-by-literal logic, commented unused
2055           functions out
2056         * (genConstPointerGet): get multiple bytes (if result size > 1),
2057           fixed handling of non-immediate addresses
2058         * (genPointerGet): handle CODE pointers like CONST pointers
2059         * (genpic14Code): insert C-SRC lines as Cource-pCodes
2060         * ({aop,op}_isLitLike): NEW, single place to decide whether an
2061           operand is to be treated as a literal or not
2062         * (mov2w,genPcall,genCmpEq),
2063           src/pic/genarith.c: use aop_isLitLike() to decide between
2064           literal/register contents
2065         * (addSign): added missing offset
2066         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
2067           only emit comment in debug-mode,
2068           use {aop,op}_isLitLike throughout the file
2069         * src/pic/glue.c: fix initializers for pointers (work in progress)
2070         * src/pic/pcode.c (get_op): honor index on _const symbols
2071         * ({reset,dump}pCodeStatistics): NEW, estimate code size
2072         * (dumppBlock): added pCode size estimation
2073         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
2074           check for IS_SYMOP before OP_SYMBOL'ing
2075         * fixed indentation, compacted switch-statements
2076         * (allocReg): find free register and allocate it instead of
2077           allocating new registers all the time
2078         * (deassignLRs): prevent POINTER_GET's from being assigned the same
2079           registers as its operands (necessary only for multibyte GETs)
2080
2081 2005-07-01 Raphael Neider <rneider AT web.de>
2082
2083         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
2084           debugging .asm-output macros FENTRY + FEXIT
2085         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
2086           way... I wonder...
2087         * (emitpComment): NEW, printf to pCode
2088         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
2089           offset handling
2090         * (popGetAddr): NEW, variant of popGet to access an immediates
2091           high(er) bytes instead of the n'th byte of memory they reference,
2092           replaced popGet with popGetAddr where neccessary
2093         * (genDataPointerGet): reactivated and fixed implementation
2094         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
2095           accesses
2096         * (genDataPointerSet): fixed multibyte assignments
2097         * (genpic14Code): fixed --i-code-in-asm handling
2098         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
2099         * (genPlus): fixed index-out-of-bounds error
2100         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
2101         * src/pic/ralloc.c: added debugging output macro FENTRY2
2102         * (spillThis): fixed indentation, enbraced for-body for clarity
2103         * (rematStr): commented out as now unused
2104         * (regTypeNum): commented out special spill case (overwrites
2105           arbitrary values)
2106         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
2107
2108 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
2109
2110         * doc/sdccman.lyx: documented sfr16/sfr32,
2111           added example for using storage class with function pointers
2112         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
2113
2114 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
2115
2116         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
2117         * device/lib/_itoa.c,
2118         * device/lib/_ltoa.c: optimized codesize
2119         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
2120           but don't know how to suppress the double warning.
2121         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
2122         * support/Util/SDCCerr.c,
2123         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
2124
2125 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
2126
2127         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
2128           fixed old K&R prototypes
2129         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
2130         * device/lib/_gptrget.c,
2131         * device/lib/_gptrgetc.c,
2132         * device/lib/_gptrput.c: changed versions for new memory indicator values,
2133           also new versions for small generic pointers and banked generic pointers
2134         * src/port.h: added const_name
2135         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
2136         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
2137         * src/SDCCcse.c (findPrevIc): check all associative operators
2138         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
2139         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
2140         * src/SDCCmem.c: updated comments,
2141           set far-space to 0 for pdata, results in optimized code
2142         * src/SDCCmem.h: added macro CONST_NAME
2143         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
2144           moving the info into the highest bits, see also gptrget/gptrput
2145         * src/src.dsp: added sdcc.ico to project files
2146         * src/avr/gen.c (genCast): fixed bug 0x%d
2147         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
2148         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
2149           relation between ptr_type and DCL_TYPE,
2150           (genCast): fixed bug 0x%d
2151         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
2152           (CODE)" for const_name
2153         * src/hc08/gen.c (genCast): fixed bug 0x%d
2154         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
2155           (hc08_port): added "CONST (CODE)" for const_name
2156         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
2157           (aopForRemat, adjustArithmeticResult): disconnected direct relation
2158           between ptr_type and DCL_TYPE,
2159           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
2160           operand* and took AOP() inside function so sfr-ness can be checked,
2161           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
2162           new prototype,
2163           (genFunction, genEndFunction): optimized stack setup,
2164           (genMinus): optimized for literals with ending zeroes (in bytes),
2165           (genCast): fixed bug 0x%d
2166         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
2167           (mcs51_port): added "CONST (CODE)" for const_name
2168         * src/mcs51/peeph.def: made rule 226 more generic
2169         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
2170         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
2171         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
2172         * src/z80/main.c (z80_port): added NULL for const_name,
2173           (gbz80_port): added NULL for const_name
2174         * support/regression/tests/bug663539.c,
2175         * support/regression/tests/sfr16.c: new tests
2176
2177 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2178
2179         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
2180
2181 2005-06-24 Raphael Neider <rneider AT web.de>
2182
2183         * device/lib/pic16/libdev/pic18f[68][567]20.c:
2184           corrected typos...
2185         * device/include/pic16/signal.h: added USBIF
2186           and SIG_USB
2187
2188 2005-06-24 Raphael Neider <rneider AT web.de>
2189
2190         * device/lib/pic16/libdev/pic18f2455.c,
2191           device/include/pic16/pic18f2455.h: NEW
2192         * device/include/pic16/pic18fregs.h,
2193           device/lib/pic16/pics.all,
2194           src/pic16/device.c: added 18f2455
2195         * device/lib/pic16/libdev/pic18f[68][567]20.c,
2196           device/include/pic16/{pic18f[68][567].h,usart.h}:
2197           replaced MULTIPLE_USARTS define with more relaible
2198           compatibility sfrs (for USART access)
2199
2200 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
2201
2202         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
2203           and the output asm file line is printed on two lines.
2204
2205 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2206
2207         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
2208           BGT, BLE, BHI, and BLS instructions
2209         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
2210           genCmpEq): removed
2211         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
2212           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
2213           fixes bug #1216342
2214         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
2215
2216 2005-06-15 Raphael Neider <rneider AT web.de>
2217
2218         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
2219         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
2220         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
2221           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
2222           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
2223
2224 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2225
2226         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
2227           Marcel Telka in bug #1215704
2228
2229 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
2230
2231         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
2232           located in shared memory bank.
2233
2234 2005-05-31 Raphael Neider <rneider AT web.de>
2235
2236         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
2237           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
2238           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
2239
2240 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
2241
2242         * device/lib/_strncpy.c: fixed the fix
2243
2244 2005-05-26 Raphael Neider <rneider AT web.de>
2245
2246         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
2247           initializers with \0, bug #1208187
2248         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
2249           intializers with \0, bug #1208187
2250
2251 2005-05-26 Raphael Neider <rneider AT web.de>
2252
2253         * src/pic16/glue.c (pic16_printIvalChar): fixed string
2254           initializers with \0, bug #1208187
2255         * src/pic16/main.c (_process_pragma): added sanity checks
2256           for stack position and size, emit warnings when appropriate
2257
2258 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
2259
2260         * device/lib/_strncpy.c: fixed not filling with \0
2261
2262 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2263
2264         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
2265           createFunction),
2266         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
2267           compound_statement),
2268         * src/SDCCsymt.h,
2269         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
2270
2271 2005-05-24 Raphael Neider <rneider AT web.de>
2272
2273         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
2274
2275 2005-05-24 Raphael Neider <rneider AT web.de>
2276
2277         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
2278           TRISE definitions, closes bug #1162453
2279
2280 2005-05-22 Raphael Neider <rneider AT web.de>
2281
2282         * src/pic16/main.c (_process_pragma): check for missing
2283           arguments to pragmas code and udata
2284         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
2285           consistency fixes to match other headers (thanks to Jim Paris)
2286         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
2287
2288 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
2289
2290         * src/SDCCicode.c (isOperandEqual): fixed missing ;
2291
2292 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
2293
2294         * support/regression/tests/bug1198642.c: new test
2295         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
2296         * src/SDCCcse.c (findPrevIc): added comment, please have a look
2297         * support/scripts/resource.h,
2298         * support/scripts/resource.rc,
2299         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
2300         * support/scripts/sdcc.ico: added 32x32 icon
2301
2302 2005-05-18 Raphael Neider <rneider AT web.de>
2303
2304         * device/lib/pic16/libdev/pic18f*.c,
2305         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
2306           keywords to "__sfr" and "__at (X)"
2307         * device/include/pic16/pic18fregs.h: added pic18f4520
2308         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
2309           #1203088 (MPLAB compatibility)
2310
2311 2005-05-17 Raphael Neider <rneider AT web.de>
2312
2313         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
2314         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
2315         * device/lib/pic16/pics.all: added new devices
2316         * src/pic16/device.c: added support for pic18f4520
2317
2318 2005-05-16 Raphael Neider <rneider AT web.de>
2319         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
2320         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
2321         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
2322           convenience function for bit access
2323
2324 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
2325
2326         * device/lib/printf_large.c: fixed bug 1193299
2327         * support/regression/tests/bug1057979.c: added test %3.3s
2328
2329 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2330
2331         * device/include/mcs51/8051.h,
2332         * device/include/mcs51/8052.h: made parseable with lint
2333         * device/include/mcs51/lint.h: added include file for (sp)lint
2334         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
2335         * doc/cdbfileformat.lyx,
2336         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
2337
2338 2005-05-14 Raphael Neider <rneider AT web.de>
2339
2340         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
2341         * device/lib/pic16/libc/stdlib/itoa.c (new)
2342         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
2343         * device/lib/pic16/libio/Makefile: exclude subdir according to
2344           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
2345         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
2346         * src/pic16/gen.c (genFunction): prevent annoying warning
2347         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
2348           nameclashes on BeOS
2349         * support/cpp2/cppmain.c (cpp_output_string): new
2350         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
2351           fixes bug 1116802
2352
2353 2005-05-13 Borut Razem <borut.razem AT siol.net>
2354
2355         * src/SDCCmain.c (linkEdit): fixed bug 1195202
2356
2357 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2358
2359         * .version: changed to version 2.5.1; back to bleeding edge development
2360
2361 2005-05-11 Borut Razem <borut.razem AT siol.net>
2362
2363         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
2364           generate PDF version 1.3 documents
2365
2366 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2367
2368         * .version: changed to version 2.5.0
2369
2370 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2371
2372         * doc/sdccman.lyx: updated weblinks, index and smaller updates
2373
2374 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2375
2376         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
2377         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
2378         well as many smaller updates.
2379         * .version: changed to version 2.5.0-pre1
2380
2381 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2382
2383         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
2384
2385 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
2386
2387         * support/regression/tests/bug1185672.c: added
2388         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
2389           bug 1185672
2390         * src/mcs51/gen.c (genCall): added comments, made it look safer
2391         * src/mcs51/gen.c (genEndFunction): simplified
2392
2393 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
2394
2395         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
2396
2397 2005-04-14 Borut Razem <borut.razem AT siol.net>
2398
2399         * fixed bug 1045046 - SIGSEGV with really simple code?:
2400           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
2401           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
2402
2403 2005-04-14 Borut Razem <borut.razem AT siol.net>
2404
2405         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
2406           src/pic16/device.h: temporarily disabled experimental #inline pragma
2407           for 2.5.0 release
2408
2409 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
2410
2411         * device/include/z80/stdio.h,
2412         * device/include/z80/string.h: removed these highly incomplete files so
2413           SDCC can use the default ones in device/include/
2414
2415 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2416
2417         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
2418         gcc warning.
2419         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
2420         fix sdcpp warnings.
2421
2422 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2423
2424         * device/include/malloc.h: removed redundant __reentrant prototypes
2425         * device/lib/_mullong.c: added working xstack variant in asm (C version
2426           doesn't pass regression tests)
2427         * device/lib/bpx.c: used __data and made bpx char for mcs51
2428         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
2429           (createFunction): fixed bug with xstackPtr
2430         * src/SDCCcse.c: corrected comments
2431         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
2432           (killDeadCode, eBBlockFromiCode): removed unused code
2433         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
2434           corrected comments
2435         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
2436           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
2437           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
2438           (genModOneByte): fixed warning in MSVC
2439         * src/mcs51/main.c (): added comments
2440         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
2441
2442 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2443
2444         * src/SDCCmain.c (linkEdit): oops, changed one line too many
2445
2446 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
2447
2448         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
2449
2450 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
2451
2452         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
2453         characters arrays of larger size than the declared one.
2454
2455 2005-04-10 Borut Razem <borut.razem AT siol.net>
2456
2457         * src/pic/gen.c (genInline),
2458           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
2459           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
2460           (findNextInstruction), (findPrevInstruction),
2461           (findInstructionUsingLabel),
2462           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
2463         * src/pic/pcode.c (findLabel): added missing '\n'
2464         * src/src.dsp: added SDCCdwarf2.c to the project
2465
2466 2005-04-09 Borut Razem <borut.razem AT siol.net>
2467
2468         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
2469
2470 2005-04-08 Raphael Neider <rneider AT web.de>
2471
2472         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
2473           into the chain after a given one) and mergeDefmapSymbols (combine
2474           defmap entries for each symbol per pcode)
2475         * (createDefmap): have defmap entries merged in the end
2476         * (defmapReplaceSymRef): split defmap entries covering two accesses to
2477           a symbol before replacing one access type's symbol, merge symbols in
2478           the end (replacement symbol might already have an entry)
2479         * (assignValnums): keep reference to written WREG intact
2480
2481 2005-04-08 Raphael Neider <rneider AT web.de>
2482
2483         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
2484           Alpha)
2485
2486 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
2487
2488         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
2489         bytes
2490
2491 2005-04-07 Raphael Neider <rneider AT web.de>
2492
2493         * device/include/pic16/usart.h: added compatibility defines for
2494           devices with more than one USART
2495         * device/include/pic16/pic18f[68][567]20.h: activated above defines
2496
2497 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2498
2499         * device/lib/Makefile.in: updated for port specific include
2500
2501 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2502
2503         * support/regression/ports/mcs51/spec.mk: added mcs51 include
2504
2505 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2506
2507         * device/include/8051.h,
2508         * device/include/8052.h,
2509         * device/include/at89S8252.h,
2510         * device/include/at89c55.h,
2511         * device/include/at89x051.h,
2512         * device/include/at89x51.h,
2513         * device/include/at89x52.h,
2514         * device/include/mcs51reg.h,
2515         * device/include/reg51.h,
2516         * device/include/reg764.h,
2517         * device/include/regc515c.h,
2518         * device/include/sab80515.h: (re)moved these 12 files
2519         * device/include/mcs51/8051.h,
2520         * device/include/mcs51/8052.h,
2521         * device/include/mcs51/at89S8252.h,
2522         * device/include/mcs51/at89c55.h,
2523         * device/include/mcs51/at89x051.h,
2524         * device/include/mcs51/at89x51.h,
2525         * device/include/mcs51/at89x52.h,
2526         * device/include/mcs51/mcs51reg.h,
2527         * device/include/mcs51/reg51.h,
2528         * device/include/mcs51/reg764.h,
2529         * device/include/mcs51/regc515c.h,
2530         * device/include/mcs51/sab80515.h: and added them here
2531
2532 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
2533
2534         * device/include/stdarg.h: changed SDCC specific keywords to double
2535           underlined form.
2536         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
2537           mcs51 and ds390.
2538         * device/include/hc08/mc68hc908gp32.h,
2539         * device/include/hc08/mc68hc908jb8.h,
2540         * device/include/hc08/mc68hc908jkjl.h,
2541         * device/include/hc08/mc68hc908qy.h: fixed comments
2542         * device/include/mcs51/README: updated
2543         * device/include/mcs51/c8051f120.h: added PINRSF
2544         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
2545         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
2546           amidst code. Also inline is not supported.
2547
2548 2005-04-06 Raphael Neider <rneider AT web.de>
2549
2550         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
2551         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
2552           callers stack/frame pointers
2553
2554 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
2555
2556         * device/include/pic16/usart.h: added, missing in previous commit,
2557         * device/include/pic16/adc.h: fixed typo,
2558         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
2559         commit,
2560         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
2561         <p18fxxx.inc>
2562         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
2563         uninitialized because a bug appears with gplink
2564         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
2565         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
2566         complains for unrecognised option
2567
2568 2005-04-05 Raphael Neider <rneider AT web.de>
2569
2570         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
2571           structs as well (using memcpy)
2572         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
2573           on ISRs (GOTO has no label)
2574         * src/pic16/device.h: added OF_OPTIMIZE_DF
2575         * src/pic16/main.c: added compiler switch --optimize-df to enable the
2576           new data flow analysis/optimization
2577         * src/pic16/pcode.c: added (prototypes for and implementation of)
2578           dataflow analysis functions, fixed pCodeInstructions' inCond and
2579           outCond values, made RCALL a branch instruction
2580         * (pic16_unlinkpCode): keep C line if possible
2581         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
2582           C line moved if possible
2583         * (pic16_getRegFrompCodeOp): NEW, improved version of...
2584         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
2585           to use new pic16_getRegFrompCodeOp (works for more SFRs)
2586         * (pic16_BuildFlow): fixed skip instructions with label (did not start
2587           new flow)
2588         * (pic16_getJumptabpCode): NEW, needed in...
2589         * (LinkFlow): fixed handling of jumptables, calls and conditional
2590           branches
2591         * (pic16_InsertCommentAfter): NEW
2592         * (pic16_pCodeReplace): made verbose and flow preserving
2593         * (AnalyzeFlow): added call to data flow analysis
2594         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
2595         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
2596         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
2597
2598 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2599
2600         * src/SDCCast.c (decorateType): fixed bug #1105626
2601
2602 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
2603
2604         * device/include/asm/pic16/features.h,
2605         * pic18f*.h headers,
2606         * device/include/pic16/adc.h,
2607         * device/include/pic16/delay.h,
2608         * device/include/pic16/i2c.h,
2609         * device/include/pic16/malloc.h,
2610         * device/include/pic16/stdio.h,
2611         * device/include/pic16/stdlib.h,
2612         * device/include/pic16/string.h,
2613         * device/lib/pic16/libc/stdio/printf_tiny.c,
2614         * device/lib/pic16/libc/stdio/printf_small.c,
2615         * device/lib/pic16/libc/stdio/strmgpsim.c,
2616         * device/lib/pic16/libc/stdio/strmmssp.c,
2617         * device/lib/pic16/libc/stdio/strmusart.c,
2618         * device/lib/pic16/libc/stdio/vfprintf.c,
2619         * device/lib/pic16/libc/stdlib/ltoa.c,
2620         * device/lib/pic16/libc/stdlib/putchar.c,
2621         * device/lib/pic16/libc/stdlib/x_ftoa.c,
2622         * device/lib/pic16/libc/stdlib/memchrpgm.c,
2623         * device/lib/pic16/libc/stdlib/memchrram.c,
2624         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
2625         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
2626         * device/lib/pic16/libio/adc/adcbusy.c,
2627         * device/lib/pic16/libio/adc/adcread.c,
2628         * device/lib/pic16/libio/adc/adcsetch.c,
2629         * device/lib/pic16/libio/usart/ubaud.c,
2630         * device/lib/pic16/libio/usart/ubusy.c,
2631         * device/lib/pic16/libio/usart/udrdy.c,
2632         * device/lib/pic16/libio/usart/uopen.c,
2633         * device/lib/pic16/libio/usart/uputc.c,
2634         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
2635         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
2636         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
2637         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
2638         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
2639         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
2640         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
2641         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
2642         specific keywords to double underlined form,
2643         * device/lib/pic16/libc/Makefile.rules,
2644         * device/lib/pic16/libsdcc/Makefile.rules,
2645         * device/lib/pic16/libm/Makefile,
2646         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
2647         to compile with C standard set in Makefile.common
2648         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
2649         rand.c and crc.c in compilation process,
2650         * device/lib/pic16/libsdcc/int/divuint.c,
2651         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
2652         `c' from signed to unsigned,
2653         * device/lib/pic16/startup/crt0.c,
2654         * device/lib/pic16/startup/crt0i.c,
2655         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
2656         keywords to double underlined form, bug fixes in _do_cinit function
2657         which prevented the correct initialization of the .idata segment,
2658         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
2659         core to enter a infinite loop
2660         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
2661
2662 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2663
2664         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
2665
2666 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2667
2668         * device/include/Makefile.in: add support for hc08 subdirectory
2669         * device/include/hc08/: new subdirectory
2670         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
2671         Lucas Loizaga, thanks!
2672         * device/include/hc08/mc68hc908qy.h,
2673         * device/include/hc08/mc68hc908gp32.h,
2674         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
2675         their own directory. Changed internal macro names to use the compiler
2676         reserved namespace. Changed SDCC specific keywords to double
2677         underlined form.
2678         * device/include/math.h,
2679         * device/include/malloc.h,
2680         * device/include/stdarg.h,
2681         * device/include/stdbool.h
2682         * device/include/string.h,
2683         * device/include/tinibios.h,
2684         * device/include/ds400rom.h,
2685         * device/include/8051.h,
2686         * device/include/8052.h,
2687         * device/include/80c51xa.h,
2688         * device/include/at89c55.h,
2689         * device/include/at89S8252.h,
2690         * device/include/at89x51.h,
2691         * device/include/at89x52.h,
2692         * device/include/ds80c390.h,
2693         * device/include/reg764.h,
2694         * device/include/regc515c.h,
2695         * device/include/sab80515.h,
2696         * device/include/mcs51/c8051f000.h,
2697         * device/include/mcs51/c8051f018.h,
2698         * device/include/mcs51/c8051f020.h,
2699         * device/include/mcs51/c8051f040.h,
2700         * device/include/mcs51/c8051f060.h,
2701         * device/include/mcs51/c8051f120.h,
2702         * device/include/mcs51/c8051f300.h,
2703         * device/include/mcs51/c8051f310.h,
2704         * device/include/mcs51/c8051f320.h,
2705         * device/include/mcs51/c8051f330.h,
2706         * device/include/mcs51/c8051f350.h,
2707         * device/include/z180.h: Changed SDCC specific keywords to double
2708         underlined form.
2709
2710 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
2711
2712         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
2713         18F4455,
2714         * (pic16_assignConfigWordValue): disable testing of configuration
2715         register value with config mask,
2716         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
2717         function with port->fun_prefix,
2718         * (genFunction): when generating a naked interrupt function never
2719         create an absolute segment placed in interrupt vector address, place
2720         the actual interrupt function at IVA instead, when an interrupt
2721         function is generated with unspecified interrupt then do not create
2722         the absolute section,
2723         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
2724         code for generating a call to generic pointer get/put function with
2725         a call to function pic16_callGenericPointer(),
2726         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
2727         the call to the generic pointer get/put functions with prefixing the
2728         function name with port->fun_prefix,
2729         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
2730         * src/pic16/main.c (_process_pragma): prefix function with
2731         port->fun_prefix,
2732         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
2733         calling assembler, old 18Fxxxx macro is deprecated,
2734         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
2735         PC_ASMDIR in while condition,
2736         * (findInstruction): add PC_ASMDIR in while condition,
2737         * (buildCallTree): prefix main with port->fun_prefix,
2738         * (pic16_pCode2str): fixed bug that didn't emit the memory access
2739         identifier for variable with banked access in instructions BTFSS,
2740         BTFSC, BCF, BSF, BTG
2741         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
2742         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
2743         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
2744         perform optimization when enviroment variable NO_REG_OPT is set,
2745         * (insideLRBlock): NEW, return 1 if register is inside an
2746         INF_LOCALREGS block,
2747         * (RemoveRegFromLRBlock): remove a register that is completely
2748         eliminated by register optimization, but it is still left in local
2749         register store/restore in/from stack block,
2750         * (Remove2pcodes): after removing register, check to see if it
2751         should be removed from local register store/restore in/from stack
2752         block,
2753         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
2754         DUMMY_READ_VOLATILE,
2755
2756         * device/include/pic16/adc.h: minor prototype modifications and
2757         update,
2758         * device/include/pic16/malloc.h: added GPL notice various
2759         modifications,
2760         * device/include/pic16/stdint.h: NEW, standard header for ints
2761         * device/include/pic16/delay.h: NEW, header for delay functions,
2762         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
2763         delay1mtcy,
2764         * device/include/pic16/signal.h: NEW, header providing helper macros
2765         for implementing signal handlers,
2766         * device/include/pic16/stdio.h: added prototypes for functions,
2767         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
2768         prototypes for stdin and stdout, added macro PUTCHAR to
2769         automatically implement putchar function prototype,
2770         * device/include/pic16/usart.h: modified and updated USART library,
2771         * device/lib/pic16/libio/adc/,
2772         * device/lib/pic16/libio/i2c: some modifications to improve library
2773         performance,
2774         * device/lib/pic16/libc/stdio/: modifications for the new printf*
2775         family of functions,
2776         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
2777         family of functions and other sources,
2778         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
2779         of the PIC18Fxx[28] devices,
2780         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
2781         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
2782         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
2783         _do_cinit function, because the previous failed when local variables
2784         where not placed in the same memory bank,
2785         * device/lib/pic16/libsdcc/char/: various modifications to improve
2786         library performance,
2787         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
2788         information on the new functions of the c library and more...
2789
2790 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2791
2792         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
2793
2794 2005-03-26 Raphael Neider <rneider AT web.de>
2795
2796         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
2797           if condition == CARRY)
2798         * (genCmp): adapted to new genSkipc semantics
2799         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
2800           on rIfx (genCmp was broken)
2801
2802 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2803
2804         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
2805         * src/z80/main.c (_keywords[]),
2806         * src/SDCCglobal.h (struct options),
2807         * src/SDCC.y,
2808         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
2809         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
2810         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
2811         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
2812         always available in leading double underscore form. The C99 support is
2813         mostly missing, but it's a start.
2814         * support/regression/tests/bug-227710.c: fixed nonconforming use of
2815         reserved identifier "__data".
2816
2817 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
2818
2819         * src/mcs51/peeph.def: fixed bug 1170013
2820
2821 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
2822
2823         * device/include/mcs51reg.h: fixed bug 842007
2824
2825 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2826
2827         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
2828         last time.
2829
2830 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2831
2832         * src/port.h (struct PORT),
2833         * src/avr/ralloc.c (avr_assignRegisters),
2834         * src/avr/main.c,
2835         * src/ds390/ralloc.c (ds390_assignRegisters),
2836         * src/ds390/main.c,
2837         * src/hc08/ralloc.c (hc08_assignRegisters),
2838         * src/hc08/main.c,
2839         * src/mcs51/ralloc.c (mcs51_assignRegisters),
2840         * src/mcs51/main.c,
2841         * src/pic/ralloc.c (pic14_assignRegisters),
2842         * src/pic/main.c,
2843         * src/pic16/ralloc.c (pic16_assignRegisters),
2844         * src/pic16/main.c,
2845         * src/xa51/ralloc.c (xa51_assignRegisters),
2846         * src/xa51/main.c,
2847         * src/z80/ralloc.c (z80_assignRegisters),
2848         * src/z80/ralloc.h,
2849         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
2850         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
2851         * src/SDCCcse.h,
2852         * src/SDCCdflow.c (computeDataFlow),
2853         * src/SDCCdflow.h,
2854         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
2855         * src/SDCCloop.h,
2856         * src/SDCCcflow.c (*),
2857         * src/SDCCcflow.h,
2858         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
2859         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
2860         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
2861         immedDom() returning wrong block; probably fixes bug #1160833)
2862
2863 2005-03-20 Borut Razem <borut.razem AT siol.net>
2864
2865         * support/scripts/inc2h.pl: WIN32 port
2866
2867 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
2868
2869         * device/lib/makefile.in: added abs.c and labs.c
2870
2871 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
2872
2873         * device/include/stdint.h: added
2874         * device/lib/abs.c: added
2875         * device/lib/labs.c: added
2876         * device/include/stdlib.h: added abs() and labs() prototypes
2877         * device/lib/libsdcc.lib: added abs and labs
2878         * device/include/float.h,
2879         * device/lib/_fsmul.c,
2880         * device/lib/printf_fast.c,
2881         * device/lib/printf_tiny.c: updated comments
2882
2883 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2884
2885         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
2886         bug #1164313
2887
2888 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2889
2890         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
2891         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
2892
2893 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
2894
2895         * device/lib/printf_large.c: removed inline assembly for portability and
2896           readability. Use printf_fast if speed or size are more important.
2897         * src/pic16/gen.c: removed conditions around use of DEBUGpc
2898         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
2899
2900 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
2901
2902         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
2903         prevent compiler warning
2904
2905 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
2906
2907         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
2908         moved to level 0 and declared as static. Also they are explicit
2909         placed in access bank. This was necessery because some times they
2910         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
2911         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
2912         optimizations. Currently only compare to unsigned char is implemented,
2913         * src/pic16/gen.c: added fReturnIdx array,
2914         * (struct resolvedIfx) is moved to gen.h and made public,
2915         * (struct _G): added sregsAlloc and sregsAllocSet fields,
2916         * (aopForSym): added an optimization to directly store in stack of
2917         the operand of a SEND iCode,
2918         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
2919         but as registers instead (AOP_REG) using the fReturnIdx array,
2920         * (pic16_freeAsmop): remove the freed register from the
2921         _G.sregsAlloc field,
2922         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
2923         a compare of 'WREG',
2924         * (pic16_popGetTempRegCond): changed function prototype, now
2925         function takes also a bitVector argument v which holds the current
2926         set of registers that are allocated for stack access by aopForSym,
2927         registers allocated in aopForSym for accessing stack symbols are not
2928         any more part of the functions usedRegs field,
2929         * (genCall): some times aopOp is called for a stack variable to be
2930         send, aopForSym might perform the push, if this is true make sure
2931         that genCall doesn't push the variable twice by testing _G.resDirect,
2932         * (genFunction): changed testing for unspecified interrupt number
2933         from 256 to INTNO_UNSPEC,
2934         * modified selection scheme of frame pointer generation. Previously
2935         if function did use local registers a frame pointer was generated,
2936         now a frame pointer is generated only if function has arguments
2937         (that need PLUSW2 register access), or has stack arguments, or the
2938         compiler is not instructed to omit the frame pointer,
2939         * (genEndFunction): before restoring local registers that were saved
2940         in the function preamble, also restore the registers that *might*
2941         have been allocated for stack access,
2942         * (genRet): removed some old comments,
2943         * (genCmp, the active (RN's) version): added a call to the
2944         pic16_genCmp_special function to perform the compare with a more
2945         robust and optimized way,
2946         * (genInline): a feature has been added in inline code generation,
2947         which allows a wildcard variable substitution when writing inline
2948         assembly. Code is incomplete and experimental therefore undocumented,
2949         * (genCast): changed order of aopOp for result and right to allow
2950         aopForSym to directly load the result if possible,
2951         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
2952         perform an optimized compare on some selected special occasions,
2953         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
2954         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
2955         generate an IVT any more,
2956         * src/pic16/main.c (pic16_optionsTable): added command line option
2957         --optimize-cmp,
2958         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
2959         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
2960         macros,
2961         * src/pic16/NOTES: Raphael Neider added in list of active developers
2962         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
2963         jumptable_end to prevent bug #,
2964         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
2965         inCond and outCond fields,
2966         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
2967         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
2968         turn off register spilling,
2969         * (packRegsForOneUse): synced with other ports' versions although it
2970         is not used currently,
2971         * (pic16_packRegisters): added an optimization while reading
2972         structure bitfields, some registers may be saved (malloc code is
2973         decreased by 80 bytes)
2974
2975 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
2976
2977         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
2978         left is a bitfield, if yes, then don't optimize assignment. Perhaps
2979         this can be optimized more?
2980
2981 2005-03-10 Raphael Neider <rneider AT web.de>
2982
2983         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
2984           genNearPointerGet): (hopefully) fixed access to bitfields via
2985           pointers (p->bitN = x; and x = p->bitN; failed)
2986
2987 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
2988
2989         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
2990
2991 2005-03-09 Raphael Neider <rneider AT web.de>
2992
2993         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
2994
2995 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
2996
2997         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
2998         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
2999           (regTypeNum): set REG_BIT type if necessary
3000         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
3001         * support/regression/tests/critical.c: check bug 1144613
3002
3003 2005-03-02 Raphael Neider <rneider AT web.de>
3004
3005         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
3006
3007 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3008
3009         * src/avr/ralloc.c (serialRegAssign),
3010         * src/ds390/ralloc.c (serialRegAssign),
3011         * src/hc08/ralloc.c (serialRegAssign),
3012         * src/mcs51/ralloc.c (serialRegAssign),
3013         * src/pic/ralloc.c (serialRegAssign),
3014         * src/pic16/ralloc.c (serialRegAssign),
3015         * src/xa51/ralloc.c (serialRegAssign),
3016         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
3017
3018 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
3019
3020         * src/SDCCast.c (decorateType): fixed bug 1124787
3021
3022 2005-02-20 Hubert Sack <sack AT digiplan.de>
3023         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3024
3025         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
3026         patch #1121755
3027
3028 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3029
3030         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
3031         to keep the correct label reference count when adding/removing references
3032         to labels. A peephole file using this is appended to patch #1144962.
3033
3034 2005-02-14 Raphael Neider <rneider AT web.de>
3035
3036         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
3037         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
3038         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
3039           retrievals of result operand's value on assignment
3040
3041 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
3042
3043         * device/include/pic16/string.h: modified prototype for memccpy()
3044         to memccpy(void *, void *, char, size_t)
3045         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
3046         check whether to omit frame pointer or not,
3047         * (genInline): convert all occurences of "\n" to LF in inline
3048         assembler blocks, this helps formatting the inline text,
3049         * (pic16_loadFSR0): modified prototype,
3050         * (genNearPointerGet, genNearPointerSet): reorganization of code,
3051         removed some 8051 legacy code,
3052         * (genPackBits): enabled handling bitfields exceeding one byte in size,
3053         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
3054         before allocating temporary registers in functions,
3055
3056 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
3057
3058         * support/regression/tests/bitvars.c: corrected the "fix"
3059
3060 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
3061
3062         * support/regression/tests/bitvars.c,
3063         * support/regression/tests/bitwise.c,
3064         * support/regression/tests/rotate.c: "fixed" problems on Alpha
3065
3066 2005-02-10 Raphael Neider <rneider AT web.de>
3067
3068         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
3069           different size for Alpha
3070         * src/pic16/gen.c (genCmpEq) : improved compare with 0
3071
3072 2005-02-09 Raphael Neider <rneider AT web.de>
3073
3074         * src/SDCC.lex(doPragma) : save and restore warning options as well
3075           (also added new stack plus clone- and copyAndFreeSDCCERRG())
3076         * have #pragma less_pedantic set the errorlevel to WARNING
3077           (fixes #1117001)
3078         * (cloneOptimize) : fixed wrong malloc's size
3079         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
3080           facilitate correct handling of #pragma (save|restore)
3081
3082 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
3083
3084         * src/mcs51/gen.c: removed non-standard C nameless struct/union
3085
3086 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
3087
3088         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
3089
3090 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
3091
3092         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
3093
3094 2005-02-02 Raphael Neider <rneider AT web.de>
3095
3096         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
3097         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
3098         * (pic16_storeForReturn): fixed to allow returning function pointers
3099         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
3100         * device/include/pic16/{stddef.h,stdbool.h}: added
3101
3102 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
3103
3104         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
3105
3106 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
3107
3108         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
3109         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
3110          appeared to be required
3111
3112 2005-01-31 Borut Razem <borut.razem AT siol.net>
3113
3114         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
3115           include/mcs51 and include/z80 directories to the package
3116
3117 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3118
3119         * src/hc08/gen.c (genFunction): fixed bug #1112752
3120
3121 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3122
3123         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
3124
3125 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3126
3127         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
3128
3129 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
3130
3131         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
3132
3133 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
3134
3135         * device/include/c8051fxxx.h: removed these 6 files
3136         * device/include/mcs51/c8051fxxx.h: added these 11 new files
3137
3138 2005-01-26 Raphael Neider <rneider AT web.de>
3139
3140         * src/pic16/gen.c (genAssign): fixed assignment from longs
3141           in codespace (were cut to three bytes)
3142         * (genDummyRead): implemented (except for CODESPACE...),
3143           fixed bug #1108575
3144         * src/pic16/glue.c (emitStatistics): beautified
3145         * device/lib/pic16/libm/Makefile: added include path
3146
3147 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3148
3149         * src/z80/gen.c (aopPut): fixed bug #1103902
3150
3151 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3152
3153         * device/lib/expf.c: fixed bug #1095792
3154
3155 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
3156
3157         * device/lib/pic16/libm: added Math library sources
3158
3159 2005-01-24 Raphael Neider <rneider AT web.de>
3160
3161         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
3162           to enable upcast to pCodeOpReg2 (there is no type tag to
3163           differenciate the two and pic16_popGet2p cast into PCOR2)
3164         * src/pic16/main.c (_process_pragma): fixed another malloc bug
3165           (sizeof(sectNames) changed to sizeof(sectName))
3166           Both patches fix segfaults under MinGW.
3167
3168 2005-01-23 Raphael Neider <rneider AT web.de>
3169
3170         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
3171           Safe_[mc]?alloc()'ed variables
3172         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
3173           of (byte sized) temporaries (assign them to WREG for now)
3174         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
3175           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
3176           this might fix SIGSEGVs on MinGW...
3177         * src/SDCCopt.c (killDeadCode): restored original behaviour
3178           (volatile operands might get thrown away though)
3179
3180 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
3181
3182         * src/pic16/gen.c: fixed bug #1106975,
3183         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
3184         pointer update, INTCON is saved, global interrupts are disabled and
3185         restored after updateing TOS.
3186         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
3187         * added function attribute 'shadowregs' to take advantage of shadow
3188         registers,
3189         * added function attribute 'wparam' as an alternative to the wparam
3190         pragma,
3191         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
3192         user declares a non-ISR function as 'shadowregs',
3193         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
3194
3195 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
3196
3197         * .version: bumped version number to 2.4.8
3198         * device/lib/pic16/pics.all: list of PIC18F devices supported by
3199         pic16 port,
3200         * device/lib/pic16/libio/i2c/: I2C module support library,
3201         * device/include/pic16/i2c.h: I2C support library header,
3202         * device/lib/pic16/libc/stdio/: standard IO support sources,
3203         * (printf_small.c): printf_small() source, supports float print,
3204         * (printf_tiny.c): printf_tiny() source, does not support floats,
3205         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
3206         enable global optimizations for entire library source, other
3207         Makefiles in the source tree are also modified to reflect this,
3208         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
3209         function,
3210         * doc/sdccman.lyx: updated to reflect new changes,
3211         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
3212         sym->onStack if-case,
3213         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
3214         sbit, idata, _idata, xdata, _xdata,
3215         * added pragma library, to link an external library, (see doc),
3216         * removed command line options, --pomit-config-words, --pomit-ivt,
3217         --pleave-reset-vector,
3218         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
3219         when calling assembler to reflect memory model used, also define
3220         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
3221         reflect stack model used,
3222         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
3223         on stack return NULL,
3224
3225 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3226
3227         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
3228           of the operands is volatile. Fixes #1020220
3229
3230 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3231
3232         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
3233         * (OptimizeRegUsage): make sure that there is really no other flow where
3234           the first pCode is used
3235
3236 2005-01-22 Raphael Neider <rneider AT web.de>
3237
3238         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
3239           to fix #1106967 (pCode->seq are not set up correctly)
3240
3241 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3242
3243         * src/SDCCglue.c (glue): make sure code area is declared before the
3244         static initialization area.
3245
3246 2005-01-21 Raphael Neider <rneider AT web.de>
3247
3248         * device/lib/Makefile.in: fixed test for pic16 install dir
3249         * device/lib/pic16/*/Makefile*: modified compile flags to enable
3250           optimizations
3251         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
3252           added --optimize-goto compiler switch and pragma wparam documentation
3253         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
3254         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
3255           and PRODH closing bug #1071770 (peephole optimizer)
3256
3257 2005-01-19 Raphael Neider <rneider AT web.de>
3258
3259         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
3260           cmdLine buffers (used when calling sdcpp...) are large enough
3261           (MAX_PATH=256 truncates arguments leading to system halts when
3262           used in MinGW...)
3263         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
3264         * (genUminus): rewritten to for efficiency
3265         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
3266           used uninitialized in some cases)
3267         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
3268           copy the third byte from the int -- now assumes 0x80 (data memory)
3269         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
3270           operands (genAddLit expects the iCode's operands to swapped as
3271           well), fixed leftover bytes (crashed for short left operands)
3272         * (pic16_genMinusDec): performance improvements, removed false
3273           PIC14 emitSKPNCs
3274         * (pic16_genMinus): fixed to cope with differently sized operands
3275         * src/pic16/glue.c (pic16_glue): added new banksel optimization
3276           for --obanksel > 1
3277         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
3278         * src/pic16/graph.[ch]: implementation of directed graphs, used by
3279           new banksel optimization
3280         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
3281           analysis for temporary registers (segfaults...)
3282         * src/pic16/peeph.def: added rule
3283
3284 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
3285
3286         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
3287         which converts a float number to its ASCII representation
3288         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
3289         functions to convert the fractional and integer part of a float to ASCII,
3290         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
3291         realloc.c): added _MALLOC_SPEC to explicit place variables in data
3292         ram
3293         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
3294         _STATMEM macros,
3295         * device/include/pic16/adc.h: added GPL info,
3296         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
3297         a pCodeOp as tested operand,
3298         * (genNearPointerGet): optimized bit testing, does not use
3299         intermediate register for bit value, test directly instead with
3300         BTFSS, BTFSC, works only for single bits,
3301         * (genpic16Code): dump the name of the iCode in the asm,
3302         * src/pic16/ralloc.c (decodeOp): removed static declaration and
3303         renamed to pic16_decodeOp,
3304         * (serialRegAssign): do not allocate a temporary register for iCode
3305         sequences that test a single bit for 1/0
3306
3307 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
3308
3309         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
3310         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
3311         access stack and frame pointers. They are initially assigned to
3312         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
3313         accessing SFRs. Updated all occurences of modification of stack or
3314         frame pointer in gen.c and pcode.c,
3315         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
3316         assigning of a literal value to pointers,
3317         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
3318         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
3319         selected
3320
3321 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
3322
3323         * doc/sdccman.lyx: update documentation about stack pragma, added
3324         some info for stack memory models
3325
3326 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3327
3328         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
3329
3330 2005-01-08 Raphael Neider <rneider AT web.de>
3331
3332         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
3333           udata sections to fix bug #1097823
3334
3335 2005-01-05 Raphael Neider <rneider AT web.de>
3336
3337         * src/pic16/gen.c (genGenericShift): added handling of differently
3338           sized left operand and result
3339
3340 2005-01-04 Raphael Neider <rneider AT web.de>
3341
3342         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
3343         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
3344           to hold the condition bit)
3345         * added new version of genCmp (old code available via #define)
3346         * added new version of genShiftLeft/genShiftRight in a generic
3347           way, now supports shifting by negative values
3348         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
3349           shiftCount (expected by genGenericShift)
3350         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
3351         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
3352           dump
3353         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
3354           is an invalid literal too...)
3355
3356 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
3357
3358         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
3359         from Raphael Neider,
3360         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
3361         for 8-bit literals. This fixes some literal operands which are sign
3362         extended to 16-bits ints when instruction needs only 8-bits.
3363
3364 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
3365
3366         * device/lib/logf.c: added mcs51 assembly version
3367         * device/lib/expf.c: added mcs51 assembly version
3368         * device/lib/_logexpf.c: new shared asm code for expf and logf
3369         * device/include/math.h: add defines for assembly math library
3370         * device/lib/Makefile.in: build new _logexpf.c
3371         * device/lib/libfloat.lib: use new _logexpf.c
3372
3373 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3374
3375         * src/pic/device.c
3376         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
3377           device types which have less than 0x7f registers.
3378
3379 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3380
3381         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
3382
3383 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3384
3385         * device/lib/printf_fast.c: only build on supported arch.
3386         * device/lib/printf_tiny.c: only build on supported arch.
3387         * device/lib/printf_fast_f.c: only build if asm float lib
3388         * device/lib/_fsget1arg.c: only build if asm float lib
3389         * device/lib/_fsget2args.c: only build if asm float lib
3390         * device/lib/_fsnormalize.c: only build if asm float lib
3391         * device/lib/_fsreturnval.c: only build if asm float lib
3392         * device/lib/_fsrshift.c: only build if asm float lib
3393         * device/lib/_fsswapargs.c: only build if asm float lib
3394         * device/include/stdio.h: don't provide print_fast,
3395           print_fast_f, print_tiny prototypes if --xstack used
3396
3397 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
3398
3399         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
3400         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
3401           to the SOURCES
3402
3403 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3404
3405         * device/lib/printf_fast_f.c: same as printf_fast, but
3406           with floating point enabled
3407         * device/lib/printf_fast.c: minor tweaks
3408         * device/include/stdio.h: add printf_fast_f
3409
3410 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3411
3412         * src/SDCCmain.c: make --float-reent default for mcs51
3413         * device/lib/_fsadd.c: added mcs51 assembly version
3414         * device/lib/_fssub.c: added mcs51 assembly version
3415         * device/lib/_fsmul.c: added mcs51 assembly version
3416         * device/lib/_fsdiv.c: added mcs51 assembly version
3417         * device/lib/_fseq.c: added mcs51 assembly version
3418         * device/lib/_fsneq.c: added mcs51 assembly version
3419         * device/lib/_fsgt.c: added mcs51 assembly version
3420         * device/lib/_fslt.c: added mcs51 assembly version
3421         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
3422         * device/lib/Makefile.in: add _fscmp to build
3423         * device/lib/libfloat.lib: add _fscmp to build
3424
3425 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3426
3427         * device/lib/_fs2slong.c: added mcs51 assembly version
3428         * device/lib/_fs2sint.c: added mcs51 assembly version
3429         * device/lib/_fs2schar.c: added mcs51 assembly version
3430         * device/lib/_fs2ulong.c: added mcs51 assembly version
3431         * device/lib/_fs2uint.c: added mcs51 assembly version
3432         * device/lib/_fs2uchar.c: added mcs51 assembly version
3433         * device/lib/_slong2fs.c: added mcs51 assembly version
3434         * device/lib/_sint2fs.c: added mcs51 assembly version
3435         * device/lib/_schar2fs.c: added mcs51 assembly version
3436         * device/lib/_ulong2fs.c: added mcs51 assembly version
3437         * device/lib/_uint2fs.c: added mcs51 assembly version
3438         * device/lib/_uchar2fs.c: added mcs51 assembly version
3439         * device/include/float.h: added #define to select asm vs c
3440
3441 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
3442
3443         * device/lib/printf_fast.c: improvements to float output
3444         * device/include/float.h: add defines for assembly float library
3445         * device/lib/_fsget1arg.c: receive 1 float arg
3446         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
3447         * device/lib/_fsnormalize.c: normalize a float
3448         * device/lib/_fsreturnval.c: return float, various helper routines
3449         * device/lib/_fsrshift.c: right shift a float's mantissa
3450         * device/lib/_fsswapargs.c: swap 2 floats
3451         * device/lib/Makefile.in: build these 6 new files for mcs51
3452         * device/lib/libfloat.lib: add these 6 files to the library
3453
3454 2004-12-26 Borut Razem <borut.razem AT siol.net>
3455
3456         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
3457           built by gcc 3.4.2
3458
3459 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
3460
3461         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
3462           and fully reentrant and register bank neutral.
3463         * device/lib/printf_fast.c: added float (not enabled by default),
3464           added compact/slower integer (also not enabled by default),
3465           improved size/speed of fast integer code, other minor changes
3466         * device/include/stdio.h, device/lib/Makefile.in,
3467           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
3468
3469 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
3470
3471         * src/pic16/pcode.c: declaring variables other than at the start of a
3472           block is not supported in C by VC6.
3473
3474 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
3475
3476         * applied a previous patch from Raphael Neider that wasn't included
3477         in the previous commits, which fixes infinite loops within jumptable
3478         improvements,
3479         * made some fixes that previous patches introduced
3480
3481 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
3482
3483         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
3484         that fixes an issue with AOP_PCODE asmop's offset,
3485         * (pic16_popCopyReg): update instance field too,
3486         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
3487         function of pic port,
3488         * (genCmp, genAnd, genAssign),
3489         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
3490
3491 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
3492
3493         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
3494         variables initial values to idata section,
3495         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
3496         variables in some functions. This utilizes parmBytes field of iCode
3497         structure to hold the offset of the variable in stack. (might be
3498         able to use the stack field too?)
3499         * applied patch from Raphael Neider # ### , # ###
3500         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
3501         variable initial values in idata section,
3502         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
3503         for static variables with initial value
3504         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
3505         applied fix in while loop from Raphael Neider.
3506
3507 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
3508
3509         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
3510         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
3511         * src/ds390/ralloc.c (serialRegAssign): spill bits
3512         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
3513         * support/Util/SDCCerr.c,
3514         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
3515         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
3516         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
3517
3518 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
3519
3520         * device/include/sdcc-lib.h: inserted LGPL, added includes
3521           asm/ds390/features.h and asm/mcs51/features.h
3522         * device/include/asm/default/features.h,
3523         * device/include/asm/gbz80/features.h,
3524         * device/include/asm/z80/features.h: added empty _AUTOMEM
3525           and _STATMEM
3526         * device/include/asm/ds390/features.h,
3527         * device/include/asm/mcs51/features.h: added files with defines for
3528           _AUTOMEM and _STATMEM indicating automatic and static storage class
3529         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
3530         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
3531         * src/SDCCicode.c (geniCodeCast),
3532         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
3533         * src/SDCCloop.c (loopInduction): removed unused variable lr
3534         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
3535           to convertToFcall to include char modulo (RFE 1065037), added check
3536           if left operand is unsigned and use abs of literal value
3537         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
3538           as it doesn't work after conversion from peephole.def to peephole.rul
3539         * src/mcs51/gen.c (toBoolean): added check for size,
3540           (genModOneByte): optimized code for signed char modulo a literal
3541           power of 2 (thanks to Hubert Sack),
3542           (genRRC): removed unnecessary "clr c",
3543           (genRLC): replaced "add a,acc" with cheaper "rlc a"
3544         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
3545           jump optimization,
3546           swapped rules 256.c and 256.d,
3547           extended 256.d by using new multiple checks (thanks Erik),
3548           added rules 256.e and 256.f,
3549           updated rule 261.a and 261.b to new generated code
3550         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
3551
3552 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3553
3554         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
3555           induction related bugs, including first part of bug #1074377
3556
3557 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
3558
3559         * applied patch from bug-report #1076292,
3560         * applied patches for genAnd and Goto-optimizations for Raphael
3561         Neider,
3562         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
3563         dump a less iCode information,
3564         * src/pic16/device.h (pic16_options_t): added field debgen,
3565         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
3566         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
3567         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
3568         puclic,
3569         * (various functions): added macros FENTRY and FENTRY2 to functions,
3570         to emit function prologue,
3571         * (various functions): fixed indentation,
3572         * (genNearPointerGet): fixed loading of FSR0,
3573         * (genPackBits): applied patch from Raphael Neider to fix updating
3574         of FSR0 and touching only the modified bits,
3575         * src/pic16/genarith.c (various functions): added macros FENTRY to
3576         emit function prologue in comments,
3577         * src/pic16/pcode.h: added functions debugf2, debugf3,
3578         * src/pic16/ralloc.c: partial fix for packForPush caused
3579         segmentation fault,
3580
3581 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3582
3583         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
3584           <stsp AT users.sourceforge.net> with reversed byte order
3585         * support/regression/tests/rotate.c: added (ds390 skips some tests)
3586
3587 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3588
3589         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
3590           bug #1074377
3591         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
3592         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
3593
3594 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3595
3596         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
3597
3598 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3599
3600         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
3601           conditions,
3602           (setFromConditionArgs): friendly operand parser for peephole rules,
3603           (operandBaseName, operandsNotRelated): new peephole condition
3604           "operandsNotRelated" -- similar to "operandsNotSame", but takes
3605           architecture specific register naming into account, handles n-way
3606           comparisons, and supports quoted literals
3607         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
3608
3609 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3610
3611         * src/mcs51/peeph.def: fixed bug #1076940
3612
3613 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3614
3615         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
3616
3617 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3618
3619         Adding support for replacing ljmps with sjmps in jumptables
3620         generated for switch statements. For now you need to set the
3621         environment variable SDCC_SJMP_JUMPTABLE to enable this.
3622         Now 4 algorithms for mcs51 jumptable generation are used:
3623         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
3624         addresses loaded pc-relative for up to 112 cases and stack-pushing
3625         target addresses loaded with offset from dptr for up to 256 cases.
3626
3627         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
3628         * src/mcs51/main.c: adapted constants for switch table generation
3629         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
3630
3631 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
3632
3633         * device/lib/printf_large.c (_print_format): fixed bug 1073386
3634         * support/regression/tests/bug1057979.c: added test for bug 1073386
3635
3636 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3637
3638         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
3639         compilers
3640
3641 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3642
3643         * src/pic16/device.h,
3644         * src/pic16/genarith.c,
3645         * src/pic16/glue.c,
3646         * src/pic16/main.c,
3647         * src/pic16/pcode.c: applied patches #1068154 and #1070213
3648
3649 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
3650
3651         Large cummulative patch for pic16 port.
3652         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
3653         to call when a stack overflow occurs,
3654         * (malloc.h): added CVS Id tag,
3655         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
3656         variable,
3657         * added libc directory. The current version of LibC contains string
3658         functions, ctype functions and macros and some functions of the
3659         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
3660         be extensively tested in the future. Standard disclaimer here.
3661         Library is not automatically build yet. But one can build it by
3662         invoking 'make' inside the libc directory.
3663         * added ADC library under libio. Preliminary version yet.
3664
3665         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
3666         * src/pic16/gen.c (aopForRemat): asmop size is filled by
3667         aopForRemat() now and not by pic16_aopOp(),
3668         * (pic16_popGetTempReg): removed warning messgae when allocating
3669         temporary registers, its a buggy feature and will be removed,
3670         * (pic16_popGet): set register instance field in AOP_CRY,
3671         * (pic16_outBitC): fixed for results in size greater than 1,
3672         * (genUminusFloat): fixed for pic16, ported code from mcs51,
3673         * (pic16_storeForReturn): optimized return of 0,
3674         * (genCmp): experimental code for new genCmp which uses PIC18's
3675         special compare&skip instructions. Initial tests fail some times
3676         with variables grater than 1 byte in size, so new code is disabled,
3677         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
3678         a single bit,
3679         * (genCast): began a fix to optimize the casting of a bit to another
3680         bit, now assigning a bitfield to another bitfield will fail, sorry,
3681         * src/pic16/main.c: disabled the use of lr-support feature,
3682         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
3683         * added some function prototypes, added function _debugf prototype,
3684         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
3685         bits with offset (case PO_GPR_BIT),
3686         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
3687         command line,
3688         * (isBankInstruction): modified to return 0 for no banking instruction,
3689         and 1 for banking instruction,
3690         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
3691         caused stop processing pCodes after a inline assembly block,
3692         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
3693         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
3694         registers when it shouldn't,
3695         * src/pic16/ralloc.c (allocReg): add preliminary support for
3696         supporting a limited set of temporary registers,
3697
3698 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3699
3700         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
3701           genDataPointerSet): ensure assignments always copy in MSB to LSB
3702           order,
3703           (loadRegFromAop): recognize CLRH optimization,
3704           (genFunction): optimize RECEIVE iCodes in reentrant functions
3705
3706 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3707
3708         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
3709           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
3710           selected.
3711         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
3712         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
3713           contiguous with data
3714
3715 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3716
3717         * device/lib/_gptrget.c (_gptrget),
3718         * device/lib/_gptrgetc.c (_gptrgetc),
3719         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
3720           instead of sjmp to ret
3721         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
3722           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
3723
3724 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
3725
3726         * .version: bumped version to 2.4.7
3727         * device/lib/_gptrget.c (_gptrget): is now _naked
3728         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
3729         * device/lib/_gptrput.c (_gptrput): is now _naked
3730         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
3731           (createFunction): fixed xstack
3732         * src/SDCCglue.c (emitMaps): set allocation required for bit area
3733         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
3734           or bit either,
3735           (geniCodeCritical): store original interrupt state in an iTemp bit
3736           var unless stack-auto
3737         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
3738         * src/SDCCmain.c (setIncludePath): added include/target to search path
3739         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
3740         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
3741           prototype,
3742           (processFuncArgs): put bit vars in bit area
3743         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
3744           unsaveRBank): fixed xstack,
3745           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
3746           (genFunction, genEndFunction): fixed xstack,
3747           (genAssign): optimization don't walk backwards through mem
3748         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
3749         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
3750         * support/regression/Makefile: also make library (for stack-auto) when
3751           making "all" and added "test-mcs51-xstack-auto"
3752         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
3753         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
3754         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
3755         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
3756         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
3757           make-library by MAKE_LIBRARY
3758         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
3759           regression tests for xstack
3760         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
3761         * support/regression/tests/critical.c: test for critical on mcs51
3762
3763 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3764
3765         * support/regression/ports/ucz80/spec.mk: use include and lib files from
3766           built version of sdcc instead of installed version
3767
3768 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
3769
3770         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
3771         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
3772           vprintf.c now
3773         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
3774         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
3775           WARNING: remove device/lib/build/z80/printf.o by hand when
3776           updating from previous build!
3777         * device/lib/z80/printf.c: updated comment
3778         * support/regression/tests/bug1057979.c: test all ports now
3779         * support/regression/tests/bug1065458.c: file added
3780
3781 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3782
3783         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
3784           *_start and *_end symbols for static functions
3785
3786 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
3787
3788         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
3789           and search crt0.o in all library paths,
3790           (setIncludePath): proper handling of --nostdinc,
3791           (setLibPath): proper handling of --nostdlib
3792         * support/regression/Makefile,
3793         * support/regression/ports/ds390/spec.mk,
3794         * support/regression/ports/gbz80/spec.mk,
3795         * support/regression/ports/hc08/spec.mk,
3796         * support/regression/ports/mcs51/spec.mk,
3797         * support/regression/ports/mcs51-large/spec.mk,
3798         * support/regression/ports/mcs51-stack-auto/spec.mk,
3799         * support/regression/ports/z80/spec.mk: use include and lib files from
3800           built version of sdcc instead of installed version
3801         * doc/sdccman.lyx: fixed typo in --nostdinc
3802
3803 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
3804
3805         * src/pic/pcode.c,
3806         * src/pic/device.c,
3807         * src/pic/ralloc.c,
3808         * src/pic/gen.c : added support to generate code for struct bit fields.
3809
3810 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
3811
3812         * as/xa51/xa_version.h,
3813         * device/include/errno.h,
3814         * device/include/regc515c.h,
3815         * device/lib/_itoa.c,
3816         * device/lib/_ltoa.c,
3817         * device/lib/ser_ir_cts_rts.c,
3818         * sim/ucsim/xa.src/glob.cc,
3819         * sim/ucsim/xa.src/inst_gen.cc,
3820         * sim/ucsim/xa.src/xa_bit.cc,
3821         * sim/ucsim/xa.src/xa_sfr.cc,
3822         * sim/ucsim/z80.src/inst_dd.cc,
3823         * sim/ucsim/z80.src/inst_fdcb.cc,
3824         * support/scripts/keil2sdcc.pl,
3825         * src/pic16/pic16.dsp,
3826         * src/pic16/pic16a.dsp: corrected cvs line endings
3827         * device/lib/printf_large.c: fixed bug 1057979
3828         * src/pic16/gen.c: fixed non-C standard code
3829         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
3830         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
3831         * support/regression/ports/mcs51/support.c: reload T1 asap
3832         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
3833           pdata use and clear idata startup behaviour
3834         * support/regression/tests/bug1057979.c: added
3835
3836 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
3837
3838         * device/examples/ds390/ow390/ad26.h,
3839         * device/examples/ds390/ow390/cnt1d.h,
3840         * device/examples/ds390/ow390/crcutil.c,
3841         * device/examples/ds390/ow390/ownet.h,
3842         * device/examples/ds390/ow390/owsesu.c,
3843         * device/examples/ds390/ow390/swt12.h,
3844         * device/examples/ds390/ow390/swtoper.c,
3845         * device/examples/ds390/ow390/temp10.h,
3846         * device/examples/ds390/ow390/thermodl.c,
3847         * device/examples/ds390/tinitalk/tinitalk.dsp,
3848         * device/examples/ds390/tinitalk/tinitalk.dsw,
3849         * device/examples/mcs51/clock/hw.h,
3850         * device/examples/mcs51/simple2/go.bat,
3851         * device/examples/serialcomm/windows/serial.h,
3852         * device/examples/xa51/dummy.c,
3853         * device/examples/xa51/hello.c,
3854         * device/include/80c51xa.h,
3855         * device/include/at89x051.h: corrected cvs line endings
3856
3857 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
3858
3859         * src/pic16/main.c (options): added command line --gstack, to trace
3860         stack over/under flows,
3861         * added pragma 'wparam' to allow passing first byte of function
3862         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
3863         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
3864         call to __gstack_test function and sets up the symbol as extern,
3865         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
3866         * popaop): added call to pic16_testStackOverflow,
3867         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
3868         wparamList list,
3869         * (genCall, genPcall): now all parameters are passed via stack
3870         except in functions that are pass to wparam pragma in which WREG is
3871         used too,
3872         * (genPcall): REENTRANT flag is checked to see if variable prototype
3873         contains reentrant keyword, don't call a non-reentrant function, via
3874         a reentrant function pointer or vice versa, functions are never
3875         passed via WREG,
3876         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
3877         D.Winkler,
3878         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
3879         SIGSEGV when accessing a NULL register stucture,
3880         * (pic16_printGPointerType): modified to handle UPPER modifier for
3881         function initializers, changed prototype of function to simpler one,
3882         * (pic16_printIvalFuncPtr): check to see if function is already
3883         added in externs list,
3884         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
3885         optimized a move from W to SFR with a move to the same register
3886         later after a CALL,
3887         * device/lib/pic16/debug: NEW directory, contains debug features
3888         which are enabled when linking with libdebug.lib, currently command
3889         line option --gstack enables stack pointer tracing for over/under
3890         flow, corresponding sources are in debug/gstack
3891
3892 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
3893
3894         * doc/sdccman.lyx: updated SDCC version,
3895         * (PIC16 port): update list of command line options,
3896         * src/pic16/device.h (structure pic16_options_t): added field gstack
3897         to enable stack overflow tracing on push/pops,
3898         * src/pic16/device.c (statistics structure): added statistics
3899         structure,
3900         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
3901         pic16_dump_int_registers): increase statistics counters for each
3902         * variable which is encountered
3903         * (pic16_dump_usection): emit each .udata variable to its own udata
3904         section,
3905         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
3906         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
3907         parameters via stack, otherwise use old scheme,
3908         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
3909         assembler output file,
3910         * src/pic16/main.c: added command line options --gstack to enable
3911         push/pop tracing for stack overflow,
3912         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
3913         instructions): added size of each instruction,
3914         * (pic16_countInstruction): estimate size of instructions in
3915         the_pFile list, inline assembly blocks are not counted,
3916         * (pic16_FixRegisterBanking): trace previous register usage, when
3917         banksel optimizations is greater than 0, don't emit a redudant
3918         banksel directive,
3919
3920 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
3921
3922         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
3923         * src/pic16/ralloc.c : applied same fix for pic16.
3924         * src/pic/gen.c : tidied it up a little.
3925
3926 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3927
3928         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
3929         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
3930
3931 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3932
3933         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
3934
3935 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3936
3937         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
3938         non-reentrant function __modsint in the interrupt function (thus
3939         corrupting math operations during serial I/O)
3940         * device/lib/ser_ir.c: as above, changed buffersize
3941         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
3942         256.c,d for zeroing
3943         * doc/Makefile: added option -t for rsync
3944
3945 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3946
3947         * src/SDCCast.h (struct ast),
3948         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
3949
3950 2004-10-20 Borut Razem <borut.razem AT siol.net>
3951
3952         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
3953         package
3954
3955 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
3956
3957         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
3958         makefile targets,
3959         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
3960         support functions to replace long sequences of MOVFF's from access
3961         bank registers to stack and vice versa,
3962         * src/pic16/device.h: added new field opt_flags, where optimization
3963         flags can be set to enable certain features,
3964         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
3965         * pBlock, (genFunction, genEndFunction): surroung loop for
3966         saving/loading used registers in stack with PC_INFO pCodes,
3967         INF_LREGS. Code in between can then be optimized by pCode optimizer
3968         to support function calls,
3969         * (genDataPointerSet): fixed bug which loaded float fields in
3970         structures with corrupt data,
3971         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
3972         in a standard way debug info on stderr. Feature used for developing
3973         and debugging only,
3974         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
3975         obsolete chunks of code,
3976         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
3977         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
3978         * pic16/src/pcode.c (pic16_newpCodeInfo,
3979         * (pic16_newpCodeOpLocalRegs),
3980         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
3981         feature,
3982         * (pic16_pCodeConstString): printing of the initial value of a
3983         symbol as a comment is inhibited since parsing was already done by
3984         copyStr and output is corrupt,
3985         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
3986
3987 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3988
3989         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
3990
3991 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
3992
3993         * as/mcs51/lkarea.c: removed old K&R style,
3994           (lnksect): changed check on boundary error,
3995           (lnksect2): changed check on boundary error,
3996           (lnksect2): extend XSTK to end of page if size = 1
3997         * as/mcs51/lkmain.c: removed old K&R style,
3998           (Areas51): create l_IRAM symbol
3999         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
4000         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
4001           model-mcs51-stack-auto, added model-mcs51-xstack-auto
4002         * device/lib/_mullong.c: added version to be compiled with xstack
4003         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
4004         * device/lib/mcs51/crtxclear.asm: clear pdata as well
4005         * device/lib/mcs51/crtxstack.asm: fixed comment
4006         * src/SDCCglue.c: maxInterrupts defaults to 0,
4007           (emitMaps): added pdata,
4008           (createInterruptVect): (re)moved default,
4009           (glue): added pdata,
4010           (glue): moved __start__xstack to XSTK with default size 1
4011         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
4012           and options.float_rent when options.stackAuto is set,
4013           (linkEdit): only write XDATA_NAME if provided on command line
4014         * src/SDCCmem.h,
4015         * src/SDCCmem.c: added pdata
4016         * src/port.h: added pdata_name to PORT
4017         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
4018           (saveRegisters, unsaveRegisters): removed usage of B,
4019           (genMinus): fixed accumulator clash,
4020           (genJumpTab): added comment, this needs another look
4021         * src/mcs51/gen.c: added check for "B in use" paranoia,
4022           added pushB() and popB()
4023         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
4024           chance
4025         * src/avr/main.c,
4026         * src/ds390/main.c,
4027         * src/hc08/main.c,
4028         * src/mcs51/main.c,
4029         * src/pic/main.c,
4030         * src/pic16/main.c,
4031         * src/xa51/main.c,
4032         * src/z80/main.c: (reset_regparms) made void parameter explicit and
4033           added PSEG (PAG,XDATA) or NULL to port specifier
4034         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
4035         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
4036           (_mcs51_genInitStartup): removed __start__xstack equ,
4037           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
4038         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
4039         * src/z80/gen.c (_rleAppend): fixed warnings
4040         * support/regression/tests/zeropad.c: added pdata test
4041         * .version: bumped to 2.4.6
4042
4043 2004-10-17 Borut Razem <borut.razem AT siol.net>
4044
4045         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
4046         as a part of nightly build
4047
4048 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
4049
4050         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
4051         WREG holds the first byte function parameters,
4052         * (aopForSym): take special case for symbols which are in FARSPACE
4053         but in CODESPACE too,
4054         * (assignResultValue): modified to take into account _G.useWreg,
4055         * (genCall): don't use wreg for parameter passing when function is
4056         declared as reentrant, too, added optimization INCF to stack
4057         pointer when stack parameter count is 1,
4058         * (genFunction, genEndFunction): refurnished and fixed to not using
4059         wreg for passing parameters when function has varargs or is
4060         reentrant, fixed bug with symbol name compare for generating
4061         functions in absolute address,
4062         * (pic16_storeForReturn): refurnished,
4063         * (genCmp): began writing a new version of the function, not ready
4064         yet, therefore it is disabled,
4065         * (genAssign): do not read code memory when assigning a function to
4066         a pointer function,
4067         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
4068         array of characters, not pointer,
4069         * (pic16initialComments): in debug mode emit an .ident directive for
4070         the assembler,
4071         * (_process_pragma): emit a new warning type (internal to pic16)
4072         when setting stack to default length, emit a similar warning when
4073         placing a function at absolute address and address is not word aligned
4074         * (_pic16_parseOptions): added 'return TRUE' statement,
4075         * (_pic16_linkEdit): if compiling a source, then add the source's
4076         file object, first in the list of objects to link,
4077
4078 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
4079
4080         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
4081         * src/pic/main.c : removed VC warning.
4082         * src/pic/gen.c : changed comment.
4083
4084 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
4085
4086         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
4087         reference to a deprecated symbol _GPTRREG was causing failure to
4088         link. Thanks G. M. Gallant for the info.
4089
4090 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
4091
4092         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
4093         comments for Bugs item #954788.
4094
4095 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
4096
4097         * src/pic16/device.c (pic16_dump_gsection,
4098         * pic16_groupRegistersInSection): handle symbols declared to be in
4099         access bank differently,
4100         * src/pic16/gen.c (struct _G): added field resDirect,
4101         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
4102         send values read from stack directly to result and don't allocate
4103         temporary values,
4104         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
4105         same registers,
4106         * (pic16_sameRegsOfs): NEW,
4107         * (freeAsmop): if _G.resDirect is set then do not mark registers as
4108         free because they were not allocated from temporary pool,
4109         * pic16_popRegFromString): workaround to fix a problem with
4110         allocating variables twice or never,
4111         * (genGenPointerGet): using PRODL instead of FSR0H,
4112         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
4113         instead of FSR0H,
4114         * (genAssign): take advantage of the _G.resDirect flag,
4115         * (genCast): around line 11844, use mov2f instead of directly
4116         MOVFF'ing between operands to account for literal values,
4117         * src/pic16/genutils.c: some new debug functions for gpsim have been
4118         added,
4119         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
4120         float with integer part only,
4121         * src/pic16/main.c (_process_pragma): handle pragma udata access to
4122         place variables in access bank
4123         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
4124         updated sources to reflect recent changes in gen.c
4125
4126 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
4127
4128         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
4129         sources that searched for headers in installation path, now the
4130         device/include/pic16 is used,
4131         * src/pic16/glue.c (pic16glue),
4132         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
4133         .line directives if not in debug mode, this suppresses assembler's
4134         warnings for ignored directives
4135
4136 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
4137
4138         * src/port.h: made reset_regparms prototype void parameter explicit.
4139         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
4140         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
4141         * doc/sdccman.lyx: documented warning disabling and how to use
4142           printf_large to make it print floats.
4143         * device/include/stdbool.h: NEW
4144         * device/lib/_atof.c,
4145         * device/lib/_divuint.c,
4146         * device/lib/_divulong.c,
4147         * device/lib/expf.c,
4148         * device/lib/printf_large.c,
4149         * device/lib/sincosf.c,
4150         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
4151         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
4152           a completely reentrant lib.
4153
4154 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
4155
4156         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
4157         * device/include/pic16/stdio.h: fixed bug with colon
4158
4159 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
4160
4161         * device/include/pic16/stdio.h,
4162         * device/include/pic16/stdlib.h,
4163         * device/include/pic16/math.h: NEW
4164         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
4165         declared as _naked to reduce overhead
4166         * device/lib/Makefile.in (target port-specific-objects-pic16):
4167         changed * to *.* so to ignore the CVS directory,
4168         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
4169         stacked variables back in stack,
4170         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
4171         corruption
4172
4173 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
4174
4175         * .version: bumped version number to 2.4.5
4176         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
4177         * support/Util/SDCCerr.c (messages structure): added entry for
4178         W_POSSBUG2
4179
4180         Large cumulative patch for pic16 port and libraries.
4181         * device/include/pic16/sdcc-lib.h,
4182         * device/include/pic16/stdarg.h,
4183         * device/include/asm/pic16/features.h,
4184         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
4185         * device/include/pic16/float.h: changes reentrant keyword with
4186         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
4187         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
4188         updated target build-libraries to include objects from gptr,
4189         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
4190         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
4191         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
4192         all function headings,
4193         * src/SDCCmain.c: added global parameter userIncDirsSet,
4194         * (parseCmdLine): when option -I is encountered add directory to
4195         userIncDirsSet too,
4196         * src/version.awk: added space between control and long,
4197         * src/pic16/NOTES: added some notes for the port,
4198         * src/pic16/gen.c: added prototype for mov2fp function,
4199         * (fReturnpic16[]): properly named return value registers,
4200         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
4201         * (aopForSym): added code to handle symbols with onStack flag set,
4202         symbols onStack are allocated PTRSIZE bytes,
4203         * (aopFreeAsmop): handles special case where asmops are stack objects,
4204         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
4205         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
4206         added argument lock to trace flaws in allocating temporary registers
4207         when developing port,
4208         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
4209         * (pic16_popRegFromString): reenabled allocating a direct register
4210         from string,
4211         * (assignResultValue): various beautifications,
4212         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
4213         referenced function argument,
4214         * (genIpush): reenabled to allow stacked arguments, handles only
4215         ic->parmPush iCodes,
4216         * (genCall, genPcall): major changes to allow for variable argument
4217         functions, fixed a bug with falsely restoring stack pointer after
4218         returning from call,
4219         * (genFunction): pending code for critical function,
4220         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
4221         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
4222         * (genNearPointerGet): fixed bug with indirect reading, was always
4223         reading from INDF0
4224         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
4225         pointers,
4226         * (genAddrOf): rewrote code to take address of a stacked function parameter
4227         * (genCast): fixed casting to generic pointer type,
4228         * src/pic16/gen.h: added AOP_STA,
4229         * (struct asmop): added field stk,
4230         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
4231         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
4232         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
4233         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
4234         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
4235         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
4236         generic pointers,
4237         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
4238         and library paths,
4239         * (pic16_port structure): generic pointer size is set to 3,
4240         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
4241         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
4242         compiler warning,
4243         * src/pic16/ralloc.c (allocReg): prevent allocating register when
4244         operand is an iTemp,
4245
4246 2004-09-24 Martin Helmling <mh AT octo-soft.de>
4247
4248         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
4249         * debugger/mcs51/simi.c: addapt new syntax of s51
4250
4251 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
4252
4253         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
4254         * src/pic16/pcode.c: commented out some calls to free() in order to
4255         fix bug #989576,
4256
4257 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4258
4259         * src/SDCCicode.h,
4260         * src/SDCCicode.c (isiCodeInFunctionCall),
4261         * src/avr/ralloc.c (selectSpil),
4262         * src/pic/ralloc.c (selectSpil),
4263         * src/pic16/ralloc.c (selectSpil),
4264         * src/ds390/ralloc.c (selectSpil),
4265         * src/hc08/ralloc.c (selectSpil),
4266         * src/xa51/ralloc.c (selectSpil),
4267         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
4268         stack in the middle of a function call sequence (fixes bug #1020268)
4269         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
4270         costs associated with the minimum switch case.
4271
4272 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4273
4274         * src/SDCC.lex: fixed bug #1030549
4275
4276 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4277
4278         * src/SDCCcse.h (struct cseDef),
4279         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
4280         over a function call if the CSE is derived from a symbol whose
4281         address has been taken (fixes bug #1029883)
4282         * support/regression/tests/bug-1029883: a new regression test for
4283         this bug
4284
4285 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4286
4287         * src/hc08/gen.c (emitinline): fixed bug #1029778
4288         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
4289         to a cast object is no longer a syntax error ("fixes" bug #1030006,
4290         and starts toward RFE #905167)
4291
4292 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
4293
4294         * src/pic16/gen.c (mov2f): New function to move an operand to
4295         another without considering if it is a literal or a register,
4296         * (pic16_sameRegs): don't check if they are both AOP_REG,
4297         * (AccRsh): removed andmask=0 lines,
4298         * (genLeftShift): duplicated to be improved in future versions,
4299         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
4300         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
4301         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
4302         * (pic16initMnemonics): added initialization for POC_INFSNZW,
4303         * (insertBankSwitch): fixed inserting banksel directives algorithm
4304         for instructions that follow a skip instruction, this fixes a report
4305         for broken subtraction code generation,
4306         * src/pic16/ralloc.c (deassignLRs): do not free register if current
4307         iCode is a left op, just in case result and right share the same
4308         registers
4309
4310 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4311
4312         * src/hc08/main.c,
4313         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
4314         preservation of HX
4315         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
4316         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
4317         on 2004-09-12; it was buggy
4318
4319 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
4320
4321         * src/SDCCsymt.h: removed RESULT_CHECK
4322         * src/SDCCast.c,
4323         * src/SDCCglue.c,
4324         * src/SDCCval.c,
4325         * src/pic/glue.c,
4326         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
4327
4328 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
4329
4330         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
4331         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
4332         configuration values no more rejected by compiler, they are assigned
4333         to configuration registers with a warning message instead,
4334         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
4335         the for-loop so last conf register is emitted too,
4336         * (_pic16_initPaths): link library libsdcc.lib by default,
4337         * (_hasNativeMulFor): modified test for multiplication according to
4338         Raphael Neider's remarks. Integer multiplication is also done with
4339         support functions,
4340         * device/include/pic16/pic18fregs.h: corrected type error in while
4341         testing and including 18f6720 header file
4342
4343 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
4344
4345         * src/pic16/device.h (pic16_options): removed field use_crt,
4346         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
4347         until an optimization to handle single bits is added,
4348         * (pic16_loadFSR0): moved before genUnpackBits,
4349         * (genAnd): some white lines removed,
4350         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
4351         leave_reset flags in pic16_options when using crt modules,
4352
4353 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
4354
4355         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
4356           for bugs 898889 & 979599. Also used some safer print instructions.
4357
4358 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
4359
4360         * src/pic16/device.h (pic16_options_t): added field use_crt,
4361         crt_name, no_crt,
4362         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
4363         catch a probable future bug,
4364         * src/pic16/gen.c: aopIdx function commented out,
4365         * (genAssign): commented out old code which used aopIdx,
4366         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
4367         code, added if conditionals to take into account the --use-crt
4368         command line options,
4369         * src/pic16/main.c (pic16_optionsTable): added new command line
4370         options, --use-crt= and --no-crt,
4371         * (_pic16_linkEdit): now the proper crt object is added in the
4372         linker command line except than when --no-crt is specified,
4373         * src/pic16/pcode.c,
4374         * src/pic16/pcode.h: added some structures and functions for a new
4375         optimization scheme to compansate for instruction overhead between
4376         same iCodes, this scheme is currently under development and is not
4377         working in any way,
4378         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
4379         to && operator,
4380         * device/lib/pic16/startup/crt0i.c,
4381         * device/lib/pic16/startup/crt0iz.c: added global char variable
4382         __uflags to force the generation of an idata section
4383
4384 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
4385
4386         * doc/Makefile,
4387         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
4388         * doc/sdccman.lyx: updated sdcc version to 2.4.4
4389
4390 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4391
4392         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
4393         Frieder) and clarified the default code optimization mode
4394
4395 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4396
4397         * src/SDCC.lex (doPragma, process_pragma),
4398         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
4399         "opt_code_size", and "opt_code_balanced"
4400         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
4401         regrouped options by category, added support for category headers
4402         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
4403         and "--opt-code-size"
4404         * doc/sdccman.lyx: documented these new options and pragmas
4405         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
4406         preference into account
4407
4408 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4409
4410         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
4411           geniCodePreDec): Fixed bug 904237 by generating a warning
4412         * src/SDCCerr.h,
4413         * src/SDCCerr.c: added warning W_SIZEOF_VOID
4414
4415 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
4416
4417         * src/pic/device.c : When no max ram set validate full memory range.
4418         * src/pic/pcode.c,
4419         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
4420
4421 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4422
4423         * device/lib/_gptrget.c,
4424         * device/lib/_gptrput.c: updated comment
4425         * device/lib/calloc.c,
4426         * device/lib/free.c,
4427         * device/lib/malloc.c,
4428         * device/lib/realloc.c: added LGPL, made them reentrant-safe
4429         * src/SDCCcse.c (cseBBlock),
4430         * src/SDCCicode.c (printOperand, geniCodeArray),
4431         * src/SDCCicode.h (struct operand): fixed bug 868103
4432         * support/regression/tests/bug-868103.c: added
4433         * src/SDCCast.c (searchLitOp),
4434         * src/SDCCcse.h (struct cseDef),
4435         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
4436         * src/SDCCicode.h (struct operand),
4437         * src/SDCCsymt.h (struct sym_link),
4438         * src/avr/gen.c (hasInc),
4439         * src/ds390/gen.c (hasInc),
4440         * src/hc08/gen.c (genPlusIncr, hasInc),
4441         * src/mcs51/gen.c (hasInc),
4442         * src/pic16/glue.c (pic16_printIvalChar),
4443         * src/pic16/ralloc.c (regWithIdx),
4444         * src/xa51/gen.c (hasInc) : removed warnings
4445         * src/SDCCast.c (createBlock): added comment ???
4446         * src/hc08/ralloc.c: updated comments
4447
4448 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4449
4450         * doc/sdccman.lyx: updated section on switch statements, added
4451         section about semaphore locking
4452         * doc/Makefile: added option -info for latex2html
4453         * device/lib/_gptrget.c,
4454         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
4455
4456 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4457
4458         * src/pic/device.h,
4459         * src/pic/device.c,
4460         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
4461          maxram is less than 0x100.
4462
4463 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4464
4465         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
4466
4467 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4468
4469         * src/port.h,
4470         * src/mcs51/main.c,
4471         * src/ds390/main.c,
4472         * src/z80/main.c,
4473         * src/hc08/main.c,
4474         * src/pic/main.c,
4475         * src/pic16/main.c,
4476         * src/avr/main.c,
4477         * src/xa51/main.c
4478         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
4479         a jump table is the best form for a switch statement, including
4480         automatic insertion of missing cases to make the case range
4481         continuous. Developed in collaboration with Frieder Ferlemann.
4482
4483 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4484
4485         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
4486         accumulator result if it needs sign extension
4487
4488 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4489
4490         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
4491
4492 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4493
4494         * device/lib/gbz80/printf.c,
4495         * device/lib/z80/printf.c: removed define for NULL
4496
4497 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4498
4499         * as/xa51/xa_link.c,
4500         * device/examples/ds390/ow390/ad26.c,
4501         * device/examples/ds390/ow390/cnt1d.c,
4502         * device/examples/ds390/ow390/counter.c,
4503         * device/examples/ds390/ow390/ds2480.h,
4504         * device/examples/ds390/ow390/ds2480ut.c,
4505         * device/examples/ds390/ow390/findtype.c,
4506         * device/examples/ds390/ow390/gethumd.c,
4507         * device/examples/ds390/ow390/owllu.c,
4508         * device/examples/ds390/ow390/ownetu.c,
4509         * device/examples/ds390/ow390/swt12.c,
4510         * device/examples/ds390/ow390/swtloop.c,
4511         * device/examples/ds390/ow390/temp.c,
4512         * device/examples/ds390/ow390/temp10.c,
4513         * device/examples/ds390/ow390/thermo21.c,
4514         * device/examples/ds390/ow390/tinilnk.c,
4515         * device/examples/ds390/ow390/tstfind.c,
4516         * device/examples/serialcomm/windows/serial.cpp,
4517         * device/examples/serialcomm/windows/test_serialcomm.cpp,
4518         * device/include/reg51.h: fixed line endings for cvs
4519
4520 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4521
4522         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
4523         packRegsForAccUse, packRegisters): new accumulator register
4524         packing algorithm
4525         * support/regression/ports/hc08/support.c (_putchar): suppress
4526         warning of unused variable
4527         * src/SDCCicode.c: added SWAP entry to codeTable
4528
4529 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
4530
4531         * device/lib/sprintf.c: forgot to add this file before previous commit
4532
4533 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
4534
4535         * src/pic16/gen.c (genPackBits): added operand right in function
4536         parameters, load result directly if p_type is POINTER (that is
4537         called by genNearPointerSet)
4538         * (genUnPackBits): added operand left in function parameters,
4539         * (genNearPointerGet, genNearPointerSet): prevent the loading of
4540         FSR0 if accessing bitfields,
4541
4542 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
4543
4544         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
4545           _print_format; updated printf, sprintf, vsprintf
4546         * device/include/asm/default/features.h: corrected comment/define
4547         * device/lib/Makefile.in: added sprintf.c
4548         * device/lib/libsdcc.lib: added sprintf module
4549         * device/lib/printf_large.c,
4550         * device/lib/vprintf.c,
4551         * device/lib/sprintf.c: totally refactored printf_large and vprintf
4552           into these 3 files
4553         * support/regression/Makefile: changed ALL_PORTS into a usefull default
4554         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
4555         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
4556           hc08 test
4557         * support/regression/tests/zeropad.c: define idata as data for hc08
4558
4559 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4560
4561         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
4562         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
4563         labels are referenced at least once (even if a reference is not found)
4564         * src/hc08/gen.c (emitcode): set isComment flag for comments
4565         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
4566         loads), rules 6a..6b (optimize jumps to return)
4567
4568 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4569
4570         * device/lib/acosf.c (acosf),
4571         * device/lib/asinf.c (asinf),
4572         * device/lib/atanf.c (atanf),
4573         * device/lib/ceilf.c (ceilf),
4574         * device/lib/cosf.c (cosf),
4575         * device/lib/coshf.c (coshf),
4576         * device/lib/cotf.c (cotf),
4577         * device/lib/fabsf.c (fabsf),
4578         * device/lib/floorf.c (floorf),
4579         * device/lib/log10f.c (log10f),
4580         * device/lib/logf.c (logf),
4581         * device/lib/sinf.c (sinf),
4582         * device/lib/sinhf.c (sinhf),
4583         * device/lib/sqrtf.c (sqrtf),
4584         * device/lib/tanf.c (tanf),
4585         * device/lib/tanhf.c (tanhf),
4586         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
4587         replaced all instances of "reentrant" in the library functions
4588         defined in math.h with this macro.
4589         * support/regression/tests/float_trans.c: reenabled test for hc08
4590
4591 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
4592
4593         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
4594         erroneously deleted
4595
4596 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4597
4598         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
4599         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
4600         multi-byte volatile operands are used
4601         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
4602         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
4603         initialization to area GSINIT0 so that it would always precede
4604         any static initializers in GSINIT
4605         * support/regression/tests/zeropad.c: fixed idata define for hc08
4606         * support/regression/tests/bug-927659.c,
4607         * support/regression/tests/float_trans.c: disabled tests for hc08
4608         pending missing library routines
4609         * .version: increased version number to 2.4.4 - hc08 port now passes
4610         regression tests
4611
4612
4613 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
4614
4615         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
4616         * Makefile.common.in,
4617         * as/Makefile,
4618         * as/hc08/Makefile.in,
4619         * as/mcs51/Makefile.in,
4620         * as/z80/Makefile.in,
4621         * debugger/mcs51/Makefile.in,
4622         * device/include/Makefile.in,
4623         * device/lib/Makefile.in,
4624         * doc/Makefile,
4625         * link/Makefile,
4626         * link/z80/Makefile.in,
4627         * packihx/Makefile.in,
4628         * sim/ucsim/main_in.mk,
4629         * sim/ucsim/avr.src/Makefile.in,
4630         * sim/ucsim/doc/Makefile.in,
4631         * sim/ucsim/gui.src/serio.src/Makefile.in,
4632         * sim/ucsim/hc08.src/Makefile.in,
4633         * sim/ucsim/s51.src/Makefile.in,
4634         * sim/ucsim/xa.src/Makefile.in,
4635         * sim/ucsim/z80.src/Makefile.in,
4636         * src/Makefile.in,
4637         * support/cpp2/Makefile.in,
4638         * support/librarian/Makefile,
4639         * support/makebin/Makefile: added DESTDIR to the install path proposed
4640         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
4641         * doc/sdccman.lyx: added DESTDIR documentation
4642
4643 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
4644
4645         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
4646         instruction for interrupt handlers, use fast returns when returning
4647         from high priority interrupts
4648
4649 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4650
4651         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
4652         code generation
4653         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
4654         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
4655         bugs, ported much of Bernhard's code from mcs51
4656         * src/mcs51/gen.c (genSend),
4657         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
4658         than one when calling a reentrant function
4659         * device/lib/_mullong.c: defined an alternate struct layout for big
4660         endian ports (hc08)
4661
4662 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4663
4664         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
4665         test
4666
4667 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4668
4669         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
4670         are sane and complete before asking the port its prefered parameter
4671         passing method (fixes bug #1017633)
4672         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
4673         and _ret3
4674
4675 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4676
4677         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
4678         problem in bitfields >= 8 bits.
4679
4680 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4681
4682         * src/SDCCsymt.c: undid changes that were not meant to be committed
4683
4684 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4685
4686         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
4687
4688 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4689
4690         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
4691           copied and wrong bit got inverted
4692
4693 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4694
4695         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
4696         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
4697         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
4698         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
4699         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
4700         assignments to bitfields at known addresses
4701         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
4702         reads from bitfields at known addresses
4703         * src/hc08/ralloc.c (packRegisters),
4704         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
4705         genhc08Code): optimize pointer get values used as conditionals
4706         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
4707         and branch
4708
4709 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4710
4711         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
4712         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
4713         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
4714         as conditionals
4715
4716 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4717
4718         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
4719
4720 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4721
4722         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
4723         related problems
4724
4725 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
4726
4727         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
4728
4729 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4730
4731         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
4732         mcs51 port
4733
4734 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
4735
4736         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
4737
4738 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4739
4740         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
4741         cases use more compact code.
4742
4743 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
4744
4745         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
4746
4747 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4748
4749         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
4750
4751 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4752
4753         * src/SDCCsymt.h,
4754         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
4755         parameter of changePointer() from symbol* to sym_link*
4756         * src/SDCCast.c (decorateType): call changePointer() for CAST op
4757         * src/SDCCsymt.c (compareType): void* type is castable to other
4758         pointers, but not necesarily an exact match.
4759         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
4760         is no longer blindly treated as an exact match.
4761         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
4762
4763 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
4764
4765         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
4766
4767 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
4768
4769         * src/pic/gen.c,
4770         * src/pic/pcode.c,
4771         * src/pic/ralloc.h,
4772         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
4773
4774 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
4775
4776         * src/pic/device.c,
4777         * src/pic/device.h,
4778         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
4779
4780 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4781
4782         * src/mcs51/gen.c (emitcode): fixed bug #992819
4783
4784 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
4785
4786         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
4787           there's no need to make it worse
4788
4789 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4790
4791         * src/mcs51/ralloc.c (deassignLR),
4792         * src/ds390/ralloc.c (deassignLR),
4793         * src/hc08/ralloc.c (deassignLR),
4794         * src/z80/ralloc.c (deassignLR),
4795         * src/pic/ralloc.c (deassignLR),
4796         * src/pic16/ralloc.c (deassignLR),
4797         * src/avr/ralloc.c (deassignLR),
4798         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
4799         rlivePoint): fixed another part of bug #971834
4800
4801 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4802
4803         * src/z80/main.c: enabled "critical" keyword
4804         * src/z80/mappings.i,
4805         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
4806         functions (fixes bug #979646)
4807         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
4808
4809 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4810
4811         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
4812           such as c:\mydir.
4813
4814 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
4815
4816         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
4817           doesn't disable too much optimizations
4818
4819 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4820
4821         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
4822
4823 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
4824
4825         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
4826
4827 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4828
4829         * src/pic/gen.c tidied up tabs
4830         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
4831         * src/pic/main.c tidied up tabs
4832         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
4833         * src/pic/pcoderegs.c tidied up tabs
4834         * src/pic/ralloc.c tidied up tabs
4835
4836 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
4837
4838         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
4839         to S_FIXED for pic16 port and when symbol is not in level 0,
4840         allocate for S_REGISTER storage class and pic16 port, too,
4841         * src/pic16/device.h: prototype for checkSym,
4842         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
4843         * (pic16_assignConfigWordValue): test the value and the mask to
4844         validate that the value is suitable for the configuration word,
4845         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
4846         collect extern declared symbols, don't emit symbol twice, check
4847         first if symbol is in publics set first,
4848         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
4849         * added command line '--fstack' which enables an experimental
4850         feature for stack access, too buggy to be used yet...
4851         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
4852         * (pic16_allocDirReg): when register has storage class S_REGISTER
4853         allocate in pic16_dynAccessRegs,
4854         * device/include/pic16/pic18f????.h: modified configuration word
4855         naming convention, words started as CONFIG0H but should be CONFIG1H
4856
4857 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
4858
4859         * device/include/mcs51reg.h: fixed bug 970993
4860
4861 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
4862
4863         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
4864         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
4865         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
4866         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
4867         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
4868         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
4869           error/warning numbers,
4870           added function setWarningDisabled()
4871         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
4872         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
4873           _memcmp.c _memmove.c calloc.c realloc.c free.c
4874         * support/regression/tests/malloc.c: added tests for new functionality
4875         * support/regression/tests/zeropad.c: added tests for truncated initializers
4876           and initialized char arrays starting with '\x0'
4877         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
4878
4879 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
4880
4881         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
4882
4883 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4884
4885         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
4886         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
4887         peephole 177.e. Thanks to anonymous
4888
4889 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
4890
4891         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
4892         function isn't used in the source but referenced as a
4893         variable initializer then declare it as extern in .asm file
4894
4895 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
4896
4897         * .version: increased version number to 2.4.3
4898
4899         Adding version extension according to ChangeLog CVS revision
4900         * src/Makefile.in (target all): added dependency 'version.h'
4901         * (rule version.h): added rule to create version.h from ChangeLog,
4902         * (rule dep): added dependency version.h,
4903         * src/version.awk: AWK script to create version.h
4904         * src/SDCCdwarf2.c (dwWriteModule),
4905         * src/SDCCglue.c (initialComments),
4906         * src/SDCCmain.c (printVersionInfo): modified to write after
4907         version string the version extension number,
4908         * src/SDCCutil.c: included "version.h"
4909         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
4910         number,
4911         * src/SDCCutil.h: added prototype for getBuildNumber
4912
4913         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
4914         includeDirsSet, too,
4915         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
4916         const char [] is found in function prototype...
4917
4918         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
4919         moving to WREG with source is already in WREG,
4920         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
4921         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
4922         * (aopForSym): stack'ed symbols are partially supported, added
4923         if-clause to support symbols in FARSPACE,
4924         * (sameRegs): added test for AOP_ACC to see if registers are same,
4925         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
4926         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
4927         * (pic16_popRegFromString): will not allocate a new register if it
4928         doesn't find one by name, bug may have introduced...
4929         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
4930         * (genIpush): revived to use pic16 port's stack,
4931         * (genAddrOf): added incomplete case for stack'ed operand,
4932         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
4933         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
4934         can handle multibyte operands,
4935         * src/pic16/glue.c (pic16_printIval*): some debug info added,
4936         * (pic16initialComments): added message for MPLAB compatibility
4937         mode enabled,
4938         * src/pic16/main.h: prototype for pic16_mplab_comp,
4939         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
4940         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
4941         * (_pic16_linkEdit): NEW, handles link stage, transferred here
4942         because of increased complexity of procedure,
4943         * (_process_pragma): stack pragma changed to format 'stack pos len',
4944         emit symbol '_stack_end' to conform with gplink,
4945         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
4946         to search for register,
4947         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
4948         PO_GPR_REGISTER,
4949         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
4950         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
4951         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4952         case for PO_GPR_REGISTER,
4953         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
4954         dies, the new era is ahead !...
4955         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
4956         pic16_dynInternalRegs,
4957         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
4958         * (pic16_allocDirReg): minor optimizations and bug fixes,
4959         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
4960
4961         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
4962         load stack and frame pointer with address of 'stack_end' symbol
4963
4964 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
4965
4966         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
4967         without source code but only variable initializers
4968
4969 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
4970
4971         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
4972         external are not declared as extern to reduce overhead while linking
4973
4974 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
4975
4976         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
4977
4978 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
4979
4980         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
4981           Yee Keat for the patch
4982         * src/SDCCast.c (decorateType): fixed bug #979599
4983         * src/ds390/gen.h: removed local fReturnSizeDS390
4984         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
4985         * src/ds390/gen.c (genAnd, genOr, genXor),
4986         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
4987
4988 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
4989
4990         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
4991         add relFilesSet to $3, manipulate $2 to handle linking of object
4992         files without source files in command line,
4993         * device/include/pic16 (all headers): added ID location macros,
4994         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
4995         entries for ID location bytes,
4996         * (pic16_assignIdByteValue): NEW,
4997         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
4998         added field dumpcalltree to pic16_options_t,
4999         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
5000         is used instead of pic16_Gstack_base_addr, check if (ifx) before
5001         emitting rFalseIfx label after check_carry label,
5002         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
5003         pic16_emitDIRegs), NEW
5004         * (pic16glue): dump .calltree file when option --calltree found,
5005         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
5006         * (_pic16_genAssemblerPreamble): emit ID locations after
5007         configuration registers,
5008         * (pic16_linkCmd): modifications of the link command,
5009         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
5010         * (pic16_pCodeInitRegisters): don't init stack registers,
5011         * (pic16_findPrevInstruction): fixed bug,
5012         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
5013         bug with immediate registers,
5014         * (buildCallTree): traces stack push and pop,
5015         * (pct2): dump also stack usage for each function,
5016         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
5017         * (pic16_allocDirReg): various modifications,
5018         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
5019         fixed to 1,
5020
5021 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
5022
5023         * src/pic16/pcode.c: removed buggy double colon
5024
5025 2004-07-01 Borut Razem <borut.razem AT siol.net>
5026
5027         * support/scripts/sdcc.nsi: added include/pic16 to setup
5028
5029 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
5030
5031         * device/lib/Makefile.in: fixed bug in target objects-pic16,
5032         * device/lib/pic16/Makefile: prefixed with dash (-) command under
5033         target 'clean',
5034         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
5035         specific command line arguments. Also added sample lkr script
5036         for placing a variable at a specific memory bank.
5037         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
5038         at a specific memory bank,
5039         * (pic16_dump_isection): fixed bug which caused string literals to
5040         be omitted when dumping idata section,
5041         * (pic16_groupRegistersInSection): added code to handle registers
5042         in specific memory banks,
5043         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
5044         public, all references are renamed too,
5045         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
5046         AOP_DPTR2,
5047         * (pic16_storeForReturn): added case to handle when dest is WREG,
5048         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
5049         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
5050         pic16_rel_udata, check to see if that register is marked as being
5051         a member of a specific memory bank,
5052         * (pic16_printIvalCharPtr): added code to add string literals either
5053         to code or the idata sections,
5054         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
5055         also accept the 'udata' pragma,
5056         * src/pic16/main.h: new structure types sectName and sectSym
5057         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
5058         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
5059         * (pic16_findPrevInstruction): fixed, it returned nothing,
5060         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
5061         instruction combinations,
5062         * (pic16_FixRegisterBanking): heavily reorganised,
5063         * (pic16_AnalyzeBanking): if generating banksel directives is
5064         disabled, then don't call FixRegisterBanking at all,
5065         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
5066         completely removed,
5067         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
5068
5069 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
5070
5071         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
5072         Phuah Yee Keat <yk.phuah AT nestac.com>
5073
5074 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5075
5076         * src/pic16/glue.c (pic16createInterruptVect): function now emits
5077         correctly the IVT even if it is relocated to some other location
5078
5079 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5080
5081         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
5082         * device/include/pic16/pic18f2220.h: NEW,
5083         * device/lib/pic16/libdev/pic18f2220.c: NEW,
5084         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
5085         * src/pic16/device.c (struct Pics16): added info for 18f2220,
5086         * src/pic16/device.h (struct pic16_options): added ivt_loc and
5087         nodefaultlibs, ivt_loc is the location of the interrupt vector
5088         table, and nodefaultlibs signs that default libraries should not be
5089         linked in link stage,
5090         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
5091         according to --ivt-loc argument,
5092         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
5093         when pragma stack is found,
5094
5095 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5096
5097         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
5098         256 (range check), 257 (do while), 258.a-f (bit banging
5099         f.e. on 3-wire SPI bus)
5100
5101 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5102
5103         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
5104         variables used exclusively within a loop
5105
5106 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
5107
5108         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
5109
5110 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5111
5112         * src/SDCClrange.c (computeClash): fixed bug #971834
5113
5114 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5115
5116         * src/mcs51/gen.c (genCmp): fixed bug #975903
5117         * src/hc08/gen.c (operandsEqu),
5118         * src/ds390/gen.c (operandsEqu),
5119         * src/z80/gen.c (operandsEqu),
5120         * src/pic/gen.c (operandsEqu),
5121         * src/pic16/gen.c (operandsEqu),
5122         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
5123         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
5124
5125 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5126
5127         * src/SDCCcse.c (cseBBlock): fixed bug #966963
5128
5129 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
5130
5131         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
5132         default case in switch statement,
5133         * glue.c (pic16_initPointer): expr is initialised via decoarteType
5134         to eliminate problem with initialisation of pointers, but problem
5135         still exists,
5136         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
5137         * (emitStaticSegment): removed various lines emitting debug info,
5138         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
5139         added processor registers for utilizing EEPROM,
5140         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
5141         configurable and set 8
5142
5143 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
5144
5145         * .version: increased version number to 2.4.2,
5146
5147         Cumulative patch for pic16 port
5148         * src/pic16/device.c: changed scheme to dump initial values for
5149         variables in idata segment, all print_idata* functions were removed,
5150         now the pic16_printIval* will be called,
5151         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
5152         * _pic16_printPointerType, pic16_printPointerType,
5153         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
5154         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
5155         NEW, similar to the respective functions in SDCCglue.c,
5156         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
5157         way, emitting hex bytes,
5158         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
5159
5160 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5161
5162         * src/avr/ralloc.c (serialRegAssign),
5163         * src/xa51/ralloc.c (serialRegAssign),
5164         * src/pic/ralloc.c (serialRegAssign),
5165         * src/pic16/ralloc.c (serialRegAssign),
5166         * src/hc08/ralloc.c (serialRegAssign),
5167         * src/z80/ralloc.c (serialRegAssign),
5168         * src/ds390/ralloc.c (serialRegAssign),
5169         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
5170
5171 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5172
5173         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
5174         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
5175
5176 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
5177
5178         Cumulative patch for pic16 port:
5179         * src/pic16/device.h (typedef PIC16_device) modified fields for
5180         defining microcontrollers,
5181         * src/pic16/device.c: added new info for all devices in Pics16 array,
5182         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
5183         to be optimised out by the pCode optimiser,
5184         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
5185         specially, bug reported by G.M. Gallant,
5186         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
5187         as force'd so that cannot be optimised out by pCode optimiser,
5188         * src/pic16/pcode.c,
5189         * src/pic16/pcodepeeph.c,
5190         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
5191         they are disabled by default, but can be enabled explicit with
5192         command argument --denable-peeps, for testing,
5193         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
5194         --pomit-ivt in COMPILE_FLAGS
5195
5196 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5197
5198         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
5199           compilation on MSVC
5200
5201 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5202
5203         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
5204
5205 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5206
5207         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
5208         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
5209
5210 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
5211
5212         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
5213         would only assign 0x300001 register.
5214
5215 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
5216
5217         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
5218         in COMPILE_FLAGS. Thanks to G. Gallant for report.
5219
5220 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5221
5222         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
5223         for ds80c400
5224         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
5225         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
5226         added peephole 254 (left shift), 255 (jump table)
5227
5228 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
5229
5230         * device/lib/Makefile.in: removed comment line with model-pic16,
5231         * (target port-specific-objects-pic16): the libraries and objects
5232         are copied to the build directory form the device/lib/pic16/bin
5233         directory
5234
5235         Cumulative patch concerning pic16 port:
5236         * library directory has been re-organized,
5237         * added support for PIC18F1220,
5238         * added headers and library sources for chips 18f1220,18f6520,
5239         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
5240
5241         * configuration registers setting has changed, now each supported
5242         device has a complete description of the registers it uses,
5243         * all initialisations are moved to idata sections, these section
5244         can be absolute or relocatable,
5245         * fixed initialisation of codespace variables,
5246         * fixed warning about PCLATU and gpsim,
5247         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
5248         * (genAssign): use table reads when assigning from variables in codespace,
5249         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
5250         char/int variables placed in codespace,
5251         * (pic16_emitConfigRegs): NEW, emits a list with configuration
5252         registers set in .asm file, no need for --pomit-config-words anymore,
5253         * (pic16glue): some 8051 legacy segments are commented out
5254         (to be removed completely),
5255         * added support for alternative assembler and linker with --asm=
5256         and --link= command line arguments,
5257         * peepholes are disabled automatically in the port, no need to
5258         specify on command line,
5259         * port supports natively char/int/long multiplication, but converts
5260         all divisions to support functions,
5261         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
5262         to the file set in variable $2,
5263         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
5264         strings in ASCII format and not in hex,
5265         * ralloc.c (serialRegAssign): added a triplet of conditional calls
5266         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
5267         allocate proper register if iCodes aren't temporary,
5268
5269 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
5270
5271         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
5272
5273 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
5274
5275         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
5276         is commented out
5277
5278 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5279
5280         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
5281         computed address is reused
5282         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
5283         multi-byte bitfields
5284
5285 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5286
5287         * src/z80/gen.c: (genArrayInit): must check for pointers too
5288
5289 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5290
5291         * support/regression/tests/zeropad.c: never meant to commit the
5292           nestedstruct test: removed, added check for GCC version
5293
5294 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
5295
5296         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
5297         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
5298         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
5299           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
5300           bugs 928906 and 954082 half-empty initializers
5301         * src/SDCCsymt.h,
5302         * src/SDCCsymt.c (getAllocSize): added for above fix
5303         * src/z80/gen.c (genArrayInit): fixed bug 741044
5304         * support/regression/tests/zeropad.c: added tests
5305
5306 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
5307
5308         * src/pic16/device.c (pic16_dump_section): corrected bug which
5309         caused some symbols of the libraries to be misplaced
5310
5311 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
5312
5313         * src/pic16/glue.c,
5314         * src/pic16/ralloc.h,
5315         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
5316         to fix conflict with pic port
5317
5318 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
5319
5320         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
5321         externs configuration variables,
5322         * src/pic16/ralloc.h,
5323         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
5324         prototype in header, commented out some debug messages
5325
5326 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
5327
5328         * src/pic16/glue.c,
5329         * src/pic16/main.c,
5330         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
5331         for gpasm COFF object generation. Thanks to D. Hawkins for
5332         his patch info
5333
5334 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5335
5336         * src/ds390/main.c,
5337         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
5338         Brock for spotting this)
5339         * src/ds390/gen.c (genEndFunction),
5340         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
5341         interrupt handler and critical. Disable push/pop optimizations when
5342         peephole optimizations disabled.
5343
5344 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
5345
5346         Updated pic16 library sources and headers.
5347         * device/lib/pic16/pic18f*/ ,
5348         * device/include/pic16/*.h: modified to handle structured SFR
5349         definitions
5350
5351 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
5352
5353         * src/port.h (PORT structure): added hook initPaths, now each
5354         port can declare its own default search paths,
5355         which can been seen with the --print-search-dirs option,
5356         see pic16 port for example,
5357         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
5358         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
5359         * (doPrintSearchDirs): NEW, replaces in a central manner the
5360         printing of search dirs which was split in set*Paths functions,
5361         * (main): added call to port->initPaths and doPrintSearchDirs,
5362         * src/avr/main.c,
5363         * src/ds390/main.c,
5364         * src/hc08/main.c,
5365         * src/izt/i186.c,
5366         * src/izt/tlcs900h.c,
5367         * src/mcs51/main.c,
5368         * src/pic/main.c,
5369         * src/pic16/main.c: modified port structures to reflect addition of
5370         initPaths hook,
5371
5372         * src/pic16/device.c (regCompare): registers are finally sorted by name,
5373         * (pic16_dump_section): for registers in same address reserve memory once,
5374         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
5375         to no_banksel,
5376         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
5377         result is greater in size than right or left,
5378         * (pic16_genUMult8X8_8): there are some cases where the result can
5379         be 16 bits size, so handle these,
5380         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
5381         * (pic16_outBitC): modified to emit pcodes,
5382         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
5383         or not,
5384         * (genDivOneByte): implemented algorithm to divide 8-bits,
5385         * (genCmp): uncommented goto, but issues still exist,
5386         * (genAnd): fixed a bug with variables >8bits,
5387         * (genPackBits): optimization added that uses BCF/BSF to change a
5388         single bit,
5389         * (genAssign): fixed bug when assigning floating point literals,
5390         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
5391         __sdcc_gsinit_startup label,
5392         * src/pic16/main.c (_pic16_init): removed search directory
5393         initialisations,
5394         * (_pic16_initPaths): NEW, used to initialise search directories,
5395         * (_hasNativeMulFor): support functions for all except char/int
5396         multiplication, and char division,
5397         * (PIC16_port struct): modified entry for native mul support,
5398         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
5399         no_banksel option,
5400         * (buildCallTree): call to register_usage is ifdef'ed out,
5401
5402 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5403
5404         * device/include/string.h: applied Stas Sergeev's patch to make this
5405         header file compatible with the preprocessor -Wundef option
5406         * src/SDCCmain.c (main): abort compilation if preprocessor reports
5407         failure (fixes bug #941458)
5408
5409 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5410
5411         * src/SDCCopt.c (killDeadCode): fixed bug #907733
5412         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
5413         that the variable, not the function, should be static
5414         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
5415         to be consistent with non-literal case
5416
5417 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5418
5419         * src/SDCCast.c (isConformingBody): fixed bug #949967
5420         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
5421         convilong): fixed bug #952086
5422
5423 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5424
5425         * src/SDCCmem.c (allocVariables): fixed bug #955321
5426
5427 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5428
5429         * src/hc08/main.c (_hc08_genAssemblerEnd),
5430         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
5431         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
5432         completely eliminated the use of a temporary file
5433         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
5434         when more than one file linked
5435         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
5436
5437 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5438
5439         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
5440         which fixes bug #543481
5441         * support/regression/tests/bug-751703.c: fixed comments left from a
5442         cut and paste error
5443         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
5444         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
5445         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
5446         scopes
5447         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
5448         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
5449         are now changed to underscores in moduleName
5450
5451 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5452
5453         * as/mcs51/lkmem.c: better fix for bug #954173
5454
5455 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
5456         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5457
5458         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
5459         * device/include/c8051f000.h,
5460         * device/include/c8051f120.h,
5461         * device/include/c8051f300.h,
5462         * device/include/c8051f310.h,
5463         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
5464         PWM16) and detab'ed
5465
5466 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5467
5468         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
5469         and mailing lists, doc'ed --no-peep-comments, removed reference
5470         to knoppix (newest version has no LyX/LaTeX), other minor changes
5471         * src/SDCCglue.c (glue): save 2 bytes stack space with
5472         option --main-return. The ljmp could probably be avoided too
5473
5474 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5475
5476         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
5477
5478 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5479
5480         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
5481         * src/SDCCopt.c (isLocalWithoutDef),
5482         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
5483         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
5484         (credit to Maarten Brock for patch #949363, on which this is based)
5485         * support/regression/tests/bug-751703.c: some test cases of extern used
5486         within inner scopes.
5487
5488 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5489
5490         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
5491         SPEC_STRUCT
5492         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
5493         struct definitions
5494         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
5495         dwWriteLabel): fix to create valid debugger symbols even when
5496         the module name has non-alphanumeric symbols in it
5497         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
5498         when a variable's allocation has been optimized away
5499
5500
5501 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5502
5503         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
5504         * src/hc08/main.c,
5505         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
5506         * src/mcs51/main.c,
5507         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
5508         * src/ds390/main.c,
5509         * src/z80/gen.c (z80_emitDebuggerSymbol),
5510         * src/z80/main.c,
5511         * src/pic/gen.c (pic14_emitDebuggerSymbol),
5512         * src/pic/main.c,
5513         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
5514         * src/pic16/main.c,
5515         * src/avr/gen.c (avr_emitDebuggerSymbol),
5516         * src/avr/main.c,
5517         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
5518         * src/xa51/main.c,
5519         * src/SDCCdebug.c (emitDebuggerSymbol),
5520         * src/SDCCdebug.h,
5521         * src/port.h: added a debugger struct to the port struct. Added a
5522         callback for defining debugger symbols
5523
5524         * src/SDCCast.c (createLabel),
5525         * src/SDCC.y (labeled_statement): mark all compiler generated labels
5526         with isitmp = 1
5527         * src/SDCCicode.h,
5528         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
5529         iCode back to the ast for the function
5530
5531         * src/hc08/ralloc.c (hc08_assignRegisters),
5532         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
5533         unneeded fields from the regs struct.
5534         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
5535         pushReg() & pullReg() functions instead of emitcode()
5536
5537         * src/hc08/gen.c (genLabel, genhc08Code),
5538         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
5539
5540         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
5541         debugger hooks
5542
5543         * src/hc08/gen.c (genEndFunction, genhc08Code),
5544         * src/hc08/gen.h,
5545         * src/mcs51/gen.c (genEndFunction, gen51Code),
5546         * src/mcs51/gen.h,
5547         * src/ds390/gen.c (genEndFunction, gen390Code),
5548         * src/ds390/gen.h,
5549         * src/z80/gen.c (genEndFunction, genZ80Code),
5550         * src/z80/gen.h,
5551         * src/z80/z80.h,
5552         * src/pic/gen.c (genEndFunction, genpic14Code),
5553         * src/pic/gen.h,
5554         * src/pic16/gen.c (genEndFunction, genpic16Code),
5555         * src/pic16/gen.h,
5556         * src/avr/gen.c (genEndFunction, genAVRCode),
5557         * src/avr/gen.h,
5558         * src/xa51/gen.c (genEndFunction, genXA51Code),
5559         * src/xa51/gen.h,
5560         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
5561         specific code to cdbFile.c and out of the backend code generators
5562
5563         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
5564         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
5565         starting address is now 0
5566
5567         * as/hc08/asm.h,
5568         * as/hc08/m08pst.c,
5569         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
5570         assembler directive for DWARF support
5571         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
5572
5573         * src/src.dsp,
5574         * src/Makefile.in,
5575         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
5576
5577 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5578
5579         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
5580         and inappropriate peephole optimization in jump tables
5581
5582 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5583
5584         * as/hc08/m08pst.c,
5585         * src/SDCCglue.c: sdccopt works for the hc08 port now
5586
5587 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
5588
5589         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
5590
5591 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5592
5593         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
5594
5595 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5596
5597         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
5598         rules
5599         * src/SDCCmain.c,
5600         * src/SDCCglobl.h,
5601         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
5602         comments from the peephole optimizer replacement rules
5603         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
5604         symbols
5605         * src/SDCCcse.c (updateSpillLocation),
5606         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
5607         equivalents
5608         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
5609         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
5610         objects far pointers
5611
5612 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5613
5614         * src/SDCCsymt.h: a missing part of my last change
5615         * src/pic/ralloc.c (regTypeNum),
5616         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
5617
5618 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5619
5620         * src/SDCCicode.h,
5621         * src/SDCCicode.c (aggrToPtrDclType),
5622         * src/SDCCptropt.h,
5623         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
5624         ptrPseudoSymConvert),
5625         * src/pic/ralloc.c (regTypeNum),
5626         * src/pic16/ralloc.c (regTypeNum),
5627         * src/hc08/ralloc.c (regTypeNum),
5628         * src/ds390/ralloc.c (regTypeNum),
5629         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
5630         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
5631
5632 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5633
5634         * link/z80/lkmain.c (afile),
5635         * as/hc08/lkmain.c (afile),
5636         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
5637         prevent a pointer problem when a filename has no directory and
5638         no extension specified.
5639
5640 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5641
5642         * link/z80/lkmain.c (afile): allow periods in directory names
5643         * link/z80/lkmain.c (afile),
5644         * as/mcs51/lkmain.c (afile),
5645         * as/hc08/lkmain.c (afile): allow linker script file to have an
5646         extension other than ".lnk"
5647         * link/z80/lklex.c (getfid),
5648         * link/z80/lkmain.c (parse),
5649         * as/mcs51/lklex.c (getfid),
5650         * as/mcs51/lkmain.c (parse),
5651         * as/hc08/lklex.c (getfid),
5652         * as/hc08/lkmain.c (parse): Support comments in the linker script
5653         file on lines by themselves and after filenames
5654
5655 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5656
5657         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
5658
5659 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5660
5661         * src/z80/peeph-z80.def: removed some peephole rules that don't
5662         work with multibyte arithmetic (fixed bug #937126)
5663         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
5664         to registers and not global variables
5665         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
5666         geniCodePreInc, geniCodePostDec, geniCodePreDec,
5667         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
5668         checking for assignments not internally generated (fixed bug #931895)
5669         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
5670         structure member (fixed bug #930072)
5671
5672 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5673
5674         * src/SDCCmain.c (linkEdit),
5675         * src/hc08/main.c (_hc08_parseOptions),
5676         * as/hc08/Makefile.in,
5677         * as/hc08/aslink.h,
5678         * as/hc08/asm.h,
5679         * as/hc08/m08pst.c,
5680         * as/hc08/lkrloc.c (relr, rele),
5681         * as/hc08/lkarea.c (lnkarea)
5682         * as/hc08/lkmain.c (afile, parse),
5683         * as/hc08/lkelf.c: support for ELF output
5684         * as/hc08/lks19.c (s19),
5685         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
5686
5687 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5688
5689         * as/mcs51/lkihx.c: Fixed bug #899105.
5690
5691 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5692
5693         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
5694         .dsp files from Unix to DOS.
5695
5696 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5697
5698         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
5699         function pointers; we have been compliant for several months now.
5700         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
5701         change that was accidently commented out
5702         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
5703         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
5704         bug #922319
5705
5706 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5707
5708         * src/hc08/gen.c: output of all of the internal debugging information
5709         is now controlled by the D() macro; it is disabled by default
5710
5711 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5712
5713         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
5714         harder to keep the same registers during a CAST iCode
5715         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
5716         long via int can be done in a single cast, if the signedness is
5717         correct.
5718         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
5719         putchar() in tinibios.c in ds390's library
5720
5721 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
5722
5723         * src/SDCCast.c (decorateType): fixed bug #898889,
5724         cast result of a literal complement too
5725         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
5726         fixed check for bitfields
5727
5728 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
5729
5730         * src/SDCCicode.c (geniCodeLogic): made it static,
5731         (geniCodeLogicAndOr): added in order to fix bug #905492,
5732         (ast2iCode): fixed bug #905492
5733         * support/regression/tests/bug-905492.c: added
5734         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
5735         (processParms): fixed bug #927659: don't copy parms, this will clear
5736         decorated flag
5737         * support/regression/tests/bug-927659.c: added
5738
5739 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
5740
5741         * src/SDCCast.c (addCast): don't cast float to char
5742         * device/lib/libsdcc.lib: added _memmove
5743
5744 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
5745
5746         * device/lib/large/Makefile: fixed parallel execution by
5747         replacing `make` by `$(MAKE)`
5748
5749 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5750
5751         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
5752         offsets (fixes bug #923936)
5753
5754 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
5755
5756         * device/lib/small/Makefile: fixed parallel execution by
5757         replacing `make` by `$(MAKE)`
5758
5759 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
5760
5761         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
5762
5763 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
5764
5765         * src/pic/gen.c (genCpl): multi-byte complements were not working.
5766         * src/regression/Makefile: Regression test was not running.
5767
5768 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
5769
5770         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
5771         complement if possible
5772         * src/SDCCval.c (valComplement),
5773         * src/SDCCicode.c (operandOperation): fixed complement of literal
5774         * support/regression/tests/onebyte.c (testComplement): added
5775
5776 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
5777
5778         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
5779         return an optimized tree; actually replace actParm with the new tree
5780         * src/SDCCast.h: added some parantheses to remove side effects
5781         * support/regression/tests/bug-920866.c
5782
5783 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
5784         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
5785         Bit operands were not being handled properly in the pic14 port.
5786         (now src/regression/add.c passes again).
5787
5788 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5789
5790         * src/SDCC.y (labeled_statement): case and default no longer require
5791         a following statement (RFE #893037)
5792
5793 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5794
5795         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
5796         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
5797         disabled (fixes bug #916294)
5798         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
5799         "mov a,acc"; patch provided by Lenny Story
5800         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
5801
5802 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5803
5804         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
5805         functions
5806         * src/ds390/gen.c (genFunction, genEndFunction),
5807         * src/ds390/ralloc.c (ds390_assignRegisters),
5808         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
5809         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
5810         pushed if there are parameters passed on the stack. Also, a cleaner
5811         way to decide if r0/r1 should be pushed/popped. (Together they fix
5812         bug #918693)
5813
5814 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5815
5816         * doc/sdccman.lyx,
5817         * device/lib/mcs51/crtpagesfr.asm,
5818         * device/lib/mcs51/crtxinit.asm,
5819         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
5820         to avoid confusion with Si Lab's SFRPAGE register.
5821
5822 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5823
5824         * src/SDCCglue.c (emitMaps): allow public sfr variables
5825         * src/SDCCglue.c (initialComments): include compiler build date
5826         with compiler version and put the timestamp of the generated
5827         assembly file on a serperate line to be less confusing.
5828         * src/port.h: added genInitStartup hook
5829         * src/avr/main.c,
5830         * src/ds390/main.c,
5831         * src/hc08/main.c,
5832         * src/pic/main.c,
5833         * src/pic16/main.c,
5834         * src/xa51/main.c,
5835         * src/z80/main.c: genInitStartup initialize as NULL (default to
5836         historical behaviour)
5837         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
5838         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
5839         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
5840         library instead of hard coding it into the compiler.
5841         * support/regression/ports/mcs51-stack-auto/spec.mk,
5842         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
5843         * device/lib/mcs51/Makefile,
5844         * device/lib/small/Makefile,
5845         * device/lib/large/Makefile,
5846         * device/lib/mcs51/crtpagesfr.asm,
5847         * device/lib/mcs51/crtstart.asm,
5848         * device/lib/mcs51/crtxclear.asm,
5849         * device/lib/mcs51/crtxinit.asm,
5850         * device/lib/mcs51/crtclear.asm,
5851         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
5852         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
5853         and into user configurable files.
5854         * device/lib/clean.mk: clean mcs51 directory too
5855         * support/regression/tests/longlit.c: added static to T1 declaration
5856         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
5857         accesses in the initialization code
5858
5859 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5860
5861         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
5862         OSCTRIMVAL as noted in bug #916008
5863
5864 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5865
5866         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
5867         in loops with multiple exits (reported as incorrect registers
5868         used by Martin Helmling in Sdcc-user list)
5869
5870 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5871
5872         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
5873         made ds390 register extensions look less like error messages
5874
5875 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5876
5877         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
5878         reported by Adam Wozniak in Sdcc-user list
5879
5880 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
5881
5882         * src/SDCCast.c (decorateType): fixed with bug and promotion in
5883         arithmetic optimizations, added debug output
5884
5885 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
5886
5887         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
5888         * sdcc.spec: updated and split sdcc into 3 rpms
5889         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
5890         needed for literals of LEFT_OP and '+'
5891         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
5892         introduced RESULT_TYPE_NOPROM
5893         (geniCodeMultiply): fixed logic for decision if mul is optimized to
5894         left shift
5895         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
5896         limited promotion to int only for '*'
5897         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
5898
5899 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
5900
5901         * src/pic16/gen.c (genSkip),
5902         (genc16bit2lit), (gencjneshort): commented out
5903         (is_LitOp): new helper function, checks operand type
5904         (genCmpEq): rewritten
5905
5906 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
5907
5908         * support/regression/tests/bug-908454.c: added
5909
5910 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
5911
5912         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
5913         * src/SDCCicode.c (usualBinaryConversions): op needs int type
5914         (geniCodeCast): cosmetic, don't preserve bit storage class
5915         (geniCodeLeftShift): added promotion
5916         (geniCodeLogic): fixed regression
5917         * src/SDCCsymt.c (computeTypeOr): accept bits too
5918         (compareType): 2nd part of fix for bug #908454, needed for bitfields
5919
5920 2004-03-07  Borut Razem <borut.razem AT siol.net>
5921
5922         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
5923
5924 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
5925
5926         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
5927         version of pic16_genPackRegisters which does not check if ic is a
5928         CAST operator,
5929         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
5930         function cause string1.c regression test fails
5931
5932 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
5933
5934         * sim/ucsim/configure.in,
5935         * sim/ucsim/configure,
5936         * sim/ucsim/doc/Makefile.in: use docdir
5937         * src/SDCC.y: fixed sbit atrributes
5938         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
5939         * src/SDCCast.c (decorateType): |^& need special promotion handling
5940         * src/SDCCast.h,
5941         * src/SDCCsymt.h: moved definition of RESULT_TYPE
5942         * src/SDCCsymt.h (computeType),
5943         * src/SDCCicode.c: computeType() needs op
5944         * src/SDCCsymt.c (checkTypeSanity),
5945         * doc/sddman.lyx: "plain" bitfields are unsigned
5946         * src/SDCCsymt.c (computeTypeOr): added
5947         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
5948         |^& ops
5949         * src/SDCCval.c (val*): computeType() needs op
5950         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
5951         * support/regression/tests/onebyte.c: added tests for |^&
5952
5953 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
5954
5955         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
5956         for writing icode into asm output.
5957
5958 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
5959
5960         * src/pic16/device.c: added some debug lines enabled
5961         with macro DEBUG_CHECK,
5962         * src/pic16/genarith.c: more debug in genPlus,
5963         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
5964         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
5965         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
5966         * (aopForSym): onStack symbols are re-placed in data memspace,
5967         and onStack flag is cleared,
5968         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
5969         copy temporary pcodeop,
5970         * (genPcall): added warning for not updating PCLATU,
5971         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
5972         always true for pic16 port,
5973         * (genMultOneWord): NEW, supports integer multiplication,
5974         * (genMult): modified to call genMultOneWord,
5975         * (ifxForOp): added warning when return NULL,
5976         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
5977         flag is set before call to operandFromSymbol for implicit
5978         added structures,
5979         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
5980         options.intlong_rent are set by default,
5981         * (_hasNativeMulFor): modified to allow port generation of integer
5982         multiplication,
5983         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
5984         set regtype to REG_SFR for all registers, restricting seting the
5985         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
5986
5987 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5988
5989         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
5990         more than 500 times in the regression tests
5991
5992 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5993
5994         * support/Util/SDCCerr.h,
5995         * support/Util/SDCCerr.c,
5996         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5997         enumerator_list),
5998         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
5999         for symbol conflicts.
6000         * support/valdiags/tests/enum.c,
6001         * support/valdiags/tests/tentdecl.c,
6002         * support/valdiags/tests/struct.c: expect possible error messages
6003         referring to original symbol definitions.
6004         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
6005         * src/SDCCsymt.h,
6006         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
6007
6008 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
6009
6010         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
6011
6012 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
6013
6014         * src/pic16/ralloc.c (newReg): fixed bug #908929
6015
6016 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6017
6018         * src/ds390/gen.c: added missing #include "main.h"
6019
6020 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
6021
6022         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
6023         checking if symbol is already in set,
6024         * src/pic16/device.h: prototype for checkAddSym,
6025         * src/pic16/gen.c: (_G): added entry interruptvector,
6026         * (assignResultValue): removed some commented out lines,
6027         * (genFunction): check for ISR via sym->type, absolute section for
6028         interrupt code is created via a new pBlock, the goto instruction is
6029         placed now correctly at the interrupt vector position, changed all
6030         references from ivec to _G.interruptvector,
6031         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
6032         is the interrupt is a high priority one, same for return from ISR,
6033         * src/pic16/glue.c: changed all calls of addSetHead for publics and
6034         externs to calls of checkAddSym,
6035         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
6036         pic16_pcode_verbose flag is set,
6037         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
6038         * src/pic16/pcoderegs.c: message about how many registers are saved
6039         will only be emitted if pic16_pcode_verbose flag is set,
6040
6041 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6042
6043         * src/ds390/ralloc.h,
6044         * src/ds390/ralloc.c (ds390_regWithIdx),
6045         * src/ds390/gen.c (emitcode),
6046         * src/ds390/main.h,
6047         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
6048         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6049         ds390operandCompare, getRegsRead, getRegsWritten,
6050         initializeAsmLineNode): customized instruction size calculation for
6051         ds390, started basis for some register optimizations
6052         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
6053         corresponding assembly output
6054         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
6055         missing push/pop of r0/r1. Optimized push/pops
6056
6057 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6058
6059         * src/mcs51/main.c (instructionSize): fixed ACALL size
6060         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
6061
6062 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
6063
6064         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
6065         the sorting of rlist with NULL elements
6066         * (print_idataType, print_idata): NEW to create idata sections
6067         * src/pic16/device.h: idataSymSet new variable
6068         * src/pic16/gen.c (genFunction): fixed some bugs in string
6069         comparing, improved the absolute section creation for ISRs,
6070         added FSR0L/FSR0H in registers that are saved in an ISR,
6071         * (genInline): fixed the processing of inline snippets,
6072         now they undergo no process by the peephole optimizer
6073         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
6074         are placed in idataSymSet,
6075         * (pic16emitStaticSeg): extern symbols are added in externs,
6076         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
6077         switching when aboslute variables are placed in access bank memory
6078         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
6079         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
6080         commented out with #if,
6081         * (pic16_packRegisters): reintroduce the check for CAST because some
6082         symbols are not correctly handled,
6083         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
6084         pCodeInstruction instead of pCode,
6085         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
6086         pCodeAsmDir definition,
6087         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
6088         directive, then the argument directive is emitted without the leading
6089         tab, hack for inline labels which must be in the first column,
6090         * (compareLabel,pic16_findNextInstruction),
6091         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
6092         * (insertBankSwitch): modified for the new pCodeAsmDir,
6093
6094 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6095         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
6096
6097         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
6098         instance,
6099         * (pushSide): commented out with #if,
6100         * (assignResultValue): fixed some typos in saving
6101         registers,
6102         * (genPcall): FIXED and sync'ed with genCall,
6103         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
6104         * (genNearPointerGet): fixed to handle some more cases,
6105         implementation scheme via table reads,
6106         * (genConstPointerGet): modified to access code memory correct,
6107         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
6108         and improved to handle some cases
6109         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
6110         instead of "RETLW" for init data
6111         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
6112         not IN_DIRSPACE, work around to reduce bank switching when aboslute
6113         variables are placed in access bank memory (<0x80 and >=0xf80),
6114         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
6115         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
6116         TBLWT_POSTDEC,TBLWT_PREINC
6117         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
6118         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
6119         directives
6120         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
6121         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
6122         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
6123         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
6124
6125 2004-02-29  Borut Razem <borut.razem AT siol.net>
6126
6127         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
6128         support/Util/findme.h, support/Util/system.h: enhance binary relative
6129         search for lib and include by using findProgramPath()
6130
6131 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6132
6133         * src/SDCCpeeph.h,
6134         * src/SDCCpeeph.c (pcDistance),
6135         * src/port.h,
6136         * src/mcs51/ralloc.h,
6137         * src/mcs51/ralloc.c (mcs51_regWithIdx),
6138         * src/mcs51/main.h,
6139         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
6140         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6141         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
6142         size calculation port specific, started basis for some register
6143         optimizations
6144         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
6145         missing push/pop of r0/r1. Optimized push/pops
6146         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
6147         * device/lib/_modsint.c (_modsint),
6148         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
6149         and stack version so regression tests pass
6150
6151 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
6152
6153         * src/Makefile.in (dep): include SLIBOBJS in dependency check
6154         * src/SDCCast.c (decorateType): catch another small optimization
6155         with '?' operator
6156         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
6157         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
6158         modified to finally use computeType() all over SDCC,
6159         see Feature Request #877103
6160         * src/SDCCval.h: cosmetic
6161         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
6162         valCompare(); regression tested in muldiv.c
6163         * support/regression/tests/muldiv.c (testMod): mod sign follows
6164         dividend only
6165
6166 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
6167
6168         * src/SDCCast.c (decorateType): fixed bug #902362
6169         * doc/INSTALL.txt: fixed install instructions for win32
6170
6171 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
6172
6173         * device/include/Makefile.in (install): fixed by replacing spaces
6174         by tabs
6175         * doc/README.txt,
6176         * doc/INSTALL.txt: updated for release
6177         * doc/sdccman.lyx: added warning for --xstack being buggy
6178
6179 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
6180
6181         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
6182         to eliminate build warnings.
6183         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
6184
6185 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
6186            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6187
6188         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
6189         removed -penable-stack, added comment for stack pragma, added
6190         warning for not initializing the stack/frame registers, removed
6191         comment at interrupts section
6192
6193         Stack is made permanent, there is no ability to disable stack usage.
6194         * src/pic16/device.h,
6195         * src/pic16/device.c: removed all references to USE_STACK macro,
6196         * src/pic16/device.c (pic16_dump_section): when no elements in
6197         rlist, free rlist before return,
6198         * (pic16_dump_int_registers): NEW, internal registers are a new set
6199         of general purpose registers reused by each function,
6200         * (checkAddReg): returns 1 if registers is added to set,
6201         * (pic16_groupRegistersInSection): when a registers is of type
6202         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
6203         * src/pic16/device.h: memRange and Assigned Memory are deleted,
6204         SRCASECMP macro is moved here from device.c
6205         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
6206         PO_PCLATU, PO_PRODL, PO_PRODH,
6207         * (pic16_pCodeOpType, genMinus,
6208         changed compares to "a" register, with AOP_ACC,
6209         * (pic16_genPlus): fixed some bugs and indented properly,
6210         * (pic16_addSign): changed size to size+offset in the MOVWF
6211         instruction,
6212         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
6213         multiply 8-bit operand by literal, result is 8-bit,
6214         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
6215         multiply 2 8-bit operand, result is 8-bit,
6216         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
6217         genUMult8X*_16,
6218         * src/pic16/gen.c: changed accUse to contain WREG only,
6219         * (pic16_emitcomment): renamed to pic16_emitpcomment,
6220         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
6221         true, do not use immediate addressing any more unless sym is a
6222         pointer in codespace,
6223         * (aopForRemat): do not use immediate addressing when symbol not in
6224         codespace and when symbol's address is requested,
6225         * (aopOp): for-loop in if(sym->accUse) is modified for the new
6226         accUse size (= 1),
6227         * (aopGet): added case for AOP_ACC and don't return "accumulator
6228         bug" but WREG instead,
6229         * (popGetTempReg): pushes contents of temporary register in stack,
6230         * (popReleaseTempReg): pops contents of temporary register from
6231         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
6232         * (pic16_popGet): separated case AOP_ACC to return register WREG
6233         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
6234         or PO_IMMEDIATE and initializes their instance/offset appropriately,
6235         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
6236         the use of immediate pointers to certain cases only.
6237
6238         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
6239         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
6240         * (assignResultValue, genCall, genRet): modified to use the new
6241         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
6242         genPcall is still broken,
6243         * (genFunction): added code to create 'A' type pBlocks when
6244         interrupt functions are generated, code not extensively tested yet,
6245         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
6246         * (genEndFunction): modified so ISRs pop stored registers from stack,
6247         * (genMultOneByte): cleanup,
6248         * (AccRsh): added flag andmask, to and result with appropriate mask,
6249         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
6250         * (genDataPointerGet): fixed and reenabled its use,
6251         * (genNearDataPointerGet): bugs fixed,
6252         * (genDataPointerSet): bugs fixed,
6253         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
6254         pic16_DumpSymbol, pic16_DumpOp,
6255         * src/pic16/genutils.h: function prototypes for the above functions,
6256         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
6257         pointers,
6258         * (pic16emitRegularMap): many many many improvements, but needs a
6259         major cleanup,
6260         * src/pic16/main.c: enable_stack in pic16_options is removed,
6261         * (_pic16_parseOptions): removed command line options -penable-stack,
6262         * (_process_pragma): emit stack symbol only when stack pragma is
6263         processed,
6264         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
6265         redirected to FSR0L/FSR0H pair,
6266         * (pic16_get_op, pic16_get_op2): modifications and improvements,
6267         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
6268         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
6269         for immediates,
6270         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
6271         * (dumpPicOptype): NEW,
6272         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
6273         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
6274         with movff instruction,
6275         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
6276         added pic16_int_regs, some packRegsFor* functions are commented out,
6277         because produce errors,
6278         * src/pic16/NOTES: minor modifications
6279
6280 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6281
6282         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
6283         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
6284         --pack-iram.
6285         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
6286         * as/mcs51/lkaomf51.c: fixed bug #895763
6287
6288 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
6289
6290         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
6291
6292 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6293
6294         * doc/sdccman.lyx: added details about the HC08 storage classes and
6295         interrupts, fixed the register usage info for z80 & gbz80
6296
6297 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
6298
6299         * doc/sdccman.lyx: added more pic16 port documentation
6300         * device/include/pic16/: added header pic18fregs.h
6301
6302 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
6303
6304         * doc/sdccman.lyx: added Vangelis' contribution
6305
6306 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6307
6308         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
6309         extend to the next CALL or PCALL, not just to the next CALL.
6310
6311 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
6312
6313         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
6314
6315 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6316
6317         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
6318         bug #895752 and a better fix for bug #716790
6319
6320 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6321
6322         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
6323
6324 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6325
6326         * doc/sdccman.lyx: minor changes, minor changed
6327
6328 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
6329
6330         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
6331         which can't handle SDCC_NEWONEBYTEOPS,
6332         (geniCodeMultiply): removed conversion from mult to shift for pic14
6333         and pic16
6334
6335 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6336
6337         * src/hc08/gen.h,
6338         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
6339         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
6340         thus fixing bug #895406
6341
6342 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
6343
6344         * device/lib/_modsint.c,
6345         * device/lib/_modslong.c: sign follows divisor only
6346         * src/hc08/gen.c (genMultOneByte): if result size is 1,
6347         signs or signedness can be ignored
6348         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
6349         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
6350         added optimization for IFX,
6351         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
6352         arguments;
6353         reenabled optimization for IFX, which was removed on 2004-01-11
6354         * src/SDCCast.h: added return type IFX
6355         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
6356         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
6357         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
6358         SDCC_OLDONEBYTEOPS selects the old behaviour
6359         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
6360         changed again and commented promotion rule
6361         * src/SDCCval.c (valDiv): promotion no longer necessary
6362         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
6363         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
6364         rewritten
6365         * support/regression/tests/onebyte.c: added
6366
6367 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
6368
6369         * gen.c (genInline): reverted to old code for assemnling inline
6370         code because of bug reported James Chadd
6371
6372 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
6373
6374         * ralloc.h: missing declarations from previous patch,
6375         seems that patch for ralloc.h was never applied, fixed
6376
6377 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6378            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6379
6380         * pcode.c,
6381         * pcode.h,
6382         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
6383         indirect addressing. Marked FSR0 as deprecated
6384         * gen.c (pointerCode): commented out, not needed now
6385         (pic16_popGet2p): new MOVFF helper function
6386         (genGenPointerGet),
6387         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
6388         (shiftRLong): removed duplicate debugging info
6389
6390 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6391
6392         * src/ds390/gen.c (genNearPointerGet),
6393         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
6394         optimization with bits, but not bitfields.
6395         * src/ds390/ralloc.c (packRegisters),
6396         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
6397
6398 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
6399
6400         * src/SDCCcse.c (algebraicOpts): copy operands before modification
6401
6402 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6403
6404         * src/SDCCsymt.h,
6405         * src/SDCCicode.c (operandFromSymbol),
6406         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
6407         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
6408         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
6409         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
6410         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
6411         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
6412         bug #892038
6413         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
6414         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
6415         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
6416         * src/SDCCsymt.c (newSymbol),
6417         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6418         enumerator_list),
6419         * src/SDCCval.h,
6420         * src/SDCCval.c (newiList): fixed bug #885705
6421
6422 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6423
6424         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
6425         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
6426
6427 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6428
6429         * device/include/c8051f120.h,
6430         * device/include/c8051f300.h,
6431         * device/include/c8051f310.h: added/updated header files for Silicon
6432         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6433         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
6434         in new section Submitting patches
6435
6436 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6437
6438         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
6439         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6440         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6441         genGenPointerSet),
6442         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
6443         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6444         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6445         genGenPointerSet),
6446         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
6447         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6448         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6449         genGenPointerSet),
6450         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
6451         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6452         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6453         genGenPointerSet): fixed bug #892400
6454         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
6455         to eliminate build warnings.
6456         * src/SDCCast.c (processParms),
6457         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
6458         fixed bug 751859
6459         * support/valdiag/valdiag.py: added GCC to the list of defines active
6460         when compiling with gcc
6461
6462 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6463
6464         * support/Util/SDCCerr.h,
6465         * support/Util/SDCCerr.c,
6466         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
6467         with an incomplete type (fixed bug #883734)
6468         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
6469
6470 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6471
6472         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
6473
6474 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6475
6476         * src/SDCCast.c (decorateType),
6477         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
6478         function pointer implementation
6479         * support/regression/tests/funptrs.c: added tests to verify both forms
6480         of function pointers work correctly. Added tests to verify parameters
6481         are passed in the correct order.
6482
6483 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
6484
6485         * device.c (regCompare): registers are sorted by ascending
6486         address and increasing size,
6487         * main.c (_pic16_finaliseOptions): removed the declaration
6488         of compiler macro MCU. Now a macro of the format pic18fxxxx
6489         will be defined from the command line
6490
6491 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6492             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6493
6494         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
6495         PCOP_RLCF was overwritten!
6496         * gen.c (genSkip): commented out calls to pic16_emitcode,
6497         * (genCmpEQ): fixed "long" compares, only high word did get compared,
6498         * (genlshTwo),
6499         * (genRRC): added debugging info,
6500         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
6501         overwritten while shifting,
6502         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
6503         overwritten while shifting,
6504         * (AccLsh),
6505         * (AccRsh),
6506         * (shiftLLeftOrResult),
6507         * (shiftRLeftOrResult),
6508         * (shiftRLong),
6509         * (shiftLLong): Implemented with pic16_emitpcode
6510         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
6511         * (genLeftShift): Fixed bug, operand for shift by variable always
6512         was "and"ed with 0x0f,
6513         * (genLeftShiftLiteral),
6514         * (genrshTwo),
6515         * (genRightShiftLiteral): added debugging info,
6516         * (genrshFour): added comment,
6517         * (genRightShift): determined signedness from operand "left"
6518         instead of "result"
6519
6520 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6521
6522         * src/SDCCicode.c (geniCodeParms),
6523         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
6524         function pointers, fixed function pointer bugs #861242 and #861896
6525
6526 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6527
6528         * device/include/c8051f000.h,
6529         * device/include/c8051f120.h,
6530         * device/include/c8051f300.h: added header files for Silicon
6531         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6532
6533 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
6534
6535         * src/SDCCast.c (processParams): added new type flow and restructured
6536         (gatherAutoInit): added new type flow
6537         (addCast): cosmetic changes
6538         (getLeftResultType): added new type flow for array indices, patch
6539         provided by Stas, see FR #877103
6540         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
6541         array index patch by Stas
6542         * src/SDCCast.h: added prototype getResultTypeFromType()
6543         * src/SDCCval.h,
6544         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
6545         * src/pic/glue.c (pic14emitStaticSeg),
6546         * src/pic16/glue.c (pic16emitStaticSeg),
6547         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
6548         for initialization of symbols
6549         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
6550         * support/Util/SDCCerr.h:
6551         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
6552         * .version: bumped version number to 2.3.8
6553         * device/include/Makefile.in (install),
6554         * doc/Makefile (install): changed to 'rm `find ...`' construct to
6555         avoid warnings
6556
6557 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
6558
6559         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
6560         Slade Rich fixed an optimization bug
6561         * src/pic/pcodepeep.c,
6562         * src/pic/pcoderegs.c
6563         * doc/Makefile (install): added test for directory
6564
6565 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6566
6567         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
6568         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
6569         * src/pic/ralloc.c (getRegPtr, getRegGpr),
6570         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
6571         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
6572         * as/mcs51/asexpr.c (term),
6573         * as/hc08/asexpr.c (term): fixed bug #887146
6574
6575 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6576
6577         * src/z80/gen.c (genMult): handle single byte result product
6578         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
6579         DUMMY_READ_VOLATILE (fixed bug #886367)
6580
6581 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6582
6583         * support/regression/tests/libmullong.c: fixed logic, on little endian
6584         hosts we ended without a mullong_wrapper()
6585
6586 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6587
6588         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
6589         virus/worm forged address usage.
6590
6591 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6592
6593         Fixed promotion, it should be done on AST level:
6594         * src/SDCCast.c (addCast): added promotion to int
6595         (decorateType): updated call to upCast()
6596         * src/SDCCicode.c (geniCodeLeftShift): removed call to
6597         usualUnaryConversions()
6598
6599 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
6600
6601         * support/regression/tests/literalop.c (mulWrapper): Added a
6602         wrapper to remove integer overflow warnings.
6603
6604         * support/regression/tests/float_trans.c: Made work on host.
6605
6606         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
6607         location of sz80.
6608
6609         * support/regression/generate-cases.py (main): Changed from inline
6610         to a main method.
6611
6612         * doc/Makefile (install): Changed to depth first to get rid of
6613         missing directory install warning.
6614
6615         * as/Makefile (install-doc): Made work on Mac.
6616
6617 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
6618
6619         * src/SDCCast.c: added an additional type flow in decorateType() of
6620         opposite direction, see feature request #860006; it's enabled at runtime
6621         by setting the environment variable SDCC_NEWTYPEFLOW
6622         * src/SDCCast.h: changed prototype of decorateType()
6623         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
6624         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
6625         'char' to 'int' can be omitted, if both operands are 'unsigned char';
6626         see feature request #877103
6627         * src/SDCCval.c: updated call of decorateType()
6628         (valBitwise): fixed bug #882876
6629         (valMinus): added promotion
6630         (valLogicAndOr): result is unsigned
6631         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
6632         * src/SDCCsymt.c (computeType),
6633         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
6634         must not cause an unsigned operation
6635         * src/pic/glue (pic14emitRegularMap),
6636         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
6637
6638 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
6639
6640         * src/pic/pcode.c (PCodeID): commented out left over debug code
6641
6642 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
6643
6644         * support/valdiag/tests/overflow.c: added shift tests
6645         * src/pic/device.c,
6646         * src/pic/gen.c,
6647         * src/pic/gen.h,
6648         * src/pic/glue.c,
6649         * src/pic/main.c,
6650         * src/pic/pcode.c,
6651         * src/pic/pcode.h,
6652         * src/pic/pcodepeep.c,
6653         * src/pic/pcoderegs.c,
6654         * src/pic/ralloc.c,
6655         * src/pic/ralloc.h: applied patch from Slade Rich;
6656         added support for multiple code pages and multiple RAM banks on the
6657         PIC 14 port. The ASM files now no longer simply assume all the
6658         code / RAM are in the same page / bank. This means the linker can
6659         safely allocate code/RAM of separate ASM files to different pages/banks.
6660         * doc/sdccman.lyx: added Slade's tips
6661         * src/mcs51/peeph.def: fixed bug #880768
6662
6663 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6664
6665         * src/hc08/ralloc.c (rematStr): fixed bug #879282
6666         * src/SDCCast.c (decorateType): fixed bug #880197
6667
6668 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
6669
6670         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
6671         getopt.h.
6672
6673         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
6674         strtof is not part of C89 and isn't included with Mac OS X.
6675
6676 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6677
6678         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
6679         shiftL2Left2Result): fixed bug #879326
6680         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
6681         (genMultOneByte): fixed bug in signed vs unsigned multiplication
6682         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
6683         address fetch for clr instruction
6684         * device/lib/hc08/_mulint.c: created optimized assembly version
6685         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
6686
6687 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
6688
6689         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
6690         proposed in FR #877103
6691
6692 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
6693
6694         * src/SDCCval.c (cheapestVal): added missing checks
6695         * src/SDCCicode.c (usualBinaryConversions): fixed condition
6696         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
6697
6698 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
6699
6700         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
6701         equal operands
6702
6703 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
6704
6705         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
6706         loaded with the linker search paths (-L arguments) and the libraries
6707         to be linked with the current source (-l arguments). Changes
6708         currently will affect only the pic16 port.
6709         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
6710         include path the port specific paths and port specific libraries,
6711         * gplink command now contains the $3 argument,
6712         * src/pic16/device.h,
6713         * src/pic16/device.c,: structure PIC_device is made public and
6714         renamed to PIC16_device, the same for variable Pics which is renamed
6715         to Pics16. Updated all references to them.
6716         * src/pic16/glue.c (pic16glue): corrected bug with code
6717         initialization which bypassed the variable initializations block.
6718
6719         * device/lib/pic16/Makefile.rules: removed --penable-stack from
6720         COMPILE_FLAGS and added the --nostdinc option
6721
6722 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6723
6724         * device/include/mc68hc908jb8.h: Register defs for another member
6725         of the hc08 family. Contributed by Bjorn Bringert - thanks!
6726
6727 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
6728
6729         Documenting changes from previous commits.
6730         * configure.in (version 1.56),
6731         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
6732         when generating output files to configure the pic16 library,
6733         but now I've commented it out, since gputils aren't installed in the
6734         SF compile farm, so library won't compile
6735
6736         * device/lib/Makefile.in (version 1.56): initially I've added in
6737         target 'all' the prerequestive 'model-pic16' so it compiled the
6738         pic16 library, but now I've commented it out for the same reasons
6739         above,
6740         * added targets 'model-pic16' and 'objects-pic16' to compile the
6741         library
6742         * added target 'port-specific-objects-pic16' to handle the
6743         generated libraries and copy them into the build/ directory
6744         * added target 'clean-intermediate-pic16' to clean intermediate
6745         files into pic16 directory
6746         * in target 'installdirs' added line to create directory pic16 in
6747         the installation path
6748
6749         * device/include/Makefile.in (version 1.11): in target 'install'
6750         added lines to copy all header files to installation path,
6751         * in target 'installdirs' added line create directory for pic16
6752         headers in the installation path
6753
6754 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
6755
6756         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
6757          a function call
6758
6759 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
6760
6761         * configure,
6762         * device/lib/configure.in,
6763         * device/lib/configure: fixed for autoconf 2.57
6764
6765 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6766
6767         * src/z80/main.c (_parseOptions): fixed the portmode= command line
6768         option so that it actually works. Made it specific to the z80, since
6769         the gbz80 doesn't have these kinds of I/O ports.
6770
6771 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6772
6773         * device/include/z180.h,
6774         * device/lib/_memcpy.c,
6775         * device/lib/_memmove.c,
6776         * device/lib/_mulint.c,
6777         * device/lib/ser_ir.c,
6778         * device/lib/ser_ir_cts_rts.c,
6779         * device/lib/_strcmp.c,
6780         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
6781         * src/z80/main.c (_process_pragma): add support for pragmas bank and
6782         portmode; added deprecation warning for bank= and protmode= forms.
6783         Also, guard against buffer overflow.
6784         * src/z80/gen.c (aopGet): generate better code for sfr banked read
6785
6786 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6787
6788         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
6789         changed interrupt vector table generation to only emit declared vectors.
6790         * device/include/Makefile.in: added missing backslash
6791         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
6792
6793 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
6794
6795         Mainly changes to support compilation of the device libraries
6796         * src/pic16/device.c: stack is allocated via symbol and not
6797         via literal number. The symbol is placed in the corresponding
6798         position of the data ram
6799         * (pic16_dump_section): relocatable and absolute uninitialized
6800         data are now emitted in sorted order to reduce section naming,
6801         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
6802         weren't marked as being in the access bank,
6803
6804 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
6805
6806         Added portion of GNU PIC Library under the directory
6807         device/include/pic16 and device/lib/pic16. These files
6808         contain the declarations of SFRs for the PIC18Fxx2 devices.
6809         The directory is initialized via configure from toplevel.
6810
6811 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
6812
6813         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
6814         the spilllocations to be compared correctly
6815
6816 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6817
6818         * src/SDCCast.c (decorateType): fixed bug introduced today
6819
6820 2004-01-12  Borut Razem <borut.razem AT siol.net>
6821
6822         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
6823         doc/sdccman.lyx: upper case pragmas are deprecated
6824
6825 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6826
6827         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
6828         in simpler and even better code
6829
6830 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
6831
6832         * src/SDCCicode.c (operandOperation): fixed bug #874819
6833         * src/SDCCast.c (decorateType): fixed
6834         char foo (unsigned long ul) { return ul > 0; }
6835
6836 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6837
6838         * doc/sdccman.lyx: Moved and added some sections, small changes
6839         all over. Telling LaTeX to be less strict with word spacing
6840         to better keep the right margin. Changed some notes about
6841         maintainance of the ports in section 3.2.1 - is it OK like this?
6842
6843 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
6844
6845         SDCC source changes:
6846         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
6847         convilong): modified to inform the pic16 port that builtin functions
6848         are external
6849
6850         PIC16 PORT specific changes:
6851         * src/pic16/device.c pic16_dump_equates() added,
6852         processor registers declared internally by the port are emitted in
6853         the translation as equates,
6854         * src/pic16/gen.c: inline code is passed unprocessed to the
6855         translation,
6856         * (pic16_popGetLit2): fnuction modified to take second operand as
6857         pCodeOp pointer and not as literal,
6858         * (popRegFromIdx): prefixed with pic16_,
6859         * (pic16_popCombine2): modified to receive already allocated pCode
6860         operands,
6861         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
6862         * (genFunction): initializes local stack frame and pushes on stack
6863         all the registers used by this function,
6864         * (genEndFunction): restores all registers from stack and restores
6865         stack frame,
6866         * src/pic16/glue.c (pic16emitRegularMap): various changes and
6867         improvements,
6868         * (pic16glue): changed the program startup sequence,
6869         * added new dbName code 'A' for functions placed in absolute section
6870         * src/pic16/main.c: added function attribute _naked,
6871         * added pragma 'code' to place a fnuction at an absolute address,
6872         * added command line arguments --debug-ralloc and --pcode-verbose,
6873         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
6874         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
6875         * (pic16_newpCodeOpLit2): modified to take the second operand as
6876         pCodeOp pointer,
6877         * (pic16_printpBlock): modified to emit each function in a separate
6878         section,
6879         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
6880         UPPER for immediate operands,
6881         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
6882         instruction,
6883         * src/pic16/peeph.def: all peepholes with movff are commented out,
6884         because there is a problem in the pcode peep optimizer,
6885         * src/pic16/ralloc.c: the register allocator can now reuse local
6886         function symbols for another function. This saves register usage.
6887         * src/pic16/ralloc.h: added flag isLocal in structure regs,
6888
6889         Added file src/pic16/NOTES with information about program writing on
6890         the current port version.
6891
6892 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6893
6894         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
6895         and peephole 252 (array access)
6896
6897 2004-01-09  Borut Razem <borut.razem AT siol.net>
6898
6899         * src/SDCCmain.c : fixed #872250: -l command line defined library
6900           files are scanned before standard library files
6901
6902 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6903
6904         * src/SDCCast.c (decorateType): fixed bug #874046
6905
6906 2004-01-09  Borut Razem <borut.razem AT siol.net>
6907
6908         * support/scripts/sdcc.nsi: remove previous installation
6909
6910 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6911
6912         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
6913         bytes for last interrupt vector (mcs51)
6914         * sdcc.spec: fixed typo
6915
6916 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6917
6918         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
6919         gen51Code): more efficient parameter receive for --model-large
6920         ("bug" #845294)
6921
6922 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6923
6924         * src/ds390/main.c,
6925         * src/z80/main.c: added missed needLinkerScript flags (more than
6926         one port structure defined in these file)
6927         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
6928         bug #795325
6929
6930 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
6931
6932         * src/SDCCmain.c: removed various references to DEFAULT_PORT
6933         * src/port.h: added flag needLinkerScript in port->linker
6934         structure to inform whether to create a .lnk file or not,
6935         * src/avr/main.c,
6936         * src/ds390/main.c,
6937         * src/hc08/main.c,
6938         * src/mcs51/main.c,
6939         * src/pic/main.c,
6940         * src/pic16/main.c,
6941         * src/xa51/main.c,
6942         * src/z80/main.c: changed appropriately to configure
6943         needLinkerScript flag
6944         * src/pic/gen.c,
6945         * src/pic16/gen.c (genAddrOf): fixed bug #863624
6946         * src/pic/glue.c: added variable udata_section_name to
6947         override default uninitialized data segment definition for
6948         devices only with SHAREBANK memory (reported from Erik Epetrich)
6949         * (pic14emitOverlay): modified to emit a commented overlay segment
6950         directive when no overlay data exist
6951         * (picglue): modified to emit uninitialized data segment
6952         according to udata_section_name
6953         * src/pic/main.c (_pic14_parseOptions): added command line
6954         options --udata-section-name=[name] to override default
6955         udata definition name
6956         * modified _linkCmd and _asmCmd to include compiler passed
6957         arguments via -W option
6958         * src/pic16/main.c: added $l in _asmCmd, changed extension for
6959         object file from '.rel' to '.o' in port->linker structure,
6960         changed size of fptr from 2 to 3 in port structure
6961
6962 2004-01-07  Borut Razem <borut.razem AT siol.net>
6963
6964         * support/scripts/sdcc.nsi: update PATH
6965         * support/scripts/sdcc.ico: craeted
6966
6967 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
6968
6969         * device/include/Makefile.in: fix install
6970         * doc/Makefile: fix install
6971
6972 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6973
6974         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
6975         in bug #860505
6976         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
6977         how the function variable allocation summary is displayed; also
6978         include information about variables allocated to the overlay
6979         segment
6980
6981 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6982
6983         * as/mcs51/lkmain.c: Help about -Y option
6984         * as/mcs51/lkarea.c: Fixed gcc warnings
6985
6986 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6987
6988         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
6989         fixed warning
6990         * support/valdiag/tests/overflow.c: added
6991         * src/SDCCast.c (decorateType),
6992         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
6993         LEFT_OP (left shift)
6994
6995 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6996
6997         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
6998         (default behaviour).
6999
7000 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7001
7002         A python script to validate compiler diagnostic messages. It can be
7003         used to verify that sdcc complains about bad c source code and
7004         gives a good location of the error.
7005         * support/valdiag/Makefile,
7006         * support/valdiag/valdiag.py,
7007         * support/valdiag/tests/*
7008
7009 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7010
7011         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
7012         * src/SDCCsymt.c (newEnumType),
7013         * src/SDCCsymt.h
7014         * support/Util/SDCCerr.c,
7015         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
7016         enum related bugs.
7017         * support/regression/tests/enum.c: added test for enum values that
7018         require at least 2 bytes of storage.
7019
7020 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7021
7022         * src/common.h: added ifndef/define/endif macros
7023         around the header file.
7024         Bug reported from Jesus Calvino-Fraga
7025
7026 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
7027
7028         * sdcc.spec: updated
7029         * device/include/Makefile.in: don't install CVS directories
7030         * device/lib/Makefile.in: added removal of CVS directories after install
7031         * doc/Makefile: fixed install, added local_icons
7032         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
7033         * src/mcs51/gen.c (genRightShift): fixed bug #870788
7034         * src/ds390/gen.c (genRightShift): fixed bug #870788
7035         * src/SDCCast.c (decorateType): fixed bug #870781
7036
7037 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7038
7039         PIC16 port related changes:
7040         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
7041         added variable stackPos,
7042
7043         * gen.c: genCall, assignResultValue: added support for
7044         pushing/retrieving function parameters to/from stack,
7045         genFunction,genEndFunction: setup stack frame for the
7046         generated function,
7047         genAddrOf: will be changed according to bug 863624
7048
7049         * added files genutils.c and genutils.h which contain gen*
7050         debugged and optimised functions extracted from gen.c
7051
7052         * glue.c: added variable 'externs' which holds extern symbols,
7053         pic16emitRegularMap: is modified to properly handle relocatable
7054          symbols under the new scheme,
7055         pic16createInterruptVect: is modified
7056         pic16printPublics: is modified to emit 'global' assembler directives,
7057         added pic16_printExterns to print extern symbols,
7058         pic16glue: initializes stack/frame pointer in the beginning of
7059         the assembly output. Temporary hack, will be corrected later,
7060         because gplink yet does not support stack and SDCC does not
7061         yet support a type of crt0.o object to create the final binary.
7062
7063         * Removed many lines that contain 8051 legacy code.
7064         * The code is finally placed under a 'code' directive.
7065         * Added port specific options.
7066
7067         * _process_pragma: simplified since now we do not need *special*
7068         include file to define SFR registers. But a separate header
7069         will be needed. This will be developed later.
7070         * _pic16_parseOptions: added, parses port specific options:
7071         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
7072         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
7073         --preplace-udata-with=
7074
7075         * _pic16_setDefaultOptions: modified to initialize section names,
7076         but hack is temporarly out of order since it needs improvement.
7077         * _pic16_genAssemblerPreamble: configuration words are emitted by
7078         their address instead of their name. This part is incomplete and
7079         supports only the 18Fxx2 devices. Other devices will emit an error
7080         during assembly since they do not contain the same set of config
7081         registers
7082         * _pic16_genIVT: is modified,
7083
7084         * pcode.c: added definitions for some hardware registers that are needed
7085         for stack support
7086         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
7087         All PCI entries are updated. Now LFSR is supported.
7088         * Removed pic16_pciTRIS is mentioned by mdubuc in source
7089         * added pic16_newpCodeOpLit2 to support instructions with
7090         two literal arguments
7091         * pic16_pCode2str: corrected code that emits assembler instructions
7092         with two literal operands and those that have an access bit modifier
7093         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
7094         this fixes a bug which caused some labels to be lost, when an
7095         assembler directive was added, i.e. banksel,
7096         * pic16_FixRegisterBanking: improved logic that causes the insertion
7097         of bank switching,
7098         * InlineFunction: functions that are called once, are not any more
7099         inlined. This can be a port option in the future,
7100
7101         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
7102
7103         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
7104         hold the corresponding uninitialized symbols,
7105         * pic16_allocProcessorRegister: registers have explicit marked the
7106         accessBank field,
7107         * pic16_allocInternalRegister: registers are explicit marked as
7108         not used,
7109         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
7110         processing list, so bit registers were lost,
7111         *
7112
7113         * ralloc.h: added field 'accessBank' and original symbol operand
7114         in register definition,
7115         * removed the field isMapped from register definition,
7116
7117         ** Several functions have been removed from various sources:
7118         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
7119         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
7120         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
7121         pic16_assignRelocatableRegisters
7122
7123         ** others have been introduced:
7124         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
7125         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
7126
7127 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
7128
7129         * support/scripts/inc2h.pl: changed definition of BIT_AT
7130         to emit 'sbit at' instead of 'bit at'. This was a request.
7131
7132         PIC16 port related preliminary changes:
7133         * gen.c: prefixed function popRegFromString with
7134         pic16_ and all references to it corrected
7135         * pcode.c: all pic16_pc_* hardware registers prefixed
7136         with underscore (_),
7137         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
7138         * ralloc.c: newReg(): when register is REG_SFR then
7139         set address to rIdx,
7140         pic16_allocProcessorRegister(): marks register wasUsed=0
7141         pic16_writeUsedRegs(): added a call to assign processor
7142         registers via pic16_assignFixedRegisters
7143
7144 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7145
7146         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
7147         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
7148         variables in unused register banks.  Also the SSEG is placed
7149         wherever there is enough space for it, and IDATA can be anywhere
7150         in internal RAM.  For now compile using -Wl-Y[stack_size].
7151         The mem file is different for this option as well, since it
7152         makes no sense of talking about DSEG lenght.
7153
7154 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
7155
7156         * src/SDCClrange.c: fixed bug 869095 that caused segfault
7157         in certain cases, e.g. when ROM assignment, patch provided
7158         from Albert den Haan.
7159
7160 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
7161
7162         Many signedness and type propagation fixes:
7163         * src/SDCCicode.c: made geniCodeCast() static
7164         replaced SPEC_ by IS_ (cosmetic)
7165         (operandOperation): fixed div and mod operation
7166         (usualBinaryConversions): added support for promotion of char
7167         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
7168         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
7169         (geniCodeAdd): an array index will stay unsigned, even if promoted
7170         from char to int
7171         (geniCodeArray): ditto
7172         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
7173         * src/SDCCsymt.c (computeType): added more support for char;
7174         promotion of char is selectable by promoteCharToInt, fixed signedness
7175         for all cases
7176         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7177         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7178         * src/SDCCval (val*): replaced signedness calculation by
7179         computeType()
7180         rearranged if-branches (cosmetic)
7181         (valShift): added warning W_SHIFT_CHANGED
7182         (valCompare): fixed problem with different types
7183         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
7184         * support/regression/tests/literalop.c: added many cases
7185         * support/regression/tests/ast_constant_folding.c: changed finally to
7186         'unsigned int'
7187         * .version: new year, new version: 2.3.7
7188         * src/SDCCmain.c (main): applied patch #866468
7189         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
7190         provided by Scott Bronson
7191         * doc/sdccman.lyx: updated documentation for sdcdb
7192         updated and added chapter tips
7193
7194 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7195
7196         * src/SDCCsymt.h: missing from yesterday's commits
7197
7198 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7199
7200         * src/SDCC.y (struct_or_union_specifier),
7201         * support/Util/SDCCerr.c,
7202         * support/Util/SDCCerr.h: verify that struct & union tags are used
7203         as declared.
7204
7205 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7206
7207         * src/SDCCglobl.h: missing from yesterday's commits
7208
7209 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7210
7211         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
7212         sft_attributes, struct_declaration, parameter_declaration,
7213         type_name, start_block, declaration_list),
7214         * src/SDCC.lex (check_type): support redefinition of typedef names
7215
7216 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7217
7218         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
7219         aligned xdata arrays. Erik helped me with the if clause.
7220
7221 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7222
7223         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
7224         warning
7225
7226 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7227
7228         * src/SDCCast.h,
7229         * src/SDCCast.c (newAst_),
7230         * src/SDCCicode.h,
7231         * src/SDCCicode.c (ast2iCode, newiCode),
7232         * src/SDCCglobl.h,
7233         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
7234         expr, statement, expression_statement, selection_statement,
7235         iteration_statement, expr_opt, jump_statement): foundation for tracking
7236         sequence points
7237         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
7238         point code too)
7239
7240 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7241
7242         * support/Util/SDCCerr.c,
7243         * src/SDCCast.h,
7244         * src/SDCCast.c (createCase, createDefault, decorateType),
7245         * src/SDCClabel.c (labelUnreach),
7246         * src/SDCC.y (labeled_statement, jump_statement): More improvements
7247         to error messages.
7248         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
7249         (with thanks to Stas Sergeev)
7250         * device/include/time.h,
7251         * device/lib/time.c (CheckTime): suppress unreachable code warning
7252
7253 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7254
7255         * src/SDCCast.c (createIvalCharPtr),
7256         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
7257         bug #753752)
7258         * support/regression/tests/nullstring.c: tests for these two bugs
7259
7260 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7261
7262         * support/Util/SDCCerr.h,
7263         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
7264         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
7265         about storage class and 'at' used inside struct or union
7266         * src/SDCCBBlock.c (iCodeFromeBBlock),
7267         * src/SDCCcse.c (ifxOptimize),
7268         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
7269         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
7270         printIval, emitStaticSeg, emitOverlay),
7271         * src/SDCClabel.c (deleteIfx),
7272         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
7273         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
7274         gatherAutoInit, processParms),
7275         * support/Util/SDCCerr.h,
7276         * support/Util/SDCCerr.c (werrorfl): Support for better error location
7277         reporting for post-parse errors.
7278
7279 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7280
7281         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
7282         implicit casts via union; they don't work on big endian systems
7283         (possible fix for bug #861138)
7284
7285 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7286
7287         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
7288         * src/mcs51/main.c: fixed the fix for bug #737001
7289
7290 2003-12-15  Borut Razem <borut.razem AT siol.net>
7291
7292         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
7293
7294 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7295
7296         * support/makebin/makebin.c: put output in binary mode
7297
7298 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7299
7300         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
7301         xdata and data memory on startup. Set the environment variable
7302         SDCC_NOGENRAMCLEAR to disable this.
7303         * src/mcs51/peephole.def,
7304         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
7305         (allows non-interrupt and interrupt code to safely compete for a resource
7306         without the non-interrupt code having to disable interrupts)
7307
7308 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7309
7310         * src/SDCCicode.c (geniCodeAdd),
7311         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
7312         with valFromType if type might be a pointer and host is big endian).
7313         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
7314         types, not just integer types.
7315         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
7316         multiply defined with mismatching "at" address.
7317
7318 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7319
7320         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
7321         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
7322         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
7323         with embedded nulls (fixed bug #753752)
7324
7325 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7326
7327         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
7328         Apparently this did not see much testing (endless loop)
7329
7330 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7331
7332         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
7333
7334 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7335
7336         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
7337         gracefully handle NULL memmap pointers
7338
7339 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7340
7341         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
7342         instead of deleting the iCode when an operand is volatile
7343         * src/z80/gen.c (genDummyRead),
7344         * src/mcs51/gen.c (genDummyRead),
7345         * src/ds390/gen.c (genDummyRead),
7346         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
7347         not just IC_RIGHT
7348         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
7349         * src/SDCC.y: fixed bug #850420
7350
7351 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7352
7353         Applied z80 i/o port patch from Peter Townson and fixed some operators
7354         to better handle operands in A register.
7355         * device/include/z180.h
7356         * src/SDCC.y
7357         * src/SDCCglue.c
7358         * src/z80/gen.c
7359         * src/z80/gen.h
7360         * src/z80/main.c
7361         * src/z80/peeph-z80.def
7362         * src/z80/peeph.def
7363         * src/z80/z80.h
7364
7365 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7366
7367         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
7368
7369 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7370
7371         * device/lib/hc08/_mullong.c: Removed extra #endif
7372
7373 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7374
7375         * sim/ucsim/hc08.src/inst.cc,
7376         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
7377         carries from x to h
7378         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
7379         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
7380         * device/include/stdarg.h: fixed varargs for hc08
7381         * device/lib/Makefile.in,
7382         * device/lib/hc08/Makefile,
7383         * device/lib/hc08/_mulint.c,
7384         * device/lib/hc08/_mullong.c: fixed some endian problems
7385
7386 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7387
7388         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
7389         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
7390         * device/lib/_gptrget.c,
7391         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
7392
7393 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7394
7395         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
7396         * src/SDCCast.c (astErrors): fixed bug #846007
7397         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
7398
7399 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7400
7401         * src/SDCCast.c (decorateType): disabled a transformation I added in
7402         revision 1.188 (access to fields of a structure at an absolute address);
7403         it breaks with bitfields, extern declarations, and gcse analysis.
7404         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
7405         could be assigned through a pointer, so don't complain.
7406         * src/SDCCast.c (astErrors),
7407         * src/SDCCast.h,
7408         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
7409
7410 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
7411
7412         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
7413         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
7414         output of __config directives, since gpasm now supports them
7415         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
7416         pre-processor macro, i.e. -DMCU=p18f452
7417         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
7418         and modified to handle 'cast' icode similarly to '=' icode
7419         * src/pic16/device.h (typedef struct PIC_device): added field
7420         'extMIface' to indicate that chip has external memory interface
7421         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
7422         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
7423         18F8720
7424
7425 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7426
7427         * src/SDCC.y (pointer): fixed bug #846006
7428         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
7429         * src/SDCCast.c (decorateType): fixed bug #846009
7430         * src/ds390/peeph.def,
7431         * src/ds390/gen.c (genAnd, genOr),
7432         * src/mcs51/peeph.def,
7433         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
7434
7435 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7436
7437         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
7438         * src/SDCCdflow.c
7439         * src/SDCCcse.c
7440         * src/SDCCcse.h
7441         * src/SDCCBBlock.h
7442         * src/SDCCBBlock.c
7443
7444 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
7445
7446         fixed bug #845089
7447         * src/SDCCbitv.h,
7448         * src/SDCCbitv.c: added function to free a bitvector
7449         * src/SDCClrange.h,
7450         * src/SDCClrange.c: added function to recompute the liveranges
7451         * src/avr/ralloc.c,
7452         * src/ds390/ralloc.c,
7453         * src/hc08/ralloc.c,
7454         * src/mcs51/ralloc.c,
7455         * src/pic/ralloc.c,
7456         * src/pic16/ralloc.c,
7457         * src/xa51/ralloc.c,
7458         * src/z80/ralloc.c: recompute the liveranges after register packing
7459
7460 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
7461
7462         * src/SDCCloop.c (newInduction): fixed bug #845630
7463
7464 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7465
7466         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
7467         inadvertantly left behind from my 2003-11-12 change
7468
7469 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7470
7471         Updated headers I neglected to commit yesterday.
7472         * src/SDCClrange.h,
7473         * src/SDCCicode.h
7474
7475 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7476
7477         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
7478         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
7479         * src/SDCCopt.c (eBBlockFromiCode),
7480         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
7481         the creation of the key hash table from the sequencing so it can be used
7482         earlier (for some GCSE bug fixes still pending)
7483
7484 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7485
7486         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
7487         * support/regression/tests/addsub.c: testing genPlus shortcut
7488
7489 2003-11-15  Borut Razem <borut.razem AT siol.net>
7490
7491         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
7492
7493 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7494
7495         * src/SDCCcse.c (cseBBlock): fixed bug #527779
7496         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
7497         ordering is immaterial.
7498         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
7499
7500 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7501
7502         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
7503         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
7504         (SIGSEV) of bug #840381
7505         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
7506         unlink new file before rename if new and old filenames are the same)
7507
7508 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7509
7510         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
7511         uninitialized variables) for the mcs51. Set environment variable
7512         SDCC_GENRAMCLEAR to test.
7513         xdata initialization slightly shorter
7514
7515 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7516
7517         * src/SDCCsymt.h,
7518         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
7519         #838241 & 780691 (basicly the same bug)
7520         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
7521         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
7522
7523 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
7524
7525         * src/SDCCmain.c (linkEdit): "fix" #834252
7526
7527 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7528
7529         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
7530         * src/SDCCast.h,
7531         * src/SDCC.y: fixed bug #819403
7532
7533 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7534
7535         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
7536         the reentrant attribute.
7537         * src/hc08/gen.c (genPackBits): added missing stack readjustment
7538         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
7539         simulation
7540         * src/SDCCast.c (decorateType): fixed bug with storage class not being
7541         updated during pointer dereference; f.e. ~(((char *)1)*) was being
7542         erroneously reduced to a literal.
7543         * src/hc08/ralloc.c (packRegisters, rematStr),
7544         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
7545         some cases
7546
7547 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7548
7549         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
7550         * doc/sdccman.lyx: changed from 'article' to 'book'
7551         * doc/Makefile: readded test_suite_spec and cdbfileformat
7552
7553 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
7554
7555         * device/include/stdlib.h: include malloc.h to comply with ANSI
7556         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
7557
7558 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7559
7560         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
7561         * doc/clean.mk: also remove *.out files
7562         * doc/sdccman.lyx: some additions, larger top/bottom margins
7563
7564 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7565
7566         * src/SDCC.y: fixed bug #837365
7567         * support/regression/tests/bitopcse.c
7568         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
7569         a symbol (might be valop instead)
7570         * device/lib/Makefile.in: added errno.c to HC08SOURCES
7571         * device/lib/clean.mk: added hc08 to the cleaning list
7572
7573 2003-11-04  Borut Razem <borut.razem AT siol.net>
7574
7575         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
7576           made 2003-11-04
7577         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7578           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
7579           malloc is declared in standard stdlib.h
7580
7581 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7582
7583         * device/lib/hc08/Makefile: need to clean .rel not .o files
7584         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
7585
7586 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7587
7588         * src/port.h,
7589         * src/hc08/main.c,
7590         * src/mcs51/main.c,
7591         * src/ds390/main.c,
7592         * src/z80/main.c,
7593         * src/avr/main.c,
7594         * src/pic/main.c,
7595         * src/pic16/main.c,
7596         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
7597         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
7598         tests (which uses the port's oclsExpense function)
7599         * src/SDCC.y,
7600         * src/SDCCast.c,
7601         * src/SDCCicode.c,
7602         * src/hc08/gen.c,
7603         * src/ds390/gen.c,
7604         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
7605
7606 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7607
7608         * src/SDCCcse.c (ifxOptimize),
7609         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
7610         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
7611         deleting the IFX iCode.
7612         * src/hc08/ralloc.c: reduced unneeded slocs
7613         * src/hc08/gen.c: fixed bug in asmopToBoolean
7614
7615 2003-11-04  Borut Razem <borut.razem AT siol.net>
7616
7617         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
7618           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7619           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
7620           transferred to configure
7621
7622 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
7623
7624         Use headers defined in the C[++] standards:
7625         * sim/ucsim/gui.src/serio.src/fileio.cc
7626         * sim/ucsim/gui.src/serio.src/frontend.cc
7627         * sim/ucsim/gui.src/serio.src/main.cc
7628         * sim/ucsim/gui.src/serio.src/posix_signal.cc
7629         * support/Util/NewAlloc.c
7630         * as/hc08/lklibr.c
7631         * as/mcs51/lklibr.c
7632         * as/z80/aslist.c
7633         * as/z80/assym.c
7634
7635 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7636
7637         * Added MSVC projects for hc08 assembler and linker:
7638         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
7639         /as/hc08/link_hc08.dsp
7640
7641 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
7642
7643         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
7644
7645 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
7646
7647         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
7648
7649 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7650
7651         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
7652
7653 2003-10-31  Borut Razem <borut.razem AT siol.net>
7654
7655         * support/cpp2/cpplib.h,
7656           support/cpp2/cpplib.c,
7657           support/cpp2/cpplex.c,
7658           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
7659           to switch _asm block preprocessing on / off. Default is
7660           #pragma preproc_asm +
7661
7662 2003-10-31  Borut Razem <borut.razem AT siol.net>
7663
7664         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
7665           when outputting comment blocks (when executed with -C option) and
7666           _asm (SDCPP specific) blocks
7667
7668 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7669
7670         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
7671
7672 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
7673
7674         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
7675
7676 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
7677
7678         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
7679         * src/SDCCast.c (decorateType): fixed bug #832664
7680
7681 2003-10-31  Borut Razem <borut.razem AT siol.net>
7682
7683         * support\cpp2\cpplex.c: fixed for SDCPP:
7684           comments(when executed with -C option) and _asm blocks
7685           were included even if they where in skipped #if block.
7686           Applied solution from GCC cpp 3.3.2
7687
7688 2003-10-31  Borut Razem <borut.razem AT siol.net>
7689
7690         * src/SDCC.lex: sdcc now understands both formats:
7691           '# <line_number> <file_name>' and
7692           '#line <line_number> <file_name>'
7693         * support/cpp2/cppmain.c: sdcpp now generates the standard
7694           '# <line_number> <file_name>' instead of former
7695           '#line <line_number> <file_name>'
7696
7697 2003-10-30  Borut Razem <borut.razem AT siol.net>
7698
7699         * support/cpp2/cpphash.h,
7700         * support/cpp2/cpplib.h
7701         * support/cpp2/cpplex.c,
7702         * support/cpp2/cppmain.c,
7703         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
7704
7705 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7706
7707         Fixed a number of problems revealed by bug #827883.
7708         * src/SDCCloop.c (loopInvariants): Spill location of the
7709         result operand should be recomputed if extracted from
7710         a loop. Also, don't extract assignments of an iTemp
7711         from a literal.
7712         * src/SDCCast.c (isConformingBody): loop reversal should
7713         not occur if the control variable is involved with a
7714         relational operator.
7715
7716 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
7717
7718         * .version: bumped to 2.3.6 to reflect the big improvements
7719         made by Erik and Klaus. Thanks!
7720
7721 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
7722
7723         Replaced the livrange code.
7724         * src/SDCClrange.c: added new LR code
7725         * src/SDCCloop.c,
7726         * src/SDCCBBlock.h: removed remainig parts from old LR code
7727         * src/ds390/ralloc.c,
7728         * src/ds390/gen.c: minor fixes to make it work with new code
7729
7730 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7731
7732         * as/hc08/asm.h,
7733         * as/hc08/lkrloc.c,
7734         * src/hc08/gen.c,
7735         * src/hc08/ralloc.c: Fix various warnings related to the hc08
7736         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
7737         (tweaked fix for bug #818696)
7738
7739 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7740
7741         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
7742
7743 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7744
7745         * src/SDCCmain.c,
7746         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
7747         * src/mcs51/gen.c (gencjneshort),
7748         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
7749         more efficient (per Scott Bronson's suggestion)
7750
7751 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7752
7753         Extended the semantics of the critical keyword to include
7754         individual statements. See RFE #827755 and #799831
7755         * src/SDCC.y
7756         * src/SDCCicode.c
7757         * src/SDCCopt.c
7758         * src/SDCCast.c
7759         * support/Util/SDCCerr.c
7760         * support/Util/SDCCerr.h
7761         * src/mcs51/gen.c
7762         * src/ds390/gen.c
7763         * src/hc08/gen.c
7764
7765 2003-10-19  Borut Razem <borut.razem AT siol.net>
7766
7767         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
7768
7769 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7770
7771         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
7772         Fixed bug #818696
7773         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
7774         and predecrement operand is displayed
7775
7776 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
7777
7778         * src/SDCCval.c (valMinus): fixed bug #826041
7779
7780 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7781
7782         Some hc08 related updates that I missed earlier
7783         * sim/ucsim/stypes.h
7784         * support/regression/ports/hc08/spec.mk
7785
7786 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7787
7788         New target "hc08" for the Motorola 68hc08 family of micros
7789
7790         * configure
7791         * configure.in
7792         * Makefile
7793         * src/hc08/*
7794         * src/SDCCmain.c
7795         * src/port.h
7796         * sim/ucsim/hc08.src/*
7797         * sim/ucsim/configure.in
7798         * src/ucsim/configure
7799         * sim/ucsim/packages_in.mk
7800         * as/hc08/*
7801         * as/Makefile
7802         * device/include/mc68hc908qy.h
7803         * device/lib/hc08/*
7804         * device/lib/Makefile.in
7805         * support/regression/ports/hc08/*
7806         * support/regression/Makefile
7807
7808 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7809
7810         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
7811         regression test
7812         * src/ds390/gen.c (genCast): fixed bug #821957
7813
7814 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
7815
7816         * device/lib/logf.c: "fixed" overlay bug
7817         * support/regression/ports/host/spec.mk: added m library
7818         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
7819         * support/regression/tests/float_trans: added (for Eric)
7820
7821 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
7822
7823         * src/mcs51/gen.c (genCpl): fixed bug
7824         http://sf.net/mailarchive/message.php?msg_id=6263915
7825
7826 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
7827
7828         * src/SDCCast.c (decorateType): added extended constant folding
7829         * src/SDCCsymt.c (computeType): cleanup
7830         * src/SDCCval.c (valShift): minor optimization
7831         * support/regression/tests/ast_constant_folding.c: added
7832
7833 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7834
7835         * src/SDCCmain.c: removed some unintended changes
7836
7837 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7838
7839         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
7840         * src/z80/gen.c: fixed part of bug #817589
7841         * src/SDCCsymt.c (checkFunction): fixed bug #817895
7842
7843 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
7844
7845         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
7846         * src/SDCCcflow.c
7847         * src/SDCCcse.c
7848         * src/SDCCdflow.c
7849         * src/SDCClabel.c
7850         * src/SDCClrange.c
7851         * src/SDCCmem.c
7852         * src/SDCCopt.c
7853         * src/SDCCpeeph.c
7854         * src/SDCCset.c
7855         * src/avr/ralloc.c
7856         * src/ds390/ralloc.c
7857         * src/izt/ralloc.c
7858         * src/mcs51/ralloc.c
7859         * src/pic/ralloc.c
7860         * src/pic16/ralloc.c
7861         * src/xa51/ralloc.c
7862         * src/z80/ralloc.c
7863         * src/z80/gen.c: removed unused label "release:"
7864
7865 2003-10-06  Borut Razem <borut.razem AT siol.net>
7866
7867         * src/SDCC.lex: removed definition of unused variables
7868           save_optimize and save_options
7869
7870 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
7871
7872         * clean.mk: removed '=' in "-maxdepth=1"
7873         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
7874         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
7875
7876 2003-10-06  Borut Razem <borut.razem AT siol.net>
7877
7878         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
7879           my_unput() replaced by unput()
7880
7881 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
7882
7883         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
7884         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
7885         type-punned pointer will break strict-aliasing rules"
7886         Old LR behaviour is again default; Klaus' LR can be choosen by
7887         defining the environment variable LRKLAUS
7888         * src/SDCCBBlock.h
7889         * src/SDCCloop.c
7890         * src/SDCClrange.c
7891         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
7892         * clean.mk: fixed removal of files in bin/CVS/
7893         * device/lib/clean.mk: fixed removal of directories small and large
7894         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
7895         * src/SDCCicode.c,
7896         * src/SDCCval.c: removed superflous test for pedantic
7897
7898 2003-10-05  Borut Razem <borut.razem AT siol.net>
7899
7900         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
7901           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
7902           message "unmatched #pragma SAVE and #pragma RESTORE"
7903
7904 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7905
7906         * doc/sdccman.lyx: various additions and updates (interrupts, inline
7907           assembly, critical functions, atomic, nojtbound)
7908
7909 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
7910
7911         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
7912         * src/SDCCBBlock.h
7913         * src/SDCCloop.c
7914         * src/SDCCloop.h
7915         * src/SDCClrange.c
7916
7917 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7918
7919         * src/z80/gen.h,
7920         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7921         * src/mcs51/gen.h
7922         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7923         * src/ds390/gen.h
7924         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7925         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
7926         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
7927
7928 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7929
7930         * src/z80/gen.c (genRet): fixed bug #524753
7931         * src/z80/gen.c (genCast): fixed internal error on cast from
7932         pointer to long
7933         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
7934         fix for bug #477835 to the z80
7935         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
7936         for tracking iCodes in the peephole optimizer for z80
7937
7938 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7939
7940         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
7941         the other part of bug #814548
7942         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
7943
7944 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
7945
7946         * src/SDCCcse.c: fixed part of bug #814548
7947
7948 2003-09-28  Borut Razem <borut.razem AT siol.net>
7949
7950         * src/asm.c: rewrite of printILine() to use temporary file instead
7951           a pipe
7952         * src/xa51/main.c: commented out declaration of int rewinds
7953
7954 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7955
7956         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
7957
7958 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7959
7960         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
7961         * src/asm.c (printILine): Fixed bug #811015
7962
7963 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7964
7965         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
7966         freeing.
7967
7968 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7969
7970         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
7971         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
7972         to correctly handle general case of AOP_PAIRPTR
7973         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
7974
7975 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7976
7977         * src/mcs51/ralloc.c (fillGaps),
7978         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
7979         register positioning bug)
7980
7981 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
7982
7983         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
7984
7985 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7986
7987         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
7988         genCodePointerGet, genGenPointerGet, genFarPointerSet,
7989         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
7990         (ralloc doesn't intentionally do this now, but perhaps later)
7991         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
7992         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
7993         register positioning bugs (Fixed bug #762602 and #795325)
7994         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
7995         (Fixed bug #808779)
7996         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
7997         lines that --i-code-in-asm generates
7998
7999 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8000
8001         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
8002         trying to fclose a FILE* that was already closed.
8003
8004 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8005
8006         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
8007         of const struct should be treated as if const themselves)
8008
8009 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
8010
8011         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
8012
8013 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8014
8015         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
8016         Unix (/n) and DOS (/r/n) line terminations.
8017
8018 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8019
8020         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
8021         bug #613775
8022
8023 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8024
8025         * src/mcs51/gen.c (genFunction, genEndFunction),
8026         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
8027         and restore of EA so that stack offsets to parameters are
8028         correct when using both critical and reentrant/stack-auto.
8029         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
8030         size (can be triggered in error if sloc is shared between
8031         different sized objects)
8032         * device/include/float.h: fixed macros to explicitly use
8033         unsigned long where needed
8034
8035 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
8036
8037         Feature req. 799831: added code to allow nesting of critical functions
8038         * src/mcs51/gen.c (genFunction, genEndFunction)
8039         * src/ds390/gen.c (genFunction, genEndFunction)
8040
8041 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8042
8043         * src/SDCCsymt.c (sclsFromPtr),
8044         * src/SDCCsymt.h,
8045         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
8046         support for standard C idiom of memory mapped variables; for
8047         example, *((xdata int*)0x1234) = 1 is now internally equivalent
8048         to xdata int at 0x1234 tempvar = 1.
8049         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
8050         provided by Akiya ISHIDA
8051
8052 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
8053
8054         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
8055         * src/SDCCval.c (constVal): added reduction from int to char
8056         * src/SDCCval.c (valMult, valDiv): fixed sign handling
8057         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
8058         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
8059         to ignore the sign
8060         * support/regression/tests/shifts.c: fixed
8061
8062 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8063
8064         * src/z80/gen.c (genXor): Fixed bug #805445
8065
8066 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8067
8068         Fixed bug #621531 (const & volatile confusion in the type chain).
8069         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
8070         refer to the const or volatile state of the pointer itself.
8071
8072         * src/SDCCast.c
8073         * src/SDCCglue.c
8074         * src/SDCCicode.c
8075         * src/SDCCsymt.c
8076         * src/SDCCval.c
8077         * src/SDCC.y
8078         * src/SDCCsymt.h
8079         * src/pic/gen.c
8080         * src/pic/ralloc.c
8081         * src/pic16/gen.c
8082         * src/pic16/ralloc.c
8083         * support/regression/tests/const.c
8084
8085 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8086
8087         When checking for duplicated modules, use absolute paths
8088         instead of relative paths.  Files changed:
8089
8090         * as/mcs51/lklib.c
8091         * link/z80/lklib.c
8092
8093 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8094
8095         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
8096
8097 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8098
8099         * device/include/string.h: added size_t typedef, changed
8100         prototypes to use size_t, eliminated separate reentrant and
8101         non-reentrant declarations, added _memmove declaration
8102         * device/lib/_memcpy.c: changed to use size_t instead of int,
8103         changed /4 to >>2 to avoid division library call
8104         * device/lib/_memcmp.c,
8105         * device/lib/_memset.c,
8106         * device/lib/_strncat.c,
8107         * device/lib/_strncpy.c,
8108         * device/lib/_strncmp.c: changed to use size_t instead of int
8109         * device/lib/_memmove.c: new file (fixed bug #772294)
8110         * device/lib/Makefile.in: added _memmove.c
8111         * device/lib/z80/asm_strings.s: fixed bug #772290
8112         * support/regression/tests/bitfields.c: attempt to fix host assertion
8113         failure on amd64-unknown-linux2.2
8114
8115 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8116
8117         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
8118         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
8119         * as/z80/asmain.c (main): fixed bug #801766
8120
8121 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
8122
8123         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
8124         compilers
8125
8126 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8127
8128         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
8129         reported in bug #800609
8130
8131 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
8132
8133         * Top header beautifications in src/pic16 directory:
8134           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
8135           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
8136           pcoderegs.h, ralloc.c, ralloc.h
8137         * main.c: added top header and GPL license notice
8138         * pcode.c: fixed the if-conditional warning
8139
8140 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
8141
8142         * device/lib/_mullong.c: replaced int by short for gcc
8143
8144 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8145
8146         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
8147         and JUMPTABLE iCodes properly now (worked by accident before)
8148         * src/mcs51/gen.c (leftRightUseAcc),
8149         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
8150         iCode properly now. Use getSize instead of nRegs since a & b
8151         aren't part of the nRegs tally.
8152
8153 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
8154
8155         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
8156         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
8157           before instructions that use the _STATUS register
8158
8159 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
8160
8161         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
8162         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
8163         fetching of the pointer
8164         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
8165         copied from genNearPointerSet()
8166         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
8167         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
8168         If they pop r0/r1 they must be called in the opposite order than aopOp().
8169         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
8170         (resp. --stack-auto), prepared for --xstack
8171
8172 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8173
8174         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
8175
8176 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8177
8178         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
8179         these ports have their own __sdcc_external_start()
8180
8181 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
8182
8183         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8184         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
8185         type for bits was changed. It resulted in bit variables becoming
8186         global, which is not permitted in PIC 14 assembly output.
8187
8188 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8189
8190         * doc/sdccman.lyx: various additions and updates. Rearranged sections
8191
8192 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8193
8194         Z80 and MCS51 linkers complaint if a public symbol is defined
8195         in more than one library module:
8196
8197         * as/mcs51/lklib.c
8198         * link/z80/lklib.c
8199         * as/mcs51/Makefile.in
8200
8201 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8202
8203         A few small changes that speed up the peephole optimizer.
8204
8205         * src/SDCCpeeph.c
8206
8207 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8208
8209         Try to make the peephole optimizer smarter by maintaining
8210         an association between the assembly source code and the
8211         iCodes that originated them. Put this information to use
8212         with a new peephole rule condition "notVolatile" so that
8213         the rules can be aggressive yet still safe.
8214
8215         * src/SDCCpeeph.c
8216         * src/SDCCpeeph.h
8217         * src/mcs51/gen.c
8218         * src/mcs51/peeph.def
8219
8220 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8221
8222         Fixed bug #741761
8223
8224         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
8225         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
8226         if the left or right operand symbols have the accuse flag set.
8227
8228 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8229
8230         Changed the type of the result of the ! (NOT) operator to char;
8231         previously it returned the same type as the source. This allows
8232         us to eliminate all the genFloatNot functions (all of its target
8233         implementations were very buggy) since !float can use the same
8234         code as !long now.
8235
8236         * src/SDCCicode.c (ast2iCode): ! returns char
8237         * src/mcs51/gen.c (genNot, genNotFloat),
8238         * src/ds390/gen.c (genNot, genNotFloat),
8239         * src/z80/gen.c (genNot, genNotFloat),
8240         * src/pic/gen.c (genNot, genNotFloat),
8241         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
8242
8243 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
8244
8245         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8246         1. Interrupt would not compile properly. Ensure PCLATH register is saved
8247            during interrupts. Ensure WSAVE is located at a shared bank address.
8248         2. Fixed page selection in some places
8249         3. Fixed BTFSS/C to where necessary use registers directly and not simply
8250            the registers name strings.
8251         4. Fixed "signed / unsigned compare" compiler warnings.
8252         5. The PIC port manages its own allocation of the general purpose
8253            registers, but makes no attempt to reuse them. As a result when
8254            compiling it soon runs out of general purpose registers. Some
8255            additional code was added to the files pcode.c and device.c to walk
8256            through the function call tree and rename the registers so that they
8257            get reused.
8258
8259         * src/pic/device.c
8260         * src/pic/gen.c
8261         * src/pic/glue.c
8262         * src/pic/pcode.c
8263         * src/pic/pcode.h
8264         * src/pic/ralloc.c
8265         * src/pic/ralloc.h
8266         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
8267         genPlus() & genMinus() when the result is the same as left or right
8268
8269 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8270
8271         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
8272
8273 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8274
8275         Made bitfield a distinct type from bit so that bitfields
8276         convert as per ANSI C and bits retain their traditional
8277         boolean style behaviour. Implemented bitfield support in
8278         the z80 port.
8279
8280         * src/SDCCsymt.h,
8281         * src/SDCCsymt.c,
8282         * src/SDCCast.c,
8283         * src/cdbFile.c,
8284         * src/mcs51/gen.c,
8285         * src/ds390/gen.c: bit v bitfield split
8286         * src/z80/gen.c: New support for bitfields
8287         * support/regression/tests/bitfields.c: reenabled z80,
8288         added more tests
8289
8290 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8291
8292         Rules 246.x, 247.x relate to bitfields, the others speed up
8293         access to xdata mapped I/O devices.
8294
8295         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
8296
8297 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8298
8299         Cleaned up genPackBits and genUnpackBits and added two helper
8300         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
8301         for literal assignments in genPackBits (thanks to Frieder for
8302         reminding me).
8303
8304         * src/mcs51/gen.c
8305         * src/ds390/gen.c
8306
8307 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8308
8309         Fixed bug #748310 (pointer to function type mishandled when the
8310         function name is omitted). Also fixed a SIGSEGV when a function
8311         attribute (reentrant, etc) is used on a non-function or on a
8312         function but misplaced before the parameter list.
8313
8314         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
8315         bug #748310
8316         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
8317         * support/Util/SDCCerr.h,
8318         * support/Util/SDCCerr.c: Added func attr misuse error msg
8319
8320 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
8321
8322         Fixed bug #787649 by anonymous
8323         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
8324         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
8325
8326 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8327
8328         Fixed numerous bitfield problems.
8329
8330         * src/SDCC.y: More bitfield related error checking
8331         * src/SDCCsymt.h,
8332         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
8333         * support/Util/SDCCerr.h,
8334         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
8335         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
8336         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
8337         * support/regression/tests/bitfields.c: tests added
8338
8339 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8340
8341         Made the constant following the "interrupt" keyword optional. If
8342         omitted, the function will not automatically be given an entry
8343         in the interrupt vector table (similar to #pragma NOIV, but
8344         less syntacticly kludgy). The interrupt number is also now
8345         range checked. Also fixed a bug in the high order bit example
8346         in the manual.
8347
8348         * src/SDCC.y
8349         * src/SDCCmem.c
8350         * src/SDCCglue.c
8351         * src/SDCCsymt.h
8352         * support/Util/SDCCerr.c
8353         * support/Util/SDCCerr.h
8354         * doc/sdccman.lyx
8355
8356 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
8357
8358         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
8359         * src/SDCCicode.c (operandOperation): rewritten some ops
8360         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
8361         * src/SDCCsymt.c (computeType): literals are handled the same way as any
8362         other type
8363         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
8364         be re-activated by defining REDUCE_LITERALS)
8365         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
8366         unsigned, but are signed by default
8367         * src/SDCCval.c (constVal): rearranged
8368         * src/SDCCval.c (valMod): preliminary fix
8369         * src/SDCCval.c (valCastLiteral): use TYPE_* types
8370         * support/regression/literalop.c: added, work in progress
8371
8372 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8373
8374         Generate warnings for useless declarations like "char data;"
8375         that don't do what new users expect.
8376
8377         * src/SDCC.y
8378         * support/Util/SDCCerr.h
8379         * support/Util/SDCCerr.c
8380
8381 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
8382
8383         * src/SDCCval.c (valMult): fix overflow detection of negative int
8384
8385 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8386
8387         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
8388
8389         Changes to support big endian targets:
8390
8391         * src/ports.h
8392         * src/SDCCglue.c
8393         * src/avr/main.c
8394         * src/ds390/main.c
8395         * src/izt/i186.c
8396         * src/mcs51/main.c
8397         * src/pic/main.c
8398         * src/pic16/main.c
8399         * src/xa51/main.c
8400         * src/z80/main.c
8401
8402 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
8403
8404         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
8405         * device/lib/time.c: fixed warning "integer overflow in expression"
8406
8407 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
8408
8409         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
8410         * src/SDCCval.c (constVal): changed default to signed; hex and octal
8411         constants are unsigned; added recognition of "u" flag for unsigned
8412         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
8413         * src/SDCCval.c (valDiv, valMod): fixed signdness
8414         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
8415         signedness of modulo, left and right shift
8416         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
8417         * support/Util/SDCCerr.h: added warning W_INT_OVL
8418         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
8419         * src/SDCCast.c (ast_print): improved output of constants
8420
8421 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8422
8423         Fixed some warnings when building with MSVC:
8424
8425         * as\mcs51\asdata.c
8426         * as\z80\asdata.c
8427         * as\mcs51\asm.h
8428         * as\z80\asm.h
8429         * link\z80\aslink.h
8430         * link\z80\lkdata.c
8431         * link\z80\lkeval.c
8432         * link\z80\lkgb.c
8433         * link\z80\lkihx.c
8434         * link\z80\lks19.c
8435         * link\z80\lksym.c
8436         * support\cpp2\cpplib.c
8437         * src\ds390\gen.c
8438         * src\mcs51\gen.c
8439
8440 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
8441
8442         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
8443
8444 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8445
8446         * support\librarian\clean.mk: Do not remove Makefile.
8447         * support\librarian\Makefile: added.
8448
8449 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8450
8451         Added librarian to MSVC build:
8452         * all.dsp
8453         * sdcc.dsw
8454         * support\librarian\librarian.dsp
8455
8456         'configure' not needed for librarian, removed:
8457         * support\librarian\configure
8458         * support\librarian\configure.in
8459         * support\librarian\config_in.h
8460         * support\librarian\Makefile.in
8461
8462         Hopefully these ones built the librarian and the rest of sdcc properly:
8463         * Makefile
8464         * Makefile.common.in
8465
8466         Messed up 'configure', so revert to previous version:
8467         * configure
8468         * configure.in
8469
8470 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
8471
8472         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
8473         there, while the mantissa of a double is "only" 53 bits wide.
8474
8475 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8476
8477         Adding sdcclib to the build.  MSVC project coming soon.
8478         Files added/changed:
8479
8480         * support\librarian\clean.mk
8481         * support\librarian\configure
8482         * support\librarian\configure.in
8483         * support\librarian\config_in.h
8484         * support\librarian\Makefile.bcc
8485         * support\librarian\Makefile.in
8486         * support\librarian\sdcclib.c
8487         * Makefile.bcc
8488         * Makefile
8489         * Makefile.common.in
8490         * configure
8491         * configure.in
8492
8493 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8494
8495         Linker now complaints if linked modules have conflicting options, for
8496         example, one compiled using --model-large and another one compiled with
8497         --model-small.  The following files were modified:
8498
8499         * as\mcs51\asdata.c
8500         * as\mcs51\aslink.h
8501         * as\mcs51\asm.h
8502         * as\mcs51\asmain.c
8503         * as\mcs51\asout.c
8504         * as\mcs51\i51pst.c
8505         * as\mcs51\lkdata.c
8506         * as\mcs51\lklibr.c
8507         * as\mcs51\lkmain.c
8508         * as\z80\asdata.c
8509         * as\z80\asm.h
8510         * as\z80\asmain.c
8511         * as\z80\asout.c
8512         * as\z80\z80pst.c
8513         * link\z80\aslink.h
8514         * link\z80\lkdata.c
8515         * link\z80\lklibr.c
8516         * link\z80\lkmain.c
8517         * src\SDCCglue.c
8518
8519 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8520
8521         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
8522         as/mcs51/lklibr.c: Generate a warning when a library is not found.
8523
8524 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
8525
8526         * src/z80/mappings.i: fix _mul[us][int,long] entries
8527
8528 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8529
8530         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
8531
8532 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8533
8534         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
8535         * support/regression/tests/bitopcse.c: added
8536         fixed warning:
8537         * src/avr/gen.c:
8538         * src/pic/gen.c:
8539         * src/pic16/gen.c:
8540         * src/z80/gen.c:
8541         * src/xa51/gen.c:
8542
8543 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8544
8545         added support for new library format to z80, gbz80 linkers:
8546         *link/z80/aslink.h
8547         *link/z80/lklex.c
8548         *link/z80/lklib.c
8549         *link/z80/lklist.c
8550
8551 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8552
8553         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
8554         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
8555
8556 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
8557
8558         added DUMMY_READ_VOLATILE:
8559         * src/SDCC.y:
8560         * src/avr/gen.c:
8561         * src/xa51/gen.c:
8562         * src/z80/gen.c:
8563         * src/pic/gen.c:
8564         * src/pic16/gen.c:
8565         * src/mcs51/gen.c:
8566         * src/ds390/gen.c:
8567         * src/SDCCcse.c (algebraicOpts): many improvements
8568         * src/SDCCcse.h: removed algebraicOpts()
8569         * src/SDCCicode.c (picDummyRead): added
8570
8571 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8572
8573         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
8574         "Insufficient space in data memory".
8575
8576 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8577
8578         * src/mcs51/gen.c: fixed bug #771358
8579         * src/z80/gen.c: fixed bug #759087
8580
8581 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
8582
8583         * src/pic16/glue.c: minor cleanup by Vangelis
8584
8585 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8586
8587         * device/include/regc515c.h: fixed #758477
8588         * device/lib/_gptrget.c: saving some cycles in generic pointer get
8589         * device/lib/_gptrput.c: saved a few bytes
8590         * my tab spacing is 8, yours too?)
8591         * device/lib/_ser.c: process RX bytes earlier than TX bytes
8592         * device/lib/serial.c: process RX bytes earlier than TX bytes
8593         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
8594
8595 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8596
8597         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
8598
8599 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8600
8601     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
8602
8603 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
8604
8605         * device/lib/Makefile.in: bad fix, reverted to 1.43
8606
8607 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
8608
8609         * device/lib/Makefile.in: added missing z80 object files
8610
8611 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
8612
8613         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
8614         pic16 progress by Vangelis:
8615         * src/SDCCglobl.h:
8616         * src/SDCCmain.c:
8617         * src/pic/Makefile:
8618         * src/pic:
8619         * pic/Makefile:
8620         * pic16/device.c:
8621         * pic16/device.h:
8622         * pic16/gen.c:
8623         * pic16/gen.h:
8624         * pic16/genarith.c:
8625         * pic16/glue.c:
8626         * pic16/main.c:
8627         * pic16/pcode.c:
8628         * pic16/pcode.h:
8629         * pic16/pcodepeep.c:
8630         * pic16/peeph.def:
8631
8632 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8633
8634     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
8635
8636 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8637
8638     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
8639     added gbz80 build to MSVC project.
8640     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
8641     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
8642     from 8051 stuff and setup so it links using a .lnk file.
8643
8644 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8645
8646     * support/librarian/sdcclib.c: sdcc librarian.
8647     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
8648     with sdcclib.
8649
8650 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8651
8652     * as/mcs51/lkmain.c: properly handle extensions in function afile.
8653
8654 2003-07-02  Borut Razem <borut.razem AT siol.net>
8655
8656         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
8657         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
8658         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
8659         src/xa51/main.c, src/z80/main.c:
8660         virtualization of glue() function: each port has it's own glue function,
8661         which is accessed by do_glue function pointer in PORT.general structure
8662
8663 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
8664
8665         * DS800C400 fun, improved ROM interface and tinibios.
8666
8667 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
8668
8669         * More support for DS80C400. Now includes beginning of interface to ROM.
8670
8671 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
8672
8673         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
8674
8675 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8676
8677         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
8678
8679 2003-06-19  Borut Razem <borut.razem AT siol.net>
8680
8681         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
8682
8683 2003-06-19  Borut Razem <borut.razem AT siol.net>
8684
8685         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
8686         fixed Z80 port - crt0.o: cannot open.
8687
8688 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
8689
8690         * support/Util/MySystem.c (merge_command): revert bad fix
8691
8692 2003-06-18  Borut Razem <borut.razem AT siol.net>
8693
8694         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
8695
8696 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8697
8698         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8699         option --use-stdout sends errors to stdout instead of stderr.
8700
8701 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
8702
8703         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
8704
8705 2003-06-15  Borut Razem <borut.razem AT siol.net>
8706
8707         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
8708         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
8709         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
8710         fixed width array of pointers replaced with sets;
8711         multiple include and lib paths ared transferred to preprocessor and linker
8712         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
8713         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
8714         fixed width array of pointers
8715         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
8716         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
8717         fixupPath(), getPathDifference()
8718         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
8719         fixed width array of pointers
8720
8721 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
8722
8723         * src/pic16/ralloc.c: fix warnings
8724         * src/pic16/pcode.c: fix warning
8725
8726 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
8727
8728          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
8729         know all the details, but essentially this set of changes enable
8730         the pic16 port to generate movff instructions and generate assembler
8731         directives,
8732         * src/SDCCmain.c:
8733         * src/pic16/gen.c:
8734         * src/pic16/glue.c:
8735         * src/pic16/pcode.c:
8736         * src/pic16/device.c:
8737         * src/pic16/main.c:
8738         * src/pic16/pcode.h:
8739         * src/pic16/pcoderegs.c:
8740         * src/pic16/ralloc.c:
8741         * src/pic16/ralloc.h:
8742
8743 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8744
8745         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8746         added option --vc, so sdcc errors and warnings are compatible with
8747         Microsoft Visual Studio.
8748
8749 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8750
8751         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
8752           device/lib/libfloat.lib: added atof function.
8753
8754 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
8755
8756         * doc/sdccman.lyx: updated to Lyx 1.3
8757         * doc/cdbfileformat.lyx: updated to Lyx 1.3
8758         * doc/test_suite_spec.lyx: updated to Lyx 1.3
8759         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
8760
8761 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
8762
8763         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
8764
8765 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8766
8767         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
8768           additions to the "related tools/documentation" section
8769
8770 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
8771
8772         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
8773
8774 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
8775
8776         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
8777         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
8778
8779 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
8780
8781         * doc/sdccman.lyx: fix double dash and other minor things
8782         * doc/Makefile: fix double dash
8783
8784 2003-05-28  Karl Bongers(patches from Martin Helmling)
8785         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
8786           condition and ignore commands.
8787
8788 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8789
8790         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
8791           is in parts still quite out of date, I did changes as far as I felt makes sense
8792           for a non-native english speaker.
8793           Please feel free to add to the manual or to correct my changes.
8794         * doc/Makefile: undid touching the date of intermediate tex files.
8795
8796 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8797
8798         * doc/sdccman.lyx: Manual has an index now
8799
8800 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
8801
8802         Finalize muluint/mulsint and mululong/mulslong merging:
8803         * device/lib/_mulint.c
8804         * device/lib/_mullong.c
8805         * device/lib/gbz80/mul.s
8806         * device/lib/gbz80/stubs.s
8807         * device/lib/z80/mul.s
8808         * device/lib/z80/stubs.s
8809         * src/SDCCsymt.c (initCSupport)
8810
8811 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8812
8813         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
8814         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
8815           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
8816           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
8817           instead of /Zm500.
8818
8819 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8820
8821         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
8822           the regression tests I'm not brave enough to enable 245.b, 245.c
8823         * doc/sdccman.lyx: added latex preamble for hyperref package.
8824           Using pdflatex this will give you a hyperlinked pdf file with
8825           bookmarks. (prepend '%' before /usepackage if this breaks something)
8826
8827 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8828
8829          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
8830
8831 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
8832
8833         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
8834
8835 2003-05-21    <johan AT balder>
8836
8837         * src/SDCCglue.c (printIval): fixed bug #739934
8838
8839 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8840
8841         Applied patch from bug 737905 (renamed yylineo to mylineno):
8842         * src/altlex.c
8843         * src/SDCCast.c
8844         * src/SDCglobl.h
8845         * src/SDCC.lex
8846         * src/SDCCsymt.c
8847         * src/SDCCval.c
8848         * src/pic16/pcode.c: Cleaned warnings
8849         * src/pic16/pcodeflow.c: Cleaned warnings
8850         * src/pic16/pcoderegs.c: Cleaned warnings
8851
8852 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
8853
8854         * src/pic16/pcode.c: Cleaned warnings
8855         * src/pic16/pcodepeep.c: Cleaned warnings
8856         * src/pic16/ralloc.c: Cleaned warnings
8857
8858 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8859
8860         * doc/sdccman.lyx: fixed bug 739745
8861         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
8862
8863 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
8864
8865         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
8866         it can be defined with CFLAGS when running configure
8867         * src/SDCCmain.c: fixed compiling + linking with object files
8868
8869 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
8870
8871         * configure.in: configure for pic16 port,
8872             added --disable-pic16-port
8873         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
8874         * src/SDCCmain.c: linkOptions is changed to set *,
8875             added if/endif conditional macros to remove options help
8876             messages from optionsTable when a port is not configured, added
8877             support for the PIc16 port in the ports table, when executing
8878             the compiler with no port specified on command line, a default
8879             port is selected with the new macro DEFAULT_PORT which is
8880             defined in port.h, in setDefaultOptions() linkOptions is removed
8881             from initialization assignment, since now it is a set,
8882             parseCmdLine uses setParseWithComma for linkOptions, in
8883             linkEdit() linkOptions are accessed with new function indexSet()
8884             which returns the i'th item of a set variable. See SDCCset.c, in
8885             linkEdit() when calling buildCmdLine(), added linkOptions as
8886             last argument. Now users can pass arguments to gplink via the
8887             -Wl option, main() uses pic16glue() to glue up pic16 programs
8888         * src/SDCCpeeph.c: various changes to support pic16
8889         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
8890             return the i'th item of the set
8891         * src/SDCCset.h: added function prototype for indexSet()
8892         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
8893         * src/clean.mk: added pic16 in CLEANALLPORTS variable
8894         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
8895             added macro DEFAULT_PORT
8896         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
8897         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
8898             generated
8899         * src/pic16/glue.c: commented out some error producing lines
8900         * src/pic16/main.c: __config directives are commented out to stop
8901             gpasm complaining and test the linkage with gplink, _linkCmd and
8902             _asmCmd changed to be more gplink and gpasm friendly
8903         * src/pic16/peeph.def: peep rule 3 is commented out, since it
8904             produced an error when parsed, peep rule 12 is added to utilize
8905             movff, but it is commented out since the pCode does not support
8906             yet a command with 2 address arguments
8907
8908 2003-05-18    <johan AT balder>
8909
8910         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8911         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8912 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
8913
8914         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
8915   Added feature to script commands from file.
8916
8917 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
8918
8919         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
8920         * src/SDCCutil.c: include ctype.h for win32
8921
8922 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
8923
8924         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
8925
8926 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
8927
8928         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
8929   Fixed so you can set breakpoints prior to run, run does not stop
8930   on entry now.  Add tbreak.  Other enhancements and fixes for use
8931   with ddd.
8932
8933 2003-05-12  Borut Razem <borut.razem AT siol.net>
8934
8935         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
8936
8937 2003-05-11  Borut Razem <borut.razem AT siol.net>
8938
8939         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
8940         the path of bin directory, so that PATH is the only env. variable, which has to be set
8941         in case of standard installation.
8942         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
8943         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
8944         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
8945
8946 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8947
8948         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
8949         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
8950         temp files are in the port dir; clean the gen/test directory when
8951         generating new test.c
8952         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
8953         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
8954         * support/regression/tests/zeropad.c: added
8955
8956 2003-05-09    <johan AT balder>
8957
8958         * src/SDCCglue.c: fixed bug #597940
8959
8960 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
8961
8962         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8963   cache sfr, optimize next,step, fix off by one sourceline,
8964   support ddd list function.
8965         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
8966
8967 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8968
8969         * support/regression/HTMLgen.py: added compare_s2f()
8970         * support/regression/Makefile: redo 1.27
8971         * support/regression/generate-cases.py: redo 1.5
8972
8973 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
8974
8975         * support/regression/tests/float.c: workaround 33 bit hex constant
8976         * support/regression/tests/simplefloat.c: fix division for host
8977
8978 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
8979
8980         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
8981         that tame's the PIC's over-aggressive optimizer.
8982
8983 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8984
8985          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
8986          support for MSVC.
8987
8988 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
8989
8990         Initial support for DS80C400. "Hello world" runs on TINIm400
8991         (with polled I/O).
8992
8993 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
8994
8995          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8996          * Some notes on ddd usage added in debugger/README
8997          Martin Helmling adding more features and fixes for ddd GUI debugger.
8998          Code added for nexti, stepi, up, down, and other adjustments.
8999
9000 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
9001
9002         * src/pic/pCodepeep.c non-wildcard asmops are now handled
9003         * src/pic/peeph.def Added two rules to optimize carry manipulation
9004         * src/pic/* removed debug printfs
9005
9006 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
9007
9008         * debugger/mcs51/cmd.c: added header newalloc.h
9009
9010 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
9011
9012         * as/Makefile: new EXEEXT
9013         * as/z80/Makefile: remove trailing slash of BUILDIR
9014         * as/z80/clean.mk: new EXEEXT
9015         * Makefile.common.in: add to CFLAGS (and others), don't replace it
9016         * support/cpp2/Makefile.in: new EXEEXT
9017         * src/pic/glue.c (pic14emitRegularMap): fixed warning
9018
9019 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
9020
9021         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
9022         EXEEXT was introduced to fix all related problems with targets
9023         "clean", "install" and "uninstall"; a couple of further flaws
9024         especially with "clean" have been fixed too
9025         * as/mcs51/Makefile.in
9026         * as/mcs51/clean.mk
9027         * as/z80/Makefile
9028         * Makefile
9029         * clean.mk
9030         * debugger/mcs51/Makefile.in
9031         * debugger/mcs51/clean.mk
9032         * link/z80/Makefile
9033         * link/z80/Makefile.in
9034         * link/z80/clean.mk
9035         * link/Makefile
9036         * packihx/Makefile.in
9037         * packihx/clean.mk
9038         * sim/ucsim/Makefile
9039         * sim/ucsim/clean.mk
9040         * sim/ucsim/avr.src/Makefile.in
9041         * sim/ucsim/avr.src/clean.mk
9042         * sim/ucsim/s51.src/Makefile.in
9043         * sim/ucsim/s51.src/clean.mk
9044         * sim/ucsim/xa.src/Makefile.in
9045         * sim/ucsim/xa.src/clean.mk
9046         * sim/ucsim/z80.src/Makefile.in
9047         * sim/ucsim/z80.src/clean.mk
9048         * sim/ucsim/main_in.mk
9049         * sim/ucsim/packages_in.mk
9050         * sim/ucsim/gui.src/Makefile.in
9051         * sim/ucsim/gui.src/serio.src/Makefile.in
9052         * sim/ucsim/gui.src/serio.src/clean.mk
9053         * src/Makefile.in
9054         * src/clean.mk
9055         * support/cpp2/Makefile.in
9056         * support/cpp2/clean.mk
9057         * support/makebin/Makefile
9058         * support/makebin/clean.mk
9059         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
9060         * doc/sdccman.lyx: --program-suffix no longer needed
9061
9062 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
9063
9064          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
9065          Martin Helmling added support for ddd GUI debugger.
9066          Code added to display assembly, set variables, and other commands
9067          to interface to ddd.
9068
9069 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
9070
9071         * as/Makefile: fix target clean
9072         * as/clean.mk: fix target clean
9073         * as/z80/clean.mk: fix target clean
9074
9075 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
9076
9077         * Makefile.common.in: added  AT EXEEXT AT
9078         * configure.in: removed all mingw32 stuff
9079         * configure: rebuilt from configure.in
9080         * doc/sdccman.lyx: updated section "installation"
9081         * support/scripts/sdcc_mingw32: adapted to configure
9082         * support/scripts/sdcc_cygwin_mingw32: added
9083
9084 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
9085
9086         * src/pic Added object file support for the PIC port
9087         * src/pic Applied patch from Craig Franklin (this started the object file support)
9088         * src/regression Updated the PIC regression tests for object files
9089
9090 2003-04-20  Borut Razem <borut.razem AT siol.net>
9091
9092         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
9093           lklex.c: In function `getfid':
9094           lklex.c:203: warning: array subscript has type `char'
9095         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
9096           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
9097         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
9098           stack handling macros
9099
9100 2003-04-19  Borut Razem <borut.razem AT siol.net>
9101
9102         * "handling space characters in file path" task:
9103         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
9104         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
9105         * support/Util/MySystem.h: make it self-sufficient
9106         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
9107           src/z80/main.c, sdcc/as/mcs51/lklex.c:
9108           handling space characters in file path
9109         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
9110           (it will be used by assemblers, which have their own includes, e.g. gpasm)
9111         * support/Util/MySystem.c: handling space characters in executable's path
9112
9113 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
9114
9115         * as/z80/Makefile: fix permanent rebuild of z80
9116         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
9117         * support/regression/tests/bitfields.c: added Johan's bitfields.c
9118
9119 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
9120
9121         * src/SDCCopt.c: add special case optimization to replace modulo by
9122           a power of two with a bitwise AND.
9123
9124 2003-04-18    <johan AT balder>
9125
9126         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
9127
9128 2003-04-17    <johan AT balder>
9129
9130         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
9131         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
9132
9133 2003-04-13  Borut Razem <borut.razem AT siol.net>
9134
9135         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
9136         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
9137           fixed mingw problem in adl_NORMALIZE_PATH
9138
9139 2003-04-12  Borut Razem <borut.razem AT siol.net>
9140
9141         * fixed "#pragma SAVE/RESTORE can not be nested":
9142         * src/SDCC.lex: reworked pragma handling functions
9143         * sdcc/src/SDCCglobl.h: reworked stack handling macros
9144         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
9145
9146 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9147
9148         * src/SDCCutil.c (pathEquivalent): defined but not used
9149         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
9150         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
9151         * configure: rebuilt from configure.in
9152         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9153         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9154         * device/include/Makefile.in: replace sdcc_datadir
9155         * device/lib/Makefile.in: replace sdcc_datadir
9156         * Makefile.common.in: add LDFLAGS from configure
9157         * packihx/Makefile.in: use LDFLAGS
9158         * src/Makefile.in: use LDFLAGS
9159         * support/cpp2/Makefile.in: add LDFLAGS from configure
9160         * support/makebin/Makefile: use LDFLAGS
9161         * .version: bumped version number to 2.3.5
9162
9163 2003-04-12  Borut Razem <borut.razem AT siol.net>
9164
9165         * completed "different paths" task:
9166         * src/SDCCmacro.c: fixed bug in handling quotes
9167         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
9168         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
9169
9170 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9171
9172         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
9173
9174 2003-04-11 kevin Vigor <kevin AT vigor.nu>
9175
9176         * ds390/gen.c ds390/peeph.def: fix bug 706781
9177
9178 2003-04-11  Borut Razem <borut.razem AT siol.net>
9179
9180         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
9181
9182 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
9183
9184         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
9185         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
9186          set - this bit used to not be set...).
9187         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
9188           bad code in PIC Port
9189         * src/regression/and2.c added to test bug 609268
9190         * src/regression/Makefile added and2.c to regression test
9191
9192
9193 2003-04-08    <johan AT CP255758-A>
9194
9195         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
9196         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
9197         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
9198
9199 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
9200
9201         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
9202         fix bug #487815
9203         * support/cpp2/Makefile.in: fix bug #487815
9204         * configure: rebuilt from configure.in
9205         * Makefile.common.in: docdir changed, new path suffixes
9206         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9207         * sdcc_vc_in.h: reflect changes from sdccconf.h
9208         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
9209         * src/SDCCutil.h: remove BINDIR hack
9210         * doc/sdccman.lyx: update new path hierarchy
9211
9212 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9213
9214         * src/SDCCpeeph.c: added okToRemoveSLOC test
9215
9216 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9217
9218         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
9219
9220 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9221
9222         * src/SDCCpeeph.c: added labelIsReturnOnly test
9223         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
9224
9225 2003-04-05    <johan AT balder>
9226
9227         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
9228         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
9229         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
9230         * src/SDCCast.c: fixed a warning
9231         * src/SDCCast.h: fixed a warning
9232         * src/SDCCicode.c (operandFromAst): fixed a warning
9233
9234 2003-04-04    <johan AT balder>
9235
9236         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
9237         * src/SDCCast.c (decorateType): fixed bug #715076
9238         * src/SDCC.y: fixed bug #702907
9239
9240 2003-04-03    <johan AT balder>
9241
9242         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
9243         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
9244         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
9245         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
9246         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
9247
9248 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
9249
9250         * _decdptr.c: fix return values
9251         * _gptrget.c: fix return values
9252         * _gptrgetc.c: fix return values
9253         * _gptrput.c: fix return values
9254         * _mulint.c: fix return values
9255         * as/z80/Makefile: fix 'make -j' problem
9256
9257 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
9258
9259         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
9260         * configure.in: big cleanup, updated to autoconf 2.5x
9261         * configure: rebuilt from configure.in
9262         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9263         * sdcc_vc_in.h: reflect changes from sdccconf.h
9264         * doc/Makefile: fixed a flaw in "make install"
9265
9266 2003-04-02    <johan AT balder>
9267
9268         * src/ds390/gen.c (genCmp): no comments
9269         * src/mcs51/gen.c (genCmp): no comments
9270         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
9271         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
9272
9273 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
9274
9275         * support/regression/generate-cases.py: place generated file in given sub directory
9276         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
9277         * support/regression/Makefile: improvements for 'make -j';
9278         side effect: it's simpler and faster now
9279
9280 2003-03-31  Borut Razem <borut.razem AT siol.net>
9281
9282         * src/z80/main.c: link-{port} and as-{port} defined without path
9283         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
9284
9285 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
9286
9287         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
9288
9289 2003-03-30  Borut Razem <borut.razem AT siol.net>
9290
9291         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
9292           changed type of list parameter to set
9293         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
9294         * src/port.h: changed type of do_assemble() parameter to set
9295         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
9296           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
9297           definition of "cppoutfilename" macro with NULL value in preProcess()
9298         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
9299         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
9300         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
9301           replaced with set *binPathSet
9302         * shash_add() deallocates the item, if allready exsists, before adding the new one
9303         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
9304
9305 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
9306
9307         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
9308           a nested for loop bug in the PIC port
9309         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
9310           for loops
9311
9312 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
9313
9314         * support/Util/dbuf.h: remove C++ stuff to make it portable
9315
9316 2003-03-28  Borut Razem <borut.razem AT siol.net>
9317
9318         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
9319           literal strings in stringLiteral()
9320         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
9321         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
9322           to the project
9323
9324 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
9325
9326         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
9327
9328 2003-03-26    <johan AT balder>
9329
9330         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
9331         * src/ds390/gen.c (saveRegisters): catched symbol abuse
9332         * src/SDCCast.c (decorateType): fixed " -v < 3"
9333
9334 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
9335
9336         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
9337         Added Lenny Story's debug infrastructure changes:
9338         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
9339         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
9340         * src/cdbFile.c: added
9341         * src/SDCCdebug.c: added
9342         * src/SDCCdebug.h: added
9343         * src/SDCCast.c (createFunction)
9344         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
9345         * src/SDCCmain.c (parseCmdLine, main)
9346         * src/SDCCmem.c (redoStackOffsets)
9347         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
9348         * src/SDCCsymt.h
9349         * src/common.h
9350         * src/avr/gen.c (genAVRCode)
9351         * src/ds390/gen.c (gen390Code)
9352         * src/mcs51/gen.c (gen51Code)
9353         * src/pic/gen.c (genpic14Code)
9354         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
9355         * src/xa51/gen.c (genXA51Code)
9356         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
9357
9358 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9359
9360         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
9361         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
9362
9363 2003-03-22    <johan AT balder>
9364
9365         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
9366
9367 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
9368
9369         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
9370         * doc/cdbfileformat.lyx: added, written by Lenny Story
9371         * doc/Makefile: added cdbfileformat.lyx
9372         * doc/clean.mk: added cdbfileformat.lyx
9373
9374 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
9375
9376         * src/mcs51/peeph.def: fix bug #705773
9377
9378 2003-03-20    <johan AT balder>
9379
9380         An sfr/sbit can have an "at #" AND an initializer
9381         * src/SDCCsymt.c (checkSClass):
9382         * src/SDCCmem.c (allocGlobal):
9383         * src/SDCCmem.c (allocLocal):
9384         * src/SDCCast.c (createBlock):
9385
9386 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
9387
9388         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
9389
9390 2003-03-16    <johan AT balder>
9391
9392         Undid the hackup of const and volatile, the problem is much bigger
9393         * src/SDCC.y:1.65
9394         * src/SDCCast.c:1.171
9395         * src/SDCCglue.c:1.138
9396         * src/SDCCicode.c:1.146
9397         * src/SDCCsymt.c:1.150
9398         * src/SDCCval.c:1.65
9399
9400 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
9401
9402         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
9403         * src/ds390/gen.c (genAddrOf): fixed bug #704087
9404
9405 2003-03-13    <johan AT balder>
9406
9407         Hackup const and volatile modifiers in type chains a bit:
9408         * src/SDCC.y:1.63
9409         * src/SDCCast.c:1.169
9410         * src/SDCCglue.c:1.136
9411         * src/SDCCicode.c:1.143
9412         * src/SDCCsymt.c1.146
9413         * src/SDCCsymt.h1.59
9414         * src/SDCCval.c:1.63
9415
9416 2003-03-12    <johan AT balder>
9417
9418         * src/SDCCBBlock.h: more LRH debugging junk
9419         * src/SDCCcflow.h: more LRH debugging junk
9420         * src/SDCCloop.c: more LRH debugging junk
9421         * src/SDCC.y (struct_declaration): fixed bug #697590
9422         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
9423         * src/ds390/gen.c (aopForRemat): fixed bug #700031
9424         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
9425
9426 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9427         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
9428         test function names must now match exactly).
9429         * src/SDCCcse.c: added special case in findCheaperOp to allow
9430         extending a short integer. Makes less awful code for bug 700121 test case.
9431
9432 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9433
9434         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
9435         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
9436
9437 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9438
9439         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
9440         actually called (operandsNotEqual() was called for all
9441         operandsNotEqualX tests).
9442
9443 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9444
9445         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
9446         with shorter literals. Fixes bug 700121.
9447
9448 2003-03-11    <johan AT balder>
9449
9450         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
9451
9452 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
9453
9454         * src/SDCCloop.c (mergeRegions): an evil beast is dead
9455         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
9456
9457 2003-03-10  Borut Razem <borut.razem AT siol.net>
9458
9459         * src/SDCCmain.c: pipe preprocessor's output
9460         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9461         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9462         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9463         which closes all pipes in pipeSet set
9464         * src/SDCCset.c: free deleted item in function deleteSetItem()
9465         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9466         moved from z80 to src subproject
9467         * .version: increased version number to 2.3.4
9468
9469 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
9470
9471         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
9472         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
9473         * support/regression/ports/xa51/spec.mk: fix typo
9474
9475 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
9476
9477         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
9478
9479 2003-03-09  Borut Razem <borut.razem AT siol.net>
9480
9481         * src/SDCCmain.c: pipe preprocessor's output
9482         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9483         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9484         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9485         which closes all pipes in pipeSet set
9486         * src/SDCCset.c: free deleted item in function deleteSetItem()
9487         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9488         moved from z80 to src subproject
9489
9490 2003-03-09  Borut Razem <borut.razem AT siol.net>
9491
9492         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
9493         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
9494         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
9495         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
9496         * src/SDCCglobl.h: unification of WIN32 native definitions
9497
9498 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9499
9500         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
9501
9502 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9503
9504         * src/configure.in:   check for endianess (even while cross-compiling)
9505         * src/configure:      check for endianess (even while cross-compiling)
9506         * src/configure_in.h: check for endianess (even while cross-compiling)
9507         * src/avr/gen.c:        remove old endianess stuff
9508         * src/mcs51/gen.c:      remove old endianess stuff
9509         * src/ds390/gen.c:      remove old endianess stuff
9510         * src/pic/gen.c:        remove old endianess stuff
9511         * src/pic/genarith.c:   remove old endianess stuff
9512         * src/pic/glue.c:       fix endianess check
9513         * src/pic16/gen.c:      remove old endianess stuff
9514         * src/pic16/genarith.c: remove old endianess stuff
9515         * src/pic16/glue.c:     fix endianess check
9516         * src/xa51/gen.c:       remove old endianess stuff
9517         * src/z80/gen.c:        fix endianess check
9518         * src/SDCCglue.c:       fix endianess check
9519         * src/ds390/peeph.def: fix bug 700036
9520
9521 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9522
9523         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
9524         * src/configure: find appropriate data-types on host for SDCC's int and long
9525         * src/configure.in: find appropriate data-types on host for SDCC's int and long
9526         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
9527         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
9528
9529 2003-03-07    <johan AT balder>
9530
9531         Just a big NOOP:
9532                 some minor cleanups before the big shot
9533                 OP_DEFS and OP_USES now use Kevin's protection
9534                 new option --nolabelopt
9535
9536         * src/SDCCBBlock.c:
9537         * src/SDCCast.c,:
9538         * src/SDCCcflow.c:
9539         * src/SDCCcse.c:
9540         * src/SDCCicode.c:
9541         * src/SDCCicode.h:
9542         * src/SDCClabel.c:
9543         * src/SDCCloop.c:
9544         * src/SDCCmain.c:
9545         * src/ds390/ralloc.c:
9546         * src/mcs51/ralloc.c:
9547         * src/pic/ralloc.c:
9548         * src/xa51/ralloc.c:
9549         * src/z80/ralloc.c:
9550
9551 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
9552
9553         * src/pic/pcode.c (get_op): fix 64 bit warnings
9554         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
9555         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
9556         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
9557         * support/regression/tests/malloc.c: fix 64 bit warnings
9558
9559 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
9560
9561         * src/mcs51/gen.c (genMinus): fixed bug 696436
9562
9563 2003-03-02  Borut Razem <borut.razem AT siol.net>
9564
9565         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
9566
9567 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
9568
9569         * configure.in: test for mkstemp
9570         * sdccconf_in.h: add HAVE_MKSTEMP
9571
9572 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
9573
9574         * device/include/ctype.h: removed warning while using --stack-auto
9575         * device/include/malloc.h: removed warning while using --stack-auto
9576         * device/include/string.h: removed warning while using --stack-auto
9577
9578 2003-02-23  Borut Razem <borut.razem AT siol.net>
9579
9580         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
9581         because NDEBUG is defined (see man assert)
9582         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
9583
9584 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9585
9586         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
9587         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
9588
9589 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9590
9591         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
9592         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
9593
9594 2003-02-18    <johan AT balder>
9595
9596         * as/mcs51/asmain.c (asmbl): module can start with a digit
9597         * as/z80/asmain.c (asmbl): module can start with a digit
9598
9599 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
9600
9601         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
9602         * src/asm.c: fix pipe() for Mingw32
9603
9604 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
9605
9606         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
9607         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
9608         make -V work again; --c1mode reads now from stdin
9609         * doc/sdccman.lyx: added --c1mode
9610         * support/Util/SDCCerr.c: new messages for c1 mode
9611         * support/Util/SDCCerr.h: new messages for c1 mode
9612         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
9613
9614 2003-02-15    <johan AT balder>
9615
9616         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
9617
9618 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
9619
9620         * doc/sdccman.lyx: Environment variables, -o and other minor things
9621
9622 2003-02-14    <johan AT balder>
9623
9624         * src/xa51/main.c: before anyone really tries to use it :)
9625
9626         * Install doc's in share/sdcc/doc
9627         * removed some obsolete files
9628         * Do a proper make distclean and uninstall
9629         M Makefile.common.in
9630         R sdccbuild.sh
9631         M as/Makefile
9632         M device/include/Makefile.in
9633         M device/lib/Makefile.in
9634         M doc/sdccman.lyx
9635         M link/Makefile
9636         M sim/ucsim/doc/Makefile.in
9637         M src/clean.mk
9638         R src/avr/peeph.rul
9639         R src/xa51/peeph.rul
9640         M support/cpp2/Makefile.in
9641         M support/makebin/Makefile
9642
9643
9644 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
9645
9646         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
9647
9648 2003-02-10  Borut Razem <borut.razem AT siol.net>
9649
9650         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
9651         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
9652         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
9653         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
9654         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
9655         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
9656         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
9657         src/z80/Makefile.bcc: Borland Makefile cleanup
9658         * as/z80/Makefile.bcc: Added Borland Makefile
9659         * support/cpp2/borland.h: Removed
9660
9661 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
9662
9663         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
9664         * src/SDCC.lex: new pragma NOIV
9665         * src/SDCCglobl.h: new pragma NOIV
9666         * src/SDCCmem.c: new pragma NOIV
9667
9668 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9669
9670         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
9671
9672 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9673
9674         * src/SDCCmain.c: signal handling is switched off by --debug
9675         * doc/Makefile: small fix for install; use clean.mk again
9676         * doc/clean.mk: clean *.pdf and *.html too
9677
9678 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
9679
9680         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
9681         * device/lib/printfl.c: fix a ds390 bug by making it portable
9682         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
9683         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
9684         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
9685         * debugger/mcs51/cmd.c: converted multi-line string literals
9686         * sim/ucsim/globals.cc: converted multi-line string literals
9687         * src/SDCCmain.c: introduced signal handler to remove temp files
9688         * doc/Makefile: small tweaks, implement clean
9689         * doc: removed generated files
9690
9691 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9692
9693         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
9694         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
9695         Address Record is not correctly generated for DS390."
9696
9697 2003-02-02  Borut Razem <borut.razem AT siol.net>
9698
9699         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
9700         * as/mcs51/asm.h: fixed compilation with Borland C
9701         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
9702         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
9703         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
9704         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
9705         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
9706         src/z80/Makefile.bcc: delete $(LIB) only if exist
9707         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
9708
9709 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
9710
9711         * device/include/malloc.h: introduced NULL
9712         * device/include/string.h: introduced NULL
9713         * device/include/stdlib.h: introduced NULL
9714         * device/lib/_memcpy.c: removed NULL
9715         * device/lib/_strcat.c: removed NULL
9716         * device/lib/_strchr.c: removed NULL
9717         * device/lib/_strcmp.c: removed NULL
9718         * device/lib/_strcpy.c: removed NULL
9719         * device/lib/_strcspn.c: removed NULL
9720         * device/lib/_strlen.c: removed NULL
9721         * device/lib/_strncat.c: removed NULL
9722         * device/lib/_strncmp.c: removed NULL
9723         * device/lib/_strncpy.c: removed NULL
9724         * device/lib/_strpbrk.c: removed NULL
9725         * device/lib/_strrchr.c: removed NULL
9726         * device/lib/_strspn.c: removed NULL
9727         * device/lib/_strstr.c: removed NULL
9728         * device/lib/_strtok.c: removed NULL
9729         * device/lib/malloc.c: removed NULL, include own header
9730
9731 2003-02-02    <johan AT balder>
9732
9733         * 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
9734         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
9735         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
9736         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
9737         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
9738         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
9739
9740 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9741
9742         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
9743         area 'DATA'"
9744
9745 2003-02-01    <johan AT balder>
9746
9747         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
9748
9749 2003-01-31    <johan AT CP255758-A>
9750
9751         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
9752
9753 2003-01-30    <johan AT balder>
9754
9755         * src/SDCCBBlock.c: automatic bug detection
9756         * src/SDCCicode.c: automatic bug detection
9757
9758 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9759
9760         * src/SDCCglobl.h:   now --xram-size 0 works
9761         * src/SDCCmain.c:    now --xram-size 0 works
9762
9763 2003-01-29    <johan AT balder>
9764
9765         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
9766
9767 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9768
9769         * as/mcs51/aslink.h: Added options --xram-size and --code-size
9770         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
9771         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
9772         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
9773         * src/SDCCglobl.h:   Added options --xram-size and --code-size
9774         * src/SDCCmain.c:    Added options --xram-size and --code-size
9775
9776 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
9777
9778         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
9779         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
9780
9781 2003-01-27    <johan AT balder>
9782
9783         * src/SDCC.y: fixed bug #613764
9784
9785 2003-01-26    <johan AT balder>
9786
9787         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
9788         * src/SDCCsymt.h: fixed bug #673374
9789         * src/SDCCglue.c: fixed bug #661910
9790         * src/SDCCast.c: fixed bug #458099 and 673374
9791
9792 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
9793
9794         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
9795         * as/mcs51/strcmpi.h: added
9796         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
9797         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
9798         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
9799         * as/mcs51/assym.c: strcmpi -> as_strcmpi
9800         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
9801         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
9802         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
9803         * as/mcs51/Makefile.aslink: new module strcmpi
9804         * as/mcs51/Makefile.asx8051: new module strcmpi
9805         * as/mcs51/Makefil.bcc: new module strcmpi
9806         * as/mcs51/Makefile.in: new module strcmpi
9807         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
9808
9809 2003-01-26    <johan AT balder>
9810
9811         * src/SDCCglue.c: reverted back to 1.124
9812         * src/SDCCast.c: reverted back to 1.156
9813         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
9814
9815 2003-01-25    <johan AT balder>
9816
9817         * src/SDCCglue.c: A better fix for bug #661910
9818         * src/SDCCast.c: A better fix for bug #661910
9819         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
9820
9821 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9822
9823         * src/Makefile.in: remove spawn.o
9824         * src/SDCCmain.c: remove spawn.h
9825         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
9826         * src/spawn.c: removed
9827         * src/spawn.h: removed
9828         * support/regression/ports/ds390/spec.mk: link with -r
9829
9830 2003-01-24    <johan AT CP255758-A>
9831
9832         * src/ds390/gen.c (aopOp): fixed bug #667458
9833         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
9834         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
9835         (createIvalCharPtr): an ival doesn't always have a storage class anymore
9836
9837 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9838
9839         * src/mcs51/peeph.def: better assembler identation by Frieder
9840         * src/mcs51/gen.c: better assembler identation by Frieder
9841
9842 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
9843
9844         * as/z80/string.h: removed for gcc 3.2
9845         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
9846         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
9847
9848 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9849
9850         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
9851         * src/SDCCpeeph.c (replaceRule): fix bug #663503
9852         * support/regression/Makefile: separate temp files for ports
9853         * support/regression/generate-cases.py: separate temp files for ports
9854         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9855         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9856
9857 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9858
9859         * moved tinitalk to device/examples/ds390
9860
9861 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
9862
9863         * as/mcs51/lkmem.c: rflag is for DS390
9864         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
9865         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
9866                          (linkEdit): move mem- and map-files the same way as ihx-files
9867         * src/z80/main.c (_setDefaultOptions): removed --generic
9868         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
9869         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
9870         * src/pic/glue.c (picglue): --c1mode works again
9871         * src/pic16/glue.c (pic16glue): --c1mode works again
9872         * src/asm.c (printCLine): fix #660034
9873
9874 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
9875
9876         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
9877         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
9878         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
9879         * as/mcs51/lkmem (summary): better fix for sp problem
9880         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
9881         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
9882         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
9883                                               remove --stack-after-data
9884
9885 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
9886
9887         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
9888         * src/SDCCutil.c (join): ugly bug: missing '\0'
9889         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
9890
9891 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9892
9893         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
9894         * src/port.h: typo
9895         * src/pic/main.c (_asmCmd): gpasm supports -o
9896         * src/z80/main.c: more general macros
9897         * device/lib/Makefile.in: remove intermediate files
9898
9899 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9900
9901         * .version: Bumped version number to 2.3.3
9902         * src/SDCCBBlock.c: new option -o
9903         * src/SDCCglobl.h: new option -o
9904         * src/SDCCglue.c: new option -o
9905         * src/SDCCmain.c: new option -o
9906         * src/asm.c: new option -o
9907         * src/ds390/main.c: new option -o
9908         * src/pic/glue.c: new option -o
9909         * src/pic/pcode.c: new option -o
9910         * src/pic/ralloc.c: new option -o
9911         * src/pic16/glue.c: new option -o
9912         * src/pic16/pcode.c: new option -o
9913         * src/pic16/ralloc.c: new option -o
9914         * src/z80/main.c: new option -o
9915         * device/lib/Makefile.in: use -o
9916         * support/regression/ports/ds390/spec.mk: use -o
9917         * support/regression/ports/gbz80/spec.mk: use -o
9918         * support/regression/ports/mcs51/spec.mk: use -o
9919         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
9920         * support/regression/ports/z80/spec.mk: use -o
9921         * support/regression/ports/ucz80/spec.mk: use -o
9922         * support/regression/ports/xa51/spec.mk: use -o
9923         * support/regression/fwk/lib/timeout.c: fix usage string
9924
9925 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
9926         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
9927
9928 2003-01-07    <johan AT balder>
9929
9930         * src/SDCCast.c (decorateType): fixed bug #600035
9931
9932 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
9933         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
9934         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
9935         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
9936         * src/pic/pcode.c: outcommented unused variable to remove warnings
9937         * src/pic/ralloc.c: outcommented unused variable to remove warnings
9938
9939 2003-01-06    <karl AT turbobit.com>
9940         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
9941    regression tests.
9942
9943 2003-01-06    <johan AT balder>
9944
9945         * src/SDCCicode.c: fixed array add
9946
9947 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
9948         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
9949         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
9950
9951 2003-01-04    <johan AT balder>
9952
9953         * src/SDCCval.c (getNelements): fixed the initialized array of structures
9954
9955 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9956         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
9957
9958 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9959         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
9960         * support/regression/tests/bug-524697.c: fit mem usage into 8032
9961
9962 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9963         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
9964
9965 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
9966         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
9967
9968 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
9969         * src/mcs51/main.c: removed {bindir}{sep} from aslink
9970
9971 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9972
9973     * in \sdcc\as\mcs51\ changed these files in order to create an
9974     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
9975     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
9976     following files to include the previous two files: aslink.dsp,
9977     Makefile.aslink, Makefile.bcc, and Makefile.in.
9978
9979     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
9980     .adb instead of .cdb
9981
9982 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9983
9984         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
9985         value from option --iram-size.
9986
9987 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9988
9989         * \sdcc\as\mcs51\lklist.c: added boundary check before using
9990         dram[] array.
9991
9992 2002-09-18    <wiml AT hhhh.org>
9993
9994         * SDCClrange.h: exposed setFromRange() and setToRange()
9995         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
9996           packRegsForAccUse() (bug 542397)
9997         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
9998           multiple times and emitting the fetch operations more than once
9999           added aopGetUsesAcc() function to allow binary operators to
10000           fetch their operands in the correct order; made genMinus() emit
10001           compact code for X = LITERAL - Y
10002
10003 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10004         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
10005         sprintf() in line 1267.
10006
10007 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10008         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
10009         like ports.
10010
10011 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10012         Changes to aslink (All the changes are marked with 'JCF'):
10013
10014         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
10015         summary().
10016
10017         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
10018         area BSEG.  Also moves, if possible, the DATA area down into the internal
10019         ram so more space is available.
10020
10021         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
10022         sflag.
10023
10024         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
10025         not bytes.  Function summary() which creates a memory usage summary
10026         file with extension .mem.  Reports of overlaping stack and small stack
10027         size.  If the space for the stack is less than 16 bytes aslink trows a
10028         warning.
10029
10030         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
10031         the 8051.  Option 'y' for memory summary output file.
10032
10033         Changes to sdcc (All the changes are marked with 'JCF'):
10034
10035         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
10036
10037         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
10038         overlaying area for it (uses RegBankUsed[4]).
10039
10040         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
10041         bank zero as used by default.  By default aslink locates the stack
10042         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
10043         the creation of the .mem file.  Delegates the allocation of data area
10044         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
10045         the begining of the stack area to aslink.
10046
10047         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
10048         glue() in SDCCglue.c creates an area for it.
10049
10050 2002-09-03  Borut Razem <borut.razem AT siol.net>
10051         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
10052         sdcc/src/pic/glue.c:
10053         introduced atexit() handler for teporay files removal in case of
10054         errors, assertions, ...
10055
10056 2002-08-29  Borut Razem <borut.razem AT siol.net>
10057         * sdcc/support/cpp2/auto-host_vc_in.h:
10058         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
10059         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
10060         Maybe there is a similar problem with BORLANDC? It should be checked!
10061
10062         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
10063         corrected improper use of assert: the assignment to clr variable was done inside the assert.
10064         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
10065         was not executed, and the compiler (cl) launched a warning:
10066         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
10067
10068 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
10069         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
10070
10071 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
10072         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
10073
10074         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10075           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
10076           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
10077           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10078           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
10079           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
10080           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
10081         - added Release configuration in VS projects
10082         - review of compiler an linker options
10083         - VC .exe files are generated in bin_vc directory, not to interfere
10084           with binaries generated from other projects (cygwin, mingw, bcc ...)
10085
10086         * sdcc/src/yacc.dsp: added
10087
10088         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
10089         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
10090         and insert the version number definitions from .version
10091
10092         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
10093
10094         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
10095         added - genarate auto-host.h using auto-host_vc_in.h as template
10096
10097         * sdcc/sdcc_vc.h,
10098         removed from CVS, generated automatically
10099
10100 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
10101         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
10102
10103 2002-08-11  Borut Razem <borut.razem AT siol.net>
10104         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
10105
10106 2002-08-10  Borut Razem <borut.razem AT siol.net>
10107         * src/SDCCmain.c (main):
10108         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
10109         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
10110         The consequence was that some temporary files were not removed.
10111
10112         * src/SDCCglue.c:
10113         unification of code in functions tempfilename() and tempfile():
10114         function tempnam() is defined in Visual Studio 6.0 and .NET
10115
10116         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
10117
10118         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10119           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
10120         - removed compiler command line option /WX: Treats all warnings as errors
10121         - update a list of source files, included into the project
10122
10123         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10124           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
10125         changed project type to Generic Project so that can be correcly converted to VS.NET project
10126
10127         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
10128
10129         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
10130
10131         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
10132
10133         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
10134         added return 0 statements after assert() to make compiler happy
10135
10136         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
10137         added newline in the def file to keep MSC compiler satisfied
10138
10139         * sdcc/src/z80/gen.c:
10140         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
10141           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
10142         - solved MSC error in function aopDump()
10143
10144         * sdcc_vc.h: define PREFIX as "\\sdcc"
10145
10146 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
10147         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
10148
10149 2002-06-22  Scott Dattalo <scott AT dattalo.com>
10150         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
10151         - Rewrote the register banking algorithm.
10152         - Added pCode live-range analysis to registers (for now, only non-used and
10153         singly-used registers optimized away)
10154
10155         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
10156
10157         * 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.
10158
10159 2002-05-10  Scott Dattalo <scott AT dattalo.com>
10160         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
10161
10162 2002-04-22  Michael Hope  <michaelh AT vroom>
10163
10164         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
10165
10166         * configure.in (DD_COPT): Added include support required for gbdk.
10167
10168         * .version: Bumped version number just to increase it.
10169
10170         * src/SDCCmain.c: Added -nostdinc to the default options.
10171
10172 2002-04-15  Michael Hope  <michaelh AT vroom>
10173
10174         * device/lib/z80/printf.c (sprintf): Added.
10175
10176         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
10177
10178         * src/z80/peeph.def: Added transpose redundent load rule.
10179
10180         * src/z80/main.c: Added force callee saves for jaune.
10181
10182         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
10183
10184         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
10185
10186 2002-03-28  Johan Knol  <johan AT balder>
10187
10188         * src/SDCCval.c: fixed bug #532436
10189
10190 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10191         * /src/port.h:
10192         Added "char *Processor" field to the port structure.
10193
10194         * /src/SDCCmain.c:
10195         Added -p option. Allows port dependent processor to be specified.
10196
10197         * all ports:
10198         Initialized the new field char *Processor field to NULL in all ports
10199
10200         * /src/pic/*:
10201         Compiler generated registers for interrupt context saving
10202         were not getting allocated.
10203
10204 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
10205
10206         * /src/SDCCast.c:
10207         Fixed left shift. Will promote the left side of a left shift
10208         if a) left shifting more than size of operand or b) when assigned
10209         to something size > size of left side
10210
10211 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10212         * src/pic/*
10213         tons of changes. Register allocation has been
10214         rewritten. Added customization for the various PICs. Flow
10215         analysis is restructured. ...
10216
10217         * src/pic/device.h:
10218         Added
10219
10220         * src/pic/device.c:
10221         Added. device.c is a PIC port hack to accomodate variations
10222         in PIC devices.
10223
10224 2002-03-13  Michael Hope  <michaelh AT vroom>
10225
10226         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
10227
10228 2002-03-04  johanknol  <johanknol AT manik>
10229
10230         * /src/SDCCval.c: fixed
10231
10232         const unsigned char arr[][2] = { { 0, 1 } };
10233         t18.c:1: error: Initializer element is not constant
10234
10235 2002-03-04  bela  <bela AT manik>
10236
10237         * /device/include/mcs51reg.h:
10238         ds89c420 register definition update
10239
10240 2002-03-03    <johan AT FRIJA>
10241
10242         * support/Util/SDCCerr.c: did something, but don't no why anymore
10243
10244         * support/regression/tests/bug-524691.c: made it a little less shy
10245
10246         * src/SDCCast.c (decorateType): fixed bug #524697
10247
10248         * src/SDCCast.c: made some lineno improvements
10249
10250         * src/SDCCval.c (getNelements): changed warning to error
10251
10252         * src/SDCCglue.c (printIvalArray): changed warning to error
10253
10254         * src/SDCCicode.c: fixed a warning for mingw
10255
10256         * src/SDCCast.c (decorateType): fixed the << promotion for ops
10257
10258         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
10259
10260 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
10261
10262         * src/ds390/peeph.def:
10263         Added some more peephole rules
10264
10265         * src/ds390/gen.c: Various fixes & enhancements
10266
10267         * src/SDCClrange.c, src/SDCClrange.h:
10268         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
10269
10270         * src/ds390/ralloc.c:
10271         various fixes & enhancements (ds390) specific
10272
10273         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
10274         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
10275         from rallocs.
10276
10277         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
10278
10279 2002-03-02    <johan AT FRIJA>
10280
10281         * src/SDCCast.c (decorateType): fixed bug #524708
10282
10283         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
10284
10285         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
10286
10287 2002-03-01  Michael Hope  <michaelh AT vroom>
10288
10289         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
10290
10291         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
10292
10293 2002-03-01    <johan AT FRIJA>
10294
10295         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
10296
10297         * src/SDCCast.c (decorateType): fixed bug #524209
10298
10299         * src/SDCCval.c (valNot): fixed bug #524195
10300
10301 2002-02-26    <johan AT balder>
10302
10303         * src/xa51/gen.c: fixed a warning
10304
10305         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
10306
10307         * src/SDCCast.c (decorateType): fixed bug #522534
10308
10309 2002-02-23    <johan AT balder>
10310
10311         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
10312
10313 2002-02-22    <johan AT balder>
10314
10315         * src/SDCCast.c: fixed bug #514865
10316
10317         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
10318
10319 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
10320
10321         * sdcc/src/SDCCloop.c:
10322         Previous fix was not good. basic blocks that have "break" or "return" are
10323         not really partof a loop , but live ranges used in these blocks should
10324         be live thru the entire loop, so set partOfLoop but don't add them to
10325         loop region
10326
10327 2002-02-21    <johan AT FRIJA>
10328
10329         * src/SDCCcse.c: fixed bug #514308
10330
10331 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
10332
10333         * src/SDCCloop.c:
10334         Fixed BUG #519583. If a conditional block ended in a return/break
10335         statement inside a loop, it was not being considered part of the loop.
10336
10337         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
10338
10339 2002-02-10  Karl Bongers <karl AT turbobit.com>
10340
10341         * debugger/*:
10342         Fixed up SDCDB debugger somewhat.  Updated debugger/README
10343         with lots of comments and notes.
10344
10345         * device/examples/test2.c:
10346         Fix bug, "red" variable not being initialized(compiler complained).
10347
10348         * device/examples/Makefile, examples/test3.c:
10349         Add Makefile in device/examples folder, compiles test3.c
10350         for use as a multiple module SDCDB test case.
10351
10352         * sim/ucsim/cmd.src/cmdset.cc:
10353         Took out debug printfs in ucsim "next" command.
10354
10355         * sim/ucsim/xa.src:
10356         Karl and Johan start ucsim XA support.  Most dissassembly working,
10357         about 75% emulation done(plenty of work remaining).
10358
10359         * sim/ucsim/z80.src:
10360         Add Z80 support to ucsim, add test-ucz80 regression test,
10361         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
10362         Notice z80 compiler fails on examples/test3.c/crc code.
10363
10364 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
10365
10366         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
10367         Added support for --parms-in-bank1
10368
10369         * src/ds390/peeph.def:
10370         added a few more peephole optimzations
10371
10372         * src/ds390/main.c:
10373         1) added __builtin_inp & __builtin_outp used to read in data of given length
10374            from a memory mapped port
10375         2) added __builtin_memcmp
10376         3) added __builtin_swapw swap bytes of a short
10377
10378         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
10379         1) handle multiple send & receives from register bank1
10380         2) ralloc can now allocate DPTR1 to some liveRanges
10381
10382         * src/SDCCsymt.c, src/SDCCsymt.h:
10383         changes to handle multiple sends & receives
10384
10385         * src/SDCCptropt.h:
10386         added some pointer arithmetic optimization
10387
10388         * src/SDCCptropt.c:
10389         added some pointer arithmetic optimizations but not stable yet so not
10390         called from anywhere (will get this working shortly)
10391
10392         * src/SDCCopt.c: fixed for multiple sends & receives
10393
10394         * src/SDCCmain.c:
10395         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
10396         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
10397            set preprocessor defines (depending on options)
10398
10399         * src/SDCCicode.c, src/SDCCicode.h:
10400         changes made to handle multiple sends & receives
10401
10402         * src/SDCCglobl.h:
10403         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
10404
10405         * src/SDCCcse.c, src/SDCCcse.h:
10406         added function findbackward def (to be used in upcoming optimization)
10407
10408         * src/SDCCcflow.c, src/SDCCcflow.h:
10409         added function returnAtEnd - to determine if a basic block terminates with
10410         a RETURN iCode
10411
10412         * src/SDCCast.c, src/SDCCast.h:
10413         added option parms-in-bank1
10414
10415         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
10416         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
10417         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
10418         adjusted for --parms-in-bank1 option
10419
10420         * device/include/string.h:
10421         donot redefine "reentrant" keyword
10422
10423         * device/include/ds80c390.h: Added some more SFRs
10424
10425 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
10426
10427         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
10428
10429 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
10430
10431         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
10432
10433 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
10434
10435         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
10436
10437 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
10438
10439         * Added --xram-movc option
10440
10441 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
10442
10443         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
10444
10445 2002-01-11  Johan Knol
10446
10447         * Added math lib of Jesus Calvino-Fraga
10448
10449 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
10450
10451         * src/SDCCmain.c (processFile): fix processing of ../../src.c
10452         * support/regression/Makefile: new target test-mcs51-stack-auto
10453         * support/regression/ports/mcs51-stack-auto/spec.mk: added
10454
10455 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10456
10457         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
10458
10459 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10460
10461         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
10462
10463 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
10464
10465         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
10466
10467         * src/SDCCglue.h: add definition for printIvalChar()
10468
10469 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10470
10471         * src/SDCCast.c: fix #498138 by Johan
10472
10473         * src/SDCCglue.c: fix #498138 by Johan
10474
10475 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10476
10477         * support/regression/Makefile: fix clean
10478
10479         * support/regression/ports/ds390/support.c: fix transmission of last character
10480
10481 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
10482
10483         * /sdcc/src/ds390/gen.c:
10484         a) improved computing address of stack variable
10485         b) took out some #if 0 code
10486         c) improved parmBytes adjustment
10487         d) improved genPlusIncr & genMinusIncr
10488         e) genCmp could generate bad code (when left assigned to DPTR)
10489         f) Fixed bug in hasInc
10490
10491         * /sdcc/src/ds390/ralloc.c:
10492         a) packRegsForSupport could mess up live information (Fixed)
10493         b) packRegsDPTRuse could be incorrect for left & right shift
10494
10495         * /sdcc/src/mcs51/ralloc.c:
10496         packRegsForSupport could mess up the live information (Fixed)
10497
10498         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
10499
10500         * /sdcc/src/SDCCast.c:
10501         can reverse a loop even if function call is present as long
10502         as the loop control variable is local & is not passed as parameter
10503
10504 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10505
10506         * /sdcc/ChangeLog: *** empty log message ***
10507
10508         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
10509         More builtin function additions for TININative
10510
10511         * /sdcc/src/ds390/ralloc.c:
10512         Had broken the regression testsuite
10513
10514         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
10515
10516         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
10517         Added funcattr hasStackParms will be set for reentrant functions when there
10518         are paramteres on the stack, this helps in minimizing frame pointer generation
10519         typeFromStr can handle function pointers now
10520
10521         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
10522         *** empty log message ***
10523
10524 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10525
10526         * /src/ds390/gen.c, /src/ds390/main.c:
10527         More builtin function additions for TININative
10528
10529         * /src/ds390/ralloc.c:
10530         Had broken the regression testsuite
10531
10532         * /src/SDCCast.c: Fixed a bug in dumptree
10533
10534         * /src/SDCCsymt.c, /src/SDCCsymt.h:
10535         Added funcattr hasStackParms will be set for reentrant functions when there
10536         are paramteres on the stack, this helps in minimizing frame pointer generation
10537         typeFromStr can handle function pointers now
10538
10539         * /doc/builtins.txt, /doc/TININative.txt:
10540         *** empty log message ***
10541
10542
10543 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10544
10545         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
10546         ALPHA version for -mTININative
10547
10548         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
10549         updated to reflect changes in the port structure
10550
10551         * /src/port.h:
10552         added function do_assemble (similar to do_link) if non-null this function
10553         will be called to do assembly (-mTININative) requires a multi command
10554         assembly
10555         added function genAssemblerEnd will be called to generate assembler Epilogue
10556
10557         * /src/SDCCsymt.c:
10558         added _JavaNative to debug info printing
10559
10560         * /src/SDCCmain.c: added option --tini-libid
10561         added port->do_assemble function (-mTININative) has a multi command assemble
10562
10563         * /src/SDCCglue.c: Disabled "constExpr" check
10564         added port->genAssemblerEnd function
10565
10566         * /src/SDCCglobl.h: Added option --tini-libid value
10567
10568         * /src/SDCCast.h:
10569         tookout optimizeCompare from the header (has no external references)
10570
10571         * /src/SDCCast.c: made one more function "static"
10572
10573 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
10574
10575         * src/z80/mappings.i: Added z80asm support.
10576
10577         * src/z80/main.c: Added z80asm support on --asm=z80asm
10578
10579         * src/z80/gen.c: Fixed asm portability issues.
10580
10581         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
10582
10583         * src/SDCCglue.c (printExterns): Added global/extern split.
10584
10585 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
10586
10587         * support/regression/Makefile: added test for mcs51 model large
10588
10589         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
10590
10591         * support/regression/ports/gbz80/spec.mk: added -mgbz80
10592
10593 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
10594
10595         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
10596
10597 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
10598
10599         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
10600
10601         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
10602
10603 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
10604
10605         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
10606
10607         * support/regression/tests/simplefloat.c: Port to mcs51.
10608
10609 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
10610         * support/regression/tests/bug-485362.c: Added.
10611
10612         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
10613
10614         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
10615
10616         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
10617
10618         * src/z80/gen.c (aopDump): Added a dump function.
10619
10620 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
10621         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
10622
10623         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
10624
10625         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
10626
10627         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
10628
10629         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
10630
10631         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
10632
10633         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
10634
10635         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
10636
10637         * support/regression/ports/ds390/support.c: Use tinibios.
10638
10639         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
10640
10641 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
10642
10643         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
10644         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
10645
10646         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
10647
10648         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
10649
10650 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
10651
10652         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
10653
10654         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
10655         (packRegsForIYUse): Created and optimised.
10656
10657 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10658
10659         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
10660 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
10661
10662         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
10663
10664         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
10665
10666         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
10667
10668 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10669
10670         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
10671
10672         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
10673
10674 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10675
10676         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
10677
10678         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
10679
10680         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
10681
10682 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10683
10684         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
10685         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
10686         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
10687
10688         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
10689
10690         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
10691         (genNotFloat): Added.
10692         (genUminusFloat): Added.
10693
10694         * device/lib/z80/Makefile: Added floating pt stubs.
10695
10696         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
10697
10698         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
10699
10700         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
10701
10702 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10703
10704         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
10705
10706         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
10707
10708         * sdcc/support/regression/Makefile: Add port ds390.
10709
10710         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
10711
10712         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
10713
10714         * sdcc/support/regression/ports/ds390/spec.mk: Added.
10715
10716         * sdcc/support/regression/ports/ds390/support.c: Added.
10717
10718         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
10719
10720         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
10721
10722         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
10723
10724 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
10725
10726         * device/include/malloc.h: Added z80 and gbz80 support.
10727
10728         * device/lib/gbz80/heap.s: Added.
10729
10730         * device/lib/z80/heap.s: Added.
10731
10732         * device/lib/malloc.c: Added z80 and gbz80 support.
10733
10734         * support/regression/tests/malloc.c (testMalloc): Added.
10735
10736         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
10737
10738         * support/regression/tests/bug-478094.c: Added.
10739
10740         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
10741
10742 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
10743
10744         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
10745
10746         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
10747
10748         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
10749
10750         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
10751
10752         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
10753
10754 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
10755
10756         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
10757
10758 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
10759
10760         * support/regression/tests/bug-477927.c: Added.
10761
10762         * src/z80/peeph.def: Added minor rules.
10763
10764         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
10765
10766         * src/z80/peeph.def: Added jump optimisation modification.
10767
10768 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
10769
10770         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
10771
10772 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
10773
10774         * support/regression/tests/funptrs.c: Added.
10775
10776 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
10777
10778         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
10779
10780 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
10781
10782         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
10783
10784         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
10785
10786         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
10787         (movLeft2ResultLong): Created.
10788
10789         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
10790         (joinPushes): Added.  Joins two char pushes into a word push.
10791
10792 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
10793
10794         * support/cpp2/Makefile.in (install): Added creation of dest dir.
10795
10796         * support/makebin/Makefile (install): Added creation of dest dir.
10797
10798 2001-10-24 Karl Bongers <karl AT turbobit.com>
10799
10800         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
10801
10802 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
10803
10804         * src/z80/ralloc.c: Turned off faulty pack for one use.
10805
10806         * src/z80/peeph-gbz80.def: Removed redundent restart options.
10807
10808         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
10809
10810 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
10811
10812         * support/regression/Makefile: Improved clean
10813
10814         * support/regression/ports/gbz80/spec.mk: Added clean
10815
10816         * support/regression/ports/host/spec.mk: Added clean
10817
10818         * support/regression/ports/z80/spec.mk: Added clean
10819
10820         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
10821
10822         * support/regression/ports/mcs51/timeout.c: little improvements
10823
10824 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
10825
10826         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
10827
10828         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
10829
10830         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
10831
10832 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
10833
10834         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
10835
10836         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
10837
10838 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
10839         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
10840
10841         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
10842
10843         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
10844
10845         * src/mcs51/main.c (_linkCmd): Added bin path to command.
10846
10847         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
10848
10849         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
10850
10851         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
10852
10853         * support/regression/tests/longor.c: Added.
10854
10855 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
10856
10857         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
10858
10859         * as/mcs51/aslink.h: define PATH_MAX
10860
10861         * as/mcs51/asm.h: define PATH_MAX
10862
10863         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
10864
10865         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
10866
10867         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
10868
10869         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
10870
10871         * src/SDCCglobl.h: define PATH_MAX
10872
10873         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
10874
10875         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
10876
10877 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
10878
10879         * src/z80/gen.c (gencjneshort): Fixed
10880
10881         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
10882
10883 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
10884
10885         * support/regression/tests/bug-469671.c: Added.
10886
10887         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
10888
10889 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
10890
10891         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
10892
10893         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
10894
10895 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
10896
10897         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
10898
10899         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
10900
10901         * src/device/lib/_mullong.c : removed hint: nooverlay bug
10902
10903         * src/device/lib/_divuint.c : removed hint: nooverlay bug
10904
10905         * src/device/lib/_divulong.c: removed hint: nooverlay bug
10906
10907         * src/device/lib/_moduint.c : removed hint: nooverlay bug
10908
10909         * src/device/lib/_modulong.c: removed hint: nooverlay bug
10910
10911 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
10912
10913         * 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.
10914
10915         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
10916
10917         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
10918
10919 2001-10-07    <johan AT FRIJA>
10920
10921         * device/lib/gets.c (gets): fixed the return value.
10922
10923 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
10924         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
10925
10926         * 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.
10927
10928         * 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.
10929
10930         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
10931
10932         * src/pic/gen.c: Removed Safe_strdup.
10933
10934         * configure.in: Added option to enable libgc support.
10935
10936         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
10937         (bitVectUnion): Optimised.
10938         (bitVectIntersect): Optimised.
10939         (bitVectBitsInCommon): Optimised.
10940         (bitVectCplAnd): Optimised.
10941
10942         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
10943
10944 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10945
10946         * src/SDCCmain.c: distinguish between assembler debug and plain options
10947
10948         * src/avr/main.c:   remove standard assembler options
10949
10950         * src/ds390/main.c: remove standard assembler options
10951
10952         * src/mcs51/main.c: remove standard assembler options
10953
10954         * src/port.h: removed "PENDING" comment
10955
10956 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10957
10958         * src/device/lib/_mulint.c  : new, with assember functions
10959
10960         * src/device/lib/_mullong.c : new, with assember functions
10961
10962         * src/device/lib/_divuint.c : with assember functions
10963
10964         * src/device/lib/_divsint.c : with assember functions
10965
10966         * src/device/lib/_divulong.c: with assember functions
10967
10968         * src/device/lib/_divslong.c: with assember functions
10969
10970         * src/device/lib/_moduint.c : with assember functions
10971
10972         * src/device/lib/_modsint.c : with assember functions
10973
10974         * src/device/lib/_modulong.c: with assember functions
10975
10976         * src/device/lib/_modslong.c: with assember functions
10977
10978         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
10979
10980         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
10981
10982         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
10983                                       replaced _mululong.c and _mulslong.c by _mullong.c
10984
10985 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10986
10987         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
10988
10989 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10990
10991         * src/SDCCglue.c: test, if win32api is available for MINGW
10992
10993 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10994
10995         * src/SDCCsymt.c: no more _modifier in printTypeChain()
10996         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
10997         * support/regression/ports/gbz80/spec.mk: removed GENERIC
10998         * support/regression/ports/host/spec.mk: removed GENERIC
10999         * support/regression/ports/mcs51/spec.mk: removed GENERIC
11000         * support/regression/ports/z80/spec.mk: removed GENERIC
11001
11002 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
11003
11004         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
11005
11006         * support/regression/tests/bug-467035.c: Created.
11007
11008 2001-10-01    <johan AT FRIJA>
11009
11010         * src/SDCC.y: fixed bug #466586 part 1
11011
11012 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
11013
11014         * SDCCicode.c: z80 has no generic pointers
11015         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
11016
11017 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
11018
11019         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
11020
11021 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
11022
11023         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
11024
11025         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
11026
11027 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
11028
11029         * configure.in: Fixed up so that ucsim is only configured once.
11030
11031         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
11032
11033         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
11034         (getPathDifference): As above.
11035
11036         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
11037
11038         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
11039
11040 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
11041         * .version: Updated to 2.3.1
11042
11043         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
11044         Added copyright header.
11045
11046         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
11047         (assemble): Added support for macro based assembler commands.
11048         (linkEdit): Added support for macro based linker commands.
11049         (preProcess): Changed the pre-processor to use macros.
11050         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
11051         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
11052
11053         * device/lib/z80/crt0.s: Added module name for debugging.
11054
11055 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
11056
11057         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11058
11059         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
11060
11061         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
11062
11063         * src/Makefile.in: Added SDCCmacro and SDCCutil
11064
11065 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
11066
11067         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11068
11069 2001-09-16    <johan AT FRIJA>
11070
11071         * 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.
11072
11073 2001-09-15    <johan AT FRIJA>
11074
11075         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
11076         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
11077
11078 2001-09-11    <johan AT FRIJA>
11079
11080         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
11081
11082 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
11083
11084         * support/regression/tests/bug-460444.c: Added test case.
11085
11086         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
11087         (genCast): Added justification for all of the asserts.
11088
11089 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
11090
11091         * support/regression/support.c: _xdata replaced by xdata
11092
11093         * support/regression/spec.mk: removed _generic
11094
11095 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
11096
11097         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
11098
11099         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
11100         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
11101
11102         * src/z80/peeph.def: Added a rule to optimise shift then compare.
11103
11104         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
11105
11106         * support/regression/tests/bug-460010.c: Added test case.
11107
11108         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
11109
11110 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
11111
11112         * support/regression/Makefile: inter-port-clean adjusted for mcs51
11113
11114         * support/regression/testfwk.c: removed workaround for bug #436344
11115
11116         * support/regression/tests/bp.c: use less memory with mcs51
11117
11118         * support/regression/tests/bug-441448.c: use less memory
11119
11120         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
11121
11122         * support/regression/collate-results.py: typo
11123
11124 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
11125
11126         * support/regression/tests/fetchoverlap.c: Added new test case.
11127
11128         * support/regression/tests/bp.c: Added new test case.
11129
11130         * support/regression/tests/bug-448984.c: Added new test case.
11131
11132         * support/regression/tests/pow2shifts.c: Added new test case.
11133
11134         * src/z80/gen.c: Turned off the noise it normally generates for the release.
11135         (genlshTwo): Fixed right shift for count > 8.
11136
11137         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
11138
11139 2001-09-08    <johan AT FRIJA>
11140
11141         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
11142
11143 2001-09-07    <johan AT FRIJA>
11144
11145         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
11146
11147         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
11148
11149 2001-09-06    <johan AT FRIJA>
11150
11151         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
11152         * bernhard noted me at this: "() equals to (void)" (1.38)
11153
11154 2001-09-05    <johan AT FRIJA>
11155
11156         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
11157
11158 2001-09-04    <johan AT FRIJA>
11159
11160         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
11161
11162
11163 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
11164
11165         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
11166
11167 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
11168
11169         * link/z80/aslink.h: Fixed path for PATH_MAX
11170
11171 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
11172
11173         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
11174
11175         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
11176
11177         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
11178
11179         * 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.
11180
11181 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
11182
11183         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
11184         (genCmp): Fixed up genCmp for the GB with longs.
11185
11186         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
11187
11188         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
11189
11190         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
11191
11192         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
11193
11194 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
11195
11196         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
11197
11198 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
11199
11200         * 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.
11201
11202         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
11203
11204 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
11205
11206         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
11207
11208         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
11209
11210 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
11211
11212   * sim/ucsim/configure:    little improvement of Cygwin-detection
11213   * sim/ucsim/configure.in: little improvement of Cygwin-detection
11214   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
11215   * support/regression/tests/bug-221100.c: small changes for mcs51
11216   * support/regression/tests/bug-221168.c: small changes for mcs51
11217   * support/regression/tests/bug-227710.c: small changes for mcs51
11218   * support/regression/tests/staticinit.c: small changes for mcs51
11219   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
11220   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11221   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11222
11223 $Revision$