]> git.gag.com Git - fw/sdcc/blob - ChangeLog
a9e7530d01536ca8dd70acea1c7e2f9ea5a578a0
[fw/sdcc] / ChangeLog
1 2006-04-28 Raphael Neider <rneider AT web.de>
2
3         * src/pic/gen.c (genFunction): set global pic14_hasInterrupt on
4             definition of an interrupt handler,
5         * src/pic/glue.c (pic14_emitInterruptHandler): moved output of
6             interrupt handler stuff from picglue() to separate routine,
7           (picglue): enabled definition of intr handlers in files w/o main()
8
9 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
10
11         * support/librarian/sdcclib.c: moved include <limits.h> up to enable
12           compilation with MSVC 2005 Express Edition (VC8)
13
14 2006-04-26 Bernhard Held <bernhard AT bernhardheld.de>
15
16         * device/lib/Makefile: fixed build of gbz80 lib
17
18 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
19
20         * support/regression/tests/bug-460010.c,
21         * support/regression/tests/bug-524691.c,
22         * support/regression/tests/bug-716242.c: removed conditional defines
23           that are already in testfwk.h
24
25 2006-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
26
27         * src/ds390/gen.c (AccAXRrl1, AccAXLrl1): changed to real rotate by 1,
28           (AccAXRsh1): added, shift right by 1,
29           (AccAXLsh, AccAXRsh, AccAXRshS): updated for AccAXRrl1, AccAXRsh1 and
30            AccAXLrl1
31         * support/regression/tests/rotate.c: use <stdint.h> and enabled ds390
32
33 2006-04-25 Bernhard Held <bernhard AT bernhardheld.de>
34
35         * src/SDCCast.c (decorateType): partial fix for RFE 1475769,
36         remove cast to same type
37         * src/SDCCast.c (decorateType): fix for RFE 1475742,
38         optimize 'ifx (op == 0)' resp. 'ifx (op != 0)'
39         * as/z80/Makefile,
40         * link/z80/Makefile: removed, they have moved to
41         Makefile.in files
42         * configure,
43         * configure.in: replaced duplicate message about ucsim by missing sdcpp
44         * install-sh: fix bug #1204398 by setting umask 0022
45         * device/lib/Makefile: separate build of z80 and gbz80 lib
46
47 2006-04-24 Bernhard Held <bernhard AT bernhardheld.de>
48
49         Enabled VPATH feature: changed nearly all Makefiles (149 files).
50         See sdccman.lyx '2.4.10 VPATH feature' about how to use it.
51
52         One basic decision: e.g. src/clean.mk includes further files. In order
53         to make this work there are two solutions:
54         - rename another dozen clean.mk to clean_in.mk, add srcdir to them and
55           run configure on them. This way they can use
56           'include $(srcdir)/port-clean.mk'
57         - always include clean.mk by the Makefile at the same level. To avoid
58           that `make clean` tries to include and build Makefile.dep the
59           MAKECMDGOALS are examined (see e.g. src/Makefile.in). This has been
60           implemented, because now even `make uninstall` doesn't create
61           Makefile.in. clean.mk could be eliminated by pasting it in
62           Makefile.in.
63
64         * debugger/mcs51/Makefile.in: build own objects from library sources
65         (SLIB, SDCC) in current directory
66
67         * configure, configure.in: renamed --disable-device-lib-build in
68         --disable-device-lib; added --enable-doc, the required tools are
69         searched by configure; added result message; the toolchain for the
70         belonging ports are now only built, if the port is enabled.
71
72         * support/regression/*: all output is written in directory gen, because
73         the fwk and ports directories don't livet in the build tree using vpath
74
75         * doc/sdccman.lyx: renamed --disable-device-lib-build to
76         --disable-device-lib, added --enable-doc, added section VPATH
77
78         * sim/ucsim/configure.in,
79         * sim/ucsim/configure.in: hc08 couldn't be disabled, now hc08 and
80         z80 are enabled by default
81
82 2006-04-24 Raphael Neider <rneider AT web.de>
83
84         * src/pic/device.c (pic14_assignConfigWordValue): remember assignments
85             to config word, "pic14_"-prefixed some extern functions
86           (pic14_emitConfigWord): emit __config directive(s) if assignment to
87             config word has been found
88         * src/pic/device.h: added prototypes
89         * src/pic/pcode.c: added "pic14_"-prefix where needed
90         * src/pic/ralloc.c (IS_CONFIG_ADDRESS,pic14_assignRegisters): cosmetic
91             fixup
92         * src/pic/glue.c (pic14_constructAbsMap): handle assignments to config
93             words,
94           (pic14emitRegularMap): ignore config words,
95           (pic14createInterruptVect): moved generating __config directives away
96           (picglue): have __config directives emitted
97
98 2006-04-24 Borut Razem <borut.razem AT siol.net>
99
100         * doc/Makefile: sync with nightly build makefile
101
102 2006-04-24 Raphael Neider <rneider AT web.de>
103
104         * src/pic/pcoderegs.c (OptimizeRegUsage): do not optimize
105             registers that have not been assigned proper liveranges,
106             fixes #1469504 and #1474602,
107           (pCodeRegOptimizeRegUsage): fixed typo in comment
108
109 2006-04-24 Borut Razem <borut.razem AT siol.net>
110
111         * device/examples/main8051.c: deleted - it was removed from CVS
112           24.mar.2000 and after that modified 18.feb.2001, so it reappered
113           after the transition to Subversion
114         * src/SDCCalloc.h: deleted - it was removed  from CVS
115           3.feb.2001 and after that modified 18.feb.2001, so it reappered
116           after the transition to Subversion
117         * sim/ucsim/cpu.gif, sim/ucsim/interrupt.gif, sim/ucsim/new.gif,
118           sim/ucsim/serial1.gif, sim/ucsim/serial2.gif,
119           sim/ucsim/term_cpuopt.gif, sim/ucsim/timers.gif, sim/ucsim/wins.gif,
120           sim/ucsim/post.jpg, sim/ucsim/UCsim.jpg: corrected
121
122 2006-04-22 Maarten Brock <sourceforge.brock AT dse.nl>
123
124         * as/asx8051.dsp: added mcs51/strcmpi.h
125         * as/hc08/as_hc08.dsp: added asm.h, m6808.h, strcmpi.h
126         * as/hc08/aslink.h: updated lnksect prototype
127         * as/hc08/asm.h,
128         * as/mcs51/asm.h: added a_addr to struct area and s_org to struct sym
129         * as/hc08/asmain.c,
130         * as/mcs51/asmain.c (asmbl): init dot.s_org for S_ORG,
131           (newdot): handle A_ABS
132         * as/hc08/asout.c,
133         * as/mcs51/asout.c (outarea): output address
134         * as/hc08/lkaomf51.c,
135         * as/mcs51/lkaomf51.c: disabled unused array UsageType
136         * as/hc08/m08pst.c,
137         * as/mcs51/i51pst.c,
138         * as/z80/z80pst.c: "ABS" is not A_OVR
139         * as/hc08/lkarea.c (newarea): read a_addr,
140           (lnkarea): added codemap array, sort absolute areas to the front,
141            combine all GSINITx/GSFINAL,
142           (find_empty_space, allocate_space): new functions,
143           (lnksect): return next address, handle absolute sections
144         * as/mcs51/lkarea.c (newarea): read a_addr,
145           lnksect2 prototype changed,
146           (lnkarea2): define codemap unsigned, combine all GSINITx/GSFINAL,
147           (find_empty_space, allocate_space): new, factored out of lnksect2,
148           (lnksect2): return next address, handle absolute sections
149         * as/hc08/lkhead.c,
150         * as/mcs51/lkhead.c (newhead): head is absolute but not overlay
151         * as/hc08/lklibr.c (addfile, fndsym),
152         * as/mcs51/lklibr.c (addfile, buildlibraryindex, fndsym): prevent
153           index out of range and detect both '\' and '/'
154         * device/include/mcs51/c8051f200.h: added _XPAGE, removed bad comment
155         * device/include/stdbool.h: removed SDCC_ds390 from check to pass
156           regression tests (ds390 cannot return bool yet)
157         * doc/sdccman.lyx: changed version number, document changed --no-peep,
158           document critical interrupts on z80, document changed SDCC define
159         * src/asm.c (_asxxxx_mapping): fixed .org directive,
160           (_a390_mapping): added .org directive
161         * src/hc08/gen.c (transferAopAop): made bytemask log to fix warning,
162           (genMultOneByte): fixed warnings
163         * src/hc08/hc08.dsp: lowered warning level to 2 to suppress pedantic
164           ones
165         * src/pic16/device.c: removed newReg prototype, removed BYTE_IN_LONG
166         * src/pic16/gen.c (pic16_popGetLabel): made parameter key signed,
167           (pic16_genLeftShiftLiteral, genRightShiftLiteral): fixed warnings
168         * src/pic16/gen.h: changed prototype for pic16_popGetLabel
169         * src/pic16/main.c: removed newReg prototype
170         * src/pic16/pcode.c,
171         * src/pic16/pcode.h (pic16_emitDB): changed parameter c to int to fix
172           warnings
173         * src/pic16/pic16.dsp: lowered warning level to 2 to suppress pedantic
174           ones
175         * src/pic16/ralloc.c
176         * src/pic16/ralloc.h (newReg): changed type to int and size to unsigned
177           to fix warnings
178         * src/pic/pcode.c (allocInternalRegister): changed parameter optype
179           from short to PIC_OPTYPE
180         * src/pic/pic.dsp: lowered warning level to 2 to suppress pedantic ones
181         * src/pic/ralloc.c (newReg, allocInternalRegister): changed parameter
182           optype from short to PIC_OPTYPE
183         * src/port.h: made int_size unsigned to fix warnings
184         * src/SDCC.y: fixed warning on MSVC
185         * src/SDCCicode.c (getArraySizePtr): return unsigned int
186         * src/SDCCopt.c (convertToFcall): fixed warnings
187         * src/SDCCsymt.h: removed double prototype for genSymName
188         * src/xa51/ralloc.c (allocReg): made size unsigned int, type int and
189           offset int to fix warnings
190
191 2006-04-22 Borut Razem <borut.razem AT siol.net>
192
193         * doc/sdccman.lyx, */Makefile, */Makefile.in:
194           references to CVS replaced with Subversion
195
196 2006-04-21 Borut Razem <borut.razem AT siol.net>
197
198         * doc/sdccman.lyx, */Makefile, */Makefile.in:
199           references to CVS replaced with Subversion
200
201 2006-04-19 Borut Razem <borut.razem AT siol.net>
202
203         * src/version.awk: adapted for svn
204         * /asxxxx/asxhtml/*.gif: set property svn:mime-type to image/gif
205           sim/ucsim/doc/*.gif: set property svn:mime-type to image/gif
206           sim/ucsim/doc/*.jpg: set property svn:mime-type to image/jpeg
207           /binutils-avr/etc/*.vi, *.jin: removed all properties
208           support/scripts/sdcc.ico: set property svn:mime-type to image/x-icon
209
210 2006-04-19 Borut Razem <borut.razem AT siol.net>
211
212         * CVS to Subversion migration completed
213
214 2006-04-18 Borut Razem <borut.razem AT siol.net>
215
216         * support/scripts/sdcc.nsi: removed unexisting ${DEV_ROOT}\lib\pic\*.o,
217           ${DEV_ROOT}\lib\src\pic\libdev\*.S, ${DEV_ROOT}\lib\src\pic\libdev\*.inc
218
219 2006-04-17 Borut Razem <borut.razem AT siol.net>
220
221         * device/include/Makefile.in: added pic/*.inc to the installation
222
223 2006-04-15 Bernhard Held <bernhard AT bernhardheld.de>
224
225         * support/regression/collate-results.py: fixed output in case of
226         a valdiag error
227         * support/regression/generate-cases.py: fixed splitting of pathnames
228         with dots
229         * as/hc08/lklibr.c (addfile),
230         * as/mcs51/lklibr.c (addfile): fixed off-by-one bug
231
232 2006-04-11 Raphael Neider <rneider AT web.de>
233
234         * src/pic16/gen.c (getFreePtr, pic16_popRegFromString),
235         * src/pic16/ralloc.c (pic16_allocregWithName): removed debug output
236         * src/pic16/pcode.c (assignValnums): fixed #1460578
237
238 2006-04-11 Raphael Neider <rneider AT web.de>
239
240         * device/lib/pic/libdev/*.c,
241         * device/include/pic/*.h: replaced sfr and data with __sfr and __data,
242           fixes #1468739, enables compilation in --std-c99 mode
243         * support/scripts/inc2h.pl: emit __sfr/__data instead of sfr/data
244
245 2006-04-11 Raphael Neider <rneider AT web.de>
246
247         * src/pic/device.c (find_device): removed debug output
248           (list_valid_pics): enabled verbose listing of supported devices
249         * device/include/stdbool.h: define bool as char for pic14/16 as well
250
251 2006-04-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
252
253         * src/SDCC.y: allow using brackets here: "__interrupt (1) __using (1)"
254
255 2006-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
256
257         * .version: bumped version to 2.5.6
258         * src/pic/ralloc.c (newReg): MSVC doesn't support __builtin_return_address
259
260 2006-04-06 Raphael Neider <rneider AT web.de>
261
262         * .version: bumped version to 2.5.6 (pic14 ABI changed)
263         * src/SDCCmain.c: add -DSDCC_PROCESSOR=<id> for pic14 port
264         * src/pic/glue.c (emitSymbolToFile,pic14_constructAbsMap,
265           pic14emitRegularMap,pic14emitMaps): moved output for absolute symbols to
266             pic14_constructAbsMap
267           (pic14printPublics): declare absolute global symbols as global
268           (pic14createInterruptVect),
269         * src/pic/ralloc.c (IS_CONFIG_ADDRESS): support second config word,
270           (newReg): assume new registers unused, use correct name in
271             hashtable (reg->name instead of name), more debugLog output
272         * src/pic/device.h (PIC_device): added fields for verbose output
273         * src/pic/device.c: moved device definition to pic14devices.txt,
274             added routines for runtime parsing of pic14devices.txt,
275             added support for second config word
276         * src/pic/main.c (_process_pragma): removed #pragma maxram,
277           (_pic14_keywords): no longer accept "bit" and "sbit" keywords
278           (_pic14_initPaths): add search paths with "pic" suffix (not "pic14")
279           (_pic14_parseOptions): moved pCodeInitRegisters here
280           (_pic14_do_link): add "pic$(ARCH).lib" to linker arguments
281         * src/pic/pcode.c (AnalyzeBanking): bail out on unset processor,
282           (pCodeInitRegisters): rewrapped comments, perpared new approach to
283             handling the pseudo stack
284         * device/lib/Makefile.in: ignore failures in objects-pic16,
285         * device/lib/pic/{configure,configure.in,Makefile}: added libdev/
286         * device/lib/pic/NEWS: document new dependency on picXXX.lib
287         * device/lib/pic/Makefile.subdir,
288         * device/lib/pic16/Makefile.subdir: improved clean rules
289         * device/lib/pic/libdev/: NEW, pic14 device libraries
290         * device/lib/pic/libsdcc/_gptr{get,put}{1,2,3,4}.S: use _X not X
291         * device/lib/pic/libsdcc/macros.inc: use _X not X, declare default SFRs
292         * device/include/Makefile.in: create subdir and install pic14 headers
293         * device/include/pic/p16f_common.inc: removed unused declarations
294         * device/include/pic/pic16*.h: added header files for 100+ 14 bit
295             PICs from inc2h.pl v1.6,
296             replaced BIT_AT macros with struct declarations
297         * device/include/pic/pic14devices.txt: definition of supported devices,
298             all above improvements contributed by Zik Saleeba, thanks
299         * support/scripts/inc2h.pl: removed BIT_AT, replaced with structs
300         * support/scripts/sdcc.nsi: also install pic14 device libraries and
301             headers
302
303 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
304
305         * device/include/mcs51/c8051f410.h: added interrupt numbers,
306         * device/include/mcs51/c8051f200.h: old SiLabs mcu completes the list,
307           thanks to Charles Olds
308
309 2006-04-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
310
311         * debugger/mcs51/cmd.c (infoRegisters): show return address on stack
312
313 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
314
315         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug 1464657
316         * src/mcs51/gen.c (genJumpTab): fixed bug in medium model
317         * support/regression/bug1464657.c: added, new test
318
319 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
320
321         * src/SDCCmain.c (preProcess): implemented RFE 1449908, define SDCC as the
322           version number
323
324 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
325
326         * src/SDCCpeeph.c (initPeepHole): implemented RFE 1460196, when both
327           --no-peep and --peep-file <file> are used don't use default rules but
328           do use the <file>
329
330 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
331
332         * src/mcs51/gen.c (genCall): fixed bug 1457608
333
334 2006-03-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
335
336         * doc/sdccman.lyx: reverted to version 1.129 of december as my latest
337         changes seem to cause (trigger?) problems with the build system.
338
339 2006-03-29 Maarten Brock <sourceforge.brock AT dse.nl>
340
341         * src/SDCCpeeph.c (operandsLiteral): new, added,
342           (callFuncByName): inserted operandsLiteral
343         * src/mcs51/peeph.def: reenabled 132.e, added extra check to 132.x
344
345 2006-03-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
346
347         * doc/sdccman.lyx: added paragraph "Use of SDCC in Education"
348         * src/mcs51/peeph.def: disabled rule 132.e fixing bug #1453093
349
350 2006-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
351
352         * src/z80/gen.c (genFunction, genEndFunction): fixed bug 1160666,
353           implemented patch 1120823 Thanks to Willy De la Court (normal
354           interrupts need an interrupt number now if they are made critical),
355           and enabled nesting of critical functions though not for gbz80
356           (genCritical, genEndCritical): added functions
357           (genZ80Code): added cases for CRITICAL and ENDCRITICAL
358         * src/z80/mappings.i: added "ei" to all mappings
359
360 2006-03-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
361
362         * sim/ucsim/cmd.src/newcmdcl.h: applied patch fixing GCC 4.1 build
363         submitted by the Debian SDCC maintainer Aurelien Jarno:
364         "Credits goes to Martin Michlmayr, who rebuilt the whole Debian
365         archive with gcc 4.1 on mips and wrote the patch"
366
367 2006-03-16 Raphael Neider <rneider AT web.de>
368
369         * src/pic16/genarith.c (genAddLit): simplified and fixed case where
370           the left operand is shorter than the result (c* = lit-c* + int),
371           fixes bug #1450796
372         * src/pic16/gen.c (genRightShift): check IS_SYMOP before accessing
373           OP_SYMBOL
374
375 2006-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
376
377         * src/.version: increased version number to 2.5.5
378         * src/SDCCmain.c (linkEdit): do not test for PIC16 target since, PIC16
379         linking is done manually in pic16 port's _linkEdit,
380         * src/SDCCsymt.c (compStructSize): for target PIC16 and shell variable
381         PIC16_PACKED_BITFIELDS, compact bitfield structures as much as possible,
382         * src/pic16/gen.c (aopForSym): when direct register name is WREG then
383         allocate asmop as AOP_ACC,
384         (aopForRemat): added parameter 'bool result' in function declaration,
385         (pic16_aopGet): return AOP_ACC when accessing WREG,
386         (pic16_popGetTempReg): minor modification,
387         (pic16_popRegFromIdx): first try with 'pic16_regWithIdx' then with
388         'pic16_allocWithIdx',
389         (genPcall): removed ftype, usage of OP_SYM_TYPE asserted error when
390         calling function in absolute addresses,
391         (genAssign): take into account AOP_ACC asmop,
392         * src/pic16/pcode.c (pic16_newpCodeOpReg): minor modifications,
393         * src/pic16/pcoderegs.c: some debug functions and lines added,
394         * src/pic16/ralloc.c (decodeRegType): added but commented out,
395         * (pic16_typeRegWithIdx): search 'pic16_dynInternalRegs' for given
396         register too,
397         * (pic16_findFreeReg, pic16_findFreeRegNext): allocate new register via
398         call to allocReg, not by manually allocating a new one,
399         (pic16_assignRegisters): now before going through the register
400         allocating functions mark all registers as free. This eliminates some
401         side effects resulting from peephole parser done earlier in the backbone
402
403 2006-03-13 Maarten Brock <sourceforge.brock AT dse.nl>
404
405         * src/SDCCicode.c (geniCodeLogic),
406         * src/SDCCast.c (decorateType): applied patch by Bernhard for rfe 1422617
407
408 2006-03-10 Maarten Brock <sourceforge.brock AT dse.nl>
409
410         * src/mcs51/gen.c (sameReg): new, checks if two aop regs are the same,
411           (genSend): bugfix, do not allocate and free twice,
412           (shiftRLong): handle partially overlapping aops
413         * support/regression/tests/bitopcse.c: fixed warning redefined idata
414
415 2006-03-08 Borut Razem <borut.razem AT siol.net>
416
417         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata
418           for pic16
419
420 2006-03-08 Maarten Brock <sourceforge.brock AT dse.nl>
421
422         * support/regression/tests/bug1409955.c: new, added
423         * src/mcs51/gen.h: changed asmop.freed:1 to asmop.allocated for tracking
424         * src/mcs51/gen.c (newAsmop): set asmop.allocated to 1,
425           (aopForSym, aopOp): increment asmop.allocated if reused,
426           (freeAsmop): decrement asmop.allocated and check for zero instead of
427           using asmop.freed,
428           (freeForBranchAsmop): use asmop.allocated instead of asmop.freed,
429           (genNot, genCpl, genUminus, genMinus, genMult, genDiv, genMod, genCmpGt,
430            genCmpLt, genAndOp, genOrOp, genAnd, genOr, genXor, genRRC, genRLC,
431            genGetHbit, genGetAbit, genGetByte, genGetWord, genSwap,
432            genLeftShiftLiteral, genLeftShift, genRightShiftLiteral,
433            genSignedRightShift, genRightShift, genDataPointerGet,
434            genPagedPointerGet, genFarPointerGet, genCodePointerGet,
435            genGenPointerGet, genDataPointerSet, genAssign, genCast): free asmop's
436             in reverse order from allocation,
437           (genPlus, genCmpEq): free asmop's in reverse order from allocation and
438             added swappedLR to keep track
439         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata,
440           pdata & code for GCC, z80, gbz80 & hc08
441         * support/regression/tests/zeropad.c: moved defines to testfwk.h
442
443 2006-03-08 Raphael Neider <rneider AT web.de>
444
445         * src/pic16/main.c (_hasNativeMulFor): fixed bug #1444425
446
447 2006-03-07 Maarten Brock <sourceforge.brock AT dse.nl>
448
449         * device/include/mcs51/c8051f410.h: new SiLabs mcu
450         * src/ds390/peeph.def: disabled 186.d and 227.a as fix for #1434401
451         * support/regression/tests/array.c: added parenthesis, made arrays unsigned
452
453 2006-03-06 Borut Razem <borut.razem AT siol.net>
454
455         * support/regression/ports/pic16/spec.mk: link with libm18f.lib,
456           made the linker quiet
457
458 2006-03-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
459
460         * src/pic16/gen.c (genPcall): fixed bug #1443644
461         * src/pic16/device.h (struct pic16_options_t): added 'int CATregs' flag
462         which dumps before the function entry point a data byte which represents
463         the number of the local variables used by the specified function, added
464         'xinst' for initial support for Extended Instruction Support,
465         * src/pic16/gen.c (aopForSym, pic16_aopGet): beautifications,
466         (pic16_testStackOverflow): do not prefix GSTACK_TEST_NAME with
467         port->fun_prefix anymore (may change later),
468         (genFunction, genEndFunction): do not store/restore local registers for
469         _main (this should take care the --main-return command line option in
470         the future),
471         (genOr): removed some legacy pic-port instructions,
472         * src/pic16/genarith.c (genAddLit): re-enabled old code because
473         performing operations with SFR's causes data to be written more than
474         once to each SFR. Perhaps SFRs should be handled in special cases...
475         * src/pic16/glue.c: macros BIG_ENDIAN and BYTE_IN_LONG are moved to
476         pcode.h
477         * src/pic16/main.c (_process_pragma): stack bound checking did not take
478         into account for stack starting position,
479         (struct OPTIONS pic16_optionsTable): added command line argument
480         --extended or -y for Extended Instruction Support,
481         * src/pic16/ralloc.c (pic16_decodeOp): added case for FUNCTION,
482         (deassignLRs): *** perhaps the most important change, old 'for' code
483         (commented out for reference), didn't account for some registers which
484         were left marked 'not free' after a pointer operation. The change
485         reduces register usage a lot in some cases
486
487 2006-03-04 Borut Razem <borut.razem AT siol.net>
488
489         * support/regression/ports/hc08/spec.mk: remove *.asm in traget
490           _clean
491         * support/regression/tests/bug-524697.c: decreased array size for
492           mcs51 to fit into the internal RAM
493         * support/regression/Makefile.in: a little bit more verbose
494
495 2006-03-03 Borut Razem <borut.razem AT siol.net>
496
497         * support/regression/fwk/lib/testfwk.c,
498           support/regression/fwk/include/testfwk.h: introduced function
499           _prints(), nonrecursive _printn(), call _initEmu() from main()
500         * support/regression/ports/gbz80/support.asm,
501           support/regression/ports/ucz80/support.asm,
502           support/regression/ports/z80/support.asm,
503           support/regression/ports/ds390/support.c,
504           support/regression/ports/hc08/support.c,
505           support/regression/ports/host/support.c,
506           support/regression/ports/mcs51/support.c,
507           support/regression/ports/xa51/support.c: added empty _initEmu()
508           function
509         * support/regression/ports/pic16/gpsim.cmd,
510           support/regression/ports/pic16/spec.mk,
511           support/regression/ports/pic16/support.c,
512           support/regression/Makefile.in: added pic16 regression test
513
514 2006-03-01 Raphael Neider <rneider AT web.de>
515
516         * src/pic16/gen.c (genPcall,pic16_derefPtr,genGenPointerGet,
517           genConstPointerGet): use safe way of generating MOVFF to cover
518             literals as well as registers, fixes bug #1440527
519         * src/pic16/glue.c (pic16_printIvalBitFields): prevent NULL pointer
520             dereference
521           (pic16_printIvalUnion,pic16_isUnion): NEW, handle initialized unions
522             more correctly, fixes bug #1232186
523           (pic16_printIval): use pic16_printIvalUnion() for initialized unions
524         * src/pic16/main.c (_pic16_linkEdit): reorder linker arguments to make
525             gplink guess the correct processor in more cases, applied patch
526             from Till Riedel attached to and fixing bug #1436552
527
528 2006-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
529
530         * support/regression/tests/array.c: added, contains check for #1434401
531         * src/mcs51/peeph.def: disabled 186.d as temporary fix for #1434401
532
533 2006-02-16 Maarten Brock <sourceforge.brock AT dse.nl>
534
535         * device/include/mcs51/at89s8253.h: new, thanks to Krzysztof Polomka
536         * device/include/mcs51/at89S8252.h: fixed, thanks to Krzysztof Polomka
537         * device/include/mcs51/c8051f326.h,
538         * device/include/mcs51/c8051f340.h: new SiLabs mcu's
539         * device/include/mcs51/c8051f000.h,
540         * device/include/mcs51/c8051f018.h,
541         * device/include/mcs51/c8051f020.h: used () with __at, renamed IDLE,STOP to
542           PCON_IDLE,PCON_STOP and added sfr16 definitions
543
544 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
545
546         * src/mcs51/gen.c (genPlus, genMinus, genMult, genGetAbit, genGetByte,
547           genGetWord): fixed bug 1409955
548
549 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
550
551         * device/include/hc08/mc68hc908gp32.h,
552         * device/include/hc08/mc68hc908jb8.h: removed AWUL, added PTA6 & PTA7
553
554 2006-02-13 Maarten Brock <sourceforge.brock AT dse.nl>
555
556         * src/SDCCast.c (constExprValue): return NULL if not a value
557         * src/SDCCglue.c (printIvalArray): fixed bug 1225568
558         * src/hc08/gen.c(genUnpackBits, genUnpackBitsImmed): fixed bug 1019480
559         * support/regression/tests/bitfields.c: enabled signed bitfield for all
560
561 2006-02-13 Borut Razem <borut.razem AT siol.net>
562
563         * src/regression/ptrarg.c: added, fails due to bug #1430967
564         * src/regression/Makefile: ptrarg.c added, ...
565
566 2006-02-12 Maarten Brock <sourceforge.brock AT dse.nl>
567
568         * src/z80/gen.c (genUnpackBits): fixed bug 1019480
569         * support/regression/tests/bitfields.c: enabled signed bitfield for z80
570
571 2006-02-11 Borut Razem <borut.razem AT siol.net>
572
573         * src/SDCCmain.c: Added "sdcc: Calling linker..." if --verbose,
574           print "Processor: xxx" message to stdout only if --verbose
575
576 2006-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
577
578         * src/SDCCglue.c (printIvalStruct): fixed bug 1426356 union initializer
579         * support/regression/tests/bug1426356.c: added
580         * support/regression/tests/bitfields.c: removed 2 tests
581
582 2006-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
583
584         * device/include/mcs51/at89c51snd1c.h: updated comments, see patch 1428901
585         * device/include/mcs51/c8051f330.h,
586         * device/include/mcs51/c8051f350.h: used () with __at, renamed IDLE,STOP to
587           PCON_IDLE,PCON_STOP and added sfr16 definitions
588         * device/lib/_divsint.c,
589         * device/lib/_divuint.c,
590         * device/lib/_divulong.c,
591         * device/lib/_divulong.c: renamed a,b to x,y to avoid confusion, fixed
592           register bank bug for small stackauto
593
594 2006-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
595
596         * support/regression/fwk/lib/timeout.c: include <stdlib.h> for exit()
597
598 2006-02-08 Maarten Brock <sourceforge.brock AT dse.nl>
599
600         * support/regression/ports/mcs51-xstack-auto/spec.mk: forgot -I(...)/mcs51
601         * all.dsp: corrected several bin paths
602         * device/include/mcs51/c8051f120.h,
603         * device/include/mcs51/c8051f300.h,
604         * device/include/mcs51/c8051f310.h: used () with __at and renamed IDLE,STOP
605           to PCON_IDLE,PCON_STOP
606         * device/include/mcs51/c8051f320.h: see above, also added sfr16 definitions
607         * device/lib/printf_large.c (output_float): fixed bug 1388703
608         * support/regression/tests/bug1057979.c: added test for bug 1388703
609
610 2006-02-08 Raphael Neider <rneider AT web.de>
611
612         * src/pic/pcode.c (pciTRIS): fixed typo,
613           (BuildFlow,LinkFlow_pCode): added (disabled) debug output,
614           (LinkFlow): fixed handling of flows that end in a call,
615           (ReuseReg): perform safety check earlier
616         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed
617             to work with flows at the beginning of a pBlock,
618             fixes #1426557 (Symbol not previously defined),
619           (pic14_ReMapLiveRanges): NEW, destroy and rebuild register
620             usage information
621           (RemoveUnusedRegisters): update register usage info
622         * src/pic/ralloc.c (newReg): prevent duplicate registers from being
623             created, reuse existing ones instead
624         * src/pic/gen.c (genPcall): fixed #1424719
625
626 2006-02-07 Bernhard Held <bernhard AT bernhardheld.de>
627
628         * link/z80/lkmain.c,
629         * link/z80/lklex.c,
630         * link/z80/lkdata.c,
631         * link/z80/aslink.h: fixed build on current cygwin:
632         replaced getline() by lk_getline()
633
634 2006-02-01 Borut Razem <borut.razem AT siol.net>
635
636         * src/regression/add.c, src/regression/add2.c, src/regression/add3.c,
637           src/regression/add4.c, src/regression/and1.c, src/regression/and2.c,
638           src/regression/arrays.c, src/regression/b.c, src/regression/bank1.c,
639           src/regression/bool1.c, src/regression/bool2.c,
640           src/regression/bool3.c, src/regression/call1.c,
641           src/regression/compare.c, src/regression/compare10.c,
642           src/regression/compare2.c, src/regression/compare3.c,
643           src/regression/compare4.c, src/regression/compare5.c,
644           src/regression/compare6.c, src/regression/compare7.c,
645           src/regression/compare8.c, src/regression/compare9.c,
646           src/regression/configword.c, src/regression/for.c,
647           src/regression/inline.c, src/regression/mult1.c,
648           src/regression/nestfor.c, src/regression/or1.c,
649           src/regression/pointer1.c, src/regression/ptrfunc.c,
650           src/regression/rotate1.c, src/regression/rotate2.c,
651           src/regression/rotate3.c, src/regression/rotate4.c,
652           src/regression/rotate5.c, src/regression/rotate6.c,
653           src/regression/rotate7.c, src/regression/string1.c,
654           src/regression/struct1.c, src/regression/sub.c,
655           src/regression/sub2.c, src/regression/switch1.c,
656           src/regression/while.c, src/regression/xor.c,
657           src/regression/create_stc, src/regression/simulate,
658           src/regression/rt.sh, src/regression/Makefile: reenabled Scott's PIC14
659           regression tests
660         * src/regression/gpsim_assert.h: added
661
662 2006-01-28 Bernhard Held <bernhard AT bernhardheld.de>
663
664         * src/ds390/gen.c (unsaveRegisters): fixed literal function pointer
665         ((void (code *) (void)) 0) ();
666         * as/hc08/aslex.c,
667         * as/hc08/aslink.h,
668         * as/hc08/asm.h,
669         * as/hc08/asmain.c,
670         * as/hc08/lkdata.c,
671         * as/hc08/lklex.c,
672         * as/hc08/lkmain.c,
673         * as/mcs51/aslex.c,
674         * as/mcs51/aslink.h,
675         * as/mcs51/asm.h,
676         * as/mcs51/asmain.c,
677         * as/mcs51/lkdata.c,
678         * as/mcs51/lklex.c,
679         * as/mcs51/lkmain.c,
680         * as/z80/aslex.c,
681         * as/z80/asm.h,
682         * as/z80/asmain.c: fixed build on current cygwin:
683         replaced getline() by as_getline()
684
685 2006-01-27 Bernhard Held <bernhard AT bernhardheld.de>
686
687         * src/SDCC.y: fixed bug #716242, exchanged pointer and function
688         declarator in the symbol chain
689         * src/SDCCsymt.h,
690         * src/SDCCsymt.c (processFuncPtrArgs): added, removes "(void)"
691         parameter list for function pointers
692         * src/SDCCast.c (decorateType): added call of processFuncPtrArgs()
693         * support/regression/tests/bug-716242.c: added
694
695 2006-01-20 Bernhard Held <bernhard AT bernhardheld.de>
696
697         * src/SDCCicode.c (geniCodeAdd, geniCodeArray): use char for array
698         offset if possible
699         * src/SDCCast.c (getLeftResultType): 255 fits in char, not 256
700
701 2006-01-18 Bernhard Held <bernhard AT bernhardheld.de>
702
703         * src/SDCCast.c (backPatchLabels): fixed bug #1408066: made it
704         inifinitely recurseable, added static
705         * support/regression/tests/bug-1408066.c: added
706
707 2006-01-17 Bernhard Held <bernhard AT bernhardheld.de>
708
709         * src/SDCCicode.h,
710         * src/SDCCicode.c (newiTempPreheaderLabel, newiTempLoopHeaderLabel):
711         renamed, added possibility to create "postLoopLbl"-labels
712         * src/SDCCBBlock.c (iCodeBreakDown): renamed newiTempPreheaderLabel to
713         newiTempLoopHeaderLabel
714         * src/SDCCloop.c (newInduction, newRegion, backEdges, insertIntoLoop,
715         isNotInBlocks, addToExitsMarkDepth, createLoop, dominatedBy,
716         addDefInExprs, assignmentsToSym, isOperandInvariant, pointerAssigned,
717         hasNonPtrUse, loopInvariants, addressTaken, findInduction,
718         findDefInRegion, mergeRegions, ifMerged, mergeInnerLoops): made static,
719         (pinduction, pregion, hasIncomingDefs, findLoopEndSeq): disabled,
720         (basicInduction): fixed bug #136564, made static,
721         (loopInduction): changed parameter of basicInduction, made static,
722         (addPostLoopBlock): added
723         * src/SDCCloop.h: removed backEdges, pregion, pinduction,
724         loopOptimizations, addressTaken, findDefInRegion, hasIncomingDefs,
725         findLoopEndSeq
726         * support/regression/tests/bug-136564.c: added
727         * support/regression/ports/mcs51-xstack-auto/spec.mk: added
728         --std-sdcc99 to LIBSDCCFLAGS
729
730 2006-01-16 Bernhard Held <bernhard AT bernhardheld.de>
731
732         * src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false
733         while loop
734         * support/regression/tests/bug-1406131.c: added
735
736 2005-12-31 Bernhard Held <bernhard AT bernhardheld.de>
737
738         * src/SDCCast.c (decorateType): fix promotion of unary minus
739         * src/SDCCsymt.c (computeType): beautified
740         * src/SDCCval.c (cheapestVal): beautified, old non-Ansi version removed,
741         (valUnaryPM, valComplement): fix sign and promotion,
742         (valNot): ANSI: result type is int (SDCC: unsigned char)
743         * support/regression/tests/uminus.c: speedup by removing superflous
744         test case 'int'
745         * support/regression/tests/onebyte.c: added promotion and signedness
746         tests for unary minus
747         * support/regressions/tests/bug-477927.c: disable warning about
748         uninitialized variables
749         * support/regression/tests/not.c: added
750
751 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
752
753         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
754         * src/mcs51/gen.c (gen51Code): show final register usage after
755         fillGaps in asm with --i-code-in-asm
756         * src/SDCClrange.c (sequenceiCode, setLiveFrom, setLiveTo,
757         markLiveRanges, markAlive, findNextUseSym, findNextUse, unvisitBlocks,
758         incUsed, rliveClear, adjustIChain): made static,
759         (setFromRange): excluded because it's unused,
760         (findPrevUseSym, markWholeLoop): added,
761         (findPrevUse): rewritten; fixes bug 895992; now a complete search
762         through all branches of predecessors enables sdcc to emit the warning
763         W_LOCAL_NOINIT, marking of outermost loop was incomplete,
764         (rlivePoint): made static, added parameter emitWarnings which is only
765         true during the first run out of two,
766         (findRecursiveSucc, findRecursivePred): removed,
767         (computeLiveRanges): made static, added parameter emitWarnings,
768         (dumpIcRlive): added for debugging only
769         * src/SDCClrange.h: added boolean parameter to computeLiveRanges(),
770         removed prototype of setFromRange()
771         * src/SDCCopt.c (eBBlockFromiCode): added new parameter emitWarnings
772         in call of computeLiveRanges()
773         * support/regression/tests/bug-895992.c: added
774         * support/regression/tests/bug-971834.c: added
775         * support/valdiag/tests/bug-895992.c: added
776         * support/valdiag/tests/bug-971834.c: added
777
778 2005-12-18 Raphael Neider <rneider AT web.de>
779
780         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
781           (genUnpackBits): improved code for direct operands,
782           (genPackBits): improved code for literal assignment to bitfields
783             and for direct destination operands (no FSR indirection),
784             prevented redundant AND, fixes #1362800,
785           (AccLsh): added parameter to disable masking of the result
786         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
787           skip instructions with side-effects (like incfsz),
788           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
789         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
790         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
791           fixes #1375263
792
793 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
794
795         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
796         volatile variables as spill location
797
798 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
799
800         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
801         replacing literals
802         * support/regression/tests/bug-1376320.c: added
803
804 2005-12-08 Raphael Neider <rneider AT web.de>
805
806         * src/pic/device.c: renamed is_shared to pic14_is_shared
807         * src/pic/gen.c (genIfx): re-enabled handling of sbits
808         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
809           (is_valid_identifier): added for above workaround
810
811 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
812
813         * device/lib/Makefile.in: fixed to enable port-specific-objects
814         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
815           char, thanks Hubert Sack
816         * doc/sdccman.lyx: documented --xstack-loc,
817           elaborated a bit more on interrupts and pitfalls,
818           removed "setjmp/longjmp unsupported",
819           documented some unsupported C99 features
820         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
821         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
822           if, thanks Hubert Sack
823         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
824         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
825           make make_library
826         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
827           regression tests can report resource usage (rfe 700441)
828         * support/regression/collate-results.py: report resource usage
829         * support/regression/ports/ds390/spec.mk,
830         * support/regression/ports/hc08/spec.mk,
831         * support/regression/ports/mcs51/spec.mk,
832         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
833         * support/regression/ports/ds390/uCsim.cmd,
834         * support/regression/ports/hc08/uCsim.cmd,
835         * support/regression/ports/mcs51/uCsim.cmd,
836         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
837         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
838           library, use the default one
839         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
840           building the library
841
842 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
843
844         * config.dsp: added dependency on .version and configure_vc.awk
845         * device/include/setjmp.h: updated for --stack-auto and --xstack
846         * device/include/mcs51/at89c51snd1c.h: corrected line endings
847         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
848         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
849         * device/lib/libsdcc.lib: added _setjmp
850         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
851           (decorateType): fixed bug 1372851,
852           (optimizeGetHbit): fixed warning
853         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
854           array initialisation
855         * support/regression/tests/bug1057979.c: added test for bug 1358192
856         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
857
858 2005-12-03 Borut Razem <borut.razem AT siol.net>
859
860         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
861           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
862
863 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
864
865         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
866         createIval): implement symbol independant "flexible array member",
867         (createIvalCharPtr): implemented flexible array initialisation with a
868         string
869         * src/SDCCsymt.c (copyStruct): removed,
870         (getSize): fixed misleading comment,
871         (getAllocSize): removed, the additional allocation size is now in
872         sym->flexArrayLength,
873         (checkStructFlexArray): new, syntax checks for flexible array members,
874         (compStructSize): added syntax checks for "flexible array members"
875         (copyStruct): removed,
876         (copyLinkChain): removed inefficient fix for bug 770487
877         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
878         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
879         symbol->flexArrayLength
880         * src/SDCCerr.c,
881         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
882         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
883         * support/regression/tests/structflexarray.c: added
884         * support/valdiag/tests/structflexiblearray.c: added
885
886 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
887
888         * src/SDCCast.c (decorateType): fixed bug 1368489
889         * support/Util/SDCCerr.c,
890         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
891
892 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
893
894         * device/include/mcs51/at89c51snd1c.h: added file submitted by
895           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
896
897 2005-11-27 Borut Razem <borut.razem AT siol.net>
898
899         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
900           support/cpp2/mkdeps.h: added command line option
901           -obj-ext=<extension> to SDCPP to define object file externion, used
902           for generation of make dependencies (-M)
903         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
904
905 2005-11-26 Borut Razem <borut.razem AT siol.net>
906
907         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
908           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
909           added pic and pic16 libraries
910
911 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
912
913         * device/include/float.h: Corrected typo in prototype of __fsgt
914
915 2005-11-25 Borut Razem <borut.razem AT siol.net>
916
917         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
918           added creation of model-mcs51-stack-auto libraries
919
920 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
921
922         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
923         and fields-list too
924         * src/SDCCast.c (createIvalArray): removed obsolete comment
925
926 2005-11-24 Borut Razem <borut.razem AT siol.net>
927
928         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
929           added missing device/lib/mcs51/crt*.asm sources
930
931 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
932
933         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
934
935 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
936
937         * device/lib/_fs2schar.c,
938         * device/lib/_fs2sint.c,
939         * device/lib/_fs2slong.c: optimized inline asm
940
941 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
942
943         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
944           Better handling of floats between -1.0 and 0.0.
945
946 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
947
948         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
949           (the missing "if"s prohibited removal of redundant labels)
950
951 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
952
953         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
954           Properly convert floats between -1.0 and 0.0 to long, int, and char
955           types (max integer value of negative floats tends to zero).
956         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
957           Removed changes made so to work properly with floats between
958           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
959           and _fs2char.c
960
961 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
962
963         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
964         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
965         (genCast) cosmetic change
966         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
967         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
968         from mcs51
969         * support/regression/tests/bitfields (testSignedBitfields): added
970
971 2005-11-18 Borut Razem <borut.razem AT siol.net>
972
973         * sdcc/device/lib/Makefile.in: remove all unnecessary files
974         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
975           introduced SILENT option to make building of pic16 libraries less
976
977 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
978
979         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
980           Now they work properly with floats between -1.0 and 0.0
981         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
982
983 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
984
985         * src/SDCCicode.c (printOperand): added missing else
986
987 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
988
989         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
990         reformatted for better readability
991         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
992         signed bitfields
993
994 2005-11-17 Borut Razem <borut.razem AT siol.net>
995
996         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
997           introduced SILENT option to make building of pic16 libraries less
998           verbose - used for nightly snapshot build
999         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
1000           available on Win32 platforms.
1001         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
1002           medium, large, pic and pic16
1003
1004 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1005
1006         * device/lib/printf_large.c: Temporary patch for bug 1358192:
1007           printf("%f"...) sets fraction to zero.
1008
1009 2005-11-16 Raphael Neider <rneider AT web.de>
1010
1011         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
1012           fixes #1357221
1013         * src/pic/gen.c (genIfx): implemented for CARRY bit
1014         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
1015           to generic pointers, fixes #1357332,
1016           (pic16_movLit2f): NEW,
1017           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
1018
1019 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
1020
1021         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
1022
1023 2005-11-11 Raphael Neider <rneider AT web.de>
1024
1025         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
1026         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
1027           compute pointer's type from operand,
1028           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
1029           improved single bit reads, fixes bug #1353379
1030
1031 2005-11-09 Borut Razem <borut.razem AT siol.net>
1032
1033         * support/scripts/sdcc.nsi: added lib/pic to the package
1034
1035 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
1036
1037         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
1038
1039 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
1040
1041         * support/regression/tests/bug1348008.c: added
1042         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
1043         * support/regression/tests/bug1337835.c: updated comment
1044
1045 2005-11-06 Borut Razem <borut.razem AT siol.net>
1046
1047         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1048           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1049           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1050           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1051           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
1052           dynamic construction of cl_error_class and derivates - 2.nd try
1053
1054 2005-11-05 Borut Razem <borut.razem AT siol.net>
1055
1056         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
1057           bug, which caused Bus Errors on sparc solaris
1058
1059 2005-11-04 Borut Razem <borut.razem AT siol.net>
1060
1061         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1062           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1063           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1064           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1065           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
1066           and derivates to resolve the initialization problem on OSX
1067
1068 2005-11-02 Borut Razem <borut.razem AT siol.net>
1069
1070         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1071           corrected typo - #include <winsock2.h>
1072
1073 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
1074
1075         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
1076           (_asxxxx_mapping): added org directive for future enhancements
1077
1078 2005-11-01 Borut Razem <borut.razem AT siol.net>
1079
1080         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1081           enabled sockets on WIN32
1082         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
1083
1084 2005-10-31 Borut Razem <borut.razem AT siol.net>
1085
1086         * support/regression/generate-cases.py: escape backslashes in {testcase}:
1087           WIN32 backslash path delimiters should be escaped when used in C strings
1088         * support/regression/tests/bitfields.c: exclude failing assertions for
1089           __CYGWIN32__ and __MINGW32__ hosts
1090
1091 2005-10-30 Borut Razem <borut.razem AT siol.net>
1092
1093         * src/SDCCutil.c: corrected double comparison typo
1094
1095 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
1096
1097         * device/lib/medium/Makefile: added for new memory model medium
1098         * device/include/asm/mcs51/features.h: updated for medium/pdata
1099         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
1100           added Multiply & Accumulate sbit's and MAC0_PAGE define
1101         * device/include/mcs51/c8051f300.h: added sfr16 definitions
1102         * device/include/mcs51/c8051f310.h: added sfr16 definitions
1103         * device/lib/_mullong.c: update for medium model
1104         * device/lib/incl.mk: added medium model
1105         * doc/sdccman.lyx: documented medium model
1106         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
1107         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
1108         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
1109         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
1110           (allocParms): set SCLS and OCLS to pdata for medium model
1111         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
1112           for pdata,
1113           (powof2): return <0 if not power of 2
1114         * src/avr/gen.c (genBitWise): use updated powof2
1115         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
1116           (shiftR2Left2Result): small optimization in setup, save acc when storing,
1117           (shiftLLeftOrResult): use B if necessary
1118         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
1119         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
1120         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
1121         * support/regression/Makefile.in: added test-mcs51-medium
1122         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
1123
1124 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
1125
1126         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
1127         specifier unsigned
1128         * device/lib/time.c (mktime): fixed bug 1334315
1129
1130 2005-10-28 Raphael Neider <rneider AT web.de>
1131
1132         * device/include/pic/p16f_common.inc: added common declarations
1133         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
1134
1135 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1136
1137         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
1138           (aopPutUsesAcc): added to predict accumulator use,
1139           (assignResultValue): save acc if necessary,
1140           (genMinusDec): store result if indirectly addressed,
1141           (genDivOneByte):  save acc if necessary,
1142           (movLeft2Result): bugfix if left already in acc,
1143           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
1144             attention to accumulator use (esp. pdata),
1145           (genReceive): receive pdata correctly
1146         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
1147         * src/SDCCicode.h: added isOperandInPagedSpace prototype
1148
1149 2005-10-27 Raphael Neider <rneider AT web.de>
1150
1151         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
1152
1153 2005-10-27 Raphael Neider <rneider AT web.de>
1154
1155         * .version: changed version to 2.5.4
1156         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
1157         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
1158           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
1159             arithmetics support routines
1160         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
1161         * device/lib/Makefile.in: also create installdir for pic
1162
1163         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
1164           pic14 port as well
1165         * src/pic/device.c (dump_sfr): rewritten to delegate register
1166           placement to the linker (use `extern sym' rather than sym EQU addr),
1167           (validAddress): fixed to check last specified address
1168         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
1169           (popGetLit): truncate literal value to 8 bit,
1170           (popGet): moved assert to more appropriate place
1171           (popGetExternal): create pCode operand from and mark the according
1172             symbol as being `extern'
1173           (popGetAddr): added sanity check on immediate's offset, provide
1174             GPOINTER tag on demand
1175           (aopPut): fixed for immediates,
1176           (mov2w_op): move operand's address or contents to WREG (depending on
1177             operand type), safer variant of mov2w,
1178           (movwf,call_libraryfunc): NEW, handy abbreviations,
1179           (get_argument_pcop,get_return_val_pcop,pass_argument,
1180           get_returnvalue): interface for accessing function parameters and
1181             return values,
1182           (assignResultValuei,genRet): use new parameter/return value interface
1183           (pic14_getDataSize): back to old version handling generic pointers,
1184           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
1185             provided implementation and/or fixed old one,
1186           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
1187             calls, removed legacy 8051 reference code
1188           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
1189           (loadSignToC): NEW, move the operands sign bit to CARRY,
1190           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
1191             genRightShiftSigned, accepts negative shift counts,
1192           (setup_fsr): load FSR and adjust IRP (indirect memory access),
1193           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
1194             generic pointers, __data pointers and __code pointers,
1195           (genUnpackBits,genPackBits): rewritten to work with generic pointers
1196             and signed bitfields, limit bitfields to 8 bit,
1197           (genDataPointerGet): fixed number of bytes read,
1198           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
1199           (genPointerGet,genPointerSet): fixed handling of __code pointers,
1200             pointers to constant data are no longer assumed to point to __code
1201             space, removed invalid pointer types,
1202           (bitpatternFromVal): retrieve the PICs representation of an integer
1203             or float literal,
1204           (genDataPointerSet): fixed assigning to po_immediate operands,
1205           (genGenPointerSet): implemented as library call,
1206           (genIfx): fixed incorrect condition,
1207           (genAddrOf): limit generic pointers' addresses to 2 bytes,
1208             provide GPOINTER tag according to destination's storage class,
1209           (genCast): added code to handle casting to generic pointers, added
1210             sign-/zero extension of the result
1211           (aop_isLitLike,op_isLitLike): fixed handling of immediates
1212         * src/pic/gen.h: added macros to access IRP bit in STATUS register
1213         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
1214           extend the result
1215         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
1216           address/register resides in the shared banks
1217           (emitSymbolToFile): improved to handle global and `pinned' symbols,
1218             put all variables into separate sections (have the linker arrange
1219             them)
1220           (picglue): put init code and interrupt handlers in separate sections
1221         * src/pic/main.c: added port specific options table, modified to PORT
1222           structure to make GPOINTERs 3 byte, added pic14_options
1223           (_pic14_do_link): private linking routine (update paths to libraries,
1224             add libsdcc.lib by default)
1225         * src/pic/main.h: declare pic14_options
1226         * src/pic/pcode.c: fixed instructions i/o relations,
1227           (RegCond): reverted to correct version,
1228           (newpCodeOpLit): truncate literals to 8 bit,
1229           (genericPrint): added debug output,
1230           (getRegFromInstruction): fixed for various operand types, simplified
1231           (BuildFlow): fixed broken handling of isntructions with labels
1232           (LinkFlow): start at last instruction in flow (skip trailing comments),
1233             pass the flow on to the next instruction after CALL
1234           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
1235           (insertPCodeInstruction): fixed inserting after a skip instruction,
1236           (DoBankSelect): fixed for labeled instructions
1237           (OptimizepBlock): honor --nopeep switch
1238           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
1239         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
1240         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
1241           (pCodeOptime2pCodes): allow disabling this optimization via
1242             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
1243             but is still buggy), started implementation of a dataflow based
1244             pCode optimization (CSE + dead code elimination)
1245           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
1246         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
1247           names are independant of the stack location and therefore portable across
1248           devices
1249
1250 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1251
1252         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
1253           (selectSpil): fixed bug 1337835 by not spilling bit variables
1254         * support/regression/tests/bug1337835.c: added test for this bug
1255         * src/mcs51/peeph.def: restart after rule 3.c,
1256           addded rules 263.x to optimize loading constants
1257
1258 2005-10-26 Raphael Neider <rneider AT web.de>
1259
1260         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
1261         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
1262           (genAssign): emit warning when casting literals to generic pointer
1263             type, also applies when taking the address of a fixed variable,
1264           (genCast): improved casting to generic pointers
1265         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
1266           extern variables, added verbose error message
1267         * device/include/pic16/{string.h,errno.h}: added #pragma library c
1268
1269 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
1270
1271         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
1272         carry must be complemented too
1273         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
1274         could be emitted by genMinus
1275         * src/SDCCval.c (constVal): fixed bug 1305065
1276
1277 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
1278
1279         * src/SDCCast.c (addCast): added promotion for bit variables
1280         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
1281         promotion casts + optimisation
1282         (optimizeGetWord): fix warning 'i' might be used uninitialized
1283         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
1284         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
1285
1286 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
1287
1288         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
1289         all chars are promoted to int; promotion should be handled in SDCCast.c
1290
1291 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1292
1293         * device/lib/_strcmp.c: Fixed bug 1326457
1294
1295 2005-10-11 Raphael Neider <rneider AT web.de>
1296
1297         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
1298         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
1299
1300 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
1301
1302         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
1303         * support/regression/tests/sfr16.c: added test for the sfr32 bug
1304
1305 2005-10-04 Raphael Neider <rneider AT web.de>
1306
1307         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
1308           device/lib/pic16/pics.all: added pic18f1320
1309         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
1310
1311 2005-09-30 Raphael Neider <rneider AT web.de>
1312
1313         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
1314         * src/pic16/devices.inc: NEW, provides device descriptions
1315         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
1316
1317 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
1318
1319         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
1320           GETHBIT
1321
1322 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
1323
1324         * doc/sdccman.lyx: updated Highest Order Bit documentation,
1325           documented Any Order Bit, Higher Order Byte and Higher Order Word
1326         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
1327         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
1328           (optimizeGetAbit): new, to get any bit, not only the high bit,
1329           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
1330           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
1331           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
1332           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
1333             RIGHT_OP: also try GETBYTE, GETWORD optimization,
1334             GETABIT, GETBYTE, GETWORD: decorate them,
1335           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
1336           (ast_print): added GETABIT, GETBYTE, GETWORD
1337         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
1338         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
1339           (geniCodeBinary): new generic binary icode,
1340           (ast2iCode): added GETABIT, GETBYTE, GETWORD
1341         * src/port.h: updated comment for PORT.hasExtBitOp
1342         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
1343           (genGetByte): new, to get a single byte,
1344           (genGetWord): new, to get a word from a long,
1345           (gen51Code): added GETABIT, GETBYTE, GETWORD
1346         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
1347
1348 2005-09-23 Raphael Neider <rneider AT web.de>
1349
1350         * configure.in, configure: have device/lib/pic configured
1351         * device/lib/Makefile.in: added model-pic14
1352         * device/lib/clean.mk: added pic/ to clean rule
1353         * device/lib/pic: added rudimentary pic14 library providing support
1354           functions for multiplication/division/generic pointer access
1355         * src/SDCCopt.c (convilong): mark support functions as extern
1356           for pic14 port as well
1357         * src/pic/gen.c (genMult): added assertions,
1358           (genpic14Code): emit warning on unhandled iCodes
1359         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
1360         * src/pic/pcode.c (pCodeOpCopy),
1361         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
1362           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
1363           SFR_REGISTER}), made safe for future extensions
1364         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
1365           instructions even if preceeded by SKIP instructions (also remove
1366           them); removed unused code
1367         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
1368           prevents leaving parts of the structure uninitialized after copying
1369
1370 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
1371
1372         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
1373           ago by me
1374         * support/regression/tests/addsub.c: added test for the bug
1375
1376 2005-09-21 Raphael Neider <rneider AT web.de>
1377
1378         * device/include/pic16/pic18f1220.h,
1379           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
1380         * device/lib/pic16/Makefile.rules: added missing opening paren
1381         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
1382           are provided in genutils.c,
1383           (genUminusFloat,genUminus,genCmpEq): added asserts on different
1384           operand/result sizes,
1385           (genCmp): assert on NULL pointers first, then check deref'ed values
1386         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
1387           result size
1388
1389 2005-09-18 Raphael Neider <rneider AT web.de>
1390
1391         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
1392           as these are now unused,
1393           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
1394         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
1395           local, avoids uninitialized pointer dereference on r->name
1396         * src/pic16/ralloc.c (newReg): fixed indentation
1397
1398 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
1399
1400         * src/SDCCval.c (constVal): fixed bug 730366
1401         * support/Util/SDCCerr.c,
1402         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
1403
1404 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
1405
1406         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
1407
1408 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
1409
1410         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
1411
1412 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
1413
1414         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
1415           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1416         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
1417           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1418         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
1419         * packihx/packihx.c (hexDigit): made c unsigned char
1420         * as/mcs51/lklibr.c (fndsym),
1421         * link/z80/lkgb.c (gb),
1422         * link/z80/lklibr.c (fndsym),
1423         * link/z80/lkrloc.c (relr),
1424         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
1425         * src/SDCC.lex (checkCurrFile, process_pragma),
1426         * src/SDCCglue.c (spacesToUnderscores),
1427         * src/SDCCmain.c (setParseWithComma, processFile),
1428         * src/asm.c (tvsprintf, printCLine),
1429         * src/avr/gen.c (emitcode, aopPut),
1430         * src/ds390/gen.c (emitcode),
1431         * src/hc08/gen.c (emitcode, emitinline),
1432         * src/mcs51/gen.c (emitcode, genInline),
1433         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1434           tokenizeLineNode),
1435         * src/pic/ralloc.c (debugLog),
1436         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1437           tokenizeLineNode),
1438         * src/pic16/ralloc.c (debugLog),
1439         * src/z80/main.c (_process_pragma):
1440            made all ctype.h function calls safe
1441         * src/SDCCopt.c: include math.h for fabs
1442         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
1443           and used them throughout the code to make ctype.h function calls safe
1444         * src/ds390/main.c (asmLineNodeFromLineNode),
1445         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
1446         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
1447            unsigned char*
1448         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
1449           (newpCodeAsmDir): made ctype.h function calls safe
1450         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
1451           pic16_emitcode):  made lbp unsigned char*
1452         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
1453           (pic16_newpCodeAsmDir): made ctype.h function calls safe
1454         * src/xa51/gen.c (emitcode),
1455         * src/z80/gen.c (_emit2): made lbp unsigned char*
1456         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
1457            char*
1458
1459 2005-09-05 Raphael Neider <rneider AT web.de>
1460
1461         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
1462           access bank splitpoint
1463
1464 2005-09-05 Raphael Neider <rneider AT web.de>
1465
1466         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
1467
1468 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
1469
1470         * .version: changed to version 2.5.3
1471         * doc/sdccman.lyx: changed version to 2.5.3,
1472           documented --codeseg and --constseg and pragma codeseg and constseg,
1473           documented bit parameters (reentrant) and bit returning
1474         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
1475            currFunc->recvSize, but is this ok for all ports?
1476           (ast2iCode): result of ~ on unsigned char must be cast to int for
1477            bool to work
1478         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
1479           function pointers in bit space
1480         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
1481           (processFuncArgs): call port.reg_parm() with reentrancy info
1482         * src/port.h,
1483         * src/avr/main.c,
1484         * src/ds390/main.c,
1485         * src/hc08/main.c,
1486         * src/pic/main.c,
1487         * src/pic16/main.c,
1488         * src/xa51/main.c,
1489         * src/z80/main.c: port.reg_parm prototype extended with
1490           "bool reentrant" parameter
1491         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
1492           options.stackAuto for allocating bit register parameters
1493         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
1494           (genSend): set BitBankUsed if it is,
1495           (selectRegBank): factored out of genCall for use in genPcall,
1496           (genCall): removed redundant dtype assignmen, use selectRegBank,
1497           (genPcall): handle returning in Carry properly, save in F0 if needed,
1498           (genReceive): handle bit register parameters
1499         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
1500           (mcs51_assignRegisters): enable bit registers for all reentrant
1501            functions and don't set BitBankUsed unconditionally
1502         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
1503         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
1504         * support/regression/tests/funptrs.c: added tests for BOOL and for return
1505
1506 2005-08-27 Borut Razem <borut.razem AT siol.net>
1507
1508         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
1509         ppc-osx (Darwin) does not support -u option. It seems that it is
1510         supported only on Linux - GNU cp
1511
1512 2005-08-25 Borut Razem <borut.razem AT siol.net>
1513
1514         * sim/ucsim/gui.src/serio.src/Makefile.in,
1515           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
1516           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1517           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
1518           install and strip, since the strip at /usr/ccs/bin should be used
1519           on solaris
1520
1521 2005-08-24 Borut Razem <borut.razem AT siol.net>
1522
1523         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
1524
1525 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
1526
1527         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
1528         ffffffffu
1529
1530 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
1531
1532         * as/mcs51/aslink.h: completed lkrloc.c prototypes
1533         * as/mcs51/lkmain.c (link_main): fixed warning
1534         * device/include/stdbool.h: ds390 has no advanced bit support yet
1535         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
1536         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
1537         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
1538           and updated their macros
1539         * src/SDCCval.c (constVal): updated comment for renamed b_long
1540
1541 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
1542
1543         * as/mcs51/asdata.c: changed ctype['['] to BINOP
1544         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
1545           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
1546           (oprio): set priority for '['
1547         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
1548            and adb_24_bit
1549         * as/mcs51/asm.h: added defines R_BIT and S_BIT
1550         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
1551         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
1552         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
1553           added overlayable BIT_BANK area
1554         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
1555           (summary2): explain 'T' in legenda
1556         * as/mcs51/lkrloc.c: replaced old K&R style,
1557           (relr): added R_BIT processing,
1558           (errmsg): added "Bit-addressable relocation error",
1559           (adb_bit): added for converting from byte- to bit-addressable space,
1560           (adb_24_bit): added for converting from byte- to bit-addressable space
1561         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
1562            used in reentrant functions now even as return value
1563         * device/lib/_gptrput.c (_gptrput): removed obsolete code
1564         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
1565           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
1566         * src/SDCCglobl.h: added indicator BitBankUsed
1567         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
1568            the bit registers b0-b7
1569         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
1570           (geniCodeCast): fixed bug 1263853,
1571           (geniCodeLogicAndOr): put result in bool or char,
1572           (geniCodeReceive): added parameter func for accessing the return type,
1573           (geniCodeFunctionBody): pass func to geniCodeReceive
1574         * src/SDCCmain.c: added indicator BitBankUsed
1575         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
1576         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
1577           (checkSClass): don't put automatic bool/bit on stack,
1578           (checkFunction): removed check on function cannot return bit
1579         * src/SDCCsymt.h: added newBoolLink prototype
1580         * src/mcs51/gen.c (rb1regs): added bit registers,
1581           (movc): created for assigning to carry,
1582           (pushReg, popReg): created for pushing registers,
1583           (sameRegs): check both AOP_REG and AOP_CRY types,
1584           (aopOp): handle bit registers,
1585           (aopPut): optimization no self-assign,
1586           (saveRegisters): push reg->base (bits) only once for bit registers,
1587            and use pushReg,
1588           (unsaveRegisters): pop reg->base only once and use popReg,
1589           (assignResultValue): added parameter func and return in carry for bits,
1590           (genIpush): optimization no reload in A if not changed,
1591           (genSend): bit parameters in reentrant functions are passed in bit
1592            registers by first assigning to bits in B, then save registers and
1593            copy B to bits,
1594           (genCall): handle returning in Carry properly, save it in F0 if needed,
1595           (genPcall): updated assignResultValue call, this is not safe yet for bit
1596            returning function !!!
1597           (genFunction): don't generate equ's for bit registers and use pushReg,
1598           (genEndFunction): take care of bit returning functions and use popReg,
1599           (genRet): return bit in Carry,
1600           (genIfx): optimize bit registers and other directly addressable bits,
1601           (genReceive): updated assignResultValue call
1602         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
1603           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
1604            registers when using stack-auto
1605         * src/mcs51/ralloc.c (_G): added allBitregs,
1606           (regs8051): added the bit registers,
1607           (createStackSpil): use macro IS_BIT,
1608           (getRegBit): added to allocate a bit register, else spill,
1609           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
1610           (updateRegUsage): factored out to ease stepping while debugging,
1611           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
1612            also allocate bit registers,
1613           (fillGaps): handle bit registers,
1614           (findAllBitregs): added to create bit vector with all bit registers,
1615           (mcs51_allBitregs): returns this bit vector,
1616           (mcs51_assignRegisters): when using stack-auto use bit registers for
1617            passing parameters and creating local variables
1618         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
1619
1620 2005-08-22 Borut Razem <borut.razem AT siol.net>
1621
1622         * device/lib/Makefile.in: replaced find option -or with -o
1623           to make it run on solaris
1624
1625 2005-08-22 Raphael Neider <rneider AT web.de>
1626
1627         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
1628           fixes #1265442 (crash on Solaris)
1629
1630 2005-08-20 Borut Razem <borut.razem AT siol.net>
1631
1632         * configure, configure.in: added tests for libsocket and libnsl libraries,
1633           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
1634           from support/regression/Makefile.in
1635         * support/regression/Makefile.in: added
1636         * device/lib/pic16/Makefile.common.in: force make to use bash shell
1637         * sim/ucsim/libtool: regenerated on sparc-solaris
1638         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1639           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
1640           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
1641           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
1642           sparc-solaris, which doesn't use GNU ld linker
1643         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
1644         * as/Makefile: find on sparc-solaris does not support -maxdepth option
1645
1646 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
1647
1648         * src/mcs51/peeph.def: updated comments
1649
1650 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1651
1652         * device/lib/_gptrget.c,
1653         * device/lib/_gptrput.c: slightly shorter
1654         * doc/sdccman.lyx: incremented version
1655         * src/mcs51/peeph.def: moved peephole comments to the line of first
1656           change to better keep line correlation, reanimated 186.e
1657         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
1658
1659 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
1660
1661         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
1662           David Saxton with quotes around file name.
1663
1664 2005-08-15 Borut Razem <borut.razem AT siol.net>
1665
1666         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
1667           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
1668           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
1669           make tests run on x86_64 platform
1670
1671 2005-08-13 Raphael Neider <rneider AT web.de>
1672
1673         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
1674           as it might be executed DURING a build (parallel make is wonderful)
1675
1676 2005-08-13 Raphael Neider <rneider AT web.de>
1677
1678         * device/lib/Makefile.in (port-specific-objects-pic16):
1679           revert to cp $(PORT)/bin/*.* $(PORTDIR)
1680         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
1681           dependency
1682         * device/lib/pic16/Makefile.rules: build subdirs before creating
1683           the library, removed builddir rule, create $(builddir) early in
1684           recurse rule, use empty recurse rule for leaf directories
1685         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
1686           mkdir errors (race condition), removed duplicate suffix "hex"
1687           from clean rules
1688         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
1689         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
1690           prevents mkdir -p from aborting on Alpha
1691
1692 2005-08-12 Raphael Neider <rneider AT web.de>
1693
1694         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
1695           db-statements in order to allow for arrays of pointers in code
1696           sections to be placed without interspersed 0-padding, fixes
1697           bug #1256215
1698         * (emitStatistics): fixed division by zero for pic18f1220
1699         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
1700           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
1701         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
1702         * (pic16_pCodeConstString): keep track of already emitted string
1703           literals to prevent "duplicate definitions of symbol _str_NR"
1704         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
1705           debug message
1706         * device/lib/Makefile.in: ignore failing PIC16 library builds
1707         * device/lib/pic16/Makefile: do not build if gputils are missing
1708         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
1709
1710 2005-08-10 Raphael Neider <rneider AT web.de>
1711
1712         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
1713           my last commit)
1714
1715 2005-08-10 Raphael Neider <rneider AT web.de>
1716
1717         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
1718           Rokas' patch to add the new fixed point type "__fixed16x16"
1719         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
1720           functions for __fixed16x16 arithmetics
1721         * device/lib/pic16: reimplemented the build system to support
1722           a separate build directory, better handling of libio (create
1723           the library in a separate subdir for each architecture) and
1724           easier configuration (centralized in Makefile.common)
1725
1726 2005-08-07 Raphael Neider <rneider AT web.de>
1727
1728         * src/pic16/gen.c (genrshTwo): fixed sign extension
1729         * src/pic16/device.c: added pic18f2320, 4220 and 4320
1730         * device/include/pic16/pic18f2220.h: changed some bit definitions,
1731           added T0CONbits
1732         * device/include/pic16/pic18f4220.h: NEW, header for
1733           pic18f4220 and pic18f4320
1734         * device/include/pic16/pic18fregs.h: added new devices,
1735           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
1736         * device/include/pic16/signal.h: resolved name clashes
1737           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
1738           to also allow testing for interrupt enable bits, added
1739           comments on how to use the macros
1740         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
1741         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
1742           register definitions for the devices
1743         * device/lib/pic16/pics.all: added new devices
1744         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
1745           allocated memory
1746         * device/lib/pic16/libc/stdlib/memfree: do not count
1747           the block header as free memory
1748         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
1749           simplified and added missing end-of-blocklist-marker
1750           (reported by Peter Onion, fixes #1252814)
1751         * (_mergeHeapBlock): fixed loop condition
1752         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
1753           len==0, restructured code
1754         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
1755           up a bit, reduced bitfield accesses, prevent endless loops
1756           in case of heap corruption
1757         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
1758           "unreferenced arguments/must return a value" warnings
1759         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
1760           replaced BAUDREG with SPBRG
1761         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
1762           device/lib/pic16/debug/gstack/gstack.c: replaced
1763           _naked, _asm, _endasm with __naked, __asm, __endasm
1764
1765 2005-08-05 Raphael Neider <rneider AT web.de>
1766
1767         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
1768           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
1769
1770 2005-08-05 Borut Razem <borut.razem AT siol.net>
1771
1772         * device/lib/Makefile.in: added missing ';'
1773         * configure: removed ^M characters
1774
1775 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1776
1777         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
1778           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
1779           License
1780
1781 2005-08-04 Borut Razem <borut.razem AT siol.net>
1782
1783         * configure.in: pic16 libraries build 2nd try - enable running
1784           configure in device/lib/pic16
1785         * configure: regenerated from configure.in
1786         * device/lib/Makefile.in: create $(PORT)/bin directory
1787
1788 2005-08-03 Raphael Neider <rneider AT web.de>
1789
1790         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
1791           to get/set values via pointers
1792         * (genUnpackBits,genPackBits): changed detection of
1793           ptr->bitfield vs. sym.bitfield, fixed access via generic
1794           pointers, removed dead (wrong) code for multibyte bitfields
1795         * (genNearPointerGet, genGenPointerGet): removed useless code,
1796           fixed bitfield detection, fixes #1250594
1797         * (genNearPointerSet): removed useless code
1798         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
1799           and introduced macro pic16_emitpcode that conditionally emits
1800           the origin of the following pCode (useful for debugging SDCC)
1801         * src/pic16/pcode.c: changed (and disabled) some debug outputs
1802         * (createDefmap): fixed handling of LFSR for --optimize-df
1803
1804 2005-08-02 Borut Razem <borut.razem AT siol.net>
1805
1806         * device/lib/Makefile.in: pic16 libraries build enabled since
1807           gputils-0.13.2 are now localy installed at sourceforge's compile farm
1808
1809 2005-08-02 Raphael Neider <rneider AT web.de>
1810
1811         * src/pic16/gen.c (genPackBits): removed deprecated warning
1812         * (genGenPointerSet): fixed bitfield detection
1813
1814 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1815
1816         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
1817
1818 2005-07-31 Raphael Neider <rneider AT web.de>
1819
1820         * device/lib/pic16/libdev/pic18f458.c,
1821           device/include/pic16/pic18f458.h: added missing T0CONbits
1822
1823 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
1824
1825         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
1826
1827 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
1828
1829         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
1830
1831 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1832
1833         * device/include/mcs51/at89c51ed2.h: added.
1834
1835 2005-07-23 Raphael Neider <rneider AT web.de>
1836
1837         * src/pic/gen.h: added emitpcode macro for debugging
1838         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
1839           and replace by macro adding debug information on demand
1840         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
1841         * (gencjne): tried to fix; replaced with correct (slower) code
1842         * (gen{Unp,P}ackBits): fixed single bit access
1843         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
1844         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
1845           previous instruction
1846         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
1847           register has to be handled with care (forbidding movement
1848           of assignments/uses, removing assignments completely, ...)
1849         * (pCodeOptime2pCodes): make use of regIsSpecial
1850         * added lots of debugging output (commented out)
1851         * src/pic/rallloc.c (deassignLRs): prevent operand registers
1852           from being reused as result UNLESS it is known to work
1853
1854 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
1855
1856         * support/Util/dbuf.h: include <stddef.h> for size_t
1857         * .version: changed to version 2.5.2
1858
1859 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1860
1861         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
1862
1863 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1864
1865         * src/hc08/gen.c (genMinus): fixed bug #1241835,
1866           (genModOneByte): removed needless psha/pula
1867
1868 2005-07-22 Raphael Neider <rneider AT web.de>
1869
1870         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
1871           have PIC14 handled like PIC16, fixes broken pic14 linker calls
1872         * src/pic/gen.c (resolveIfx): do not "invent" labels
1873         * (genSkipc): changed to positive logic
1874         * (genSkipCond): removed as no longer needed
1875         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
1876           backport from PIC16
1877         * (genLeftShift): check operands are in different registers
1878         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
1879           INCF does not update CARRY...
1880         * src/pic/main.c: fixed _linkCmd
1881         * src/pic/pcode.c (unlinkpCode): added inactive code
1882         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
1883           alive (do not assign result and operand overlapping registers)
1884
1885 2005-07-22 Raphael Neider <rneider AT web.de>
1886
1887         * src/pic/device.c (dump_sfr): replaced register declaration with
1888           call to emitSymbolToFile() to avoid duplicate symbols
1889         * (assignRelocatableRegisters): do not declare external symbols
1890         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
1891           right (take size of type, not etype)
1892         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
1893         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
1894         * (packRegsForAccUse): disabled assignment of WREG as
1895           the result reg to prevent occurence of just fixed #1235003,
1896           fixes #1242954
1897         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
1898           symbols (avoids duplicate symbols in .asm file)
1899         * (pic14emitRegularMap): use emitSymbolToFile()
1900         * src/pic/gen.c (aopOp): fixed spillLocation handling
1901         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
1902         * (genDataPointerSet): removed unneccessary variables/output
1903
1904 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
1905
1906         * as/mcs51/lkarea.c: enlarged codemap for banked memory
1907         * device/lib/mcs51/crtbank.asm: added # to 0x0F
1908
1909 2005-07-21 Raphael Neider <rneider AT web.de>
1910
1911         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
1912           architecture cannot handle them efficiently, fixes bug #1235003
1913         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
1914           check for empty sets before using them (fixes bug #1232190)
1915
1916 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
1917
1918         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
1919           (lnksect2): generate warnings for memory overlap
1920         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
1921           constseg to set the name of these segments so you can instruct the linker
1922           to place them in banks
1923         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
1924         * src/SDCCglobl.h: added MODEL_HUGE to enum,
1925           added code_seg and const_seg to options
1926         * src/SDCCglue.c (emitMaps): use options.const_seg,
1927           (createInterruptVect): put interrupt vectors in segment HOME,
1928           (glue): put HOME before static segment and put the main glue in HOME,
1929           (glue): use options.code_seg
1930         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
1931         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
1932           these segments so you can instruct the linker to place them in banks
1933           (linkEdit): use code_loc for HOME segment which should be the first
1934           segment in code memory now
1935         * src/SDCCmem.c: fixed more stuff like bug 1238386
1936         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
1937           (changePointer): don't change function pointers to code pointers for
1938           banked functions,
1939           (compareType): added exceptional check for banked function pointers
1940         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
1941         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
1942           after static in code memory
1943         * src/mcs51/gen.c: added aopLiteralLong prototype,
1944           (aopForSym): use getSize for functions,
1945           (genCall): generate banked calls over one trampoline __sdcc_banked_call
1946           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
1947           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
1948           the segment,
1949           (genPcall): use call for literal function pointers and generate banked
1950           calls over the one trampoline so there's only one place for the user to
1951           modify according to his/hers hardware,
1952           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
1953           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
1954         * src/mcs51/main.c: added keyword banked,
1955           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
1956         * support/Util/SDCCerr.c,
1957         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
1958           needed for passing the bank and address to the trampoline
1959         * device/lib/mcs51/crtbank.asm: added for bankswitching
1960         * device/lib/mcs51/Makefile: added crtbank
1961
1962 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1963
1964         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
1965           for fields at offset 0 of a struct or union as reported
1966           on 2005-07-07 in the developer mailing list.
1967
1968 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
1969
1970         * src/SDCCmem.c: fixed bug 1238386
1971
1972 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1973
1974         * src/mcs51/peeph.def: added labelrefcounting for peepholes
1975           (patch #1144962), added peephole 300, enabled 259.x
1976         * doc/sdccman.lyx: removed screenshot and provided link instead
1977
1978 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1979
1980         * doc/sdccman.lyx: added section about debugging with ddd
1981         * doc/figures/ddd_example.eps: screenshot of debugging session
1982
1983 2005-07-04 Raphael Neider <rneider AT web.de>
1984
1985         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
1986           like CODE pointers, fixes #1115683
1987         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
1988           call, fixes bugs #1232211, #1228110,
1989           fixed wrong casts to pCodeFlow from pCodeInstructions
1990
1991 2005-07-04 Raphael Neider <rneider AT web.de>
1992
1993         * src/pic/gen.c (popGet): changed assert to allow for
1994           bit operands
1995         * (popGetAddr): changed signature to provide
1996           an additional index, patched all call sites
1997         * (genCmpEq): handle literal-like operands correctly
1998         * (genAddrOf): added sanity checks on __code/__data pointers
1999         * (genAssign): added handling of symbols from __code section
2000         * (gencjne): do not generate code for comparisons whose result
2001           is neither stored nor used, fixes bug #1171114
2002         * (AccLsh, AccRsh): operate on operand instead of WREG
2003         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
2004           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
2005           by known count
2006         * rewrote complete shift-by-literal logic, commented unused
2007           functions out
2008         * (genConstPointerGet): get multiple bytes (if result size > 1),
2009           fixed handling of non-immediate addresses
2010         * (genPointerGet): handle CODE pointers like CONST pointers
2011         * (genpic14Code): insert C-SRC lines as Cource-pCodes
2012         * ({aop,op}_isLitLike): NEW, single place to decide whether an
2013           operand is to be treated as a literal or not
2014         * (mov2w,genPcall,genCmpEq),
2015           src/pic/genarith.c: use aop_isLitLike() to decide between
2016           literal/register contents
2017         * (addSign): added missing offset
2018         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
2019           only emit comment in debug-mode,
2020           use {aop,op}_isLitLike throughout the file
2021         * src/pic/glue.c: fix initializers for pointers (work in progress)
2022         * src/pic/pcode.c (get_op): honor index on _const symbols
2023         * ({reset,dump}pCodeStatistics): NEW, estimate code size
2024         * (dumppBlock): added pCode size estimation
2025         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
2026           check for IS_SYMOP before OP_SYMBOL'ing
2027         * fixed indentation, compacted switch-statements
2028         * (allocReg): find free register and allocate it instead of
2029           allocating new registers all the time
2030         * (deassignLRs): prevent POINTER_GET's from being assigned the same
2031           registers as its operands (necessary only for multibyte GETs)
2032
2033 2005-07-01 Raphael Neider <rneider AT web.de>
2034
2035         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
2036           debugging .asm-output macros FENTRY + FEXIT
2037         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
2038           way... I wonder...
2039         * (emitpComment): NEW, printf to pCode
2040         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
2041           offset handling
2042         * (popGetAddr): NEW, variant of popGet to access an immediates
2043           high(er) bytes instead of the n'th byte of memory they reference,
2044           replaced popGet with popGetAddr where neccessary
2045         * (genDataPointerGet): reactivated and fixed implementation
2046         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
2047           accesses
2048         * (genDataPointerSet): fixed multibyte assignments
2049         * (genpic14Code): fixed --i-code-in-asm handling
2050         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
2051         * (genPlus): fixed index-out-of-bounds error
2052         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
2053         * src/pic/ralloc.c: added debugging output macro FENTRY2
2054         * (spillThis): fixed indentation, enbraced for-body for clarity
2055         * (rematStr): commented out as now unused
2056         * (regTypeNum): commented out special spill case (overwrites
2057           arbitrary values)
2058         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
2059
2060 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
2061
2062         * doc/sdccman.lyx: documented sfr16/sfr32,
2063           added example for using storage class with function pointers
2064         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
2065
2066 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
2067
2068         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
2069         * device/lib/_itoa.c,
2070         * device/lib/_ltoa.c: optimized codesize
2071         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
2072           but don't know how to suppress the double warning.
2073         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
2074         * support/Util/SDCCerr.c,
2075         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
2076
2077 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
2078
2079         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
2080           fixed old K&R prototypes
2081         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
2082         * device/lib/_gptrget.c,
2083         * device/lib/_gptrgetc.c,
2084         * device/lib/_gptrput.c: changed versions for new memory indicator values,
2085           also new versions for small generic pointers and banked generic pointers
2086         * src/port.h: added const_name
2087         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
2088         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
2089         * src/SDCCcse.c (findPrevIc): check all associative operators
2090         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
2091         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
2092         * src/SDCCmem.c: updated comments,
2093           set far-space to 0 for pdata, results in optimized code
2094         * src/SDCCmem.h: added macro CONST_NAME
2095         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
2096           moving the info into the highest bits, see also gptrget/gptrput
2097         * src/src.dsp: added sdcc.ico to project files
2098         * src/avr/gen.c (genCast): fixed bug 0x%d
2099         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
2100         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
2101           relation between ptr_type and DCL_TYPE,
2102           (genCast): fixed bug 0x%d
2103         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
2104           (CODE)" for const_name
2105         * src/hc08/gen.c (genCast): fixed bug 0x%d
2106         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
2107           (hc08_port): added "CONST (CODE)" for const_name
2108         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
2109           (aopForRemat, adjustArithmeticResult): disconnected direct relation
2110           between ptr_type and DCL_TYPE,
2111           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
2112           operand* and took AOP() inside function so sfr-ness can be checked,
2113           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
2114           new prototype,
2115           (genFunction, genEndFunction): optimized stack setup,
2116           (genMinus): optimized for literals with ending zeroes (in bytes),
2117           (genCast): fixed bug 0x%d
2118         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
2119           (mcs51_port): added "CONST (CODE)" for const_name
2120         * src/mcs51/peeph.def: made rule 226 more generic
2121         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
2122         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
2123         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
2124         * src/z80/main.c (z80_port): added NULL for const_name,
2125           (gbz80_port): added NULL for const_name
2126         * support/regression/tests/bug663539.c,
2127         * support/regression/tests/sfr16.c: new tests
2128
2129 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2130
2131         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
2132
2133 2005-06-24 Raphael Neider <rneider AT web.de>
2134
2135         * device/lib/pic16/libdev/pic18f[68][567]20.c:
2136           corrected typos...
2137         * device/include/pic16/signal.h: added USBIF
2138           and SIG_USB
2139
2140 2005-06-24 Raphael Neider <rneider AT web.de>
2141
2142         * device/lib/pic16/libdev/pic18f2455.c,
2143           device/include/pic16/pic18f2455.h: NEW
2144         * device/include/pic16/pic18fregs.h,
2145           device/lib/pic16/pics.all,
2146           src/pic16/device.c: added 18f2455
2147         * device/lib/pic16/libdev/pic18f[68][567]20.c,
2148           device/include/pic16/{pic18f[68][567].h,usart.h}:
2149           replaced MULTIPLE_USARTS define with more relaible
2150           compatibility sfrs (for USART access)
2151
2152 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
2153
2154         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
2155           and the output asm file line is printed on two lines.
2156
2157 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2158
2159         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
2160           BGT, BLE, BHI, and BLS instructions
2161         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
2162           genCmpEq): removed
2163         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
2164           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
2165           fixes bug #1216342
2166         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
2167
2168 2005-06-15 Raphael Neider <rneider AT web.de>
2169
2170         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
2171         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
2172         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
2173           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
2174           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
2175
2176 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2177
2178         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
2179           Marcel Telka in bug #1215704
2180
2181 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
2182
2183         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
2184           located in shared memory bank.
2185
2186 2005-05-31 Raphael Neider <rneider AT web.de>
2187
2188         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
2189           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
2190           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
2191
2192 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
2193
2194         * device/lib/_strncpy.c: fixed the fix
2195
2196 2005-05-26 Raphael Neider <rneider AT web.de>
2197
2198         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
2199           initializers with \0, bug #1208187
2200         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
2201           intializers with \0, bug #1208187
2202
2203 2005-05-26 Raphael Neider <rneider AT web.de>
2204
2205         * src/pic16/glue.c (pic16_printIvalChar): fixed string
2206           initializers with \0, bug #1208187
2207         * src/pic16/main.c (_process_pragma): added sanity checks
2208           for stack position and size, emit warnings when appropriate
2209
2210 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
2211
2212         * device/lib/_strncpy.c: fixed not filling with \0
2213
2214 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2215
2216         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
2217           createFunction),
2218         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
2219           compound_statement),
2220         * src/SDCCsymt.h,
2221         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
2222
2223 2005-05-24 Raphael Neider <rneider AT web.de>
2224
2225         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
2226
2227 2005-05-24 Raphael Neider <rneider AT web.de>
2228
2229         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
2230           TRISE definitions, closes bug #1162453
2231
2232 2005-05-22 Raphael Neider <rneider AT web.de>
2233
2234         * src/pic16/main.c (_process_pragma): check for missing
2235           arguments to pragmas code and udata
2236         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
2237           consistency fixes to match other headers (thanks to Jim Paris)
2238         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
2239
2240 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
2241
2242         * src/SDCCicode.c (isOperandEqual): fixed missing ;
2243
2244 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
2245
2246         * support/regression/tests/bug1198642.c: new test
2247         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
2248         * src/SDCCcse.c (findPrevIc): added comment, please have a look
2249         * support/scripts/resource.h,
2250         * support/scripts/resource.rc,
2251         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
2252         * support/scripts/sdcc.ico: added 32x32 icon
2253
2254 2005-05-18 Raphael Neider <rneider AT web.de>
2255
2256         * device/lib/pic16/libdev/pic18f*.c,
2257         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
2258           keywords to "__sfr" and "__at (X)"
2259         * device/include/pic16/pic18fregs.h: added pic18f4520
2260         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
2261           #1203088 (MPLAB compatibility)
2262
2263 2005-05-17 Raphael Neider <rneider AT web.de>
2264
2265         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
2266         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
2267         * device/lib/pic16/pics.all: added new devices
2268         * src/pic16/device.c: added support for pic18f4520
2269
2270 2005-05-16 Raphael Neider <rneider AT web.de>
2271         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
2272         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
2273         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
2274           convenience function for bit access
2275
2276 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
2277
2278         * device/lib/printf_large.c: fixed bug 1193299
2279         * support/regression/tests/bug1057979.c: added test %3.3s
2280
2281 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2282
2283         * device/include/mcs51/8051.h,
2284         * device/include/mcs51/8052.h: made parseable with lint
2285         * device/include/mcs51/lint.h: added include file for (sp)lint
2286         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
2287         * doc/cdbfileformat.lyx,
2288         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
2289
2290 2005-05-14 Raphael Neider <rneider AT web.de>
2291
2292         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
2293         * device/lib/pic16/libc/stdlib/itoa.c (new)
2294         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
2295         * device/lib/pic16/libio/Makefile: exclude subdir according to
2296           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
2297         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
2298         * src/pic16/gen.c (genFunction): prevent annoying warning
2299         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
2300           nameclashes on BeOS
2301         * support/cpp2/cppmain.c (cpp_output_string): new
2302         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
2303           fixes bug 1116802
2304
2305 2005-05-13 Borut Razem <borut.razem AT siol.net>
2306
2307         * src/SDCCmain.c (linkEdit): fixed bug 1195202
2308
2309 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2310
2311         * .version: changed to version 2.5.1; back to bleeding edge development
2312
2313 2005-05-11 Borut Razem <borut.razem AT siol.net>
2314
2315         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
2316           generate PDF version 1.3 documents
2317
2318 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2319
2320         * .version: changed to version 2.5.0
2321
2322 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2323
2324         * doc/sdccman.lyx: updated weblinks, index and smaller updates
2325
2326 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2327
2328         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
2329         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
2330         well as many smaller updates.
2331         * .version: changed to version 2.5.0-pre1
2332
2333 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2334
2335         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
2336
2337 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
2338
2339         * support/regression/tests/bug1185672.c: added
2340         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
2341           bug 1185672
2342         * src/mcs51/gen.c (genCall): added comments, made it look safer
2343         * src/mcs51/gen.c (genEndFunction): simplified
2344
2345 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
2346
2347         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
2348
2349 2005-04-14 Borut Razem <borut.razem AT siol.net>
2350
2351         * fixed bug 1045046 - SIGSEGV with really simple code?:
2352           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
2353           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
2354
2355 2005-04-14 Borut Razem <borut.razem AT siol.net>
2356
2357         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
2358           src/pic16/device.h: temporarily disabled experimental #inline pragma
2359           for 2.5.0 release
2360
2361 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
2362
2363         * device/include/z80/stdio.h,
2364         * device/include/z80/string.h: removed these highly incomplete files so
2365           SDCC can use the default ones in device/include/
2366
2367 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2368
2369         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
2370         gcc warning.
2371         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
2372         fix sdcpp warnings.
2373
2374 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2375
2376         * device/include/malloc.h: removed redundant __reentrant prototypes
2377         * device/lib/_mullong.c: added working xstack variant in asm (C version
2378           doesn't pass regression tests)
2379         * device/lib/bpx.c: used __data and made bpx char for mcs51
2380         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
2381           (createFunction): fixed bug with xstackPtr
2382         * src/SDCCcse.c: corrected comments
2383         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
2384           (killDeadCode, eBBlockFromiCode): removed unused code
2385         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
2386           corrected comments
2387         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
2388           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
2389           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
2390           (genModOneByte): fixed warning in MSVC
2391         * src/mcs51/main.c (): added comments
2392         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
2393
2394 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2395
2396         * src/SDCCmain.c (linkEdit): oops, changed one line too many
2397
2398 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
2399
2400         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
2401
2402 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
2403
2404         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
2405         characters arrays of larger size than the declared one.
2406
2407 2005-04-10 Borut Razem <borut.razem AT siol.net>
2408
2409         * src/pic/gen.c (genInline),
2410           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
2411           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
2412           (findNextInstruction), (findPrevInstruction),
2413           (findInstructionUsingLabel),
2414           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
2415         * src/pic/pcode.c (findLabel): added missing '\n'
2416         * src/src.dsp: added SDCCdwarf2.c to the project
2417
2418 2005-04-09 Borut Razem <borut.razem AT siol.net>
2419
2420         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
2421
2422 2005-04-08 Raphael Neider <rneider AT web.de>
2423
2424         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
2425           into the chain after a given one) and mergeDefmapSymbols (combine
2426           defmap entries for each symbol per pcode)
2427         * (createDefmap): have defmap entries merged in the end
2428         * (defmapReplaceSymRef): split defmap entries covering two accesses to
2429           a symbol before replacing one access type's symbol, merge symbols in
2430           the end (replacement symbol might already have an entry)
2431         * (assignValnums): keep reference to written WREG intact
2432
2433 2005-04-08 Raphael Neider <rneider AT web.de>
2434
2435         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
2436           Alpha)
2437
2438 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
2439
2440         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
2441         bytes
2442
2443 2005-04-07 Raphael Neider <rneider AT web.de>
2444
2445         * device/include/pic16/usart.h: added compatibility defines for
2446           devices with more than one USART
2447         * device/include/pic16/pic18f[68][567]20.h: activated above defines
2448
2449 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2450
2451         * device/lib/Makefile.in: updated for port specific include
2452
2453 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2454
2455         * support/regression/ports/mcs51/spec.mk: added mcs51 include
2456
2457 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2458
2459         * device/include/8051.h,
2460         * device/include/8052.h,
2461         * device/include/at89S8252.h,
2462         * device/include/at89c55.h,
2463         * device/include/at89x051.h,
2464         * device/include/at89x51.h,
2465         * device/include/at89x52.h,
2466         * device/include/mcs51reg.h,
2467         * device/include/reg51.h,
2468         * device/include/reg764.h,
2469         * device/include/regc515c.h,
2470         * device/include/sab80515.h: (re)moved these 12 files
2471         * device/include/mcs51/8051.h,
2472         * device/include/mcs51/8052.h,
2473         * device/include/mcs51/at89S8252.h,
2474         * device/include/mcs51/at89c55.h,
2475         * device/include/mcs51/at89x051.h,
2476         * device/include/mcs51/at89x51.h,
2477         * device/include/mcs51/at89x52.h,
2478         * device/include/mcs51/mcs51reg.h,
2479         * device/include/mcs51/reg51.h,
2480         * device/include/mcs51/reg764.h,
2481         * device/include/mcs51/regc515c.h,
2482         * device/include/mcs51/sab80515.h: and added them here
2483
2484 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
2485
2486         * device/include/stdarg.h: changed SDCC specific keywords to double
2487           underlined form.
2488         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
2489           mcs51 and ds390.
2490         * device/include/hc08/mc68hc908gp32.h,
2491         * device/include/hc08/mc68hc908jb8.h,
2492         * device/include/hc08/mc68hc908jkjl.h,
2493         * device/include/hc08/mc68hc908qy.h: fixed comments
2494         * device/include/mcs51/README: updated
2495         * device/include/mcs51/c8051f120.h: added PINRSF
2496         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
2497         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
2498           amidst code. Also inline is not supported.
2499
2500 2005-04-06 Raphael Neider <rneider AT web.de>
2501
2502         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
2503         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
2504           callers stack/frame pointers
2505
2506 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
2507
2508         * device/include/pic16/usart.h: added, missing in previous commit,
2509         * device/include/pic16/adc.h: fixed typo,
2510         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
2511         commit,
2512         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
2513         <p18fxxx.inc>
2514         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
2515         uninitialized because a bug appears with gplink
2516         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
2517         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
2518         complains for unrecognised option
2519
2520 2005-04-05 Raphael Neider <rneider AT web.de>
2521
2522         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
2523           structs as well (using memcpy)
2524         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
2525           on ISRs (GOTO has no label)
2526         * src/pic16/device.h: added OF_OPTIMIZE_DF
2527         * src/pic16/main.c: added compiler switch --optimize-df to enable the
2528           new data flow analysis/optimization
2529         * src/pic16/pcode.c: added (prototypes for and implementation of)
2530           dataflow analysis functions, fixed pCodeInstructions' inCond and
2531           outCond values, made RCALL a branch instruction
2532         * (pic16_unlinkpCode): keep C line if possible
2533         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
2534           C line moved if possible
2535         * (pic16_getRegFrompCodeOp): NEW, improved version of...
2536         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
2537           to use new pic16_getRegFrompCodeOp (works for more SFRs)
2538         * (pic16_BuildFlow): fixed skip instructions with label (did not start
2539           new flow)
2540         * (pic16_getJumptabpCode): NEW, needed in...
2541         * (LinkFlow): fixed handling of jumptables, calls and conditional
2542           branches
2543         * (pic16_InsertCommentAfter): NEW
2544         * (pic16_pCodeReplace): made verbose and flow preserving
2545         * (AnalyzeFlow): added call to data flow analysis
2546         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
2547         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
2548         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
2549
2550 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2551
2552         * src/SDCCast.c (decorateType): fixed bug #1105626
2553
2554 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
2555
2556         * device/include/asm/pic16/features.h,
2557         * pic18f*.h headers,
2558         * device/include/pic16/adc.h,
2559         * device/include/pic16/delay.h,
2560         * device/include/pic16/i2c.h,
2561         * device/include/pic16/malloc.h,
2562         * device/include/pic16/stdio.h,
2563         * device/include/pic16/stdlib.h,
2564         * device/include/pic16/string.h,
2565         * device/lib/pic16/libc/stdio/printf_tiny.c,
2566         * device/lib/pic16/libc/stdio/printf_small.c,
2567         * device/lib/pic16/libc/stdio/strmgpsim.c,
2568         * device/lib/pic16/libc/stdio/strmmssp.c,
2569         * device/lib/pic16/libc/stdio/strmusart.c,
2570         * device/lib/pic16/libc/stdio/vfprintf.c,
2571         * device/lib/pic16/libc/stdlib/ltoa.c,
2572         * device/lib/pic16/libc/stdlib/putchar.c,
2573         * device/lib/pic16/libc/stdlib/x_ftoa.c,
2574         * device/lib/pic16/libc/stdlib/memchrpgm.c,
2575         * device/lib/pic16/libc/stdlib/memchrram.c,
2576         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
2577         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
2578         * device/lib/pic16/libio/adc/adcbusy.c,
2579         * device/lib/pic16/libio/adc/adcread.c,
2580         * device/lib/pic16/libio/adc/adcsetch.c,
2581         * device/lib/pic16/libio/usart/ubaud.c,
2582         * device/lib/pic16/libio/usart/ubusy.c,
2583         * device/lib/pic16/libio/usart/udrdy.c,
2584         * device/lib/pic16/libio/usart/uopen.c,
2585         * device/lib/pic16/libio/usart/uputc.c,
2586         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
2587         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
2588         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
2589         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
2590         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
2591         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
2592         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
2593         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
2594         specific keywords to double underlined form,
2595         * device/lib/pic16/libc/Makefile.rules,
2596         * device/lib/pic16/libsdcc/Makefile.rules,
2597         * device/lib/pic16/libm/Makefile,
2598         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
2599         to compile with C standard set in Makefile.common
2600         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
2601         rand.c and crc.c in compilation process,
2602         * device/lib/pic16/libsdcc/int/divuint.c,
2603         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
2604         `c' from signed to unsigned,
2605         * device/lib/pic16/startup/crt0.c,
2606         * device/lib/pic16/startup/crt0i.c,
2607         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
2608         keywords to double underlined form, bug fixes in _do_cinit function
2609         which prevented the correct initialization of the .idata segment,
2610         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
2611         core to enter a infinite loop
2612         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
2613
2614 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2615
2616         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
2617
2618 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2619
2620         * device/include/Makefile.in: add support for hc08 subdirectory
2621         * device/include/hc08/: new subdirectory
2622         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
2623         Lucas Loizaga, thanks!
2624         * device/include/hc08/mc68hc908qy.h,
2625         * device/include/hc08/mc68hc908gp32.h,
2626         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
2627         their own directory. Changed internal macro names to use the compiler
2628         reserved namespace. Changed SDCC specific keywords to double
2629         underlined form.
2630         * device/include/math.h,
2631         * device/include/malloc.h,
2632         * device/include/stdarg.h,
2633         * device/include/stdbool.h
2634         * device/include/string.h,
2635         * device/include/tinibios.h,
2636         * device/include/ds400rom.h,
2637         * device/include/8051.h,
2638         * device/include/8052.h,
2639         * device/include/80c51xa.h,
2640         * device/include/at89c55.h,
2641         * device/include/at89S8252.h,
2642         * device/include/at89x51.h,
2643         * device/include/at89x52.h,
2644         * device/include/ds80c390.h,
2645         * device/include/reg764.h,
2646         * device/include/regc515c.h,
2647         * device/include/sab80515.h,
2648         * device/include/mcs51/c8051f000.h,
2649         * device/include/mcs51/c8051f018.h,
2650         * device/include/mcs51/c8051f020.h,
2651         * device/include/mcs51/c8051f040.h,
2652         * device/include/mcs51/c8051f060.h,
2653         * device/include/mcs51/c8051f120.h,
2654         * device/include/mcs51/c8051f300.h,
2655         * device/include/mcs51/c8051f310.h,
2656         * device/include/mcs51/c8051f320.h,
2657         * device/include/mcs51/c8051f330.h,
2658         * device/include/mcs51/c8051f350.h,
2659         * device/include/z180.h: Changed SDCC specific keywords to double
2660         underlined form.
2661
2662 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
2663
2664         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
2665         18F4455,
2666         * (pic16_assignConfigWordValue): disable testing of configuration
2667         register value with config mask,
2668         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
2669         function with port->fun_prefix,
2670         * (genFunction): when generating a naked interrupt function never
2671         create an absolute segment placed in interrupt vector address, place
2672         the actual interrupt function at IVA instead, when an interrupt
2673         function is generated with unspecified interrupt then do not create
2674         the absolute section,
2675         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
2676         code for generating a call to generic pointer get/put function with
2677         a call to function pic16_callGenericPointer(),
2678         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
2679         the call to the generic pointer get/put functions with prefixing the
2680         function name with port->fun_prefix,
2681         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
2682         * src/pic16/main.c (_process_pragma): prefix function with
2683         port->fun_prefix,
2684         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
2685         calling assembler, old 18Fxxxx macro is deprecated,
2686         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
2687         PC_ASMDIR in while condition,
2688         * (findInstruction): add PC_ASMDIR in while condition,
2689         * (buildCallTree): prefix main with port->fun_prefix,
2690         * (pic16_pCode2str): fixed bug that didn't emit the memory access
2691         identifier for variable with banked access in instructions BTFSS,
2692         BTFSC, BCF, BSF, BTG
2693         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
2694         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
2695         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
2696         perform optimization when enviroment variable NO_REG_OPT is set,
2697         * (insideLRBlock): NEW, return 1 if register is inside an
2698         INF_LOCALREGS block,
2699         * (RemoveRegFromLRBlock): remove a register that is completely
2700         eliminated by register optimization, but it is still left in local
2701         register store/restore in/from stack block,
2702         * (Remove2pcodes): after removing register, check to see if it
2703         should be removed from local register store/restore in/from stack
2704         block,
2705         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
2706         DUMMY_READ_VOLATILE,
2707
2708         * device/include/pic16/adc.h: minor prototype modifications and
2709         update,
2710         * device/include/pic16/malloc.h: added GPL notice various
2711         modifications,
2712         * device/include/pic16/stdint.h: NEW, standard header for ints
2713         * device/include/pic16/delay.h: NEW, header for delay functions,
2714         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
2715         delay1mtcy,
2716         * device/include/pic16/signal.h: NEW, header providing helper macros
2717         for implementing signal handlers,
2718         * device/include/pic16/stdio.h: added prototypes for functions,
2719         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
2720         prototypes for stdin and stdout, added macro PUTCHAR to
2721         automatically implement putchar function prototype,
2722         * device/include/pic16/usart.h: modified and updated USART library,
2723         * device/lib/pic16/libio/adc/,
2724         * device/lib/pic16/libio/i2c: some modifications to improve library
2725         performance,
2726         * device/lib/pic16/libc/stdio/: modifications for the new printf*
2727         family of functions,
2728         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
2729         family of functions and other sources,
2730         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
2731         of the PIC18Fxx[28] devices,
2732         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
2733         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
2734         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
2735         _do_cinit function, because the previous failed when local variables
2736         where not placed in the same memory bank,
2737         * device/lib/pic16/libsdcc/char/: various modifications to improve
2738         library performance,
2739         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
2740         information on the new functions of the c library and more...
2741
2742 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2743
2744         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
2745
2746 2005-03-26 Raphael Neider <rneider AT web.de>
2747
2748         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
2749           if condition == CARRY)
2750         * (genCmp): adapted to new genSkipc semantics
2751         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
2752           on rIfx (genCmp was broken)
2753
2754 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2755
2756         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
2757         * src/z80/main.c (_keywords[]),
2758         * src/SDCCglobal.h (struct options),
2759         * src/SDCC.y,
2760         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
2761         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
2762         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
2763         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
2764         always available in leading double underscore form. The C99 support is
2765         mostly missing, but it's a start.
2766         * support/regression/tests/bug-227710.c: fixed nonconforming use of
2767         reserved identifier "__data".
2768
2769 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
2770
2771         * src/mcs51/peeph.def: fixed bug 1170013
2772
2773 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
2774
2775         * device/include/mcs51reg.h: fixed bug 842007
2776
2777 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2778
2779         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
2780         last time.
2781
2782 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2783
2784         * src/port.h (struct PORT),
2785         * src/avr/ralloc.c (avr_assignRegisters),
2786         * src/avr/main.c,
2787         * src/ds390/ralloc.c (ds390_assignRegisters),
2788         * src/ds390/main.c,
2789         * src/hc08/ralloc.c (hc08_assignRegisters),
2790         * src/hc08/main.c,
2791         * src/mcs51/ralloc.c (mcs51_assignRegisters),
2792         * src/mcs51/main.c,
2793         * src/pic/ralloc.c (pic14_assignRegisters),
2794         * src/pic/main.c,
2795         * src/pic16/ralloc.c (pic16_assignRegisters),
2796         * src/pic16/main.c,
2797         * src/xa51/ralloc.c (xa51_assignRegisters),
2798         * src/xa51/main.c,
2799         * src/z80/ralloc.c (z80_assignRegisters),
2800         * src/z80/ralloc.h,
2801         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
2802         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
2803         * src/SDCCcse.h,
2804         * src/SDCCdflow.c (computeDataFlow),
2805         * src/SDCCdflow.h,
2806         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
2807         * src/SDCCloop.h,
2808         * src/SDCCcflow.c (*),
2809         * src/SDCCcflow.h,
2810         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
2811         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
2812         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
2813         immedDom() returning wrong block; probably fixes bug #1160833)
2814
2815 2005-03-20 Borut Razem <borut.razem AT siol.net>
2816
2817         * support/scripts/inc2h.pl: WIN32 port
2818
2819 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
2820
2821         * device/lib/makefile.in: added abs.c and labs.c
2822
2823 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
2824
2825         * device/include/stdint.h: added
2826         * device/lib/abs.c: added
2827         * device/lib/labs.c: added
2828         * device/include/stdlib.h: added abs() and labs() prototypes
2829         * device/lib/libsdcc.lib: added abs and labs
2830         * device/include/float.h,
2831         * device/lib/_fsmul.c,
2832         * device/lib/printf_fast.c,
2833         * device/lib/printf_tiny.c: updated comments
2834
2835 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2836
2837         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
2838         bug #1164313
2839
2840 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2841
2842         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
2843         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
2844
2845 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
2846
2847         * device/lib/printf_large.c: removed inline assembly for portability and
2848           readability. Use printf_fast if speed or size are more important.
2849         * src/pic16/gen.c: removed conditions around use of DEBUGpc
2850         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
2851
2852 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
2853
2854         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
2855         prevent compiler warning
2856
2857 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
2858
2859         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
2860         moved to level 0 and declared as static. Also they are explicit
2861         placed in access bank. This was necessery because some times they
2862         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
2863         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
2864         optimizations. Currently only compare to unsigned char is implemented,
2865         * src/pic16/gen.c: added fReturnIdx array,
2866         * (struct resolvedIfx) is moved to gen.h and made public,
2867         * (struct _G): added sregsAlloc and sregsAllocSet fields,
2868         * (aopForSym): added an optimization to directly store in stack of
2869         the operand of a SEND iCode,
2870         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
2871         but as registers instead (AOP_REG) using the fReturnIdx array,
2872         * (pic16_freeAsmop): remove the freed register from the
2873         _G.sregsAlloc field,
2874         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
2875         a compare of 'WREG',
2876         * (pic16_popGetTempRegCond): changed function prototype, now
2877         function takes also a bitVector argument v which holds the current
2878         set of registers that are allocated for stack access by aopForSym,
2879         registers allocated in aopForSym for accessing stack symbols are not
2880         any more part of the functions usedRegs field,
2881         * (genCall): some times aopOp is called for a stack variable to be
2882         send, aopForSym might perform the push, if this is true make sure
2883         that genCall doesn't push the variable twice by testing _G.resDirect,
2884         * (genFunction): changed testing for unspecified interrupt number
2885         from 256 to INTNO_UNSPEC,
2886         * modified selection scheme of frame pointer generation. Previously
2887         if function did use local registers a frame pointer was generated,
2888         now a frame pointer is generated only if function has arguments
2889         (that need PLUSW2 register access), or has stack arguments, or the
2890         compiler is not instructed to omit the frame pointer,
2891         * (genEndFunction): before restoring local registers that were saved
2892         in the function preamble, also restore the registers that *might*
2893         have been allocated for stack access,
2894         * (genRet): removed some old comments,
2895         * (genCmp, the active (RN's) version): added a call to the
2896         pic16_genCmp_special function to perform the compare with a more
2897         robust and optimized way,
2898         * (genInline): a feature has been added in inline code generation,
2899         which allows a wildcard variable substitution when writing inline
2900         assembly. Code is incomplete and experimental therefore undocumented,
2901         * (genCast): changed order of aopOp for result and right to allow
2902         aopForSym to directly load the result if possible,
2903         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
2904         perform an optimized compare on some selected special occasions,
2905         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
2906         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
2907         generate an IVT any more,
2908         * src/pic16/main.c (pic16_optionsTable): added command line option
2909         --optimize-cmp,
2910         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
2911         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
2912         macros,
2913         * src/pic16/NOTES: Raphael Neider added in list of active developers
2914         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
2915         jumptable_end to prevent bug #,
2916         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
2917         inCond and outCond fields,
2918         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
2919         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
2920         turn off register spilling,
2921         * (packRegsForOneUse): synced with other ports' versions although it
2922         is not used currently,
2923         * (pic16_packRegisters): added an optimization while reading
2924         structure bitfields, some registers may be saved (malloc code is
2925         decreased by 80 bytes)
2926
2927 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
2928
2929         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
2930         left is a bitfield, if yes, then don't optimize assignment. Perhaps
2931         this can be optimized more?
2932
2933 2005-03-10 Raphael Neider <rneider AT web.de>
2934
2935         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
2936           genNearPointerGet): (hopefully) fixed access to bitfields via
2937           pointers (p->bitN = x; and x = p->bitN; failed)
2938
2939 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
2940
2941         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
2942
2943 2005-03-09 Raphael Neider <rneider AT web.de>
2944
2945         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
2946
2947 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
2948
2949         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
2950         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
2951           (regTypeNum): set REG_BIT type if necessary
2952         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
2953         * support/regression/tests/critical.c: check bug 1144613
2954
2955 2005-03-02 Raphael Neider <rneider AT web.de>
2956
2957         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
2958
2959 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2960
2961         * src/avr/ralloc.c (serialRegAssign),
2962         * src/ds390/ralloc.c (serialRegAssign),
2963         * src/hc08/ralloc.c (serialRegAssign),
2964         * src/mcs51/ralloc.c (serialRegAssign),
2965         * src/pic/ralloc.c (serialRegAssign),
2966         * src/pic16/ralloc.c (serialRegAssign),
2967         * src/xa51/ralloc.c (serialRegAssign),
2968         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
2969
2970 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
2971
2972         * src/SDCCast.c (decorateType): fixed bug 1124787
2973
2974 2005-02-20 Hubert Sack <sack AT digiplan.de>
2975         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2976
2977         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
2978         patch #1121755
2979
2980 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2981
2982         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
2983         to keep the correct label reference count when adding/removing references
2984         to labels. A peephole file using this is appended to patch #1144962.
2985
2986 2005-02-14 Raphael Neider <rneider AT web.de>
2987
2988         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
2989         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
2990         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
2991           retrievals of result operand's value on assignment
2992
2993 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
2994
2995         * device/include/pic16/string.h: modified prototype for memccpy()
2996         to memccpy(void *, void *, char, size_t)
2997         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
2998         check whether to omit frame pointer or not,
2999         * (genInline): convert all occurences of "\n" to LF in inline
3000         assembler blocks, this helps formatting the inline text,
3001         * (pic16_loadFSR0): modified prototype,
3002         * (genNearPointerGet, genNearPointerSet): reorganization of code,
3003         removed some 8051 legacy code,
3004         * (genPackBits): enabled handling bitfields exceeding one byte in size,
3005         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
3006         before allocating temporary registers in functions,
3007
3008 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
3009
3010         * support/regression/tests/bitvars.c: corrected the "fix"
3011
3012 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
3013
3014         * support/regression/tests/bitvars.c,
3015         * support/regression/tests/bitwise.c,
3016         * support/regression/tests/rotate.c: "fixed" problems on Alpha
3017
3018 2005-02-10 Raphael Neider <rneider AT web.de>
3019
3020         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
3021           different size for Alpha
3022         * src/pic16/gen.c (genCmpEq) : improved compare with 0
3023
3024 2005-02-09 Raphael Neider <rneider AT web.de>
3025
3026         * src/SDCC.lex(doPragma) : save and restore warning options as well
3027           (also added new stack plus clone- and copyAndFreeSDCCERRG())
3028         * have #pragma less_pedantic set the errorlevel to WARNING
3029           (fixes #1117001)
3030         * (cloneOptimize) : fixed wrong malloc's size
3031         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
3032           facilitate correct handling of #pragma (save|restore)
3033
3034 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
3035
3036         * src/mcs51/gen.c: removed non-standard C nameless struct/union
3037
3038 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
3039
3040         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
3041
3042 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
3043
3044         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
3045
3046 2005-02-02 Raphael Neider <rneider AT web.de>
3047
3048         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
3049         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
3050         * (pic16_storeForReturn): fixed to allow returning function pointers
3051         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
3052         * device/include/pic16/{stddef.h,stdbool.h}: added
3053
3054 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
3055
3056         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
3057
3058 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
3059
3060         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
3061         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
3062          appeared to be required
3063
3064 2005-01-31 Borut Razem <borut.razem AT siol.net>
3065
3066         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
3067           include/mcs51 and include/z80 directories to the package
3068
3069 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3070
3071         * src/hc08/gen.c (genFunction): fixed bug #1112752
3072
3073 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3074
3075         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
3076
3077 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3078
3079         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
3080
3081 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
3082
3083         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
3084
3085 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
3086
3087         * device/include/c8051fxxx.h: removed these 6 files
3088         * device/include/mcs51/c8051fxxx.h: added these 11 new files
3089
3090 2005-01-26 Raphael Neider <rneider AT web.de>
3091
3092         * src/pic16/gen.c (genAssign): fixed assignment from longs
3093           in codespace (were cut to three bytes)
3094         * (genDummyRead): implemented (except for CODESPACE...),
3095           fixed bug #1108575
3096         * src/pic16/glue.c (emitStatistics): beautified
3097         * device/lib/pic16/libm/Makefile: added include path
3098
3099 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3100
3101         * src/z80/gen.c (aopPut): fixed bug #1103902
3102
3103 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3104
3105         * device/lib/expf.c: fixed bug #1095792
3106
3107 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
3108
3109         * device/lib/pic16/libm: added Math library sources
3110
3111 2005-01-24 Raphael Neider <rneider AT web.de>
3112
3113         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
3114           to enable upcast to pCodeOpReg2 (there is no type tag to
3115           differenciate the two and pic16_popGet2p cast into PCOR2)
3116         * src/pic16/main.c (_process_pragma): fixed another malloc bug
3117           (sizeof(sectNames) changed to sizeof(sectName))
3118           Both patches fix segfaults under MinGW.
3119
3120 2005-01-23 Raphael Neider <rneider AT web.de>
3121
3122         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
3123           Safe_[mc]?alloc()'ed variables
3124         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
3125           of (byte sized) temporaries (assign them to WREG for now)
3126         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
3127           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
3128           this might fix SIGSEGVs on MinGW...
3129         * src/SDCCopt.c (killDeadCode): restored original behaviour
3130           (volatile operands might get thrown away though)
3131
3132 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
3133
3134         * src/pic16/gen.c: fixed bug #1106975,
3135         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
3136         pointer update, INTCON is saved, global interrupts are disabled and
3137         restored after updateing TOS.
3138         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
3139         * added function attribute 'shadowregs' to take advantage of shadow
3140         registers,
3141         * added function attribute 'wparam' as an alternative to the wparam
3142         pragma,
3143         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
3144         user declares a non-ISR function as 'shadowregs',
3145         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
3146
3147 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
3148
3149         * .version: bumped version number to 2.4.8
3150         * device/lib/pic16/pics.all: list of PIC18F devices supported by
3151         pic16 port,
3152         * device/lib/pic16/libio/i2c/: I2C module support library,
3153         * device/include/pic16/i2c.h: I2C support library header,
3154         * device/lib/pic16/libc/stdio/: standard IO support sources,
3155         * (printf_small.c): printf_small() source, supports float print,
3156         * (printf_tiny.c): printf_tiny() source, does not support floats,
3157         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
3158         enable global optimizations for entire library source, other
3159         Makefiles in the source tree are also modified to reflect this,
3160         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
3161         function,
3162         * doc/sdccman.lyx: updated to reflect new changes,
3163         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
3164         sym->onStack if-case,
3165         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
3166         sbit, idata, _idata, xdata, _xdata,
3167         * added pragma library, to link an external library, (see doc),
3168         * removed command line options, --pomit-config-words, --pomit-ivt,
3169         --pleave-reset-vector,
3170         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
3171         when calling assembler to reflect memory model used, also define
3172         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
3173         reflect stack model used,
3174         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
3175         on stack return NULL,
3176
3177 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3178
3179         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
3180           of the operands is volatile. Fixes #1020220
3181
3182 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3183
3184         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
3185         * (OptimizeRegUsage): make sure that there is really no other flow where
3186           the first pCode is used
3187
3188 2005-01-22 Raphael Neider <rneider AT web.de>
3189
3190         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
3191           to fix #1106967 (pCode->seq are not set up correctly)
3192
3193 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3194
3195         * src/SDCCglue.c (glue): make sure code area is declared before the
3196         static initialization area.
3197
3198 2005-01-21 Raphael Neider <rneider AT web.de>
3199
3200         * device/lib/Makefile.in: fixed test for pic16 install dir
3201         * device/lib/pic16/*/Makefile*: modified compile flags to enable
3202           optimizations
3203         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
3204           added --optimize-goto compiler switch and pragma wparam documentation
3205         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
3206         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
3207           and PRODH closing bug #1071770 (peephole optimizer)
3208
3209 2005-01-19 Raphael Neider <rneider AT web.de>
3210
3211         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
3212           cmdLine buffers (used when calling sdcpp...) are large enough
3213           (MAX_PATH=256 truncates arguments leading to system halts when
3214           used in MinGW...)
3215         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
3216         * (genUminus): rewritten to for efficiency
3217         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
3218           used uninitialized in some cases)
3219         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
3220           copy the third byte from the int -- now assumes 0x80 (data memory)
3221         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
3222           operands (genAddLit expects the iCode's operands to swapped as
3223           well), fixed leftover bytes (crashed for short left operands)
3224         * (pic16_genMinusDec): performance improvements, removed false
3225           PIC14 emitSKPNCs
3226         * (pic16_genMinus): fixed to cope with differently sized operands
3227         * src/pic16/glue.c (pic16_glue): added new banksel optimization
3228           for --obanksel > 1
3229         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
3230         * src/pic16/graph.[ch]: implementation of directed graphs, used by
3231           new banksel optimization
3232         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
3233           analysis for temporary registers (segfaults...)
3234         * src/pic16/peeph.def: added rule
3235
3236 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
3237
3238         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
3239         which converts a float number to its ASCII representation
3240         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
3241         functions to convert the fractional and integer part of a float to ASCII,
3242         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
3243         realloc.c): added _MALLOC_SPEC to explicit place variables in data
3244         ram
3245         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
3246         _STATMEM macros,
3247         * device/include/pic16/adc.h: added GPL info,
3248         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
3249         a pCodeOp as tested operand,
3250         * (genNearPointerGet): optimized bit testing, does not use
3251         intermediate register for bit value, test directly instead with
3252         BTFSS, BTFSC, works only for single bits,
3253         * (genpic16Code): dump the name of the iCode in the asm,
3254         * src/pic16/ralloc.c (decodeOp): removed static declaration and
3255         renamed to pic16_decodeOp,
3256         * (serialRegAssign): do not allocate a temporary register for iCode
3257         sequences that test a single bit for 1/0
3258
3259 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
3260
3261         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
3262         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
3263         access stack and frame pointers. They are initially assigned to
3264         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
3265         accessing SFRs. Updated all occurences of modification of stack or
3266         frame pointer in gen.c and pcode.c,
3267         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
3268         assigning of a literal value to pointers,
3269         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
3270         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
3271         selected
3272
3273 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
3274
3275         * doc/sdccman.lyx: update documentation about stack pragma, added
3276         some info for stack memory models
3277
3278 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3279
3280         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
3281
3282 2005-01-08 Raphael Neider <rneider AT web.de>
3283
3284         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
3285           udata sections to fix bug #1097823
3286
3287 2005-01-05 Raphael Neider <rneider AT web.de>
3288
3289         * src/pic16/gen.c (genGenericShift): added handling of differently
3290           sized left operand and result
3291
3292 2005-01-04 Raphael Neider <rneider AT web.de>
3293
3294         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
3295         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
3296           to hold the condition bit)
3297         * added new version of genCmp (old code available via #define)
3298         * added new version of genShiftLeft/genShiftRight in a generic
3299           way, now supports shifting by negative values
3300         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
3301           shiftCount (expected by genGenericShift)
3302         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
3303         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
3304           dump
3305         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
3306           is an invalid literal too...)
3307
3308 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
3309
3310         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
3311         from Raphael Neider,
3312         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
3313         for 8-bit literals. This fixes some literal operands which are sign
3314         extended to 16-bits ints when instruction needs only 8-bits.
3315
3316 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
3317
3318         * device/lib/logf.c: added mcs51 assembly version
3319         * device/lib/expf.c: added mcs51 assembly version
3320         * device/lib/_logexpf.c: new shared asm code for expf and logf
3321         * device/include/math.h: add defines for assembly math library
3322         * device/lib/Makefile.in: build new _logexpf.c
3323         * device/lib/libfloat.lib: use new _logexpf.c
3324
3325 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3326
3327         * src/pic/device.c
3328         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
3329           device types which have less than 0x7f registers.
3330
3331 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3332
3333         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
3334
3335 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3336
3337         * device/lib/printf_fast.c: only build on supported arch.
3338         * device/lib/printf_tiny.c: only build on supported arch.
3339         * device/lib/printf_fast_f.c: only build if asm float lib
3340         * device/lib/_fsget1arg.c: only build if asm float lib
3341         * device/lib/_fsget2args.c: only build if asm float lib
3342         * device/lib/_fsnormalize.c: only build if asm float lib
3343         * device/lib/_fsreturnval.c: only build if asm float lib
3344         * device/lib/_fsrshift.c: only build if asm float lib
3345         * device/lib/_fsswapargs.c: only build if asm float lib
3346         * device/include/stdio.h: don't provide print_fast,
3347           print_fast_f, print_tiny prototypes if --xstack used
3348
3349 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
3350
3351         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
3352         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
3353           to the SOURCES
3354
3355 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3356
3357         * device/lib/printf_fast_f.c: same as printf_fast, but
3358           with floating point enabled
3359         * device/lib/printf_fast.c: minor tweaks
3360         * device/include/stdio.h: add printf_fast_f
3361
3362 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3363
3364         * src/SDCCmain.c: make --float-reent default for mcs51
3365         * device/lib/_fsadd.c: added mcs51 assembly version
3366         * device/lib/_fssub.c: added mcs51 assembly version
3367         * device/lib/_fsmul.c: added mcs51 assembly version
3368         * device/lib/_fsdiv.c: added mcs51 assembly version
3369         * device/lib/_fseq.c: added mcs51 assembly version
3370         * device/lib/_fsneq.c: added mcs51 assembly version
3371         * device/lib/_fsgt.c: added mcs51 assembly version
3372         * device/lib/_fslt.c: added mcs51 assembly version
3373         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
3374         * device/lib/Makefile.in: add _fscmp to build
3375         * device/lib/libfloat.lib: add _fscmp to build
3376
3377 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3378
3379         * device/lib/_fs2slong.c: added mcs51 assembly version
3380         * device/lib/_fs2sint.c: added mcs51 assembly version
3381         * device/lib/_fs2schar.c: added mcs51 assembly version
3382         * device/lib/_fs2ulong.c: added mcs51 assembly version
3383         * device/lib/_fs2uint.c: added mcs51 assembly version
3384         * device/lib/_fs2uchar.c: added mcs51 assembly version
3385         * device/lib/_slong2fs.c: added mcs51 assembly version
3386         * device/lib/_sint2fs.c: added mcs51 assembly version
3387         * device/lib/_schar2fs.c: added mcs51 assembly version
3388         * device/lib/_ulong2fs.c: added mcs51 assembly version
3389         * device/lib/_uint2fs.c: added mcs51 assembly version
3390         * device/lib/_uchar2fs.c: added mcs51 assembly version
3391         * device/include/float.h: added #define to select asm vs c
3392
3393 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
3394
3395         * device/lib/printf_fast.c: improvements to float output
3396         * device/include/float.h: add defines for assembly float library
3397         * device/lib/_fsget1arg.c: receive 1 float arg
3398         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
3399         * device/lib/_fsnormalize.c: normalize a float
3400         * device/lib/_fsreturnval.c: return float, various helper routines
3401         * device/lib/_fsrshift.c: right shift a float's mantissa
3402         * device/lib/_fsswapargs.c: swap 2 floats
3403         * device/lib/Makefile.in: build these 6 new files for mcs51
3404         * device/lib/libfloat.lib: add these 6 files to the library
3405
3406 2004-12-26 Borut Razem <borut.razem AT siol.net>
3407
3408         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
3409           built by gcc 3.4.2
3410
3411 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
3412
3413         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
3414           and fully reentrant and register bank neutral.
3415         * device/lib/printf_fast.c: added float (not enabled by default),
3416           added compact/slower integer (also not enabled by default),
3417           improved size/speed of fast integer code, other minor changes
3418         * device/include/stdio.h, device/lib/Makefile.in,
3419           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
3420
3421 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
3422
3423         * src/pic16/pcode.c: declaring variables other than at the start of a
3424           block is not supported in C by VC6.
3425
3426 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
3427
3428         * applied a previous patch from Raphael Neider that wasn't included
3429         in the previous commits, which fixes infinite loops within jumptable
3430         improvements,
3431         * made some fixes that previous patches introduced
3432
3433 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
3434
3435         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
3436         that fixes an issue with AOP_PCODE asmop's offset,
3437         * (pic16_popCopyReg): update instance field too,
3438         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
3439         function of pic port,
3440         * (genCmp, genAnd, genAssign),
3441         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
3442
3443 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
3444
3445         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
3446         variables initial values to idata section,
3447         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
3448         variables in some functions. This utilizes parmBytes field of iCode
3449         structure to hold the offset of the variable in stack. (might be
3450         able to use the stack field too?)
3451         * applied patch from Raphael Neider # ### , # ###
3452         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
3453         variable initial values in idata section,
3454         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
3455         for static variables with initial value
3456         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
3457         applied fix in while loop from Raphael Neider.
3458
3459 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
3460
3461         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
3462         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
3463         * src/ds390/ralloc.c (serialRegAssign): spill bits
3464         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
3465         * support/Util/SDCCerr.c,
3466         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
3467         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
3468         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
3469
3470 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
3471
3472         * device/include/sdcc-lib.h: inserted LGPL, added includes
3473           asm/ds390/features.h and asm/mcs51/features.h
3474         * device/include/asm/default/features.h,
3475         * device/include/asm/gbz80/features.h,
3476         * device/include/asm/z80/features.h: added empty _AUTOMEM
3477           and _STATMEM
3478         * device/include/asm/ds390/features.h,
3479         * device/include/asm/mcs51/features.h: added files with defines for
3480           _AUTOMEM and _STATMEM indicating automatic and static storage class
3481         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
3482         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
3483         * src/SDCCicode.c (geniCodeCast),
3484         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
3485         * src/SDCCloop.c (loopInduction): removed unused variable lr
3486         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
3487           to convertToFcall to include char modulo (RFE 1065037), added check
3488           if left operand is unsigned and use abs of literal value
3489         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
3490           as it doesn't work after conversion from peephole.def to peephole.rul
3491         * src/mcs51/gen.c (toBoolean): added check for size,
3492           (genModOneByte): optimized code for signed char modulo a literal
3493           power of 2 (thanks to Hubert Sack),
3494           (genRRC): removed unnecessary "clr c",
3495           (genRLC): replaced "add a,acc" with cheaper "rlc a"
3496         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
3497           jump optimization,
3498           swapped rules 256.c and 256.d,
3499           extended 256.d by using new multiple checks (thanks Erik),
3500           added rules 256.e and 256.f,
3501           updated rule 261.a and 261.b to new generated code
3502         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
3503
3504 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3505
3506         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
3507           induction related bugs, including first part of bug #1074377
3508
3509 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
3510
3511         * applied patch from bug-report #1076292,
3512         * applied patches for genAnd and Goto-optimizations for Raphael
3513         Neider,
3514         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
3515         dump a less iCode information,
3516         * src/pic16/device.h (pic16_options_t): added field debgen,
3517         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
3518         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
3519         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
3520         puclic,
3521         * (various functions): added macros FENTRY and FENTRY2 to functions,
3522         to emit function prologue,
3523         * (various functions): fixed indentation,
3524         * (genNearPointerGet): fixed loading of FSR0,
3525         * (genPackBits): applied patch from Raphael Neider to fix updating
3526         of FSR0 and touching only the modified bits,
3527         * src/pic16/genarith.c (various functions): added macros FENTRY to
3528         emit function prologue in comments,
3529         * src/pic16/pcode.h: added functions debugf2, debugf3,
3530         * src/pic16/ralloc.c: partial fix for packForPush caused
3531         segmentation fault,
3532
3533 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3534
3535         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
3536           <stsp AT users.sourceforge.net> with reversed byte order
3537         * support/regression/tests/rotate.c: added (ds390 skips some tests)
3538
3539 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3540
3541         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
3542           bug #1074377
3543         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
3544         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
3545
3546 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3547
3548         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
3549
3550 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3551
3552         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
3553           conditions,
3554           (setFromConditionArgs): friendly operand parser for peephole rules,
3555           (operandBaseName, operandsNotRelated): new peephole condition
3556           "operandsNotRelated" -- similar to "operandsNotSame", but takes
3557           architecture specific register naming into account, handles n-way
3558           comparisons, and supports quoted literals
3559         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
3560
3561 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3562
3563         * src/mcs51/peeph.def: fixed bug #1076940
3564
3565 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3566
3567         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
3568
3569 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3570
3571         Adding support for replacing ljmps with sjmps in jumptables
3572         generated for switch statements. For now you need to set the
3573         environment variable SDCC_SJMP_JUMPTABLE to enable this.
3574         Now 4 algorithms for mcs51 jumptable generation are used:
3575         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
3576         addresses loaded pc-relative for up to 112 cases and stack-pushing
3577         target addresses loaded with offset from dptr for up to 256 cases.
3578
3579         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
3580         * src/mcs51/main.c: adapted constants for switch table generation
3581         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
3582
3583 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
3584
3585         * device/lib/printf_large.c (_print_format): fixed bug 1073386
3586         * support/regression/tests/bug1057979.c: added test for bug 1073386
3587
3588 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3589
3590         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
3591         compilers
3592
3593 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3594
3595         * src/pic16/device.h,
3596         * src/pic16/genarith.c,
3597         * src/pic16/glue.c,
3598         * src/pic16/main.c,
3599         * src/pic16/pcode.c: applied patches #1068154 and #1070213
3600
3601 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
3602
3603         Large cummulative patch for pic16 port.
3604         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
3605         to call when a stack overflow occurs,
3606         * (malloc.h): added CVS Id tag,
3607         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
3608         variable,
3609         * added libc directory. The current version of LibC contains string
3610         functions, ctype functions and macros and some functions of the
3611         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
3612         be extensively tested in the future. Standard disclaimer here.
3613         Library is not automatically build yet. But one can build it by
3614         invoking 'make' inside the libc directory.
3615         * added ADC library under libio. Preliminary version yet.
3616
3617         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
3618         * src/pic16/gen.c (aopForRemat): asmop size is filled by
3619         aopForRemat() now and not by pic16_aopOp(),
3620         * (pic16_popGetTempReg): removed warning messgae when allocating
3621         temporary registers, its a buggy feature and will be removed,
3622         * (pic16_popGet): set register instance field in AOP_CRY,
3623         * (pic16_outBitC): fixed for results in size greater than 1,
3624         * (genUminusFloat): fixed for pic16, ported code from mcs51,
3625         * (pic16_storeForReturn): optimized return of 0,
3626         * (genCmp): experimental code for new genCmp which uses PIC18's
3627         special compare&skip instructions. Initial tests fail some times
3628         with variables grater than 1 byte in size, so new code is disabled,
3629         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
3630         a single bit,
3631         * (genCast): began a fix to optimize the casting of a bit to another
3632         bit, now assigning a bitfield to another bitfield will fail, sorry,
3633         * src/pic16/main.c: disabled the use of lr-support feature,
3634         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
3635         * added some function prototypes, added function _debugf prototype,
3636         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
3637         bits with offset (case PO_GPR_BIT),
3638         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
3639         command line,
3640         * (isBankInstruction): modified to return 0 for no banking instruction,
3641         and 1 for banking instruction,
3642         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
3643         caused stop processing pCodes after a inline assembly block,
3644         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
3645         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
3646         registers when it shouldn't,
3647         * src/pic16/ralloc.c (allocReg): add preliminary support for
3648         supporting a limited set of temporary registers,
3649
3650 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3651
3652         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
3653           genDataPointerSet): ensure assignments always copy in MSB to LSB
3654           order,
3655           (loadRegFromAop): recognize CLRH optimization,
3656           (genFunction): optimize RECEIVE iCodes in reentrant functions
3657
3658 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3659
3660         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
3661           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
3662           selected.
3663         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
3664         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
3665           contiguous with data
3666
3667 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3668
3669         * device/lib/_gptrget.c (_gptrget),
3670         * device/lib/_gptrgetc.c (_gptrgetc),
3671         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
3672           instead of sjmp to ret
3673         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
3674           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
3675
3676 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
3677
3678         * .version: bumped version to 2.4.7
3679         * device/lib/_gptrget.c (_gptrget): is now _naked
3680         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
3681         * device/lib/_gptrput.c (_gptrput): is now _naked
3682         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
3683           (createFunction): fixed xstack
3684         * src/SDCCglue.c (emitMaps): set allocation required for bit area
3685         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
3686           or bit either,
3687           (geniCodeCritical): store original interrupt state in an iTemp bit
3688           var unless stack-auto
3689         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
3690         * src/SDCCmain.c (setIncludePath): added include/target to search path
3691         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
3692         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
3693           prototype,
3694           (processFuncArgs): put bit vars in bit area
3695         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
3696           unsaveRBank): fixed xstack,
3697           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
3698           (genFunction, genEndFunction): fixed xstack,
3699           (genAssign): optimization don't walk backwards through mem
3700         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
3701         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
3702         * support/regression/Makefile: also make library (for stack-auto) when
3703           making "all" and added "test-mcs51-xstack-auto"
3704         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
3705         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
3706         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
3707         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
3708         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
3709           make-library by MAKE_LIBRARY
3710         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
3711           regression tests for xstack
3712         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
3713         * support/regression/tests/critical.c: test for critical on mcs51
3714
3715 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3716
3717         * support/regression/ports/ucz80/spec.mk: use include and lib files from
3718           built version of sdcc instead of installed version
3719
3720 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
3721
3722         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
3723         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
3724           vprintf.c now
3725         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
3726         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
3727           WARNING: remove device/lib/build/z80/printf.o by hand when
3728           updating from previous build!
3729         * device/lib/z80/printf.c: updated comment
3730         * support/regression/tests/bug1057979.c: test all ports now
3731         * support/regression/tests/bug1065458.c: file added
3732
3733 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3734
3735         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
3736           *_start and *_end symbols for static functions
3737
3738 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
3739
3740         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
3741           and search crt0.o in all library paths,
3742           (setIncludePath): proper handling of --nostdinc,
3743           (setLibPath): proper handling of --nostdlib
3744         * support/regression/Makefile,
3745         * support/regression/ports/ds390/spec.mk,
3746         * support/regression/ports/gbz80/spec.mk,
3747         * support/regression/ports/hc08/spec.mk,
3748         * support/regression/ports/mcs51/spec.mk,
3749         * support/regression/ports/mcs51-large/spec.mk,
3750         * support/regression/ports/mcs51-stack-auto/spec.mk,
3751         * support/regression/ports/z80/spec.mk: use include and lib files from
3752           built version of sdcc instead of installed version
3753         * doc/sdccman.lyx: fixed typo in --nostdinc
3754
3755 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
3756
3757         * src/pic/pcode.c,
3758         * src/pic/device.c,
3759         * src/pic/ralloc.c,
3760         * src/pic/gen.c : added support to generate code for struct bit fields.
3761
3762 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
3763
3764         * as/xa51/xa_version.h,
3765         * device/include/errno.h,
3766         * device/include/regc515c.h,
3767         * device/lib/_itoa.c,
3768         * device/lib/_ltoa.c,
3769         * device/lib/ser_ir_cts_rts.c,
3770         * sim/ucsim/xa.src/glob.cc,
3771         * sim/ucsim/xa.src/inst_gen.cc,
3772         * sim/ucsim/xa.src/xa_bit.cc,
3773         * sim/ucsim/xa.src/xa_sfr.cc,
3774         * sim/ucsim/z80.src/inst_dd.cc,
3775         * sim/ucsim/z80.src/inst_fdcb.cc,
3776         * support/scripts/keil2sdcc.pl,
3777         * src/pic16/pic16.dsp,
3778         * src/pic16/pic16a.dsp: corrected cvs line endings
3779         * device/lib/printf_large.c: fixed bug 1057979
3780         * src/pic16/gen.c: fixed non-C standard code
3781         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
3782         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
3783         * support/regression/ports/mcs51/support.c: reload T1 asap
3784         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
3785           pdata use and clear idata startup behaviour
3786         * support/regression/tests/bug1057979.c: added
3787
3788 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
3789
3790         * device/examples/ds390/ow390/ad26.h,
3791         * device/examples/ds390/ow390/cnt1d.h,
3792         * device/examples/ds390/ow390/crcutil.c,
3793         * device/examples/ds390/ow390/ownet.h,
3794         * device/examples/ds390/ow390/owsesu.c,
3795         * device/examples/ds390/ow390/swt12.h,
3796         * device/examples/ds390/ow390/swtoper.c,
3797         * device/examples/ds390/ow390/temp10.h,
3798         * device/examples/ds390/ow390/thermodl.c,
3799         * device/examples/ds390/tinitalk/tinitalk.dsp,
3800         * device/examples/ds390/tinitalk/tinitalk.dsw,
3801         * device/examples/mcs51/clock/hw.h,
3802         * device/examples/mcs51/simple2/go.bat,
3803         * device/examples/serialcomm/windows/serial.h,
3804         * device/examples/xa51/dummy.c,
3805         * device/examples/xa51/hello.c,
3806         * device/include/80c51xa.h,
3807         * device/include/at89x051.h: corrected cvs line endings
3808
3809 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
3810
3811         * src/pic16/main.c (options): added command line --gstack, to trace
3812         stack over/under flows,
3813         * added pragma 'wparam' to allow passing first byte of function
3814         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
3815         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
3816         call to __gstack_test function and sets up the symbol as extern,
3817         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
3818         * popaop): added call to pic16_testStackOverflow,
3819         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
3820         wparamList list,
3821         * (genCall, genPcall): now all parameters are passed via stack
3822         except in functions that are pass to wparam pragma in which WREG is
3823         used too,
3824         * (genPcall): REENTRANT flag is checked to see if variable prototype
3825         contains reentrant keyword, don't call a non-reentrant function, via
3826         a reentrant function pointer or vice versa, functions are never
3827         passed via WREG,
3828         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
3829         D.Winkler,
3830         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
3831         SIGSEGV when accessing a NULL register stucture,
3832         * (pic16_printGPointerType): modified to handle UPPER modifier for
3833         function initializers, changed prototype of function to simpler one,
3834         * (pic16_printIvalFuncPtr): check to see if function is already
3835         added in externs list,
3836         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
3837         optimized a move from W to SFR with a move to the same register
3838         later after a CALL,
3839         * device/lib/pic16/debug: NEW directory, contains debug features
3840         which are enabled when linking with libdebug.lib, currently command
3841         line option --gstack enables stack pointer tracing for over/under
3842         flow, corresponding sources are in debug/gstack
3843
3844 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
3845
3846         * doc/sdccman.lyx: updated SDCC version,
3847         * (PIC16 port): update list of command line options,
3848         * src/pic16/device.h (structure pic16_options_t): added field gstack
3849         to enable stack overflow tracing on push/pops,
3850         * src/pic16/device.c (statistics structure): added statistics
3851         structure,
3852         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
3853         pic16_dump_int_registers): increase statistics counters for each
3854         * variable which is encountered
3855         * (pic16_dump_usection): emit each .udata variable to its own udata
3856         section,
3857         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
3858         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
3859         parameters via stack, otherwise use old scheme,
3860         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
3861         assembler output file,
3862         * src/pic16/main.c: added command line options --gstack to enable
3863         push/pop tracing for stack overflow,
3864         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
3865         instructions): added size of each instruction,
3866         * (pic16_countInstruction): estimate size of instructions in
3867         the_pFile list, inline assembly blocks are not counted,
3868         * (pic16_FixRegisterBanking): trace previous register usage, when
3869         banksel optimizations is greater than 0, don't emit a redudant
3870         banksel directive,
3871
3872 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
3873
3874         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
3875         * src/pic16/ralloc.c : applied same fix for pic16.
3876         * src/pic/gen.c : tidied it up a little.
3877
3878 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3879
3880         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
3881         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
3882
3883 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3884
3885         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
3886
3887 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3888
3889         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
3890         non-reentrant function __modsint in the interrupt function (thus
3891         corrupting math operations during serial I/O)
3892         * device/lib/ser_ir.c: as above, changed buffersize
3893         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
3894         256.c,d for zeroing
3895         * doc/Makefile: added option -t for rsync
3896
3897 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3898
3899         * src/SDCCast.h (struct ast),
3900         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
3901
3902 2004-10-20 Borut Razem <borut.razem AT siol.net>
3903
3904         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
3905         package
3906
3907 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
3908
3909         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
3910         makefile targets,
3911         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
3912         support functions to replace long sequences of MOVFF's from access
3913         bank registers to stack and vice versa,
3914         * src/pic16/device.h: added new field opt_flags, where optimization
3915         flags can be set to enable certain features,
3916         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
3917         * pBlock, (genFunction, genEndFunction): surroung loop for
3918         saving/loading used registers in stack with PC_INFO pCodes,
3919         INF_LREGS. Code in between can then be optimized by pCode optimizer
3920         to support function calls,
3921         * (genDataPointerSet): fixed bug which loaded float fields in
3922         structures with corrupt data,
3923         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
3924         in a standard way debug info on stderr. Feature used for developing
3925         and debugging only,
3926         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
3927         obsolete chunks of code,
3928         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
3929         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
3930         * pic16/src/pcode.c (pic16_newpCodeInfo,
3931         * (pic16_newpCodeOpLocalRegs),
3932         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
3933         feature,
3934         * (pic16_pCodeConstString): printing of the initial value of a
3935         symbol as a comment is inhibited since parsing was already done by
3936         copyStr and output is corrupt,
3937         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
3938
3939 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3940
3941         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
3942
3943 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
3944
3945         * as/mcs51/lkarea.c: removed old K&R style,
3946           (lnksect): changed check on boundary error,
3947           (lnksect2): changed check on boundary error,
3948           (lnksect2): extend XSTK to end of page if size = 1
3949         * as/mcs51/lkmain.c: removed old K&R style,
3950           (Areas51): create l_IRAM symbol
3951         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
3952         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
3953           model-mcs51-stack-auto, added model-mcs51-xstack-auto
3954         * device/lib/_mullong.c: added version to be compiled with xstack
3955         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
3956         * device/lib/mcs51/crtxclear.asm: clear pdata as well
3957         * device/lib/mcs51/crtxstack.asm: fixed comment
3958         * src/SDCCglue.c: maxInterrupts defaults to 0,
3959           (emitMaps): added pdata,
3960           (createInterruptVect): (re)moved default,
3961           (glue): added pdata,
3962           (glue): moved __start__xstack to XSTK with default size 1
3963         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
3964           and options.float_rent when options.stackAuto is set,
3965           (linkEdit): only write XDATA_NAME if provided on command line
3966         * src/SDCCmem.h,
3967         * src/SDCCmem.c: added pdata
3968         * src/port.h: added pdata_name to PORT
3969         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
3970           (saveRegisters, unsaveRegisters): removed usage of B,
3971           (genMinus): fixed accumulator clash,
3972           (genJumpTab): added comment, this needs another look
3973         * src/mcs51/gen.c: added check for "B in use" paranoia,
3974           added pushB() and popB()
3975         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
3976           chance
3977         * src/avr/main.c,
3978         * src/ds390/main.c,
3979         * src/hc08/main.c,
3980         * src/mcs51/main.c,
3981         * src/pic/main.c,
3982         * src/pic16/main.c,
3983         * src/xa51/main.c,
3984         * src/z80/main.c: (reset_regparms) made void parameter explicit and
3985           added PSEG (PAG,XDATA) or NULL to port specifier
3986         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
3987         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
3988           (_mcs51_genInitStartup): removed __start__xstack equ,
3989           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
3990         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
3991         * src/z80/gen.c (_rleAppend): fixed warnings
3992         * support/regression/tests/zeropad.c: added pdata test
3993         * .version: bumped to 2.4.6
3994
3995 2004-10-17 Borut Razem <borut.razem AT siol.net>
3996
3997         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
3998         as a part of nightly build
3999
4000 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
4001
4002         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
4003         WREG holds the first byte function parameters,
4004         * (aopForSym): take special case for symbols which are in FARSPACE
4005         but in CODESPACE too,
4006         * (assignResultValue): modified to take into account _G.useWreg,
4007         * (genCall): don't use wreg for parameter passing when function is
4008         declared as reentrant, too, added optimization INCF to stack
4009         pointer when stack parameter count is 1,
4010         * (genFunction, genEndFunction): refurnished and fixed to not using
4011         wreg for passing parameters when function has varargs or is
4012         reentrant, fixed bug with symbol name compare for generating
4013         functions in absolute address,
4014         * (pic16_storeForReturn): refurnished,
4015         * (genCmp): began writing a new version of the function, not ready
4016         yet, therefore it is disabled,
4017         * (genAssign): do not read code memory when assigning a function to
4018         a pointer function,
4019         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
4020         array of characters, not pointer,
4021         * (pic16initialComments): in debug mode emit an .ident directive for
4022         the assembler,
4023         * (_process_pragma): emit a new warning type (internal to pic16)
4024         when setting stack to default length, emit a similar warning when
4025         placing a function at absolute address and address is not word aligned
4026         * (_pic16_parseOptions): added 'return TRUE' statement,
4027         * (_pic16_linkEdit): if compiling a source, then add the source's
4028         file object, first in the list of objects to link,
4029
4030 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
4031
4032         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
4033         * src/pic/main.c : removed VC warning.
4034         * src/pic/gen.c : changed comment.
4035
4036 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
4037
4038         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
4039         reference to a deprecated symbol _GPTRREG was causing failure to
4040         link. Thanks G. M. Gallant for the info.
4041
4042 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
4043
4044         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
4045         comments for Bugs item #954788.
4046
4047 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
4048
4049         * src/pic16/device.c (pic16_dump_gsection,
4050         * pic16_groupRegistersInSection): handle symbols declared to be in
4051         access bank differently,
4052         * src/pic16/gen.c (struct _G): added field resDirect,
4053         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
4054         send values read from stack directly to result and don't allocate
4055         temporary values,
4056         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
4057         same registers,
4058         * (pic16_sameRegsOfs): NEW,
4059         * (freeAsmop): if _G.resDirect is set then do not mark registers as
4060         free because they were not allocated from temporary pool,
4061         * pic16_popRegFromString): workaround to fix a problem with
4062         allocating variables twice or never,
4063         * (genGenPointerGet): using PRODL instead of FSR0H,
4064         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
4065         instead of FSR0H,
4066         * (genAssign): take advantage of the _G.resDirect flag,
4067         * (genCast): around line 11844, use mov2f instead of directly
4068         MOVFF'ing between operands to account for literal values,
4069         * src/pic16/genutils.c: some new debug functions for gpsim have been
4070         added,
4071         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
4072         float with integer part only,
4073         * src/pic16/main.c (_process_pragma): handle pragma udata access to
4074         place variables in access bank
4075         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
4076         updated sources to reflect recent changes in gen.c
4077
4078 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
4079
4080         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
4081         sources that searched for headers in installation path, now the
4082         device/include/pic16 is used,
4083         * src/pic16/glue.c (pic16glue),
4084         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
4085         .line directives if not in debug mode, this suppresses assembler's
4086         warnings for ignored directives
4087
4088 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
4089
4090         * src/port.h: made reset_regparms prototype void parameter explicit.
4091         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
4092         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
4093         * doc/sdccman.lyx: documented warning disabling and how to use
4094           printf_large to make it print floats.
4095         * device/include/stdbool.h: NEW
4096         * device/lib/_atof.c,
4097         * device/lib/_divuint.c,
4098         * device/lib/_divulong.c,
4099         * device/lib/expf.c,
4100         * device/lib/printf_large.c,
4101         * device/lib/sincosf.c,
4102         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
4103         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
4104           a completely reentrant lib.
4105
4106 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
4107
4108         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
4109         * device/include/pic16/stdio.h: fixed bug with colon
4110
4111 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
4112
4113         * device/include/pic16/stdio.h,
4114         * device/include/pic16/stdlib.h,
4115         * device/include/pic16/math.h: NEW
4116         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
4117         declared as _naked to reduce overhead
4118         * device/lib/Makefile.in (target port-specific-objects-pic16):
4119         changed * to *.* so to ignore the CVS directory,
4120         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
4121         stacked variables back in stack,
4122         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
4123         corruption
4124
4125 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
4126
4127         * .version: bumped version number to 2.4.5
4128         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
4129         * support/Util/SDCCerr.c (messages structure): added entry for
4130         W_POSSBUG2
4131
4132         Large cumulative patch for pic16 port and libraries.
4133         * device/include/pic16/sdcc-lib.h,
4134         * device/include/pic16/stdarg.h,
4135         * device/include/asm/pic16/features.h,
4136         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
4137         * device/include/pic16/float.h: changes reentrant keyword with
4138         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
4139         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
4140         updated target build-libraries to include objects from gptr,
4141         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
4142         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
4143         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
4144         all function headings,
4145         * src/SDCCmain.c: added global parameter userIncDirsSet,
4146         * (parseCmdLine): when option -I is encountered add directory to
4147         userIncDirsSet too,
4148         * src/version.awk: added space between control and long,
4149         * src/pic16/NOTES: added some notes for the port,
4150         * src/pic16/gen.c: added prototype for mov2fp function,
4151         * (fReturnpic16[]): properly named return value registers,
4152         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
4153         * (aopForSym): added code to handle symbols with onStack flag set,
4154         symbols onStack are allocated PTRSIZE bytes,
4155         * (aopFreeAsmop): handles special case where asmops are stack objects,
4156         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
4157         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
4158         added argument lock to trace flaws in allocating temporary registers
4159         when developing port,
4160         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
4161         * (pic16_popRegFromString): reenabled allocating a direct register
4162         from string,
4163         * (assignResultValue): various beautifications,
4164         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
4165         referenced function argument,
4166         * (genIpush): reenabled to allow stacked arguments, handles only
4167         ic->parmPush iCodes,
4168         * (genCall, genPcall): major changes to allow for variable argument
4169         functions, fixed a bug with falsely restoring stack pointer after
4170         returning from call,
4171         * (genFunction): pending code for critical function,
4172         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
4173         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
4174         * (genNearPointerGet): fixed bug with indirect reading, was always
4175         reading from INDF0
4176         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
4177         pointers,
4178         * (genAddrOf): rewrote code to take address of a stacked function parameter
4179         * (genCast): fixed casting to generic pointer type,
4180         * src/pic16/gen.h: added AOP_STA,
4181         * (struct asmop): added field stk,
4182         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
4183         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
4184         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
4185         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
4186         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
4187         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
4188         generic pointers,
4189         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
4190         and library paths,
4191         * (pic16_port structure): generic pointer size is set to 3,
4192         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
4193         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
4194         compiler warning,
4195         * src/pic16/ralloc.c (allocReg): prevent allocating register when
4196         operand is an iTemp,
4197
4198 2004-09-24 Martin Helmling <mh AT octo-soft.de>
4199
4200         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
4201         * debugger/mcs51/simi.c: addapt new syntax of s51
4202
4203 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
4204
4205         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
4206         * src/pic16/pcode.c: commented out some calls to free() in order to
4207         fix bug #989576,
4208
4209 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4210
4211         * src/SDCCicode.h,
4212         * src/SDCCicode.c (isiCodeInFunctionCall),
4213         * src/avr/ralloc.c (selectSpil),
4214         * src/pic/ralloc.c (selectSpil),
4215         * src/pic16/ralloc.c (selectSpil),
4216         * src/ds390/ralloc.c (selectSpil),
4217         * src/hc08/ralloc.c (selectSpil),
4218         * src/xa51/ralloc.c (selectSpil),
4219         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
4220         stack in the middle of a function call sequence (fixes bug #1020268)
4221         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
4222         costs associated with the minimum switch case.
4223
4224 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4225
4226         * src/SDCC.lex: fixed bug #1030549
4227
4228 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4229
4230         * src/SDCCcse.h (struct cseDef),
4231         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
4232         over a function call if the CSE is derived from a symbol whose
4233         address has been taken (fixes bug #1029883)
4234         * support/regression/tests/bug-1029883: a new regression test for
4235         this bug
4236
4237 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4238
4239         * src/hc08/gen.c (emitinline): fixed bug #1029778
4240         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
4241         to a cast object is no longer a syntax error ("fixes" bug #1030006,
4242         and starts toward RFE #905167)
4243
4244 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
4245
4246         * src/pic16/gen.c (mov2f): New function to move an operand to
4247         another without considering if it is a literal or a register,
4248         * (pic16_sameRegs): don't check if they are both AOP_REG,
4249         * (AccRsh): removed andmask=0 lines,
4250         * (genLeftShift): duplicated to be improved in future versions,
4251         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
4252         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
4253         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
4254         * (pic16initMnemonics): added initialization for POC_INFSNZW,
4255         * (insertBankSwitch): fixed inserting banksel directives algorithm
4256         for instructions that follow a skip instruction, this fixes a report
4257         for broken subtraction code generation,
4258         * src/pic16/ralloc.c (deassignLRs): do not free register if current
4259         iCode is a left op, just in case result and right share the same
4260         registers
4261
4262 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4263
4264         * src/hc08/main.c,
4265         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
4266         preservation of HX
4267         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
4268         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
4269         on 2004-09-12; it was buggy
4270
4271 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
4272
4273         * src/SDCCsymt.h: removed RESULT_CHECK
4274         * src/SDCCast.c,
4275         * src/SDCCglue.c,
4276         * src/SDCCval.c,
4277         * src/pic/glue.c,
4278         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
4279
4280 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
4281
4282         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
4283         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
4284         configuration values no more rejected by compiler, they are assigned
4285         to configuration registers with a warning message instead,
4286         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
4287         the for-loop so last conf register is emitted too,
4288         * (_pic16_initPaths): link library libsdcc.lib by default,
4289         * (_hasNativeMulFor): modified test for multiplication according to
4290         Raphael Neider's remarks. Integer multiplication is also done with
4291         support functions,
4292         * device/include/pic16/pic18fregs.h: corrected type error in while
4293         testing and including 18f6720 header file
4294
4295 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
4296
4297         * src/pic16/device.h (pic16_options): removed field use_crt,
4298         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
4299         until an optimization to handle single bits is added,
4300         * (pic16_loadFSR0): moved before genUnpackBits,
4301         * (genAnd): some white lines removed,
4302         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
4303         leave_reset flags in pic16_options when using crt modules,
4304
4305 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
4306
4307         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
4308           for bugs 898889 & 979599. Also used some safer print instructions.
4309
4310 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
4311
4312         * src/pic16/device.h (pic16_options_t): added field use_crt,
4313         crt_name, no_crt,
4314         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
4315         catch a probable future bug,
4316         * src/pic16/gen.c: aopIdx function commented out,
4317         * (genAssign): commented out old code which used aopIdx,
4318         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
4319         code, added if conditionals to take into account the --use-crt
4320         command line options,
4321         * src/pic16/main.c (pic16_optionsTable): added new command line
4322         options, --use-crt= and --no-crt,
4323         * (_pic16_linkEdit): now the proper crt object is added in the
4324         linker command line except than when --no-crt is specified,
4325         * src/pic16/pcode.c,
4326         * src/pic16/pcode.h: added some structures and functions for a new
4327         optimization scheme to compansate for instruction overhead between
4328         same iCodes, this scheme is currently under development and is not
4329         working in any way,
4330         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
4331         to && operator,
4332         * device/lib/pic16/startup/crt0i.c,
4333         * device/lib/pic16/startup/crt0iz.c: added global char variable
4334         __uflags to force the generation of an idata section
4335
4336 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
4337
4338         * doc/Makefile,
4339         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
4340         * doc/sdccman.lyx: updated sdcc version to 2.4.4
4341
4342 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4343
4344         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
4345         Frieder) and clarified the default code optimization mode
4346
4347 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4348
4349         * src/SDCC.lex (doPragma, process_pragma),
4350         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
4351         "opt_code_size", and "opt_code_balanced"
4352         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
4353         regrouped options by category, added support for category headers
4354         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
4355         and "--opt-code-size"
4356         * doc/sdccman.lyx: documented these new options and pragmas
4357         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
4358         preference into account
4359
4360 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4361
4362         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
4363           geniCodePreDec): Fixed bug 904237 by generating a warning
4364         * src/SDCCerr.h,
4365         * src/SDCCerr.c: added warning W_SIZEOF_VOID
4366
4367 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
4368
4369         * src/pic/device.c : When no max ram set validate full memory range.
4370         * src/pic/pcode.c,
4371         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
4372
4373 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4374
4375         * device/lib/_gptrget.c,
4376         * device/lib/_gptrput.c: updated comment
4377         * device/lib/calloc.c,
4378         * device/lib/free.c,
4379         * device/lib/malloc.c,
4380         * device/lib/realloc.c: added LGPL, made them reentrant-safe
4381         * src/SDCCcse.c (cseBBlock),
4382         * src/SDCCicode.c (printOperand, geniCodeArray),
4383         * src/SDCCicode.h (struct operand): fixed bug 868103
4384         * support/regression/tests/bug-868103.c: added
4385         * src/SDCCast.c (searchLitOp),
4386         * src/SDCCcse.h (struct cseDef),
4387         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
4388         * src/SDCCicode.h (struct operand),
4389         * src/SDCCsymt.h (struct sym_link),
4390         * src/avr/gen.c (hasInc),
4391         * src/ds390/gen.c (hasInc),
4392         * src/hc08/gen.c (genPlusIncr, hasInc),
4393         * src/mcs51/gen.c (hasInc),
4394         * src/pic16/glue.c (pic16_printIvalChar),
4395         * src/pic16/ralloc.c (regWithIdx),
4396         * src/xa51/gen.c (hasInc) : removed warnings
4397         * src/SDCCast.c (createBlock): added comment ???
4398         * src/hc08/ralloc.c: updated comments
4399
4400 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4401
4402         * doc/sdccman.lyx: updated section on switch statements, added
4403         section about semaphore locking
4404         * doc/Makefile: added option -info for latex2html
4405         * device/lib/_gptrget.c,
4406         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
4407
4408 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4409
4410         * src/pic/device.h,
4411         * src/pic/device.c,
4412         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
4413          maxram is less than 0x100.
4414
4415 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4416
4417         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
4418
4419 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4420
4421         * src/port.h,
4422         * src/mcs51/main.c,
4423         * src/ds390/main.c,
4424         * src/z80/main.c,
4425         * src/hc08/main.c,
4426         * src/pic/main.c,
4427         * src/pic16/main.c,
4428         * src/avr/main.c,
4429         * src/xa51/main.c
4430         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
4431         a jump table is the best form for a switch statement, including
4432         automatic insertion of missing cases to make the case range
4433         continuous. Developed in collaboration with Frieder Ferlemann.
4434
4435 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4436
4437         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
4438         accumulator result if it needs sign extension
4439
4440 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4441
4442         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
4443
4444 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4445
4446         * device/lib/gbz80/printf.c,
4447         * device/lib/z80/printf.c: removed define for NULL
4448
4449 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4450
4451         * as/xa51/xa_link.c,
4452         * device/examples/ds390/ow390/ad26.c,
4453         * device/examples/ds390/ow390/cnt1d.c,
4454         * device/examples/ds390/ow390/counter.c,
4455         * device/examples/ds390/ow390/ds2480.h,
4456         * device/examples/ds390/ow390/ds2480ut.c,
4457         * device/examples/ds390/ow390/findtype.c,
4458         * device/examples/ds390/ow390/gethumd.c,
4459         * device/examples/ds390/ow390/owllu.c,
4460         * device/examples/ds390/ow390/ownetu.c,
4461         * device/examples/ds390/ow390/swt12.c,
4462         * device/examples/ds390/ow390/swtloop.c,
4463         * device/examples/ds390/ow390/temp.c,
4464         * device/examples/ds390/ow390/temp10.c,
4465         * device/examples/ds390/ow390/thermo21.c,
4466         * device/examples/ds390/ow390/tinilnk.c,
4467         * device/examples/ds390/ow390/tstfind.c,
4468         * device/examples/serialcomm/windows/serial.cpp,
4469         * device/examples/serialcomm/windows/test_serialcomm.cpp,
4470         * device/include/reg51.h: fixed line endings for cvs
4471
4472 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4473
4474         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
4475         packRegsForAccUse, packRegisters): new accumulator register
4476         packing algorithm
4477         * support/regression/ports/hc08/support.c (_putchar): suppress
4478         warning of unused variable
4479         * src/SDCCicode.c: added SWAP entry to codeTable
4480
4481 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
4482
4483         * device/lib/sprintf.c: forgot to add this file before previous commit
4484
4485 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
4486
4487         * src/pic16/gen.c (genPackBits): added operand right in function
4488         parameters, load result directly if p_type is POINTER (that is
4489         called by genNearPointerSet)
4490         * (genUnPackBits): added operand left in function parameters,
4491         * (genNearPointerGet, genNearPointerSet): prevent the loading of
4492         FSR0 if accessing bitfields,
4493
4494 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
4495
4496         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
4497           _print_format; updated printf, sprintf, vsprintf
4498         * device/include/asm/default/features.h: corrected comment/define
4499         * device/lib/Makefile.in: added sprintf.c
4500         * device/lib/libsdcc.lib: added sprintf module
4501         * device/lib/printf_large.c,
4502         * device/lib/vprintf.c,
4503         * device/lib/sprintf.c: totally refactored printf_large and vprintf
4504           into these 3 files
4505         * support/regression/Makefile: changed ALL_PORTS into a usefull default
4506         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
4507         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
4508           hc08 test
4509         * support/regression/tests/zeropad.c: define idata as data for hc08
4510
4511 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4512
4513         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
4514         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
4515         labels are referenced at least once (even if a reference is not found)
4516         * src/hc08/gen.c (emitcode): set isComment flag for comments
4517         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
4518         loads), rules 6a..6b (optimize jumps to return)
4519
4520 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4521
4522         * device/lib/acosf.c (acosf),
4523         * device/lib/asinf.c (asinf),
4524         * device/lib/atanf.c (atanf),
4525         * device/lib/ceilf.c (ceilf),
4526         * device/lib/cosf.c (cosf),
4527         * device/lib/coshf.c (coshf),
4528         * device/lib/cotf.c (cotf),
4529         * device/lib/fabsf.c (fabsf),
4530         * device/lib/floorf.c (floorf),
4531         * device/lib/log10f.c (log10f),
4532         * device/lib/logf.c (logf),
4533         * device/lib/sinf.c (sinf),
4534         * device/lib/sinhf.c (sinhf),
4535         * device/lib/sqrtf.c (sqrtf),
4536         * device/lib/tanf.c (tanf),
4537         * device/lib/tanhf.c (tanhf),
4538         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
4539         replaced all instances of "reentrant" in the library functions
4540         defined in math.h with this macro.
4541         * support/regression/tests/float_trans.c: reenabled test for hc08
4542
4543 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
4544
4545         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
4546         erroneously deleted
4547
4548 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4549
4550         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
4551         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
4552         multi-byte volatile operands are used
4553         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
4554         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
4555         initialization to area GSINIT0 so that it would always precede
4556         any static initializers in GSINIT
4557         * support/regression/tests/zeropad.c: fixed idata define for hc08
4558         * support/regression/tests/bug-927659.c,
4559         * support/regression/tests/float_trans.c: disabled tests for hc08
4560         pending missing library routines
4561         * .version: increased version number to 2.4.4 - hc08 port now passes
4562         regression tests
4563
4564
4565 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
4566
4567         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
4568         * Makefile.common.in,
4569         * as/Makefile,
4570         * as/hc08/Makefile.in,
4571         * as/mcs51/Makefile.in,
4572         * as/z80/Makefile.in,
4573         * debugger/mcs51/Makefile.in,
4574         * device/include/Makefile.in,
4575         * device/lib/Makefile.in,
4576         * doc/Makefile,
4577         * link/Makefile,
4578         * link/z80/Makefile.in,
4579         * packihx/Makefile.in,
4580         * sim/ucsim/main_in.mk,
4581         * sim/ucsim/avr.src/Makefile.in,
4582         * sim/ucsim/doc/Makefile.in,
4583         * sim/ucsim/gui.src/serio.src/Makefile.in,
4584         * sim/ucsim/hc08.src/Makefile.in,
4585         * sim/ucsim/s51.src/Makefile.in,
4586         * sim/ucsim/xa.src/Makefile.in,
4587         * sim/ucsim/z80.src/Makefile.in,
4588         * src/Makefile.in,
4589         * support/cpp2/Makefile.in,
4590         * support/librarian/Makefile,
4591         * support/makebin/Makefile: added DESTDIR to the install path proposed
4592         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
4593         * doc/sdccman.lyx: added DESTDIR documentation
4594
4595 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
4596
4597         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
4598         instruction for interrupt handlers, use fast returns when returning
4599         from high priority interrupts
4600
4601 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4602
4603         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
4604         code generation
4605         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
4606         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
4607         bugs, ported much of Bernhard's code from mcs51
4608         * src/mcs51/gen.c (genSend),
4609         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
4610         than one when calling a reentrant function
4611         * device/lib/_mullong.c: defined an alternate struct layout for big
4612         endian ports (hc08)
4613
4614 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4615
4616         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
4617         test
4618
4619 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4620
4621         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
4622         are sane and complete before asking the port its prefered parameter
4623         passing method (fixes bug #1017633)
4624         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
4625         and _ret3
4626
4627 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4628
4629         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
4630         problem in bitfields >= 8 bits.
4631
4632 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4633
4634         * src/SDCCsymt.c: undid changes that were not meant to be committed
4635
4636 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4637
4638         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
4639
4640 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4641
4642         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
4643           copied and wrong bit got inverted
4644
4645 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4646
4647         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
4648         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
4649         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
4650         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
4651         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
4652         assignments to bitfields at known addresses
4653         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
4654         reads from bitfields at known addresses
4655         * src/hc08/ralloc.c (packRegisters),
4656         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
4657         genhc08Code): optimize pointer get values used as conditionals
4658         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
4659         and branch
4660
4661 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4662
4663         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
4664         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
4665         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
4666         as conditionals
4667
4668 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4669
4670         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
4671
4672 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4673
4674         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
4675         related problems
4676
4677 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
4678
4679         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
4680
4681 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4682
4683         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
4684         mcs51 port
4685
4686 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
4687
4688         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
4689
4690 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4691
4692         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
4693         cases use more compact code.
4694
4695 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
4696
4697         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
4698
4699 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4700
4701         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
4702
4703 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4704
4705         * src/SDCCsymt.h,
4706         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
4707         parameter of changePointer() from symbol* to sym_link*
4708         * src/SDCCast.c (decorateType): call changePointer() for CAST op
4709         * src/SDCCsymt.c (compareType): void* type is castable to other
4710         pointers, but not necesarily an exact match.
4711         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
4712         is no longer blindly treated as an exact match.
4713         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
4714
4715 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
4716
4717         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
4718
4719 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
4720
4721         * src/pic/gen.c,
4722         * src/pic/pcode.c,
4723         * src/pic/ralloc.h,
4724         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
4725
4726 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
4727
4728         * src/pic/device.c,
4729         * src/pic/device.h,
4730         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
4731
4732 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4733
4734         * src/mcs51/gen.c (emitcode): fixed bug #992819
4735
4736 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
4737
4738         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
4739           there's no need to make it worse
4740
4741 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4742
4743         * src/mcs51/ralloc.c (deassignLR),
4744         * src/ds390/ralloc.c (deassignLR),
4745         * src/hc08/ralloc.c (deassignLR),
4746         * src/z80/ralloc.c (deassignLR),
4747         * src/pic/ralloc.c (deassignLR),
4748         * src/pic16/ralloc.c (deassignLR),
4749         * src/avr/ralloc.c (deassignLR),
4750         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
4751         rlivePoint): fixed another part of bug #971834
4752
4753 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4754
4755         * src/z80/main.c: enabled "critical" keyword
4756         * src/z80/mappings.i,
4757         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
4758         functions (fixes bug #979646)
4759         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
4760
4761 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4762
4763         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
4764           such as c:\mydir.
4765
4766 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
4767
4768         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
4769           doesn't disable too much optimizations
4770
4771 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4772
4773         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
4774
4775 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
4776
4777         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
4778
4779 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4780
4781         * src/pic/gen.c tidied up tabs
4782         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
4783         * src/pic/main.c tidied up tabs
4784         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
4785         * src/pic/pcoderegs.c tidied up tabs
4786         * src/pic/ralloc.c tidied up tabs
4787
4788 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
4789
4790         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
4791         to S_FIXED for pic16 port and when symbol is not in level 0,
4792         allocate for S_REGISTER storage class and pic16 port, too,
4793         * src/pic16/device.h: prototype for checkSym,
4794         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
4795         * (pic16_assignConfigWordValue): test the value and the mask to
4796         validate that the value is suitable for the configuration word,
4797         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
4798         collect extern declared symbols, don't emit symbol twice, check
4799         first if symbol is in publics set first,
4800         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
4801         * added command line '--fstack' which enables an experimental
4802         feature for stack access, too buggy to be used yet...
4803         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
4804         * (pic16_allocDirReg): when register has storage class S_REGISTER
4805         allocate in pic16_dynAccessRegs,
4806         * device/include/pic16/pic18f????.h: modified configuration word
4807         naming convention, words started as CONFIG0H but should be CONFIG1H
4808
4809 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
4810
4811         * device/include/mcs51reg.h: fixed bug 970993
4812
4813 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
4814
4815         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
4816         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
4817         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
4818         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
4819         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
4820         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
4821           error/warning numbers,
4822           added function setWarningDisabled()
4823         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
4824         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
4825           _memcmp.c _memmove.c calloc.c realloc.c free.c
4826         * support/regression/tests/malloc.c: added tests for new functionality
4827         * support/regression/tests/zeropad.c: added tests for truncated initializers
4828           and initialized char arrays starting with '\x0'
4829         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
4830
4831 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
4832
4833         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
4834
4835 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4836
4837         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
4838         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
4839         peephole 177.e. Thanks to anonymous
4840
4841 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
4842
4843         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
4844         function isn't used in the source but referenced as a
4845         variable initializer then declare it as extern in .asm file
4846
4847 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
4848
4849         * .version: increased version number to 2.4.3
4850
4851         Adding version extension according to ChangeLog CVS revision
4852         * src/Makefile.in (target all): added dependency 'version.h'
4853         * (rule version.h): added rule to create version.h from ChangeLog,
4854         * (rule dep): added dependency version.h,
4855         * src/version.awk: AWK script to create version.h
4856         * src/SDCCdwarf2.c (dwWriteModule),
4857         * src/SDCCglue.c (initialComments),
4858         * src/SDCCmain.c (printVersionInfo): modified to write after
4859         version string the version extension number,
4860         * src/SDCCutil.c: included "version.h"
4861         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
4862         number,
4863         * src/SDCCutil.h: added prototype for getBuildNumber
4864
4865         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
4866         includeDirsSet, too,
4867         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
4868         const char [] is found in function prototype...
4869
4870         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
4871         moving to WREG with source is already in WREG,
4872         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
4873         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
4874         * (aopForSym): stack'ed symbols are partially supported, added
4875         if-clause to support symbols in FARSPACE,
4876         * (sameRegs): added test for AOP_ACC to see if registers are same,
4877         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
4878         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
4879         * (pic16_popRegFromString): will not allocate a new register if it
4880         doesn't find one by name, bug may have introduced...
4881         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
4882         * (genIpush): revived to use pic16 port's stack,
4883         * (genAddrOf): added incomplete case for stack'ed operand,
4884         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
4885         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
4886         can handle multibyte operands,
4887         * src/pic16/glue.c (pic16_printIval*): some debug info added,
4888         * (pic16initialComments): added message for MPLAB compatibility
4889         mode enabled,
4890         * src/pic16/main.h: prototype for pic16_mplab_comp,
4891         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
4892         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
4893         * (_pic16_linkEdit): NEW, handles link stage, transferred here
4894         because of increased complexity of procedure,
4895         * (_process_pragma): stack pragma changed to format 'stack pos len',
4896         emit symbol '_stack_end' to conform with gplink,
4897         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
4898         to search for register,
4899         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
4900         PO_GPR_REGISTER,
4901         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
4902         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
4903         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4904         case for PO_GPR_REGISTER,
4905         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
4906         dies, the new era is ahead !...
4907         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
4908         pic16_dynInternalRegs,
4909         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
4910         * (pic16_allocDirReg): minor optimizations and bug fixes,
4911         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
4912
4913         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
4914         load stack and frame pointer with address of 'stack_end' symbol
4915
4916 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
4917
4918         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
4919         without source code but only variable initializers
4920
4921 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
4922
4923         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
4924         external are not declared as extern to reduce overhead while linking
4925
4926 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
4927
4928         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
4929
4930 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
4931
4932         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
4933           Yee Keat for the patch
4934         * src/SDCCast.c (decorateType): fixed bug #979599
4935         * src/ds390/gen.h: removed local fReturnSizeDS390
4936         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
4937         * src/ds390/gen.c (genAnd, genOr, genXor),
4938         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
4939
4940 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
4941
4942         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
4943         add relFilesSet to $3, manipulate $2 to handle linking of object
4944         files without source files in command line,
4945         * device/include/pic16 (all headers): added ID location macros,
4946         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
4947         entries for ID location bytes,
4948         * (pic16_assignIdByteValue): NEW,
4949         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
4950         added field dumpcalltree to pic16_options_t,
4951         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
4952         is used instead of pic16_Gstack_base_addr, check if (ifx) before
4953         emitting rFalseIfx label after check_carry label,
4954         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
4955         pic16_emitDIRegs), NEW
4956         * (pic16glue): dump .calltree file when option --calltree found,
4957         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
4958         * (_pic16_genAssemblerPreamble): emit ID locations after
4959         configuration registers,
4960         * (pic16_linkCmd): modifications of the link command,
4961         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
4962         * (pic16_pCodeInitRegisters): don't init stack registers,
4963         * (pic16_findPrevInstruction): fixed bug,
4964         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
4965         bug with immediate registers,
4966         * (buildCallTree): traces stack push and pop,
4967         * (pct2): dump also stack usage for each function,
4968         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
4969         * (pic16_allocDirReg): various modifications,
4970         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
4971         fixed to 1,
4972
4973 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
4974
4975         * src/pic16/pcode.c: removed buggy double colon
4976
4977 2004-07-01 Borut Razem <borut.razem AT siol.net>
4978
4979         * support/scripts/sdcc.nsi: added include/pic16 to setup
4980
4981 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
4982
4983         * device/lib/Makefile.in: fixed bug in target objects-pic16,
4984         * device/lib/pic16/Makefile: prefixed with dash (-) command under
4985         target 'clean',
4986         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
4987         specific command line arguments. Also added sample lkr script
4988         for placing a variable at a specific memory bank.
4989         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
4990         at a specific memory bank,
4991         * (pic16_dump_isection): fixed bug which caused string literals to
4992         be omitted when dumping idata section,
4993         * (pic16_groupRegistersInSection): added code to handle registers
4994         in specific memory banks,
4995         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
4996         public, all references are renamed too,
4997         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
4998         AOP_DPTR2,
4999         * (pic16_storeForReturn): added case to handle when dest is WREG,
5000         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
5001         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
5002         pic16_rel_udata, check to see if that register is marked as being
5003         a member of a specific memory bank,
5004         * (pic16_printIvalCharPtr): added code to add string literals either
5005         to code or the idata sections,
5006         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
5007         also accept the 'udata' pragma,
5008         * src/pic16/main.h: new structure types sectName and sectSym
5009         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
5010         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
5011         * (pic16_findPrevInstruction): fixed, it returned nothing,
5012         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
5013         instruction combinations,
5014         * (pic16_FixRegisterBanking): heavily reorganised,
5015         * (pic16_AnalyzeBanking): if generating banksel directives is
5016         disabled, then don't call FixRegisterBanking at all,
5017         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
5018         completely removed,
5019         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
5020
5021 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
5022
5023         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
5024         Phuah Yee Keat <yk.phuah AT nestac.com>
5025
5026 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5027
5028         * src/pic16/glue.c (pic16createInterruptVect): function now emits
5029         correctly the IVT even if it is relocated to some other location
5030
5031 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5032
5033         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
5034         * device/include/pic16/pic18f2220.h: NEW,
5035         * device/lib/pic16/libdev/pic18f2220.c: NEW,
5036         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
5037         * src/pic16/device.c (struct Pics16): added info for 18f2220,
5038         * src/pic16/device.h (struct pic16_options): added ivt_loc and
5039         nodefaultlibs, ivt_loc is the location of the interrupt vector
5040         table, and nodefaultlibs signs that default libraries should not be
5041         linked in link stage,
5042         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
5043         according to --ivt-loc argument,
5044         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
5045         when pragma stack is found,
5046
5047 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5048
5049         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
5050         256 (range check), 257 (do while), 258.a-f (bit banging
5051         f.e. on 3-wire SPI bus)
5052
5053 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5054
5055         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
5056         variables used exclusively within a loop
5057
5058 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
5059
5060         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
5061
5062 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5063
5064         * src/SDCClrange.c (computeClash): fixed bug #971834
5065
5066 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5067
5068         * src/mcs51/gen.c (genCmp): fixed bug #975903
5069         * src/hc08/gen.c (operandsEqu),
5070         * src/ds390/gen.c (operandsEqu),
5071         * src/z80/gen.c (operandsEqu),
5072         * src/pic/gen.c (operandsEqu),
5073         * src/pic16/gen.c (operandsEqu),
5074         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
5075         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
5076
5077 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5078
5079         * src/SDCCcse.c (cseBBlock): fixed bug #966963
5080
5081 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
5082
5083         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
5084         default case in switch statement,
5085         * glue.c (pic16_initPointer): expr is initialised via decoarteType
5086         to eliminate problem with initialisation of pointers, but problem
5087         still exists,
5088         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
5089         * (emitStaticSegment): removed various lines emitting debug info,
5090         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
5091         added processor registers for utilizing EEPROM,
5092         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
5093         configurable and set 8
5094
5095 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
5096
5097         * .version: increased version number to 2.4.2,
5098
5099         Cumulative patch for pic16 port
5100         * src/pic16/device.c: changed scheme to dump initial values for
5101         variables in idata segment, all print_idata* functions were removed,
5102         now the pic16_printIval* will be called,
5103         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
5104         * _pic16_printPointerType, pic16_printPointerType,
5105         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
5106         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
5107         NEW, similar to the respective functions in SDCCglue.c,
5108         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
5109         way, emitting hex bytes,
5110         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
5111
5112 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5113
5114         * src/avr/ralloc.c (serialRegAssign),
5115         * src/xa51/ralloc.c (serialRegAssign),
5116         * src/pic/ralloc.c (serialRegAssign),
5117         * src/pic16/ralloc.c (serialRegAssign),
5118         * src/hc08/ralloc.c (serialRegAssign),
5119         * src/z80/ralloc.c (serialRegAssign),
5120         * src/ds390/ralloc.c (serialRegAssign),
5121         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
5122
5123 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5124
5125         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
5126         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
5127
5128 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
5129
5130         Cumulative patch for pic16 port:
5131         * src/pic16/device.h (typedef PIC16_device) modified fields for
5132         defining microcontrollers,
5133         * src/pic16/device.c: added new info for all devices in Pics16 array,
5134         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
5135         to be optimised out by the pCode optimiser,
5136         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
5137         specially, bug reported by G.M. Gallant,
5138         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
5139         as force'd so that cannot be optimised out by pCode optimiser,
5140         * src/pic16/pcode.c,
5141         * src/pic16/pcodepeeph.c,
5142         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
5143         they are disabled by default, but can be enabled explicit with
5144         command argument --denable-peeps, for testing,
5145         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
5146         --pomit-ivt in COMPILE_FLAGS
5147
5148 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5149
5150         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
5151           compilation on MSVC
5152
5153 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5154
5155         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
5156
5157 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5158
5159         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
5160         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
5161
5162 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
5163
5164         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
5165         would only assign 0x300001 register.
5166
5167 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
5168
5169         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
5170         in COMPILE_FLAGS. Thanks to G. Gallant for report.
5171
5172 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5173
5174         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
5175         for ds80c400
5176         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
5177         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
5178         added peephole 254 (left shift), 255 (jump table)
5179
5180 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
5181
5182         * device/lib/Makefile.in: removed comment line with model-pic16,
5183         * (target port-specific-objects-pic16): the libraries and objects
5184         are copied to the build directory form the device/lib/pic16/bin
5185         directory
5186
5187         Cumulative patch concerning pic16 port:
5188         * library directory has been re-organized,
5189         * added support for PIC18F1220,
5190         * added headers and library sources for chips 18f1220,18f6520,
5191         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
5192
5193         * configuration registers setting has changed, now each supported
5194         device has a complete description of the registers it uses,
5195         * all initialisations are moved to idata sections, these section
5196         can be absolute or relocatable,
5197         * fixed initialisation of codespace variables,
5198         * fixed warning about PCLATU and gpsim,
5199         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
5200         * (genAssign): use table reads when assigning from variables in codespace,
5201         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
5202         char/int variables placed in codespace,
5203         * (pic16_emitConfigRegs): NEW, emits a list with configuration
5204         registers set in .asm file, no need for --pomit-config-words anymore,
5205         * (pic16glue): some 8051 legacy segments are commented out
5206         (to be removed completely),
5207         * added support for alternative assembler and linker with --asm=
5208         and --link= command line arguments,
5209         * peepholes are disabled automatically in the port, no need to
5210         specify on command line,
5211         * port supports natively char/int/long multiplication, but converts
5212         all divisions to support functions,
5213         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
5214         to the file set in variable $2,
5215         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
5216         strings in ASCII format and not in hex,
5217         * ralloc.c (serialRegAssign): added a triplet of conditional calls
5218         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
5219         allocate proper register if iCodes aren't temporary,
5220
5221 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
5222
5223         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
5224
5225 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
5226
5227         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
5228         is commented out
5229
5230 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5231
5232         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
5233         computed address is reused
5234         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
5235         multi-byte bitfields
5236
5237 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5238
5239         * src/z80/gen.c: (genArrayInit): must check for pointers too
5240
5241 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5242
5243         * support/regression/tests/zeropad.c: never meant to commit the
5244           nestedstruct test: removed, added check for GCC version
5245
5246 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
5247
5248         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
5249         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
5250         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
5251           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
5252           bugs 928906 and 954082 half-empty initializers
5253         * src/SDCCsymt.h,
5254         * src/SDCCsymt.c (getAllocSize): added for above fix
5255         * src/z80/gen.c (genArrayInit): fixed bug 741044
5256         * support/regression/tests/zeropad.c: added tests
5257
5258 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
5259
5260         * src/pic16/device.c (pic16_dump_section): corrected bug which
5261         caused some symbols of the libraries to be misplaced
5262
5263 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
5264
5265         * src/pic16/glue.c,
5266         * src/pic16/ralloc.h,
5267         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
5268         to fix conflict with pic port
5269
5270 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
5271
5272         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
5273         externs configuration variables,
5274         * src/pic16/ralloc.h,
5275         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
5276         prototype in header, commented out some debug messages
5277
5278 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
5279
5280         * src/pic16/glue.c,
5281         * src/pic16/main.c,
5282         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
5283         for gpasm COFF object generation. Thanks to D. Hawkins for
5284         his patch info
5285
5286 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5287
5288         * src/ds390/main.c,
5289         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
5290         Brock for spotting this)
5291         * src/ds390/gen.c (genEndFunction),
5292         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
5293         interrupt handler and critical. Disable push/pop optimizations when
5294         peephole optimizations disabled.
5295
5296 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
5297
5298         Updated pic16 library sources and headers.
5299         * device/lib/pic16/pic18f*/ ,
5300         * device/include/pic16/*.h: modified to handle structured SFR
5301         definitions
5302
5303 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
5304
5305         * src/port.h (PORT structure): added hook initPaths, now each
5306         port can declare its own default search paths,
5307         which can been seen with the --print-search-dirs option,
5308         see pic16 port for example,
5309         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
5310         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
5311         * (doPrintSearchDirs): NEW, replaces in a central manner the
5312         printing of search dirs which was split in set*Paths functions,
5313         * (main): added call to port->initPaths and doPrintSearchDirs,
5314         * src/avr/main.c,
5315         * src/ds390/main.c,
5316         * src/hc08/main.c,
5317         * src/izt/i186.c,
5318         * src/izt/tlcs900h.c,
5319         * src/mcs51/main.c,
5320         * src/pic/main.c,
5321         * src/pic16/main.c: modified port structures to reflect addition of
5322         initPaths hook,
5323
5324         * src/pic16/device.c (regCompare): registers are finally sorted by name,
5325         * (pic16_dump_section): for registers in same address reserve memory once,
5326         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
5327         to no_banksel,
5328         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
5329         result is greater in size than right or left,
5330         * (pic16_genUMult8X8_8): there are some cases where the result can
5331         be 16 bits size, so handle these,
5332         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
5333         * (pic16_outBitC): modified to emit pcodes,
5334         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
5335         or not,
5336         * (genDivOneByte): implemented algorithm to divide 8-bits,
5337         * (genCmp): uncommented goto, but issues still exist,
5338         * (genAnd): fixed a bug with variables >8bits,
5339         * (genPackBits): optimization added that uses BCF/BSF to change a
5340         single bit,
5341         * (genAssign): fixed bug when assigning floating point literals,
5342         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
5343         __sdcc_gsinit_startup label,
5344         * src/pic16/main.c (_pic16_init): removed search directory
5345         initialisations,
5346         * (_pic16_initPaths): NEW, used to initialise search directories,
5347         * (_hasNativeMulFor): support functions for all except char/int
5348         multiplication, and char division,
5349         * (PIC16_port struct): modified entry for native mul support,
5350         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
5351         no_banksel option,
5352         * (buildCallTree): call to register_usage is ifdef'ed out,
5353
5354 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5355
5356         * device/include/string.h: applied Stas Sergeev's patch to make this
5357         header file compatible with the preprocessor -Wundef option
5358         * src/SDCCmain.c (main): abort compilation if preprocessor reports
5359         failure (fixes bug #941458)
5360
5361 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5362
5363         * src/SDCCopt.c (killDeadCode): fixed bug #907733
5364         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
5365         that the variable, not the function, should be static
5366         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
5367         to be consistent with non-literal case
5368
5369 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5370
5371         * src/SDCCast.c (isConformingBody): fixed bug #949967
5372         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
5373         convilong): fixed bug #952086
5374
5375 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5376
5377         * src/SDCCmem.c (allocVariables): fixed bug #955321
5378
5379 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5380
5381         * src/hc08/main.c (_hc08_genAssemblerEnd),
5382         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
5383         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
5384         completely eliminated the use of a temporary file
5385         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
5386         when more than one file linked
5387         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
5388
5389 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5390
5391         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
5392         which fixes bug #543481
5393         * support/regression/tests/bug-751703.c: fixed comments left from a
5394         cut and paste error
5395         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
5396         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
5397         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
5398         scopes
5399         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
5400         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
5401         are now changed to underscores in moduleName
5402
5403 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5404
5405         * as/mcs51/lkmem.c: better fix for bug #954173
5406
5407 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
5408         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5409
5410         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
5411         * device/include/c8051f000.h,
5412         * device/include/c8051f120.h,
5413         * device/include/c8051f300.h,
5414         * device/include/c8051f310.h,
5415         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
5416         PWM16) and detab'ed
5417
5418 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5419
5420         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
5421         and mailing lists, doc'ed --no-peep-comments, removed reference
5422         to knoppix (newest version has no LyX/LaTeX), other minor changes
5423         * src/SDCCglue.c (glue): save 2 bytes stack space with
5424         option --main-return. The ljmp could probably be avoided too
5425
5426 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5427
5428         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
5429
5430 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5431
5432         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
5433         * src/SDCCopt.c (isLocalWithoutDef),
5434         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
5435         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
5436         (credit to Maarten Brock for patch #949363, on which this is based)
5437         * support/regression/tests/bug-751703.c: some test cases of extern used
5438         within inner scopes.
5439
5440 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5441
5442         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
5443         SPEC_STRUCT
5444         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
5445         struct definitions
5446         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
5447         dwWriteLabel): fix to create valid debugger symbols even when
5448         the module name has non-alphanumeric symbols in it
5449         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
5450         when a variable's allocation has been optimized away
5451
5452
5453 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5454
5455         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
5456         * src/hc08/main.c,
5457         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
5458         * src/mcs51/main.c,
5459         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
5460         * src/ds390/main.c,
5461         * src/z80/gen.c (z80_emitDebuggerSymbol),
5462         * src/z80/main.c,
5463         * src/pic/gen.c (pic14_emitDebuggerSymbol),
5464         * src/pic/main.c,
5465         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
5466         * src/pic16/main.c,
5467         * src/avr/gen.c (avr_emitDebuggerSymbol),
5468         * src/avr/main.c,
5469         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
5470         * src/xa51/main.c,
5471         * src/SDCCdebug.c (emitDebuggerSymbol),
5472         * src/SDCCdebug.h,
5473         * src/port.h: added a debugger struct to the port struct. Added a
5474         callback for defining debugger symbols
5475
5476         * src/SDCCast.c (createLabel),
5477         * src/SDCC.y (labeled_statement): mark all compiler generated labels
5478         with isitmp = 1
5479         * src/SDCCicode.h,
5480         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
5481         iCode back to the ast for the function
5482
5483         * src/hc08/ralloc.c (hc08_assignRegisters),
5484         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
5485         unneeded fields from the regs struct.
5486         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
5487         pushReg() & pullReg() functions instead of emitcode()
5488
5489         * src/hc08/gen.c (genLabel, genhc08Code),
5490         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
5491
5492         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
5493         debugger hooks
5494
5495         * src/hc08/gen.c (genEndFunction, genhc08Code),
5496         * src/hc08/gen.h,
5497         * src/mcs51/gen.c (genEndFunction, gen51Code),
5498         * src/mcs51/gen.h,
5499         * src/ds390/gen.c (genEndFunction, gen390Code),
5500         * src/ds390/gen.h,
5501         * src/z80/gen.c (genEndFunction, genZ80Code),
5502         * src/z80/gen.h,
5503         * src/z80/z80.h,
5504         * src/pic/gen.c (genEndFunction, genpic14Code),
5505         * src/pic/gen.h,
5506         * src/pic16/gen.c (genEndFunction, genpic16Code),
5507         * src/pic16/gen.h,
5508         * src/avr/gen.c (genEndFunction, genAVRCode),
5509         * src/avr/gen.h,
5510         * src/xa51/gen.c (genEndFunction, genXA51Code),
5511         * src/xa51/gen.h,
5512         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
5513         specific code to cdbFile.c and out of the backend code generators
5514
5515         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
5516         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
5517         starting address is now 0
5518
5519         * as/hc08/asm.h,
5520         * as/hc08/m08pst.c,
5521         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
5522         assembler directive for DWARF support
5523         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
5524
5525         * src/src.dsp,
5526         * src/Makefile.in,
5527         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
5528
5529 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5530
5531         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
5532         and inappropriate peephole optimization in jump tables
5533
5534 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5535
5536         * as/hc08/m08pst.c,
5537         * src/SDCCglue.c: sdccopt works for the hc08 port now
5538
5539 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
5540
5541         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
5542
5543 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5544
5545         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
5546
5547 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5548
5549         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
5550         rules
5551         * src/SDCCmain.c,
5552         * src/SDCCglobl.h,
5553         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
5554         comments from the peephole optimizer replacement rules
5555         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
5556         symbols
5557         * src/SDCCcse.c (updateSpillLocation),
5558         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
5559         equivalents
5560         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
5561         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
5562         objects far pointers
5563
5564 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5565
5566         * src/SDCCsymt.h: a missing part of my last change
5567         * src/pic/ralloc.c (regTypeNum),
5568         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
5569
5570 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5571
5572         * src/SDCCicode.h,
5573         * src/SDCCicode.c (aggrToPtrDclType),
5574         * src/SDCCptropt.h,
5575         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
5576         ptrPseudoSymConvert),
5577         * src/pic/ralloc.c (regTypeNum),
5578         * src/pic16/ralloc.c (regTypeNum),
5579         * src/hc08/ralloc.c (regTypeNum),
5580         * src/ds390/ralloc.c (regTypeNum),
5581         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
5582         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
5583
5584 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5585
5586         * link/z80/lkmain.c (afile),
5587         * as/hc08/lkmain.c (afile),
5588         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
5589         prevent a pointer problem when a filename has no directory and
5590         no extension specified.
5591
5592 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5593
5594         * link/z80/lkmain.c (afile): allow periods in directory names
5595         * link/z80/lkmain.c (afile),
5596         * as/mcs51/lkmain.c (afile),
5597         * as/hc08/lkmain.c (afile): allow linker script file to have an
5598         extension other than ".lnk"
5599         * link/z80/lklex.c (getfid),
5600         * link/z80/lkmain.c (parse),
5601         * as/mcs51/lklex.c (getfid),
5602         * as/mcs51/lkmain.c (parse),
5603         * as/hc08/lklex.c (getfid),
5604         * as/hc08/lkmain.c (parse): Support comments in the linker script
5605         file on lines by themselves and after filenames
5606
5607 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5608
5609         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
5610
5611 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5612
5613         * src/z80/peeph-z80.def: removed some peephole rules that don't
5614         work with multibyte arithmetic (fixed bug #937126)
5615         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
5616         to registers and not global variables
5617         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
5618         geniCodePreInc, geniCodePostDec, geniCodePreDec,
5619         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
5620         checking for assignments not internally generated (fixed bug #931895)
5621         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
5622         structure member (fixed bug #930072)
5623
5624 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5625
5626         * src/SDCCmain.c (linkEdit),
5627         * src/hc08/main.c (_hc08_parseOptions),
5628         * as/hc08/Makefile.in,
5629         * as/hc08/aslink.h,
5630         * as/hc08/asm.h,
5631         * as/hc08/m08pst.c,
5632         * as/hc08/lkrloc.c (relr, rele),
5633         * as/hc08/lkarea.c (lnkarea)
5634         * as/hc08/lkmain.c (afile, parse),
5635         * as/hc08/lkelf.c: support for ELF output
5636         * as/hc08/lks19.c (s19),
5637         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
5638
5639 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5640
5641         * as/mcs51/lkihx.c: Fixed bug #899105.
5642
5643 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5644
5645         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
5646         .dsp files from Unix to DOS.
5647
5648 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5649
5650         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
5651         function pointers; we have been compliant for several months now.
5652         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
5653         change that was accidently commented out
5654         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
5655         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
5656         bug #922319
5657
5658 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5659
5660         * src/hc08/gen.c: output of all of the internal debugging information
5661         is now controlled by the D() macro; it is disabled by default
5662
5663 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5664
5665         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
5666         harder to keep the same registers during a CAST iCode
5667         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
5668         long via int can be done in a single cast, if the signedness is
5669         correct.
5670         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
5671         putchar() in tinibios.c in ds390's library
5672
5673 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
5674
5675         * src/SDCCast.c (decorateType): fixed bug #898889,
5676         cast result of a literal complement too
5677         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
5678         fixed check for bitfields
5679
5680 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
5681
5682         * src/SDCCicode.c (geniCodeLogic): made it static,
5683         (geniCodeLogicAndOr): added in order to fix bug #905492,
5684         (ast2iCode): fixed bug #905492
5685         * support/regression/tests/bug-905492.c: added
5686         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
5687         (processParms): fixed bug #927659: don't copy parms, this will clear
5688         decorated flag
5689         * support/regression/tests/bug-927659.c: added
5690
5691 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
5692
5693         * src/SDCCast.c (addCast): don't cast float to char
5694         * device/lib/libsdcc.lib: added _memmove
5695
5696 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
5697
5698         * device/lib/large/Makefile: fixed parallel execution by
5699         replacing `make` by `$(MAKE)`
5700
5701 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5702
5703         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
5704         offsets (fixes bug #923936)
5705
5706 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
5707
5708         * device/lib/small/Makefile: fixed parallel execution by
5709         replacing `make` by `$(MAKE)`
5710
5711 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
5712
5713         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
5714
5715 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
5716
5717         * src/pic/gen.c (genCpl): multi-byte complements were not working.
5718         * src/regression/Makefile: Regression test was not running.
5719
5720 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
5721
5722         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
5723         complement if possible
5724         * src/SDCCval.c (valComplement),
5725         * src/SDCCicode.c (operandOperation): fixed complement of literal
5726         * support/regression/tests/onebyte.c (testComplement): added
5727
5728 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
5729
5730         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
5731         return an optimized tree; actually replace actParm with the new tree
5732         * src/SDCCast.h: added some parantheses to remove side effects
5733         * support/regression/tests/bug-920866.c
5734
5735 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
5736         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
5737         Bit operands were not being handled properly in the pic14 port.
5738         (now src/regression/add.c passes again).
5739
5740 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5741
5742         * src/SDCC.y (labeled_statement): case and default no longer require
5743         a following statement (RFE #893037)
5744
5745 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5746
5747         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
5748         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
5749         disabled (fixes bug #916294)
5750         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
5751         "mov a,acc"; patch provided by Lenny Story
5752         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
5753
5754 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5755
5756         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
5757         functions
5758         * src/ds390/gen.c (genFunction, genEndFunction),
5759         * src/ds390/ralloc.c (ds390_assignRegisters),
5760         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
5761         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
5762         pushed if there are parameters passed on the stack. Also, a cleaner
5763         way to decide if r0/r1 should be pushed/popped. (Together they fix
5764         bug #918693)
5765
5766 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5767
5768         * doc/sdccman.lyx,
5769         * device/lib/mcs51/crtpagesfr.asm,
5770         * device/lib/mcs51/crtxinit.asm,
5771         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
5772         to avoid confusion with Si Lab's SFRPAGE register.
5773
5774 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5775
5776         * src/SDCCglue.c (emitMaps): allow public sfr variables
5777         * src/SDCCglue.c (initialComments): include compiler build date
5778         with compiler version and put the timestamp of the generated
5779         assembly file on a serperate line to be less confusing.
5780         * src/port.h: added genInitStartup hook
5781         * src/avr/main.c,
5782         * src/ds390/main.c,
5783         * src/hc08/main.c,
5784         * src/pic/main.c,
5785         * src/pic16/main.c,
5786         * src/xa51/main.c,
5787         * src/z80/main.c: genInitStartup initialize as NULL (default to
5788         historical behaviour)
5789         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
5790         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
5791         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
5792         library instead of hard coding it into the compiler.
5793         * support/regression/ports/mcs51-stack-auto/spec.mk,
5794         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
5795         * device/lib/mcs51/Makefile,
5796         * device/lib/small/Makefile,
5797         * device/lib/large/Makefile,
5798         * device/lib/mcs51/crtpagesfr.asm,
5799         * device/lib/mcs51/crtstart.asm,
5800         * device/lib/mcs51/crtxclear.asm,
5801         * device/lib/mcs51/crtxinit.asm,
5802         * device/lib/mcs51/crtclear.asm,
5803         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
5804         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
5805         and into user configurable files.
5806         * device/lib/clean.mk: clean mcs51 directory too
5807         * support/regression/tests/longlit.c: added static to T1 declaration
5808         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
5809         accesses in the initialization code
5810
5811 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5812
5813         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
5814         OSCTRIMVAL as noted in bug #916008
5815
5816 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5817
5818         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
5819         in loops with multiple exits (reported as incorrect registers
5820         used by Martin Helmling in Sdcc-user list)
5821
5822 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5823
5824         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
5825         made ds390 register extensions look less like error messages
5826
5827 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5828
5829         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
5830         reported by Adam Wozniak in Sdcc-user list
5831
5832 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
5833
5834         * src/SDCCast.c (decorateType): fixed with bug and promotion in
5835         arithmetic optimizations, added debug output
5836
5837 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
5838
5839         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
5840         * sdcc.spec: updated and split sdcc into 3 rpms
5841         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
5842         needed for literals of LEFT_OP and '+'
5843         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
5844         introduced RESULT_TYPE_NOPROM
5845         (geniCodeMultiply): fixed logic for decision if mul is optimized to
5846         left shift
5847         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
5848         limited promotion to int only for '*'
5849         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
5850
5851 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
5852
5853         * src/pic16/gen.c (genSkip),
5854         (genc16bit2lit), (gencjneshort): commented out
5855         (is_LitOp): new helper function, checks operand type
5856         (genCmpEq): rewritten
5857
5858 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
5859
5860         * support/regression/tests/bug-908454.c: added
5861
5862 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
5863
5864         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
5865         * src/SDCCicode.c (usualBinaryConversions): op needs int type
5866         (geniCodeCast): cosmetic, don't preserve bit storage class
5867         (geniCodeLeftShift): added promotion
5868         (geniCodeLogic): fixed regression
5869         * src/SDCCsymt.c (computeTypeOr): accept bits too
5870         (compareType): 2nd part of fix for bug #908454, needed for bitfields
5871
5872 2004-03-07  Borut Razem <borut.razem AT siol.net>
5873
5874         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
5875
5876 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
5877
5878         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
5879         version of pic16_genPackRegisters which does not check if ic is a
5880         CAST operator,
5881         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
5882         function cause string1.c regression test fails
5883
5884 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
5885
5886         * sim/ucsim/configure.in,
5887         * sim/ucsim/configure,
5888         * sim/ucsim/doc/Makefile.in: use docdir
5889         * src/SDCC.y: fixed sbit atrributes
5890         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
5891         * src/SDCCast.c (decorateType): |^& need special promotion handling
5892         * src/SDCCast.h,
5893         * src/SDCCsymt.h: moved definition of RESULT_TYPE
5894         * src/SDCCsymt.h (computeType),
5895         * src/SDCCicode.c: computeType() needs op
5896         * src/SDCCsymt.c (checkTypeSanity),
5897         * doc/sddman.lyx: "plain" bitfields are unsigned
5898         * src/SDCCsymt.c (computeTypeOr): added
5899         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
5900         |^& ops
5901         * src/SDCCval.c (val*): computeType() needs op
5902         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
5903         * support/regression/tests/onebyte.c: added tests for |^&
5904
5905 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
5906
5907         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
5908         for writing icode into asm output.
5909
5910 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
5911
5912         * src/pic16/device.c: added some debug lines enabled
5913         with macro DEBUG_CHECK,
5914         * src/pic16/genarith.c: more debug in genPlus,
5915         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
5916         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
5917         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
5918         * (aopForSym): onStack symbols are re-placed in data memspace,
5919         and onStack flag is cleared,
5920         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
5921         copy temporary pcodeop,
5922         * (genPcall): added warning for not updating PCLATU,
5923         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
5924         always true for pic16 port,
5925         * (genMultOneWord): NEW, supports integer multiplication,
5926         * (genMult): modified to call genMultOneWord,
5927         * (ifxForOp): added warning when return NULL,
5928         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
5929         flag is set before call to operandFromSymbol for implicit
5930         added structures,
5931         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
5932         options.intlong_rent are set by default,
5933         * (_hasNativeMulFor): modified to allow port generation of integer
5934         multiplication,
5935         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
5936         set regtype to REG_SFR for all registers, restricting seting the
5937         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
5938
5939 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5940
5941         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
5942         more than 500 times in the regression tests
5943
5944 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5945
5946         * support/Util/SDCCerr.h,
5947         * support/Util/SDCCerr.c,
5948         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5949         enumerator_list),
5950         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
5951         for symbol conflicts.
5952         * support/valdiags/tests/enum.c,
5953         * support/valdiags/tests/tentdecl.c,
5954         * support/valdiags/tests/struct.c: expect possible error messages
5955         referring to original symbol definitions.
5956         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
5957         * src/SDCCsymt.h,
5958         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
5959
5960 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
5961
5962         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
5963
5964 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
5965
5966         * src/pic16/ralloc.c (newReg): fixed bug #908929
5967
5968 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5969
5970         * src/ds390/gen.c: added missing #include "main.h"
5971
5972 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
5973
5974         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
5975         checking if symbol is already in set,
5976         * src/pic16/device.h: prototype for checkAddSym,
5977         * src/pic16/gen.c: (_G): added entry interruptvector,
5978         * (assignResultValue): removed some commented out lines,
5979         * (genFunction): check for ISR via sym->type, absolute section for
5980         interrupt code is created via a new pBlock, the goto instruction is
5981         placed now correctly at the interrupt vector position, changed all
5982         references from ivec to _G.interruptvector,
5983         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
5984         is the interrupt is a high priority one, same for return from ISR,
5985         * src/pic16/glue.c: changed all calls of addSetHead for publics and
5986         externs to calls of checkAddSym,
5987         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
5988         pic16_pcode_verbose flag is set,
5989         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
5990         * src/pic16/pcoderegs.c: message about how many registers are saved
5991         will only be emitted if pic16_pcode_verbose flag is set,
5992
5993 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5994
5995         * src/ds390/ralloc.h,
5996         * src/ds390/ralloc.c (ds390_regWithIdx),
5997         * src/ds390/gen.c (emitcode),
5998         * src/ds390/main.h,
5999         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
6000         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6001         ds390operandCompare, getRegsRead, getRegsWritten,
6002         initializeAsmLineNode): customized instruction size calculation for
6003         ds390, started basis for some register optimizations
6004         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
6005         corresponding assembly output
6006         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
6007         missing push/pop of r0/r1. Optimized push/pops
6008
6009 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6010
6011         * src/mcs51/main.c (instructionSize): fixed ACALL size
6012         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
6013
6014 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
6015
6016         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
6017         the sorting of rlist with NULL elements
6018         * (print_idataType, print_idata): NEW to create idata sections
6019         * src/pic16/device.h: idataSymSet new variable
6020         * src/pic16/gen.c (genFunction): fixed some bugs in string
6021         comparing, improved the absolute section creation for ISRs,
6022         added FSR0L/FSR0H in registers that are saved in an ISR,
6023         * (genInline): fixed the processing of inline snippets,
6024         now they undergo no process by the peephole optimizer
6025         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
6026         are placed in idataSymSet,
6027         * (pic16emitStaticSeg): extern symbols are added in externs,
6028         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
6029         switching when aboslute variables are placed in access bank memory
6030         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
6031         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
6032         commented out with #if,
6033         * (pic16_packRegisters): reintroduce the check for CAST because some
6034         symbols are not correctly handled,
6035         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
6036         pCodeInstruction instead of pCode,
6037         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
6038         pCodeAsmDir definition,
6039         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
6040         directive, then the argument directive is emitted without the leading
6041         tab, hack for inline labels which must be in the first column,
6042         * (compareLabel,pic16_findNextInstruction),
6043         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
6044         * (insertBankSwitch): modified for the new pCodeAsmDir,
6045
6046 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6047         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
6048
6049         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
6050         instance,
6051         * (pushSide): commented out with #if,
6052         * (assignResultValue): fixed some typos in saving
6053         registers,
6054         * (genPcall): FIXED and sync'ed with genCall,
6055         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
6056         * (genNearPointerGet): fixed to handle some more cases,
6057         implementation scheme via table reads,
6058         * (genConstPointerGet): modified to access code memory correct,
6059         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
6060         and improved to handle some cases
6061         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
6062         instead of "RETLW" for init data
6063         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
6064         not IN_DIRSPACE, work around to reduce bank switching when aboslute
6065         variables are placed in access bank memory (<0x80 and >=0xf80),
6066         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
6067         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
6068         TBLWT_POSTDEC,TBLWT_PREINC
6069         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
6070         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
6071         directives
6072         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
6073         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
6074         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
6075         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
6076
6077 2004-02-29  Borut Razem <borut.razem AT siol.net>
6078
6079         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
6080         support/Util/findme.h, support/Util/system.h: enhance binary relative
6081         search for lib and include by using findProgramPath()
6082
6083 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6084
6085         * src/SDCCpeeph.h,
6086         * src/SDCCpeeph.c (pcDistance),
6087         * src/port.h,
6088         * src/mcs51/ralloc.h,
6089         * src/mcs51/ralloc.c (mcs51_regWithIdx),
6090         * src/mcs51/main.h,
6091         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
6092         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6093         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
6094         size calculation port specific, started basis for some register
6095         optimizations
6096         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
6097         missing push/pop of r0/r1. Optimized push/pops
6098         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
6099         * device/lib/_modsint.c (_modsint),
6100         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
6101         and stack version so regression tests pass
6102
6103 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
6104
6105         * src/Makefile.in (dep): include SLIBOBJS in dependency check
6106         * src/SDCCast.c (decorateType): catch another small optimization
6107         with '?' operator
6108         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
6109         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
6110         modified to finally use computeType() all over SDCC,
6111         see Feature Request #877103
6112         * src/SDCCval.h: cosmetic
6113         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
6114         valCompare(); regression tested in muldiv.c
6115         * support/regression/tests/muldiv.c (testMod): mod sign follows
6116         dividend only
6117
6118 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
6119
6120         * src/SDCCast.c (decorateType): fixed bug #902362
6121         * doc/INSTALL.txt: fixed install instructions for win32
6122
6123 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
6124
6125         * device/include/Makefile.in (install): fixed by replacing spaces
6126         by tabs
6127         * doc/README.txt,
6128         * doc/INSTALL.txt: updated for release
6129         * doc/sdccman.lyx: added warning for --xstack being buggy
6130
6131 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
6132
6133         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
6134         to eliminate build warnings.
6135         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
6136
6137 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
6138            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6139
6140         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
6141         removed -penable-stack, added comment for stack pragma, added
6142         warning for not initializing the stack/frame registers, removed
6143         comment at interrupts section
6144
6145         Stack is made permanent, there is no ability to disable stack usage.
6146         * src/pic16/device.h,
6147         * src/pic16/device.c: removed all references to USE_STACK macro,
6148         * src/pic16/device.c (pic16_dump_section): when no elements in
6149         rlist, free rlist before return,
6150         * (pic16_dump_int_registers): NEW, internal registers are a new set
6151         of general purpose registers reused by each function,
6152         * (checkAddReg): returns 1 if registers is added to set,
6153         * (pic16_groupRegistersInSection): when a registers is of type
6154         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
6155         * src/pic16/device.h: memRange and Assigned Memory are deleted,
6156         SRCASECMP macro is moved here from device.c
6157         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
6158         PO_PCLATU, PO_PRODL, PO_PRODH,
6159         * (pic16_pCodeOpType, genMinus,
6160         changed compares to "a" register, with AOP_ACC,
6161         * (pic16_genPlus): fixed some bugs and indented properly,
6162         * (pic16_addSign): changed size to size+offset in the MOVWF
6163         instruction,
6164         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
6165         multiply 8-bit operand by literal, result is 8-bit,
6166         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
6167         multiply 2 8-bit operand, result is 8-bit,
6168         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
6169         genUMult8X*_16,
6170         * src/pic16/gen.c: changed accUse to contain WREG only,
6171         * (pic16_emitcomment): renamed to pic16_emitpcomment,
6172         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
6173         true, do not use immediate addressing any more unless sym is a
6174         pointer in codespace,
6175         * (aopForRemat): do not use immediate addressing when symbol not in
6176         codespace and when symbol's address is requested,
6177         * (aopOp): for-loop in if(sym->accUse) is modified for the new
6178         accUse size (= 1),
6179         * (aopGet): added case for AOP_ACC and don't return "accumulator
6180         bug" but WREG instead,
6181         * (popGetTempReg): pushes contents of temporary register in stack,
6182         * (popReleaseTempReg): pops contents of temporary register from
6183         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
6184         * (pic16_popGet): separated case AOP_ACC to return register WREG
6185         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
6186         or PO_IMMEDIATE and initializes their instance/offset appropriately,
6187         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
6188         the use of immediate pointers to certain cases only.
6189
6190         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
6191         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
6192         * (assignResultValue, genCall, genRet): modified to use the new
6193         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
6194         genPcall is still broken,
6195         * (genFunction): added code to create 'A' type pBlocks when
6196         interrupt functions are generated, code not extensively tested yet,
6197         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
6198         * (genEndFunction): modified so ISRs pop stored registers from stack,
6199         * (genMultOneByte): cleanup,
6200         * (AccRsh): added flag andmask, to and result with appropriate mask,
6201         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
6202         * (genDataPointerGet): fixed and reenabled its use,
6203         * (genNearDataPointerGet): bugs fixed,
6204         * (genDataPointerSet): bugs fixed,
6205         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
6206         pic16_DumpSymbol, pic16_DumpOp,
6207         * src/pic16/genutils.h: function prototypes for the above functions,
6208         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
6209         pointers,
6210         * (pic16emitRegularMap): many many many improvements, but needs a
6211         major cleanup,
6212         * src/pic16/main.c: enable_stack in pic16_options is removed,
6213         * (_pic16_parseOptions): removed command line options -penable-stack,
6214         * (_process_pragma): emit stack symbol only when stack pragma is
6215         processed,
6216         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
6217         redirected to FSR0L/FSR0H pair,
6218         * (pic16_get_op, pic16_get_op2): modifications and improvements,
6219         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
6220         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
6221         for immediates,
6222         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
6223         * (dumpPicOptype): NEW,
6224         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
6225         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
6226         with movff instruction,
6227         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
6228         added pic16_int_regs, some packRegsFor* functions are commented out,
6229         because produce errors,
6230         * src/pic16/NOTES: minor modifications
6231
6232 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6233
6234         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
6235         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
6236         --pack-iram.
6237         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
6238         * as/mcs51/lkaomf51.c: fixed bug #895763
6239
6240 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
6241
6242         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
6243
6244 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6245
6246         * doc/sdccman.lyx: added details about the HC08 storage classes and
6247         interrupts, fixed the register usage info for z80 & gbz80
6248
6249 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
6250
6251         * doc/sdccman.lyx: added more pic16 port documentation
6252         * device/include/pic16/: added header pic18fregs.h
6253
6254 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
6255
6256         * doc/sdccman.lyx: added Vangelis' contribution
6257
6258 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6259
6260         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
6261         extend to the next CALL or PCALL, not just to the next CALL.
6262
6263 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
6264
6265         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
6266
6267 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6268
6269         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
6270         bug #895752 and a better fix for bug #716790
6271
6272 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6273
6274         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
6275
6276 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6277
6278         * doc/sdccman.lyx: minor changes, minor changed
6279
6280 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
6281
6282         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
6283         which can't handle SDCC_NEWONEBYTEOPS,
6284         (geniCodeMultiply): removed conversion from mult to shift for pic14
6285         and pic16
6286
6287 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6288
6289         * src/hc08/gen.h,
6290         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
6291         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
6292         thus fixing bug #895406
6293
6294 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
6295
6296         * device/lib/_modsint.c,
6297         * device/lib/_modslong.c: sign follows divisor only
6298         * src/hc08/gen.c (genMultOneByte): if result size is 1,
6299         signs or signedness can be ignored
6300         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
6301         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
6302         added optimization for IFX,
6303         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
6304         arguments;
6305         reenabled optimization for IFX, which was removed on 2004-01-11
6306         * src/SDCCast.h: added return type IFX
6307         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
6308         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
6309         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
6310         SDCC_OLDONEBYTEOPS selects the old behaviour
6311         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
6312         changed again and commented promotion rule
6313         * src/SDCCval.c (valDiv): promotion no longer necessary
6314         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
6315         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
6316         rewritten
6317         * support/regression/tests/onebyte.c: added
6318
6319 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
6320
6321         * gen.c (genInline): reverted to old code for assemnling inline
6322         code because of bug reported James Chadd
6323
6324 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
6325
6326         * ralloc.h: missing declarations from previous patch,
6327         seems that patch for ralloc.h was never applied, fixed
6328
6329 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6330            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6331
6332         * pcode.c,
6333         * pcode.h,
6334         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
6335         indirect addressing. Marked FSR0 as deprecated
6336         * gen.c (pointerCode): commented out, not needed now
6337         (pic16_popGet2p): new MOVFF helper function
6338         (genGenPointerGet),
6339         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
6340         (shiftRLong): removed duplicate debugging info
6341
6342 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6343
6344         * src/ds390/gen.c (genNearPointerGet),
6345         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
6346         optimization with bits, but not bitfields.
6347         * src/ds390/ralloc.c (packRegisters),
6348         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
6349
6350 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
6351
6352         * src/SDCCcse.c (algebraicOpts): copy operands before modification
6353
6354 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6355
6356         * src/SDCCsymt.h,
6357         * src/SDCCicode.c (operandFromSymbol),
6358         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
6359         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
6360         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
6361         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
6362         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
6363         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
6364         bug #892038
6365         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
6366         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
6367         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
6368         * src/SDCCsymt.c (newSymbol),
6369         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6370         enumerator_list),
6371         * src/SDCCval.h,
6372         * src/SDCCval.c (newiList): fixed bug #885705
6373
6374 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6375
6376         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
6377         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
6378
6379 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6380
6381         * device/include/c8051f120.h,
6382         * device/include/c8051f300.h,
6383         * device/include/c8051f310.h: added/updated header files for Silicon
6384         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6385         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
6386         in new section Submitting patches
6387
6388 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6389
6390         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
6391         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6392         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6393         genGenPointerSet),
6394         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
6395         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6396         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6397         genGenPointerSet),
6398         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
6399         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6400         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6401         genGenPointerSet),
6402         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
6403         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6404         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6405         genGenPointerSet): fixed bug #892400
6406         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
6407         to eliminate build warnings.
6408         * src/SDCCast.c (processParms),
6409         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
6410         fixed bug 751859
6411         * support/valdiag/valdiag.py: added GCC to the list of defines active
6412         when compiling with gcc
6413
6414 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6415
6416         * support/Util/SDCCerr.h,
6417         * support/Util/SDCCerr.c,
6418         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
6419         with an incomplete type (fixed bug #883734)
6420         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
6421
6422 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6423
6424         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
6425
6426 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6427
6428         * src/SDCCast.c (decorateType),
6429         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
6430         function pointer implementation
6431         * support/regression/tests/funptrs.c: added tests to verify both forms
6432         of function pointers work correctly. Added tests to verify parameters
6433         are passed in the correct order.
6434
6435 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
6436
6437         * device.c (regCompare): registers are sorted by ascending
6438         address and increasing size,
6439         * main.c (_pic16_finaliseOptions): removed the declaration
6440         of compiler macro MCU. Now a macro of the format pic18fxxxx
6441         will be defined from the command line
6442
6443 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6444             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6445
6446         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
6447         PCOP_RLCF was overwritten!
6448         * gen.c (genSkip): commented out calls to pic16_emitcode,
6449         * (genCmpEQ): fixed "long" compares, only high word did get compared,
6450         * (genlshTwo),
6451         * (genRRC): added debugging info,
6452         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
6453         overwritten while shifting,
6454         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
6455         overwritten while shifting,
6456         * (AccLsh),
6457         * (AccRsh),
6458         * (shiftLLeftOrResult),
6459         * (shiftRLeftOrResult),
6460         * (shiftRLong),
6461         * (shiftLLong): Implemented with pic16_emitpcode
6462         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
6463         * (genLeftShift): Fixed bug, operand for shift by variable always
6464         was "and"ed with 0x0f,
6465         * (genLeftShiftLiteral),
6466         * (genrshTwo),
6467         * (genRightShiftLiteral): added debugging info,
6468         * (genrshFour): added comment,
6469         * (genRightShift): determined signedness from operand "left"
6470         instead of "result"
6471
6472 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6473
6474         * src/SDCCicode.c (geniCodeParms),
6475         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
6476         function pointers, fixed function pointer bugs #861242 and #861896
6477
6478 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6479
6480         * device/include/c8051f000.h,
6481         * device/include/c8051f120.h,
6482         * device/include/c8051f300.h: added header files for Silicon
6483         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6484
6485 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
6486
6487         * src/SDCCast.c (processParams): added new type flow and restructured
6488         (gatherAutoInit): added new type flow
6489         (addCast): cosmetic changes
6490         (getLeftResultType): added new type flow for array indices, patch
6491         provided by Stas, see FR #877103
6492         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
6493         array index patch by Stas
6494         * src/SDCCast.h: added prototype getResultTypeFromType()
6495         * src/SDCCval.h,
6496         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
6497         * src/pic/glue.c (pic14emitStaticSeg),
6498         * src/pic16/glue.c (pic16emitStaticSeg),
6499         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
6500         for initialization of symbols
6501         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
6502         * support/Util/SDCCerr.h:
6503         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
6504         * .version: bumped version number to 2.3.8
6505         * device/include/Makefile.in (install),
6506         * doc/Makefile (install): changed to 'rm `find ...`' construct to
6507         avoid warnings
6508
6509 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
6510
6511         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
6512         Slade Rich fixed an optimization bug
6513         * src/pic/pcodepeep.c,
6514         * src/pic/pcoderegs.c
6515         * doc/Makefile (install): added test for directory
6516
6517 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6518
6519         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
6520         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
6521         * src/pic/ralloc.c (getRegPtr, getRegGpr),
6522         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
6523         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
6524         * as/mcs51/asexpr.c (term),
6525         * as/hc08/asexpr.c (term): fixed bug #887146
6526
6527 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6528
6529         * src/z80/gen.c (genMult): handle single byte result product
6530         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
6531         DUMMY_READ_VOLATILE (fixed bug #886367)
6532
6533 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6534
6535         * support/regression/tests/libmullong.c: fixed logic, on little endian
6536         hosts we ended without a mullong_wrapper()
6537
6538 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6539
6540         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
6541         virus/worm forged address usage.
6542
6543 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6544
6545         Fixed promotion, it should be done on AST level:
6546         * src/SDCCast.c (addCast): added promotion to int
6547         (decorateType): updated call to upCast()
6548         * src/SDCCicode.c (geniCodeLeftShift): removed call to
6549         usualUnaryConversions()
6550
6551 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
6552
6553         * support/regression/tests/literalop.c (mulWrapper): Added a
6554         wrapper to remove integer overflow warnings.
6555
6556         * support/regression/tests/float_trans.c: Made work on host.
6557
6558         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
6559         location of sz80.
6560
6561         * support/regression/generate-cases.py (main): Changed from inline
6562         to a main method.
6563
6564         * doc/Makefile (install): Changed to depth first to get rid of
6565         missing directory install warning.
6566
6567         * as/Makefile (install-doc): Made work on Mac.
6568
6569 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
6570
6571         * src/SDCCast.c: added an additional type flow in decorateType() of
6572         opposite direction, see feature request #860006; it's enabled at runtime
6573         by setting the environment variable SDCC_NEWTYPEFLOW
6574         * src/SDCCast.h: changed prototype of decorateType()
6575         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
6576         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
6577         'char' to 'int' can be omitted, if both operands are 'unsigned char';
6578         see feature request #877103
6579         * src/SDCCval.c: updated call of decorateType()
6580         (valBitwise): fixed bug #882876
6581         (valMinus): added promotion
6582         (valLogicAndOr): result is unsigned
6583         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
6584         * src/SDCCsymt.c (computeType),
6585         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
6586         must not cause an unsigned operation
6587         * src/pic/glue (pic14emitRegularMap),
6588         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
6589
6590 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
6591
6592         * src/pic/pcode.c (PCodeID): commented out left over debug code
6593
6594 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
6595
6596         * support/valdiag/tests/overflow.c: added shift tests
6597         * src/pic/device.c,
6598         * src/pic/gen.c,
6599         * src/pic/gen.h,
6600         * src/pic/glue.c,
6601         * src/pic/main.c,
6602         * src/pic/pcode.c,
6603         * src/pic/pcode.h,
6604         * src/pic/pcodepeep.c,
6605         * src/pic/pcoderegs.c,
6606         * src/pic/ralloc.c,
6607         * src/pic/ralloc.h: applied patch from Slade Rich;
6608         added support for multiple code pages and multiple RAM banks on the
6609         PIC 14 port. The ASM files now no longer simply assume all the
6610         code / RAM are in the same page / bank. This means the linker can
6611         safely allocate code/RAM of separate ASM files to different pages/banks.
6612         * doc/sdccman.lyx: added Slade's tips
6613         * src/mcs51/peeph.def: fixed bug #880768
6614
6615 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6616
6617         * src/hc08/ralloc.c (rematStr): fixed bug #879282
6618         * src/SDCCast.c (decorateType): fixed bug #880197
6619
6620 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
6621
6622         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
6623         getopt.h.
6624
6625         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
6626         strtof is not part of C89 and isn't included with Mac OS X.
6627
6628 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6629
6630         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
6631         shiftL2Left2Result): fixed bug #879326
6632         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
6633         (genMultOneByte): fixed bug in signed vs unsigned multiplication
6634         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
6635         address fetch for clr instruction
6636         * device/lib/hc08/_mulint.c: created optimized assembly version
6637         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
6638
6639 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
6640
6641         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
6642         proposed in FR #877103
6643
6644 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
6645
6646         * src/SDCCval.c (cheapestVal): added missing checks
6647         * src/SDCCicode.c (usualBinaryConversions): fixed condition
6648         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
6649
6650 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
6651
6652         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
6653         equal operands
6654
6655 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
6656
6657         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
6658         loaded with the linker search paths (-L arguments) and the libraries
6659         to be linked with the current source (-l arguments). Changes
6660         currently will affect only the pic16 port.
6661         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
6662         include path the port specific paths and port specific libraries,
6663         * gplink command now contains the $3 argument,
6664         * src/pic16/device.h,
6665         * src/pic16/device.c,: structure PIC_device is made public and
6666         renamed to PIC16_device, the same for variable Pics which is renamed
6667         to Pics16. Updated all references to them.
6668         * src/pic16/glue.c (pic16glue): corrected bug with code
6669         initialization which bypassed the variable initializations block.
6670
6671         * device/lib/pic16/Makefile.rules: removed --penable-stack from
6672         COMPILE_FLAGS and added the --nostdinc option
6673
6674 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6675
6676         * device/include/mc68hc908jb8.h: Register defs for another member
6677         of the hc08 family. Contributed by Bjorn Bringert - thanks!
6678
6679 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
6680
6681         Documenting changes from previous commits.
6682         * configure.in (version 1.56),
6683         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
6684         when generating output files to configure the pic16 library,
6685         but now I've commented it out, since gputils aren't installed in the
6686         SF compile farm, so library won't compile
6687
6688         * device/lib/Makefile.in (version 1.56): initially I've added in
6689         target 'all' the prerequestive 'model-pic16' so it compiled the
6690         pic16 library, but now I've commented it out for the same reasons
6691         above,
6692         * added targets 'model-pic16' and 'objects-pic16' to compile the
6693         library
6694         * added target 'port-specific-objects-pic16' to handle the
6695         generated libraries and copy them into the build/ directory
6696         * added target 'clean-intermediate-pic16' to clean intermediate
6697         files into pic16 directory
6698         * in target 'installdirs' added line to create directory pic16 in
6699         the installation path
6700
6701         * device/include/Makefile.in (version 1.11): in target 'install'
6702         added lines to copy all header files to installation path,
6703         * in target 'installdirs' added line create directory for pic16
6704         headers in the installation path
6705
6706 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
6707
6708         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
6709          a function call
6710
6711 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
6712
6713         * configure,
6714         * device/lib/configure.in,
6715         * device/lib/configure: fixed for autoconf 2.57
6716
6717 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6718
6719         * src/z80/main.c (_parseOptions): fixed the portmode= command line
6720         option so that it actually works. Made it specific to the z80, since
6721         the gbz80 doesn't have these kinds of I/O ports.
6722
6723 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6724
6725         * device/include/z180.h,
6726         * device/lib/_memcpy.c,
6727         * device/lib/_memmove.c,
6728         * device/lib/_mulint.c,
6729         * device/lib/ser_ir.c,
6730         * device/lib/ser_ir_cts_rts.c,
6731         * device/lib/_strcmp.c,
6732         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
6733         * src/z80/main.c (_process_pragma): add support for pragmas bank and
6734         portmode; added deprecation warning for bank= and protmode= forms.
6735         Also, guard against buffer overflow.
6736         * src/z80/gen.c (aopGet): generate better code for sfr banked read
6737
6738 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6739
6740         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
6741         changed interrupt vector table generation to only emit declared vectors.
6742         * device/include/Makefile.in: added missing backslash
6743         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
6744
6745 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
6746
6747         Mainly changes to support compilation of the device libraries
6748         * src/pic16/device.c: stack is allocated via symbol and not
6749         via literal number. The symbol is placed in the corresponding
6750         position of the data ram
6751         * (pic16_dump_section): relocatable and absolute uninitialized
6752         data are now emitted in sorted order to reduce section naming,
6753         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
6754         weren't marked as being in the access bank,
6755
6756 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
6757
6758         Added portion of GNU PIC Library under the directory
6759         device/include/pic16 and device/lib/pic16. These files
6760         contain the declarations of SFRs for the PIC18Fxx2 devices.
6761         The directory is initialized via configure from toplevel.
6762
6763 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
6764
6765         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
6766         the spilllocations to be compared correctly
6767
6768 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6769
6770         * src/SDCCast.c (decorateType): fixed bug introduced today
6771
6772 2004-01-12  Borut Razem <borut.razem AT siol.net>
6773
6774         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
6775         doc/sdccman.lyx: upper case pragmas are deprecated
6776
6777 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6778
6779         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
6780         in simpler and even better code
6781
6782 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
6783
6784         * src/SDCCicode.c (operandOperation): fixed bug #874819
6785         * src/SDCCast.c (decorateType): fixed
6786         char foo (unsigned long ul) { return ul > 0; }
6787
6788 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6789
6790         * doc/sdccman.lyx: Moved and added some sections, small changes
6791         all over. Telling LaTeX to be less strict with word spacing
6792         to better keep the right margin. Changed some notes about
6793         maintainance of the ports in section 3.2.1 - is it OK like this?
6794
6795 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
6796
6797         SDCC source changes:
6798         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
6799         convilong): modified to inform the pic16 port that builtin functions
6800         are external
6801
6802         PIC16 PORT specific changes:
6803         * src/pic16/device.c pic16_dump_equates() added,
6804         processor registers declared internally by the port are emitted in
6805         the translation as equates,
6806         * src/pic16/gen.c: inline code is passed unprocessed to the
6807         translation,
6808         * (pic16_popGetLit2): fnuction modified to take second operand as
6809         pCodeOp pointer and not as literal,
6810         * (popRegFromIdx): prefixed with pic16_,
6811         * (pic16_popCombine2): modified to receive already allocated pCode
6812         operands,
6813         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
6814         * (genFunction): initializes local stack frame and pushes on stack
6815         all the registers used by this function,
6816         * (genEndFunction): restores all registers from stack and restores
6817         stack frame,
6818         * src/pic16/glue.c (pic16emitRegularMap): various changes and
6819         improvements,
6820         * (pic16glue): changed the program startup sequence,
6821         * added new dbName code 'A' for functions placed in absolute section
6822         * src/pic16/main.c: added function attribute _naked,
6823         * added pragma 'code' to place a fnuction at an absolute address,
6824         * added command line arguments --debug-ralloc and --pcode-verbose,
6825         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
6826         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
6827         * (pic16_newpCodeOpLit2): modified to take the second operand as
6828         pCodeOp pointer,
6829         * (pic16_printpBlock): modified to emit each function in a separate
6830         section,
6831         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
6832         UPPER for immediate operands,
6833         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
6834         instruction,
6835         * src/pic16/peeph.def: all peepholes with movff are commented out,
6836         because there is a problem in the pcode peep optimizer,
6837         * src/pic16/ralloc.c: the register allocator can now reuse local
6838         function symbols for another function. This saves register usage.
6839         * src/pic16/ralloc.h: added flag isLocal in structure regs,
6840
6841         Added file src/pic16/NOTES with information about program writing on
6842         the current port version.
6843
6844 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6845
6846         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
6847         and peephole 252 (array access)
6848
6849 2004-01-09  Borut Razem <borut.razem AT siol.net>
6850
6851         * src/SDCCmain.c : fixed #872250: -l command line defined library
6852           files are scanned before standard library files
6853
6854 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6855
6856         * src/SDCCast.c (decorateType): fixed bug #874046
6857
6858 2004-01-09  Borut Razem <borut.razem AT siol.net>
6859
6860         * support/scripts/sdcc.nsi: remove previous installation
6861
6862 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6863
6864         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
6865         bytes for last interrupt vector (mcs51)
6866         * sdcc.spec: fixed typo
6867
6868 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6869
6870         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
6871         gen51Code): more efficient parameter receive for --model-large
6872         ("bug" #845294)
6873
6874 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6875
6876         * src/ds390/main.c,
6877         * src/z80/main.c: added missed needLinkerScript flags (more than
6878         one port structure defined in these file)
6879         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
6880         bug #795325
6881
6882 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
6883
6884         * src/SDCCmain.c: removed various references to DEFAULT_PORT
6885         * src/port.h: added flag needLinkerScript in port->linker
6886         structure to inform whether to create a .lnk file or not,
6887         * src/avr/main.c,
6888         * src/ds390/main.c,
6889         * src/hc08/main.c,
6890         * src/mcs51/main.c,
6891         * src/pic/main.c,
6892         * src/pic16/main.c,
6893         * src/xa51/main.c,
6894         * src/z80/main.c: changed appropriately to configure
6895         needLinkerScript flag
6896         * src/pic/gen.c,
6897         * src/pic16/gen.c (genAddrOf): fixed bug #863624
6898         * src/pic/glue.c: added variable udata_section_name to
6899         override default uninitialized data segment definition for
6900         devices only with SHAREBANK memory (reported from Erik Epetrich)
6901         * (pic14emitOverlay): modified to emit a commented overlay segment
6902         directive when no overlay data exist
6903         * (picglue): modified to emit uninitialized data segment
6904         according to udata_section_name
6905         * src/pic/main.c (_pic14_parseOptions): added command line
6906         options --udata-section-name=[name] to override default
6907         udata definition name
6908         * modified _linkCmd and _asmCmd to include compiler passed
6909         arguments via -W option
6910         * src/pic16/main.c: added $l in _asmCmd, changed extension for
6911         object file from '.rel' to '.o' in port->linker structure,
6912         changed size of fptr from 2 to 3 in port structure
6913
6914 2004-01-07  Borut Razem <borut.razem AT siol.net>
6915
6916         * support/scripts/sdcc.nsi: update PATH
6917         * support/scripts/sdcc.ico: craeted
6918
6919 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
6920
6921         * device/include/Makefile.in: fix install
6922         * doc/Makefile: fix install
6923
6924 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6925
6926         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
6927         in bug #860505
6928         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
6929         how the function variable allocation summary is displayed; also
6930         include information about variables allocated to the overlay
6931         segment
6932
6933 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6934
6935         * as/mcs51/lkmain.c: Help about -Y option
6936         * as/mcs51/lkarea.c: Fixed gcc warnings
6937
6938 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6939
6940         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
6941         fixed warning
6942         * support/valdiag/tests/overflow.c: added
6943         * src/SDCCast.c (decorateType),
6944         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
6945         LEFT_OP (left shift)
6946
6947 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6948
6949         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
6950         (default behaviour).
6951
6952 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6953
6954         A python script to validate compiler diagnostic messages. It can be
6955         used to verify that sdcc complains about bad c source code and
6956         gives a good location of the error.
6957         * support/valdiag/Makefile,
6958         * support/valdiag/valdiag.py,
6959         * support/valdiag/tests/*
6960
6961 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6962
6963         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
6964         * src/SDCCsymt.c (newEnumType),
6965         * src/SDCCsymt.h
6966         * support/Util/SDCCerr.c,
6967         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
6968         enum related bugs.
6969         * support/regression/tests/enum.c: added test for enum values that
6970         require at least 2 bytes of storage.
6971
6972 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6973
6974         * src/common.h: added ifndef/define/endif macros
6975         around the header file.
6976         Bug reported from Jesus Calvino-Fraga
6977
6978 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6979
6980         * sdcc.spec: updated
6981         * device/include/Makefile.in: don't install CVS directories
6982         * device/lib/Makefile.in: added removal of CVS directories after install
6983         * doc/Makefile: fixed install, added local_icons
6984         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
6985         * src/mcs51/gen.c (genRightShift): fixed bug #870788
6986         * src/ds390/gen.c (genRightShift): fixed bug #870788
6987         * src/SDCCast.c (decorateType): fixed bug #870781
6988
6989 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6990
6991         PIC16 port related changes:
6992         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
6993         added variable stackPos,
6994
6995         * gen.c: genCall, assignResultValue: added support for
6996         pushing/retrieving function parameters to/from stack,
6997         genFunction,genEndFunction: setup stack frame for the
6998         generated function,
6999         genAddrOf: will be changed according to bug 863624
7000
7001         * added files genutils.c and genutils.h which contain gen*
7002         debugged and optimised functions extracted from gen.c
7003
7004         * glue.c: added variable 'externs' which holds extern symbols,
7005         pic16emitRegularMap: is modified to properly handle relocatable
7006          symbols under the new scheme,
7007         pic16createInterruptVect: is modified
7008         pic16printPublics: is modified to emit 'global' assembler directives,
7009         added pic16_printExterns to print extern symbols,
7010         pic16glue: initializes stack/frame pointer in the beginning of
7011         the assembly output. Temporary hack, will be corrected later,
7012         because gplink yet does not support stack and SDCC does not
7013         yet support a type of crt0.o object to create the final binary.
7014
7015         * Removed many lines that contain 8051 legacy code.
7016         * The code is finally placed under a 'code' directive.
7017         * Added port specific options.
7018
7019         * _process_pragma: simplified since now we do not need *special*
7020         include file to define SFR registers. But a separate header
7021         will be needed. This will be developed later.
7022         * _pic16_parseOptions: added, parses port specific options:
7023         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
7024         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
7025         --preplace-udata-with=
7026
7027         * _pic16_setDefaultOptions: modified to initialize section names,
7028         but hack is temporarly out of order since it needs improvement.
7029         * _pic16_genAssemblerPreamble: configuration words are emitted by
7030         their address instead of their name. This part is incomplete and
7031         supports only the 18Fxx2 devices. Other devices will emit an error
7032         during assembly since they do not contain the same set of config
7033         registers
7034         * _pic16_genIVT: is modified,
7035
7036         * pcode.c: added definitions for some hardware registers that are needed
7037         for stack support
7038         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
7039         All PCI entries are updated. Now LFSR is supported.
7040         * Removed pic16_pciTRIS is mentioned by mdubuc in source
7041         * added pic16_newpCodeOpLit2 to support instructions with
7042         two literal arguments
7043         * pic16_pCode2str: corrected code that emits assembler instructions
7044         with two literal operands and those that have an access bit modifier
7045         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
7046         this fixes a bug which caused some labels to be lost, when an
7047         assembler directive was added, i.e. banksel,
7048         * pic16_FixRegisterBanking: improved logic that causes the insertion
7049         of bank switching,
7050         * InlineFunction: functions that are called once, are not any more
7051         inlined. This can be a port option in the future,
7052
7053         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
7054
7055         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
7056         hold the corresponding uninitialized symbols,
7057         * pic16_allocProcessorRegister: registers have explicit marked the
7058         accessBank field,
7059         * pic16_allocInternalRegister: registers are explicit marked as
7060         not used,
7061         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
7062         processing list, so bit registers were lost,
7063         *
7064
7065         * ralloc.h: added field 'accessBank' and original symbol operand
7066         in register definition,
7067         * removed the field isMapped from register definition,
7068
7069         ** Several functions have been removed from various sources:
7070         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
7071         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
7072         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
7073         pic16_assignRelocatableRegisters
7074
7075         ** others have been introduced:
7076         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
7077         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
7078
7079 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
7080
7081         * support/scripts/inc2h.pl: changed definition of BIT_AT
7082         to emit 'sbit at' instead of 'bit at'. This was a request.
7083
7084         PIC16 port related preliminary changes:
7085         * gen.c: prefixed function popRegFromString with
7086         pic16_ and all references to it corrected
7087         * pcode.c: all pic16_pc_* hardware registers prefixed
7088         with underscore (_),
7089         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
7090         * ralloc.c: newReg(): when register is REG_SFR then
7091         set address to rIdx,
7092         pic16_allocProcessorRegister(): marks register wasUsed=0
7093         pic16_writeUsedRegs(): added a call to assign processor
7094         registers via pic16_assignFixedRegisters
7095
7096 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7097
7098         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
7099         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
7100         variables in unused register banks.  Also the SSEG is placed
7101         wherever there is enough space for it, and IDATA can be anywhere
7102         in internal RAM.  For now compile using -Wl-Y[stack_size].
7103         The mem file is different for this option as well, since it
7104         makes no sense of talking about DSEG lenght.
7105
7106 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
7107
7108         * src/SDCClrange.c: fixed bug 869095 that caused segfault
7109         in certain cases, e.g. when ROM assignment, patch provided
7110         from Albert den Haan.
7111
7112 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
7113
7114         Many signedness and type propagation fixes:
7115         * src/SDCCicode.c: made geniCodeCast() static
7116         replaced SPEC_ by IS_ (cosmetic)
7117         (operandOperation): fixed div and mod operation
7118         (usualBinaryConversions): added support for promotion of char
7119         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
7120         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
7121         (geniCodeAdd): an array index will stay unsigned, even if promoted
7122         from char to int
7123         (geniCodeArray): ditto
7124         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
7125         * src/SDCCsymt.c (computeType): added more support for char;
7126         promotion of char is selectable by promoteCharToInt, fixed signedness
7127         for all cases
7128         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7129         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7130         * src/SDCCval (val*): replaced signedness calculation by
7131         computeType()
7132         rearranged if-branches (cosmetic)
7133         (valShift): added warning W_SHIFT_CHANGED
7134         (valCompare): fixed problem with different types
7135         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
7136         * support/regression/tests/literalop.c: added many cases
7137         * support/regression/tests/ast_constant_folding.c: changed finally to
7138         'unsigned int'
7139         * .version: new year, new version: 2.3.7
7140         * src/SDCCmain.c (main): applied patch #866468
7141         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
7142         provided by Scott Bronson
7143         * doc/sdccman.lyx: updated documentation for sdcdb
7144         updated and added chapter tips
7145
7146 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7147
7148         * src/SDCCsymt.h: missing from yesterday's commits
7149
7150 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7151
7152         * src/SDCC.y (struct_or_union_specifier),
7153         * support/Util/SDCCerr.c,
7154         * support/Util/SDCCerr.h: verify that struct & union tags are used
7155         as declared.
7156
7157 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7158
7159         * src/SDCCglobl.h: missing from yesterday's commits
7160
7161 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7162
7163         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
7164         sft_attributes, struct_declaration, parameter_declaration,
7165         type_name, start_block, declaration_list),
7166         * src/SDCC.lex (check_type): support redefinition of typedef names
7167
7168 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7169
7170         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
7171         aligned xdata arrays. Erik helped me with the if clause.
7172
7173 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7174
7175         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
7176         warning
7177
7178 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7179
7180         * src/SDCCast.h,
7181         * src/SDCCast.c (newAst_),
7182         * src/SDCCicode.h,
7183         * src/SDCCicode.c (ast2iCode, newiCode),
7184         * src/SDCCglobl.h,
7185         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
7186         expr, statement, expression_statement, selection_statement,
7187         iteration_statement, expr_opt, jump_statement): foundation for tracking
7188         sequence points
7189         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
7190         point code too)
7191
7192 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7193
7194         * support/Util/SDCCerr.c,
7195         * src/SDCCast.h,
7196         * src/SDCCast.c (createCase, createDefault, decorateType),
7197         * src/SDCClabel.c (labelUnreach),
7198         * src/SDCC.y (labeled_statement, jump_statement): More improvements
7199         to error messages.
7200         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
7201         (with thanks to Stas Sergeev)
7202         * device/include/time.h,
7203         * device/lib/time.c (CheckTime): suppress unreachable code warning
7204
7205 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7206
7207         * src/SDCCast.c (createIvalCharPtr),
7208         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
7209         bug #753752)
7210         * support/regression/tests/nullstring.c: tests for these two bugs
7211
7212 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7213
7214         * support/Util/SDCCerr.h,
7215         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
7216         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
7217         about storage class and 'at' used inside struct or union
7218         * src/SDCCBBlock.c (iCodeFromeBBlock),
7219         * src/SDCCcse.c (ifxOptimize),
7220         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
7221         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
7222         printIval, emitStaticSeg, emitOverlay),
7223         * src/SDCClabel.c (deleteIfx),
7224         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
7225         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
7226         gatherAutoInit, processParms),
7227         * support/Util/SDCCerr.h,
7228         * support/Util/SDCCerr.c (werrorfl): Support for better error location
7229         reporting for post-parse errors.
7230
7231 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7232
7233         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
7234         implicit casts via union; they don't work on big endian systems
7235         (possible fix for bug #861138)
7236
7237 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7238
7239         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
7240         * src/mcs51/main.c: fixed the fix for bug #737001
7241
7242 2003-12-15  Borut Razem <borut.razem AT siol.net>
7243
7244         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
7245
7246 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7247
7248         * support/makebin/makebin.c: put output in binary mode
7249
7250 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7251
7252         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
7253         xdata and data memory on startup. Set the environment variable
7254         SDCC_NOGENRAMCLEAR to disable this.
7255         * src/mcs51/peephole.def,
7256         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
7257         (allows non-interrupt and interrupt code to safely compete for a resource
7258         without the non-interrupt code having to disable interrupts)
7259
7260 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7261
7262         * src/SDCCicode.c (geniCodeAdd),
7263         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
7264         with valFromType if type might be a pointer and host is big endian).
7265         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
7266         types, not just integer types.
7267         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
7268         multiply defined with mismatching "at" address.
7269
7270 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7271
7272         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
7273         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
7274         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
7275         with embedded nulls (fixed bug #753752)
7276
7277 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7278
7279         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
7280         Apparently this did not see much testing (endless loop)
7281
7282 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7283
7284         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
7285
7286 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7287
7288         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
7289         gracefully handle NULL memmap pointers
7290
7291 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7292
7293         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
7294         instead of deleting the iCode when an operand is volatile
7295         * src/z80/gen.c (genDummyRead),
7296         * src/mcs51/gen.c (genDummyRead),
7297         * src/ds390/gen.c (genDummyRead),
7298         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
7299         not just IC_RIGHT
7300         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
7301         * src/SDCC.y: fixed bug #850420
7302
7303 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7304
7305         Applied z80 i/o port patch from Peter Townson and fixed some operators
7306         to better handle operands in A register.
7307         * device/include/z180.h
7308         * src/SDCC.y
7309         * src/SDCCglue.c
7310         * src/z80/gen.c
7311         * src/z80/gen.h
7312         * src/z80/main.c
7313         * src/z80/peeph-z80.def
7314         * src/z80/peeph.def
7315         * src/z80/z80.h
7316
7317 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7318
7319         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
7320
7321 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7322
7323         * device/lib/hc08/_mullong.c: Removed extra #endif
7324
7325 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7326
7327         * sim/ucsim/hc08.src/inst.cc,
7328         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
7329         carries from x to h
7330         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
7331         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
7332         * device/include/stdarg.h: fixed varargs for hc08
7333         * device/lib/Makefile.in,
7334         * device/lib/hc08/Makefile,
7335         * device/lib/hc08/_mulint.c,
7336         * device/lib/hc08/_mullong.c: fixed some endian problems
7337
7338 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7339
7340         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
7341         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
7342         * device/lib/_gptrget.c,
7343         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
7344
7345 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7346
7347         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
7348         * src/SDCCast.c (astErrors): fixed bug #846007
7349         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
7350
7351 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7352
7353         * src/SDCCast.c (decorateType): disabled a transformation I added in
7354         revision 1.188 (access to fields of a structure at an absolute address);
7355         it breaks with bitfields, extern declarations, and gcse analysis.
7356         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
7357         could be assigned through a pointer, so don't complain.
7358         * src/SDCCast.c (astErrors),
7359         * src/SDCCast.h,
7360         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
7361
7362 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
7363
7364         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
7365         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
7366         output of __config directives, since gpasm now supports them
7367         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
7368         pre-processor macro, i.e. -DMCU=p18f452
7369         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
7370         and modified to handle 'cast' icode similarly to '=' icode
7371         * src/pic16/device.h (typedef struct PIC_device): added field
7372         'extMIface' to indicate that chip has external memory interface
7373         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
7374         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
7375         18F8720
7376
7377 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7378
7379         * src/SDCC.y (pointer): fixed bug #846006
7380         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
7381         * src/SDCCast.c (decorateType): fixed bug #846009
7382         * src/ds390/peeph.def,
7383         * src/ds390/gen.c (genAnd, genOr),
7384         * src/mcs51/peeph.def,
7385         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
7386
7387 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7388
7389         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
7390         * src/SDCCdflow.c
7391         * src/SDCCcse.c
7392         * src/SDCCcse.h
7393         * src/SDCCBBlock.h
7394         * src/SDCCBBlock.c
7395
7396 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
7397
7398         fixed bug #845089
7399         * src/SDCCbitv.h,
7400         * src/SDCCbitv.c: added function to free a bitvector
7401         * src/SDCClrange.h,
7402         * src/SDCClrange.c: added function to recompute the liveranges
7403         * src/avr/ralloc.c,
7404         * src/ds390/ralloc.c,
7405         * src/hc08/ralloc.c,
7406         * src/mcs51/ralloc.c,
7407         * src/pic/ralloc.c,
7408         * src/pic16/ralloc.c,
7409         * src/xa51/ralloc.c,
7410         * src/z80/ralloc.c: recompute the liveranges after register packing
7411
7412 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
7413
7414         * src/SDCCloop.c (newInduction): fixed bug #845630
7415
7416 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7417
7418         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
7419         inadvertantly left behind from my 2003-11-12 change
7420
7421 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7422
7423         Updated headers I neglected to commit yesterday.
7424         * src/SDCClrange.h,
7425         * src/SDCCicode.h
7426
7427 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7428
7429         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
7430         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
7431         * src/SDCCopt.c (eBBlockFromiCode),
7432         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
7433         the creation of the key hash table from the sequencing so it can be used
7434         earlier (for some GCSE bug fixes still pending)
7435
7436 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7437
7438         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
7439         * support/regression/tests/addsub.c: testing genPlus shortcut
7440
7441 2003-11-15  Borut Razem <borut.razem AT siol.net>
7442
7443         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
7444
7445 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7446
7447         * src/SDCCcse.c (cseBBlock): fixed bug #527779
7448         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
7449         ordering is immaterial.
7450         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
7451
7452 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7453
7454         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
7455         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
7456         (SIGSEV) of bug #840381
7457         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
7458         unlink new file before rename if new and old filenames are the same)
7459
7460 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7461
7462         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
7463         uninitialized variables) for the mcs51. Set environment variable
7464         SDCC_GENRAMCLEAR to test.
7465         xdata initialization slightly shorter
7466
7467 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7468
7469         * src/SDCCsymt.h,
7470         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
7471         #838241 & 780691 (basicly the same bug)
7472         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
7473         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
7474
7475 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
7476
7477         * src/SDCCmain.c (linkEdit): "fix" #834252
7478
7479 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7480
7481         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
7482         * src/SDCCast.h,
7483         * src/SDCC.y: fixed bug #819403
7484
7485 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7486
7487         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
7488         the reentrant attribute.
7489         * src/hc08/gen.c (genPackBits): added missing stack readjustment
7490         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
7491         simulation
7492         * src/SDCCast.c (decorateType): fixed bug with storage class not being
7493         updated during pointer dereference; f.e. ~(((char *)1)*) was being
7494         erroneously reduced to a literal.
7495         * src/hc08/ralloc.c (packRegisters, rematStr),
7496         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
7497         some cases
7498
7499 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7500
7501         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
7502         * doc/sdccman.lyx: changed from 'article' to 'book'
7503         * doc/Makefile: readded test_suite_spec and cdbfileformat
7504
7505 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
7506
7507         * device/include/stdlib.h: include malloc.h to comply with ANSI
7508         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
7509
7510 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7511
7512         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
7513         * doc/clean.mk: also remove *.out files
7514         * doc/sdccman.lyx: some additions, larger top/bottom margins
7515
7516 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7517
7518         * src/SDCC.y: fixed bug #837365
7519         * support/regression/tests/bitopcse.c
7520         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
7521         a symbol (might be valop instead)
7522         * device/lib/Makefile.in: added errno.c to HC08SOURCES
7523         * device/lib/clean.mk: added hc08 to the cleaning list
7524
7525 2003-11-04  Borut Razem <borut.razem AT siol.net>
7526
7527         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
7528           made 2003-11-04
7529         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7530           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
7531           malloc is declared in standard stdlib.h
7532
7533 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7534
7535         * device/lib/hc08/Makefile: need to clean .rel not .o files
7536         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
7537
7538 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7539
7540         * src/port.h,
7541         * src/hc08/main.c,
7542         * src/mcs51/main.c,
7543         * src/ds390/main.c,
7544         * src/z80/main.c,
7545         * src/avr/main.c,
7546         * src/pic/main.c,
7547         * src/pic16/main.c,
7548         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
7549         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
7550         tests (which uses the port's oclsExpense function)
7551         * src/SDCC.y,
7552         * src/SDCCast.c,
7553         * src/SDCCicode.c,
7554         * src/hc08/gen.c,
7555         * src/ds390/gen.c,
7556         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
7557
7558 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7559
7560         * src/SDCCcse.c (ifxOptimize),
7561         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
7562         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
7563         deleting the IFX iCode.
7564         * src/hc08/ralloc.c: reduced unneeded slocs
7565         * src/hc08/gen.c: fixed bug in asmopToBoolean
7566
7567 2003-11-04  Borut Razem <borut.razem AT siol.net>
7568
7569         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
7570           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7571           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
7572           transferred to configure
7573
7574 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
7575
7576         Use headers defined in the C[++] standards:
7577         * sim/ucsim/gui.src/serio.src/fileio.cc
7578         * sim/ucsim/gui.src/serio.src/frontend.cc
7579         * sim/ucsim/gui.src/serio.src/main.cc
7580         * sim/ucsim/gui.src/serio.src/posix_signal.cc
7581         * support/Util/NewAlloc.c
7582         * as/hc08/lklibr.c
7583         * as/mcs51/lklibr.c
7584         * as/z80/aslist.c
7585         * as/z80/assym.c
7586
7587 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7588
7589         * Added MSVC projects for hc08 assembler and linker:
7590         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
7591         /as/hc08/link_hc08.dsp
7592
7593 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
7594
7595         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
7596
7597 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
7598
7599         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
7600
7601 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7602
7603         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
7604
7605 2003-10-31  Borut Razem <borut.razem AT siol.net>
7606
7607         * support/cpp2/cpplib.h,
7608           support/cpp2/cpplib.c,
7609           support/cpp2/cpplex.c,
7610           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
7611           to switch _asm block preprocessing on / off. Default is
7612           #pragma preproc_asm +
7613
7614 2003-10-31  Borut Razem <borut.razem AT siol.net>
7615
7616         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
7617           when outputting comment blocks (when executed with -C option) and
7618           _asm (SDCPP specific) blocks
7619
7620 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7621
7622         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
7623
7624 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
7625
7626         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
7627
7628 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
7629
7630         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
7631         * src/SDCCast.c (decorateType): fixed bug #832664
7632
7633 2003-10-31  Borut Razem <borut.razem AT siol.net>
7634
7635         * support\cpp2\cpplex.c: fixed for SDCPP:
7636           comments(when executed with -C option) and _asm blocks
7637           were included even if they where in skipped #if block.
7638           Applied solution from GCC cpp 3.3.2
7639
7640 2003-10-31  Borut Razem <borut.razem AT siol.net>
7641
7642         * src/SDCC.lex: sdcc now understands both formats:
7643           '# <line_number> <file_name>' and
7644           '#line <line_number> <file_name>'
7645         * support/cpp2/cppmain.c: sdcpp now generates the standard
7646           '# <line_number> <file_name>' instead of former
7647           '#line <line_number> <file_name>'
7648
7649 2003-10-30  Borut Razem <borut.razem AT siol.net>
7650
7651         * support/cpp2/cpphash.h,
7652         * support/cpp2/cpplib.h
7653         * support/cpp2/cpplex.c,
7654         * support/cpp2/cppmain.c,
7655         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
7656
7657 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7658
7659         Fixed a number of problems revealed by bug #827883.
7660         * src/SDCCloop.c (loopInvariants): Spill location of the
7661         result operand should be recomputed if extracted from
7662         a loop. Also, don't extract assignments of an iTemp
7663         from a literal.
7664         * src/SDCCast.c (isConformingBody): loop reversal should
7665         not occur if the control variable is involved with a
7666         relational operator.
7667
7668 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
7669
7670         * .version: bumped to 2.3.6 to reflect the big improvements
7671         made by Erik and Klaus. Thanks!
7672
7673 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
7674
7675         Replaced the livrange code.
7676         * src/SDCClrange.c: added new LR code
7677         * src/SDCCloop.c,
7678         * src/SDCCBBlock.h: removed remainig parts from old LR code
7679         * src/ds390/ralloc.c,
7680         * src/ds390/gen.c: minor fixes to make it work with new code
7681
7682 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7683
7684         * as/hc08/asm.h,
7685         * as/hc08/lkrloc.c,
7686         * src/hc08/gen.c,
7687         * src/hc08/ralloc.c: Fix various warnings related to the hc08
7688         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
7689         (tweaked fix for bug #818696)
7690
7691 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7692
7693         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
7694
7695 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7696
7697         * src/SDCCmain.c,
7698         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
7699         * src/mcs51/gen.c (gencjneshort),
7700         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
7701         more efficient (per Scott Bronson's suggestion)
7702
7703 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7704
7705         Extended the semantics of the critical keyword to include
7706         individual statements. See RFE #827755 and #799831
7707         * src/SDCC.y
7708         * src/SDCCicode.c
7709         * src/SDCCopt.c
7710         * src/SDCCast.c
7711         * support/Util/SDCCerr.c
7712         * support/Util/SDCCerr.h
7713         * src/mcs51/gen.c
7714         * src/ds390/gen.c
7715         * src/hc08/gen.c
7716
7717 2003-10-19  Borut Razem <borut.razem AT siol.net>
7718
7719         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
7720
7721 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7722
7723         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
7724         Fixed bug #818696
7725         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
7726         and predecrement operand is displayed
7727
7728 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
7729
7730         * src/SDCCval.c (valMinus): fixed bug #826041
7731
7732 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7733
7734         Some hc08 related updates that I missed earlier
7735         * sim/ucsim/stypes.h
7736         * support/regression/ports/hc08/spec.mk
7737
7738 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7739
7740         New target "hc08" for the Motorola 68hc08 family of micros
7741
7742         * configure
7743         * configure.in
7744         * Makefile
7745         * src/hc08/*
7746         * src/SDCCmain.c
7747         * src/port.h
7748         * sim/ucsim/hc08.src/*
7749         * sim/ucsim/configure.in
7750         * src/ucsim/configure
7751         * sim/ucsim/packages_in.mk
7752         * as/hc08/*
7753         * as/Makefile
7754         * device/include/mc68hc908qy.h
7755         * device/lib/hc08/*
7756         * device/lib/Makefile.in
7757         * support/regression/ports/hc08/*
7758         * support/regression/Makefile
7759
7760 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7761
7762         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
7763         regression test
7764         * src/ds390/gen.c (genCast): fixed bug #821957
7765
7766 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
7767
7768         * device/lib/logf.c: "fixed" overlay bug
7769         * support/regression/ports/host/spec.mk: added m library
7770         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
7771         * support/regression/tests/float_trans: added (for Eric)
7772
7773 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
7774
7775         * src/mcs51/gen.c (genCpl): fixed bug
7776         http://sf.net/mailarchive/message.php?msg_id=6263915
7777
7778 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
7779
7780         * src/SDCCast.c (decorateType): added extended constant folding
7781         * src/SDCCsymt.c (computeType): cleanup
7782         * src/SDCCval.c (valShift): minor optimization
7783         * support/regression/tests/ast_constant_folding.c: added
7784
7785 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7786
7787         * src/SDCCmain.c: removed some unintended changes
7788
7789 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7790
7791         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
7792         * src/z80/gen.c: fixed part of bug #817589
7793         * src/SDCCsymt.c (checkFunction): fixed bug #817895
7794
7795 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
7796
7797         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
7798         * src/SDCCcflow.c
7799         * src/SDCCcse.c
7800         * src/SDCCdflow.c
7801         * src/SDCClabel.c
7802         * src/SDCClrange.c
7803         * src/SDCCmem.c
7804         * src/SDCCopt.c
7805         * src/SDCCpeeph.c
7806         * src/SDCCset.c
7807         * src/avr/ralloc.c
7808         * src/ds390/ralloc.c
7809         * src/izt/ralloc.c
7810         * src/mcs51/ralloc.c
7811         * src/pic/ralloc.c
7812         * src/pic16/ralloc.c
7813         * src/xa51/ralloc.c
7814         * src/z80/ralloc.c
7815         * src/z80/gen.c: removed unused label "release:"
7816
7817 2003-10-06  Borut Razem <borut.razem AT siol.net>
7818
7819         * src/SDCC.lex: removed definition of unused variables
7820           save_optimize and save_options
7821
7822 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
7823
7824         * clean.mk: removed '=' in "-maxdepth=1"
7825         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
7826         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
7827
7828 2003-10-06  Borut Razem <borut.razem AT siol.net>
7829
7830         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
7831           my_unput() replaced by unput()
7832
7833 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
7834
7835         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
7836         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
7837         type-punned pointer will break strict-aliasing rules"
7838         Old LR behaviour is again default; Klaus' LR can be choosen by
7839         defining the environment variable LRKLAUS
7840         * src/SDCCBBlock.h
7841         * src/SDCCloop.c
7842         * src/SDCClrange.c
7843         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
7844         * clean.mk: fixed removal of files in bin/CVS/
7845         * device/lib/clean.mk: fixed removal of directories small and large
7846         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
7847         * src/SDCCicode.c,
7848         * src/SDCCval.c: removed superflous test for pedantic
7849
7850 2003-10-05  Borut Razem <borut.razem AT siol.net>
7851
7852         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
7853           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
7854           message "unmatched #pragma SAVE and #pragma RESTORE"
7855
7856 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7857
7858         * doc/sdccman.lyx: various additions and updates (interrupts, inline
7859           assembly, critical functions, atomic, nojtbound)
7860
7861 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
7862
7863         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
7864         * src/SDCCBBlock.h
7865         * src/SDCCloop.c
7866         * src/SDCCloop.h
7867         * src/SDCClrange.c
7868
7869 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7870
7871         * src/z80/gen.h,
7872         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7873         * src/mcs51/gen.h
7874         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7875         * src/ds390/gen.h
7876         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7877         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
7878         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
7879
7880 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7881
7882         * src/z80/gen.c (genRet): fixed bug #524753
7883         * src/z80/gen.c (genCast): fixed internal error on cast from
7884         pointer to long
7885         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
7886         fix for bug #477835 to the z80
7887         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
7888         for tracking iCodes in the peephole optimizer for z80
7889
7890 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7891
7892         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
7893         the other part of bug #814548
7894         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
7895
7896 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
7897
7898         * src/SDCCcse.c: fixed part of bug #814548
7899
7900 2003-09-28  Borut Razem <borut.razem AT siol.net>
7901
7902         * src/asm.c: rewrite of printILine() to use temporary file instead
7903           a pipe
7904         * src/xa51/main.c: commented out declaration of int rewinds
7905
7906 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7907
7908         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
7909
7910 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7911
7912         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
7913         * src/asm.c (printILine): Fixed bug #811015
7914
7915 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7916
7917         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
7918         freeing.
7919
7920 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7921
7922         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
7923         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
7924         to correctly handle general case of AOP_PAIRPTR
7925         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
7926
7927 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7928
7929         * src/mcs51/ralloc.c (fillGaps),
7930         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
7931         register positioning bug)
7932
7933 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
7934
7935         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
7936
7937 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7938
7939         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
7940         genCodePointerGet, genGenPointerGet, genFarPointerSet,
7941         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
7942         (ralloc doesn't intentionally do this now, but perhaps later)
7943         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
7944         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
7945         register positioning bugs (Fixed bug #762602 and #795325)
7946         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
7947         (Fixed bug #808779)
7948         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
7949         lines that --i-code-in-asm generates
7950
7951 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7952
7953         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
7954         trying to fclose a FILE* that was already closed.
7955
7956 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7957
7958         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
7959         of const struct should be treated as if const themselves)
7960
7961 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
7962
7963         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
7964
7965 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7966
7967         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
7968         Unix (/n) and DOS (/r/n) line terminations.
7969
7970 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7971
7972         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
7973         bug #613775
7974
7975 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7976
7977         * src/mcs51/gen.c (genFunction, genEndFunction),
7978         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
7979         and restore of EA so that stack offsets to parameters are
7980         correct when using both critical and reentrant/stack-auto.
7981         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
7982         size (can be triggered in error if sloc is shared between
7983         different sized objects)
7984         * device/include/float.h: fixed macros to explicitly use
7985         unsigned long where needed
7986
7987 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
7988
7989         Feature req. 799831: added code to allow nesting of critical functions
7990         * src/mcs51/gen.c (genFunction, genEndFunction)
7991         * src/ds390/gen.c (genFunction, genEndFunction)
7992
7993 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7994
7995         * src/SDCCsymt.c (sclsFromPtr),
7996         * src/SDCCsymt.h,
7997         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
7998         support for standard C idiom of memory mapped variables; for
7999         example, *((xdata int*)0x1234) = 1 is now internally equivalent
8000         to xdata int at 0x1234 tempvar = 1.
8001         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
8002         provided by Akiya ISHIDA
8003
8004 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
8005
8006         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
8007         * src/SDCCval.c (constVal): added reduction from int to char
8008         * src/SDCCval.c (valMult, valDiv): fixed sign handling
8009         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
8010         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
8011         to ignore the sign
8012         * support/regression/tests/shifts.c: fixed
8013
8014 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8015
8016         * src/z80/gen.c (genXor): Fixed bug #805445
8017
8018 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8019
8020         Fixed bug #621531 (const & volatile confusion in the type chain).
8021         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
8022         refer to the const or volatile state of the pointer itself.
8023
8024         * src/SDCCast.c
8025         * src/SDCCglue.c
8026         * src/SDCCicode.c
8027         * src/SDCCsymt.c
8028         * src/SDCCval.c
8029         * src/SDCC.y
8030         * src/SDCCsymt.h
8031         * src/pic/gen.c
8032         * src/pic/ralloc.c
8033         * src/pic16/gen.c
8034         * src/pic16/ralloc.c
8035         * support/regression/tests/const.c
8036
8037 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8038
8039         When checking for duplicated modules, use absolute paths
8040         instead of relative paths.  Files changed:
8041
8042         * as/mcs51/lklib.c
8043         * link/z80/lklib.c
8044
8045 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8046
8047         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
8048
8049 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8050
8051         * device/include/string.h: added size_t typedef, changed
8052         prototypes to use size_t, eliminated separate reentrant and
8053         non-reentrant declarations, added _memmove declaration
8054         * device/lib/_memcpy.c: changed to use size_t instead of int,
8055         changed /4 to >>2 to avoid division library call
8056         * device/lib/_memcmp.c,
8057         * device/lib/_memset.c,
8058         * device/lib/_strncat.c,
8059         * device/lib/_strncpy.c,
8060         * device/lib/_strncmp.c: changed to use size_t instead of int
8061         * device/lib/_memmove.c: new file (fixed bug #772294)
8062         * device/lib/Makefile.in: added _memmove.c
8063         * device/lib/z80/asm_strings.s: fixed bug #772290
8064         * support/regression/tests/bitfields.c: attempt to fix host assertion
8065         failure on amd64-unknown-linux2.2
8066
8067 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8068
8069         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
8070         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
8071         * as/z80/asmain.c (main): fixed bug #801766
8072
8073 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
8074
8075         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
8076         compilers
8077
8078 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8079
8080         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
8081         reported in bug #800609
8082
8083 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
8084
8085         * Top header beautifications in src/pic16 directory:
8086           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
8087           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
8088           pcoderegs.h, ralloc.c, ralloc.h
8089         * main.c: added top header and GPL license notice
8090         * pcode.c: fixed the if-conditional warning
8091
8092 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
8093
8094         * device/lib/_mullong.c: replaced int by short for gcc
8095
8096 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8097
8098         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
8099         and JUMPTABLE iCodes properly now (worked by accident before)
8100         * src/mcs51/gen.c (leftRightUseAcc),
8101         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
8102         iCode properly now. Use getSize instead of nRegs since a & b
8103         aren't part of the nRegs tally.
8104
8105 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
8106
8107         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
8108         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
8109           before instructions that use the _STATUS register
8110
8111 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
8112
8113         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
8114         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
8115         fetching of the pointer
8116         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
8117         copied from genNearPointerSet()
8118         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
8119         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
8120         If they pop r0/r1 they must be called in the opposite order than aopOp().
8121         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
8122         (resp. --stack-auto), prepared for --xstack
8123
8124 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8125
8126         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
8127
8128 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8129
8130         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
8131         these ports have their own __sdcc_external_start()
8132
8133 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
8134
8135         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8136         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
8137         type for bits was changed. It resulted in bit variables becoming
8138         global, which is not permitted in PIC 14 assembly output.
8139
8140 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8141
8142         * doc/sdccman.lyx: various additions and updates. Rearranged sections
8143
8144 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8145
8146         Z80 and MCS51 linkers complaint if a public symbol is defined
8147         in more than one library module:
8148
8149         * as/mcs51/lklib.c
8150         * link/z80/lklib.c
8151         * as/mcs51/Makefile.in
8152
8153 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8154
8155         A few small changes that speed up the peephole optimizer.
8156
8157         * src/SDCCpeeph.c
8158
8159 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8160
8161         Try to make the peephole optimizer smarter by maintaining
8162         an association between the assembly source code and the
8163         iCodes that originated them. Put this information to use
8164         with a new peephole rule condition "notVolatile" so that
8165         the rules can be aggressive yet still safe.
8166
8167         * src/SDCCpeeph.c
8168         * src/SDCCpeeph.h
8169         * src/mcs51/gen.c
8170         * src/mcs51/peeph.def
8171
8172 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8173
8174         Fixed bug #741761
8175
8176         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
8177         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
8178         if the left or right operand symbols have the accuse flag set.
8179
8180 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8181
8182         Changed the type of the result of the ! (NOT) operator to char;
8183         previously it returned the same type as the source. This allows
8184         us to eliminate all the genFloatNot functions (all of its target
8185         implementations were very buggy) since !float can use the same
8186         code as !long now.
8187
8188         * src/SDCCicode.c (ast2iCode): ! returns char
8189         * src/mcs51/gen.c (genNot, genNotFloat),
8190         * src/ds390/gen.c (genNot, genNotFloat),
8191         * src/z80/gen.c (genNot, genNotFloat),
8192         * src/pic/gen.c (genNot, genNotFloat),
8193         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
8194
8195 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
8196
8197         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8198         1. Interrupt would not compile properly. Ensure PCLATH register is saved
8199            during interrupts. Ensure WSAVE is located at a shared bank address.
8200         2. Fixed page selection in some places
8201         3. Fixed BTFSS/C to where necessary use registers directly and not simply
8202            the registers name strings.
8203         4. Fixed "signed / unsigned compare" compiler warnings.
8204         5. The PIC port manages its own allocation of the general purpose
8205            registers, but makes no attempt to reuse them. As a result when
8206            compiling it soon runs out of general purpose registers. Some
8207            additional code was added to the files pcode.c and device.c to walk
8208            through the function call tree and rename the registers so that they
8209            get reused.
8210
8211         * src/pic/device.c
8212         * src/pic/gen.c
8213         * src/pic/glue.c
8214         * src/pic/pcode.c
8215         * src/pic/pcode.h
8216         * src/pic/ralloc.c
8217         * src/pic/ralloc.h
8218         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
8219         genPlus() & genMinus() when the result is the same as left or right
8220
8221 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8222
8223         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
8224
8225 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8226
8227         Made bitfield a distinct type from bit so that bitfields
8228         convert as per ANSI C and bits retain their traditional
8229         boolean style behaviour. Implemented bitfield support in
8230         the z80 port.
8231
8232         * src/SDCCsymt.h,
8233         * src/SDCCsymt.c,
8234         * src/SDCCast.c,
8235         * src/cdbFile.c,
8236         * src/mcs51/gen.c,
8237         * src/ds390/gen.c: bit v bitfield split
8238         * src/z80/gen.c: New support for bitfields
8239         * support/regression/tests/bitfields.c: reenabled z80,
8240         added more tests
8241
8242 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8243
8244         Rules 246.x, 247.x relate to bitfields, the others speed up
8245         access to xdata mapped I/O devices.
8246
8247         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
8248
8249 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8250
8251         Cleaned up genPackBits and genUnpackBits and added two helper
8252         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
8253         for literal assignments in genPackBits (thanks to Frieder for
8254         reminding me).
8255
8256         * src/mcs51/gen.c
8257         * src/ds390/gen.c
8258
8259 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8260
8261         Fixed bug #748310 (pointer to function type mishandled when the
8262         function name is omitted). Also fixed a SIGSEGV when a function
8263         attribute (reentrant, etc) is used on a non-function or on a
8264         function but misplaced before the parameter list.
8265
8266         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
8267         bug #748310
8268         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
8269         * support/Util/SDCCerr.h,
8270         * support/Util/SDCCerr.c: Added func attr misuse error msg
8271
8272 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
8273
8274         Fixed bug #787649 by anonymous
8275         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
8276         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
8277
8278 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8279
8280         Fixed numerous bitfield problems.
8281
8282         * src/SDCC.y: More bitfield related error checking
8283         * src/SDCCsymt.h,
8284         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
8285         * support/Util/SDCCerr.h,
8286         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
8287         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
8288         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
8289         * support/regression/tests/bitfields.c: tests added
8290
8291 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8292
8293         Made the constant following the "interrupt" keyword optional. If
8294         omitted, the function will not automatically be given an entry
8295         in the interrupt vector table (similar to #pragma NOIV, but
8296         less syntacticly kludgy). The interrupt number is also now
8297         range checked. Also fixed a bug in the high order bit example
8298         in the manual.
8299
8300         * src/SDCC.y
8301         * src/SDCCmem.c
8302         * src/SDCCglue.c
8303         * src/SDCCsymt.h
8304         * support/Util/SDCCerr.c
8305         * support/Util/SDCCerr.h
8306         * doc/sdccman.lyx
8307
8308 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
8309
8310         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
8311         * src/SDCCicode.c (operandOperation): rewritten some ops
8312         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
8313         * src/SDCCsymt.c (computeType): literals are handled the same way as any
8314         other type
8315         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
8316         be re-activated by defining REDUCE_LITERALS)
8317         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
8318         unsigned, but are signed by default
8319         * src/SDCCval.c (constVal): rearranged
8320         * src/SDCCval.c (valMod): preliminary fix
8321         * src/SDCCval.c (valCastLiteral): use TYPE_* types
8322         * support/regression/literalop.c: added, work in progress
8323
8324 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8325
8326         Generate warnings for useless declarations like "char data;"
8327         that don't do what new users expect.
8328
8329         * src/SDCC.y
8330         * support/Util/SDCCerr.h
8331         * support/Util/SDCCerr.c
8332
8333 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
8334
8335         * src/SDCCval.c (valMult): fix overflow detection of negative int
8336
8337 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8338
8339         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
8340
8341         Changes to support big endian targets:
8342
8343         * src/ports.h
8344         * src/SDCCglue.c
8345         * src/avr/main.c
8346         * src/ds390/main.c
8347         * src/izt/i186.c
8348         * src/mcs51/main.c
8349         * src/pic/main.c
8350         * src/pic16/main.c
8351         * src/xa51/main.c
8352         * src/z80/main.c
8353
8354 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
8355
8356         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
8357         * device/lib/time.c: fixed warning "integer overflow in expression"
8358
8359 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
8360
8361         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
8362         * src/SDCCval.c (constVal): changed default to signed; hex and octal
8363         constants are unsigned; added recognition of "u" flag for unsigned
8364         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
8365         * src/SDCCval.c (valDiv, valMod): fixed signdness
8366         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
8367         signedness of modulo, left and right shift
8368         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
8369         * support/Util/SDCCerr.h: added warning W_INT_OVL
8370         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
8371         * src/SDCCast.c (ast_print): improved output of constants
8372
8373 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8374
8375         Fixed some warnings when building with MSVC:
8376
8377         * as\mcs51\asdata.c
8378         * as\z80\asdata.c
8379         * as\mcs51\asm.h
8380         * as\z80\asm.h
8381         * link\z80\aslink.h
8382         * link\z80\lkdata.c
8383         * link\z80\lkeval.c
8384         * link\z80\lkgb.c
8385         * link\z80\lkihx.c
8386         * link\z80\lks19.c
8387         * link\z80\lksym.c
8388         * support\cpp2\cpplib.c
8389         * src\ds390\gen.c
8390         * src\mcs51\gen.c
8391
8392 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
8393
8394         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
8395
8396 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8397
8398         * support\librarian\clean.mk: Do not remove Makefile.
8399         * support\librarian\Makefile: added.
8400
8401 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8402
8403         Added librarian to MSVC build:
8404         * all.dsp
8405         * sdcc.dsw
8406         * support\librarian\librarian.dsp
8407
8408         'configure' not needed for librarian, removed:
8409         * support\librarian\configure
8410         * support\librarian\configure.in
8411         * support\librarian\config_in.h
8412         * support\librarian\Makefile.in
8413
8414         Hopefully these ones built the librarian and the rest of sdcc properly:
8415         * Makefile
8416         * Makefile.common.in
8417
8418         Messed up 'configure', so revert to previous version:
8419         * configure
8420         * configure.in
8421
8422 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
8423
8424         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
8425         there, while the mantissa of a double is "only" 53 bits wide.
8426
8427 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8428
8429         Adding sdcclib to the build.  MSVC project coming soon.
8430         Files added/changed:
8431
8432         * support\librarian\clean.mk
8433         * support\librarian\configure
8434         * support\librarian\configure.in
8435         * support\librarian\config_in.h
8436         * support\librarian\Makefile.bcc
8437         * support\librarian\Makefile.in
8438         * support\librarian\sdcclib.c
8439         * Makefile.bcc
8440         * Makefile
8441         * Makefile.common.in
8442         * configure
8443         * configure.in
8444
8445 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8446
8447         Linker now complaints if linked modules have conflicting options, for
8448         example, one compiled using --model-large and another one compiled with
8449         --model-small.  The following files were modified:
8450
8451         * as\mcs51\asdata.c
8452         * as\mcs51\aslink.h
8453         * as\mcs51\asm.h
8454         * as\mcs51\asmain.c
8455         * as\mcs51\asout.c
8456         * as\mcs51\i51pst.c
8457         * as\mcs51\lkdata.c
8458         * as\mcs51\lklibr.c
8459         * as\mcs51\lkmain.c
8460         * as\z80\asdata.c
8461         * as\z80\asm.h
8462         * as\z80\asmain.c
8463         * as\z80\asout.c
8464         * as\z80\z80pst.c
8465         * link\z80\aslink.h
8466         * link\z80\lkdata.c
8467         * link\z80\lklibr.c
8468         * link\z80\lkmain.c
8469         * src\SDCCglue.c
8470
8471 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8472
8473         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
8474         as/mcs51/lklibr.c: Generate a warning when a library is not found.
8475
8476 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
8477
8478         * src/z80/mappings.i: fix _mul[us][int,long] entries
8479
8480 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8481
8482         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
8483
8484 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8485
8486         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
8487         * support/regression/tests/bitopcse.c: added
8488         fixed warning:
8489         * src/avr/gen.c:
8490         * src/pic/gen.c:
8491         * src/pic16/gen.c:
8492         * src/z80/gen.c:
8493         * src/xa51/gen.c:
8494
8495 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8496
8497         added support for new library format to z80, gbz80 linkers:
8498         *link/z80/aslink.h
8499         *link/z80/lklex.c
8500         *link/z80/lklib.c
8501         *link/z80/lklist.c
8502
8503 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8504
8505         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
8506         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
8507
8508 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
8509
8510         added DUMMY_READ_VOLATILE:
8511         * src/SDCC.y:
8512         * src/avr/gen.c:
8513         * src/xa51/gen.c:
8514         * src/z80/gen.c:
8515         * src/pic/gen.c:
8516         * src/pic16/gen.c:
8517         * src/mcs51/gen.c:
8518         * src/ds390/gen.c:
8519         * src/SDCCcse.c (algebraicOpts): many improvements
8520         * src/SDCCcse.h: removed algebraicOpts()
8521         * src/SDCCicode.c (picDummyRead): added
8522
8523 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8524
8525         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
8526         "Insufficient space in data memory".
8527
8528 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8529
8530         * src/mcs51/gen.c: fixed bug #771358
8531         * src/z80/gen.c: fixed bug #759087
8532
8533 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
8534
8535         * src/pic16/glue.c: minor cleanup by Vangelis
8536
8537 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8538
8539         * device/include/regc515c.h: fixed #758477
8540         * device/lib/_gptrget.c: saving some cycles in generic pointer get
8541         * device/lib/_gptrput.c: saved a few bytes
8542         * my tab spacing is 8, yours too?)
8543         * device/lib/_ser.c: process RX bytes earlier than TX bytes
8544         * device/lib/serial.c: process RX bytes earlier than TX bytes
8545         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
8546
8547 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8548
8549         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
8550
8551 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8552
8553     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
8554
8555 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
8556
8557         * device/lib/Makefile.in: bad fix, reverted to 1.43
8558
8559 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
8560
8561         * device/lib/Makefile.in: added missing z80 object files
8562
8563 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
8564
8565         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
8566         pic16 progress by Vangelis:
8567         * src/SDCCglobl.h:
8568         * src/SDCCmain.c:
8569         * src/pic/Makefile:
8570         * src/pic:
8571         * pic/Makefile:
8572         * pic16/device.c:
8573         * pic16/device.h:
8574         * pic16/gen.c:
8575         * pic16/gen.h:
8576         * pic16/genarith.c:
8577         * pic16/glue.c:
8578         * pic16/main.c:
8579         * pic16/pcode.c:
8580         * pic16/pcode.h:
8581         * pic16/pcodepeep.c:
8582         * pic16/peeph.def:
8583
8584 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8585
8586     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
8587
8588 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8589
8590     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
8591     added gbz80 build to MSVC project.
8592     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
8593     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
8594     from 8051 stuff and setup so it links using a .lnk file.
8595
8596 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8597
8598     * support/librarian/sdcclib.c: sdcc librarian.
8599     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
8600     with sdcclib.
8601
8602 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8603
8604     * as/mcs51/lkmain.c: properly handle extensions in function afile.
8605
8606 2003-07-02  Borut Razem <borut.razem AT siol.net>
8607
8608         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
8609         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
8610         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
8611         src/xa51/main.c, src/z80/main.c:
8612         virtualization of glue() function: each port has it's own glue function,
8613         which is accessed by do_glue function pointer in PORT.general structure
8614
8615 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
8616
8617         * DS800C400 fun, improved ROM interface and tinibios.
8618
8619 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
8620
8621         * More support for DS80C400. Now includes beginning of interface to ROM.
8622
8623 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
8624
8625         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
8626
8627 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8628
8629         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
8630
8631 2003-06-19  Borut Razem <borut.razem AT siol.net>
8632
8633         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
8634
8635 2003-06-19  Borut Razem <borut.razem AT siol.net>
8636
8637         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
8638         fixed Z80 port - crt0.o: cannot open.
8639
8640 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
8641
8642         * support/Util/MySystem.c (merge_command): revert bad fix
8643
8644 2003-06-18  Borut Razem <borut.razem AT siol.net>
8645
8646         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
8647
8648 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8649
8650         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8651         option --use-stdout sends errors to stdout instead of stderr.
8652
8653 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
8654
8655         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
8656
8657 2003-06-15  Borut Razem <borut.razem AT siol.net>
8658
8659         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
8660         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
8661         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
8662         fixed width array of pointers replaced with sets;
8663         multiple include and lib paths ared transferred to preprocessor and linker
8664         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
8665         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
8666         fixed width array of pointers
8667         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
8668         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
8669         fixupPath(), getPathDifference()
8670         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
8671         fixed width array of pointers
8672
8673 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
8674
8675         * src/pic16/ralloc.c: fix warnings
8676         * src/pic16/pcode.c: fix warning
8677
8678 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
8679
8680          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
8681         know all the details, but essentially this set of changes enable
8682         the pic16 port to generate movff instructions and generate assembler
8683         directives,
8684         * src/SDCCmain.c:
8685         * src/pic16/gen.c:
8686         * src/pic16/glue.c:
8687         * src/pic16/pcode.c:
8688         * src/pic16/device.c:
8689         * src/pic16/main.c:
8690         * src/pic16/pcode.h:
8691         * src/pic16/pcoderegs.c:
8692         * src/pic16/ralloc.c:
8693         * src/pic16/ralloc.h:
8694
8695 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8696
8697         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8698         added option --vc, so sdcc errors and warnings are compatible with
8699         Microsoft Visual Studio.
8700
8701 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8702
8703         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
8704           device/lib/libfloat.lib: added atof function.
8705
8706 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
8707
8708         * doc/sdccman.lyx: updated to Lyx 1.3
8709         * doc/cdbfileformat.lyx: updated to Lyx 1.3
8710         * doc/test_suite_spec.lyx: updated to Lyx 1.3
8711         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
8712
8713 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
8714
8715         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
8716
8717 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8718
8719         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
8720           additions to the "related tools/documentation" section
8721
8722 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
8723
8724         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
8725
8726 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
8727
8728         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
8729         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
8730
8731 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
8732
8733         * doc/sdccman.lyx: fix double dash and other minor things
8734         * doc/Makefile: fix double dash
8735
8736 2003-05-28  Karl Bongers(patches from Martin Helmling)
8737         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
8738           condition and ignore commands.
8739
8740 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8741
8742         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
8743           is in parts still quite out of date, I did changes as far as I felt makes sense
8744           for a non-native english speaker.
8745           Please feel free to add to the manual or to correct my changes.
8746         * doc/Makefile: undid touching the date of intermediate tex files.
8747
8748 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8749
8750         * doc/sdccman.lyx: Manual has an index now
8751
8752 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
8753
8754         Finalize muluint/mulsint and mululong/mulslong merging:
8755         * device/lib/_mulint.c
8756         * device/lib/_mullong.c
8757         * device/lib/gbz80/mul.s
8758         * device/lib/gbz80/stubs.s
8759         * device/lib/z80/mul.s
8760         * device/lib/z80/stubs.s
8761         * src/SDCCsymt.c (initCSupport)
8762
8763 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8764
8765         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
8766         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
8767           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
8768           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
8769           instead of /Zm500.
8770
8771 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8772
8773         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
8774           the regression tests I'm not brave enough to enable 245.b, 245.c
8775         * doc/sdccman.lyx: added latex preamble for hyperref package.
8776           Using pdflatex this will give you a hyperlinked pdf file with
8777           bookmarks. (prepend '%' before /usepackage if this breaks something)
8778
8779 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8780
8781          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
8782
8783 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
8784
8785         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
8786
8787 2003-05-21    <johan AT balder>
8788
8789         * src/SDCCglue.c (printIval): fixed bug #739934
8790
8791 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8792
8793         Applied patch from bug 737905 (renamed yylineo to mylineno):
8794         * src/altlex.c
8795         * src/SDCCast.c
8796         * src/SDCglobl.h
8797         * src/SDCC.lex
8798         * src/SDCCsymt.c
8799         * src/SDCCval.c
8800         * src/pic16/pcode.c: Cleaned warnings
8801         * src/pic16/pcodeflow.c: Cleaned warnings
8802         * src/pic16/pcoderegs.c: Cleaned warnings
8803
8804 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
8805
8806         * src/pic16/pcode.c: Cleaned warnings
8807         * src/pic16/pcodepeep.c: Cleaned warnings
8808         * src/pic16/ralloc.c: Cleaned warnings
8809
8810 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8811
8812         * doc/sdccman.lyx: fixed bug 739745
8813         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
8814
8815 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
8816
8817         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
8818         it can be defined with CFLAGS when running configure
8819         * src/SDCCmain.c: fixed compiling + linking with object files
8820
8821 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
8822
8823         * configure.in: configure for pic16 port,
8824             added --disable-pic16-port
8825         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
8826         * src/SDCCmain.c: linkOptions is changed to set *,
8827             added if/endif conditional macros to remove options help
8828             messages from optionsTable when a port is not configured, added
8829             support for the PIc16 port in the ports table, when executing
8830             the compiler with no port specified on command line, a default
8831             port is selected with the new macro DEFAULT_PORT which is
8832             defined in port.h, in setDefaultOptions() linkOptions is removed
8833             from initialization assignment, since now it is a set,
8834             parseCmdLine uses setParseWithComma for linkOptions, in
8835             linkEdit() linkOptions are accessed with new function indexSet()
8836             which returns the i'th item of a set variable. See SDCCset.c, in
8837             linkEdit() when calling buildCmdLine(), added linkOptions as
8838             last argument. Now users can pass arguments to gplink via the
8839             -Wl option, main() uses pic16glue() to glue up pic16 programs
8840         * src/SDCCpeeph.c: various changes to support pic16
8841         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
8842             return the i'th item of the set
8843         * src/SDCCset.h: added function prototype for indexSet()
8844         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
8845         * src/clean.mk: added pic16 in CLEANALLPORTS variable
8846         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
8847             added macro DEFAULT_PORT
8848         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
8849         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
8850             generated
8851         * src/pic16/glue.c: commented out some error producing lines
8852         * src/pic16/main.c: __config directives are commented out to stop
8853             gpasm complaining and test the linkage with gplink, _linkCmd and
8854             _asmCmd changed to be more gplink and gpasm friendly
8855         * src/pic16/peeph.def: peep rule 3 is commented out, since it
8856             produced an error when parsed, peep rule 12 is added to utilize
8857             movff, but it is commented out since the pCode does not support
8858             yet a command with 2 address arguments
8859
8860 2003-05-18    <johan AT balder>
8861
8862         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8863         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8864 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
8865
8866         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
8867   Added feature to script commands from file.
8868
8869 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
8870
8871         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
8872         * src/SDCCutil.c: include ctype.h for win32
8873
8874 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
8875
8876         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
8877
8878 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
8879
8880         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
8881   Fixed so you can set breakpoints prior to run, run does not stop
8882   on entry now.  Add tbreak.  Other enhancements and fixes for use
8883   with ddd.
8884
8885 2003-05-12  Borut Razem <borut.razem AT siol.net>
8886
8887         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
8888
8889 2003-05-11  Borut Razem <borut.razem AT siol.net>
8890
8891         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
8892         the path of bin directory, so that PATH is the only env. variable, which has to be set
8893         in case of standard installation.
8894         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
8895         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
8896         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
8897
8898 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8899
8900         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
8901         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
8902         temp files are in the port dir; clean the gen/test directory when
8903         generating new test.c
8904         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
8905         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
8906         * support/regression/tests/zeropad.c: added
8907
8908 2003-05-09    <johan AT balder>
8909
8910         * src/SDCCglue.c: fixed bug #597940
8911
8912 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
8913
8914         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8915   cache sfr, optimize next,step, fix off by one sourceline,
8916   support ddd list function.
8917         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
8918
8919 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8920
8921         * support/regression/HTMLgen.py: added compare_s2f()
8922         * support/regression/Makefile: redo 1.27
8923         * support/regression/generate-cases.py: redo 1.5
8924
8925 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
8926
8927         * support/regression/tests/float.c: workaround 33 bit hex constant
8928         * support/regression/tests/simplefloat.c: fix division for host
8929
8930 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
8931
8932         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
8933         that tame's the PIC's over-aggressive optimizer.
8934
8935 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8936
8937          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
8938          support for MSVC.
8939
8940 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
8941
8942         Initial support for DS80C400. "Hello world" runs on TINIm400
8943         (with polled I/O).
8944
8945 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
8946
8947          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8948          * Some notes on ddd usage added in debugger/README
8949          Martin Helmling adding more features and fixes for ddd GUI debugger.
8950          Code added for nexti, stepi, up, down, and other adjustments.
8951
8952 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
8953
8954         * src/pic/pCodepeep.c non-wildcard asmops are now handled
8955         * src/pic/peeph.def Added two rules to optimize carry manipulation
8956         * src/pic/* removed debug printfs
8957
8958 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
8959
8960         * debugger/mcs51/cmd.c: added header newalloc.h
8961
8962 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
8963
8964         * as/Makefile: new EXEEXT
8965         * as/z80/Makefile: remove trailing slash of BUILDIR
8966         * as/z80/clean.mk: new EXEEXT
8967         * Makefile.common.in: add to CFLAGS (and others), don't replace it
8968         * support/cpp2/Makefile.in: new EXEEXT
8969         * src/pic/glue.c (pic14emitRegularMap): fixed warning
8970
8971 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
8972
8973         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
8974         EXEEXT was introduced to fix all related problems with targets
8975         "clean", "install" and "uninstall"; a couple of further flaws
8976         especially with "clean" have been fixed too
8977         * as/mcs51/Makefile.in
8978         * as/mcs51/clean.mk
8979         * as/z80/Makefile
8980         * Makefile
8981         * clean.mk
8982         * debugger/mcs51/Makefile.in
8983         * debugger/mcs51/clean.mk
8984         * link/z80/Makefile
8985         * link/z80/Makefile.in
8986         * link/z80/clean.mk
8987         * link/Makefile
8988         * packihx/Makefile.in
8989         * packihx/clean.mk
8990         * sim/ucsim/Makefile
8991         * sim/ucsim/clean.mk
8992         * sim/ucsim/avr.src/Makefile.in
8993         * sim/ucsim/avr.src/clean.mk
8994         * sim/ucsim/s51.src/Makefile.in
8995         * sim/ucsim/s51.src/clean.mk
8996         * sim/ucsim/xa.src/Makefile.in
8997         * sim/ucsim/xa.src/clean.mk
8998         * sim/ucsim/z80.src/Makefile.in
8999         * sim/ucsim/z80.src/clean.mk
9000         * sim/ucsim/main_in.mk
9001         * sim/ucsim/packages_in.mk
9002         * sim/ucsim/gui.src/Makefile.in
9003         * sim/ucsim/gui.src/serio.src/Makefile.in
9004         * sim/ucsim/gui.src/serio.src/clean.mk
9005         * src/Makefile.in
9006         * src/clean.mk
9007         * support/cpp2/Makefile.in
9008         * support/cpp2/clean.mk
9009         * support/makebin/Makefile
9010         * support/makebin/clean.mk
9011         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
9012         * doc/sdccman.lyx: --program-suffix no longer needed
9013
9014 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
9015
9016          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
9017          Martin Helmling added support for ddd GUI debugger.
9018          Code added to display assembly, set variables, and other commands
9019          to interface to ddd.
9020
9021 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
9022
9023         * as/Makefile: fix target clean
9024         * as/clean.mk: fix target clean
9025         * as/z80/clean.mk: fix target clean
9026
9027 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
9028
9029         * Makefile.common.in: added  AT EXEEXT AT
9030         * configure.in: removed all mingw32 stuff
9031         * configure: rebuilt from configure.in
9032         * doc/sdccman.lyx: updated section "installation"
9033         * support/scripts/sdcc_mingw32: adapted to configure
9034         * support/scripts/sdcc_cygwin_mingw32: added
9035
9036 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
9037
9038         * src/pic Added object file support for the PIC port
9039         * src/pic Applied patch from Craig Franklin (this started the object file support)
9040         * src/regression Updated the PIC regression tests for object files
9041
9042 2003-04-20  Borut Razem <borut.razem AT siol.net>
9043
9044         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
9045           lklex.c: In function `getfid':
9046           lklex.c:203: warning: array subscript has type `char'
9047         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
9048           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
9049         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
9050           stack handling macros
9051
9052 2003-04-19  Borut Razem <borut.razem AT siol.net>
9053
9054         * "handling space characters in file path" task:
9055         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
9056         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
9057         * support/Util/MySystem.h: make it self-sufficient
9058         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
9059           src/z80/main.c, sdcc/as/mcs51/lklex.c:
9060           handling space characters in file path
9061         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
9062           (it will be used by assemblers, which have their own includes, e.g. gpasm)
9063         * support/Util/MySystem.c: handling space characters in executable's path
9064
9065 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
9066
9067         * as/z80/Makefile: fix permanent rebuild of z80
9068         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
9069         * support/regression/tests/bitfields.c: added Johan's bitfields.c
9070
9071 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
9072
9073         * src/SDCCopt.c: add special case optimization to replace modulo by
9074           a power of two with a bitwise AND.
9075
9076 2003-04-18    <johan AT balder>
9077
9078         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
9079
9080 2003-04-17    <johan AT balder>
9081
9082         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
9083         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
9084
9085 2003-04-13  Borut Razem <borut.razem AT siol.net>
9086
9087         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
9088         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
9089           fixed mingw problem in adl_NORMALIZE_PATH
9090
9091 2003-04-12  Borut Razem <borut.razem AT siol.net>
9092
9093         * fixed "#pragma SAVE/RESTORE can not be nested":
9094         * src/SDCC.lex: reworked pragma handling functions
9095         * sdcc/src/SDCCglobl.h: reworked stack handling macros
9096         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
9097
9098 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9099
9100         * src/SDCCutil.c (pathEquivalent): defined but not used
9101         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
9102         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
9103         * configure: rebuilt from configure.in
9104         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9105         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9106         * device/include/Makefile.in: replace sdcc_datadir
9107         * device/lib/Makefile.in: replace sdcc_datadir
9108         * Makefile.common.in: add LDFLAGS from configure
9109         * packihx/Makefile.in: use LDFLAGS
9110         * src/Makefile.in: use LDFLAGS
9111         * support/cpp2/Makefile.in: add LDFLAGS from configure
9112         * support/makebin/Makefile: use LDFLAGS
9113         * .version: bumped version number to 2.3.5
9114
9115 2003-04-12  Borut Razem <borut.razem AT siol.net>
9116
9117         * completed "different paths" task:
9118         * src/SDCCmacro.c: fixed bug in handling quotes
9119         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
9120         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
9121
9122 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9123
9124         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
9125
9126 2003-04-11 kevin Vigor <kevin AT vigor.nu>
9127
9128         * ds390/gen.c ds390/peeph.def: fix bug 706781
9129
9130 2003-04-11  Borut Razem <borut.razem AT siol.net>
9131
9132         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
9133
9134 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
9135
9136         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
9137         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
9138          set - this bit used to not be set...).
9139         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
9140           bad code in PIC Port
9141         * src/regression/and2.c added to test bug 609268
9142         * src/regression/Makefile added and2.c to regression test
9143
9144
9145 2003-04-08    <johan AT CP255758-A>
9146
9147         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
9148         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
9149         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
9150
9151 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
9152
9153         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
9154         fix bug #487815
9155         * support/cpp2/Makefile.in: fix bug #487815
9156         * configure: rebuilt from configure.in
9157         * Makefile.common.in: docdir changed, new path suffixes
9158         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9159         * sdcc_vc_in.h: reflect changes from sdccconf.h
9160         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
9161         * src/SDCCutil.h: remove BINDIR hack
9162         * doc/sdccman.lyx: update new path hierarchy
9163
9164 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9165
9166         * src/SDCCpeeph.c: added okToRemoveSLOC test
9167
9168 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9169
9170         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
9171
9172 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9173
9174         * src/SDCCpeeph.c: added labelIsReturnOnly test
9175         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
9176
9177 2003-04-05    <johan AT balder>
9178
9179         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
9180         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
9181         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
9182         * src/SDCCast.c: fixed a warning
9183         * src/SDCCast.h: fixed a warning
9184         * src/SDCCicode.c (operandFromAst): fixed a warning
9185
9186 2003-04-04    <johan AT balder>
9187
9188         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
9189         * src/SDCCast.c (decorateType): fixed bug #715076
9190         * src/SDCC.y: fixed bug #702907
9191
9192 2003-04-03    <johan AT balder>
9193
9194         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
9195         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
9196         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
9197         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
9198         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
9199
9200 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
9201
9202         * _decdptr.c: fix return values
9203         * _gptrget.c: fix return values
9204         * _gptrgetc.c: fix return values
9205         * _gptrput.c: fix return values
9206         * _mulint.c: fix return values
9207         * as/z80/Makefile: fix 'make -j' problem
9208
9209 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
9210
9211         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
9212         * configure.in: big cleanup, updated to autoconf 2.5x
9213         * configure: rebuilt from configure.in
9214         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9215         * sdcc_vc_in.h: reflect changes from sdccconf.h
9216         * doc/Makefile: fixed a flaw in "make install"
9217
9218 2003-04-02    <johan AT balder>
9219
9220         * src/ds390/gen.c (genCmp): no comments
9221         * src/mcs51/gen.c (genCmp): no comments
9222         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
9223         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
9224
9225 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
9226
9227         * support/regression/generate-cases.py: place generated file in given sub directory
9228         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
9229         * support/regression/Makefile: improvements for 'make -j';
9230         side effect: it's simpler and faster now
9231
9232 2003-03-31  Borut Razem <borut.razem AT siol.net>
9233
9234         * src/z80/main.c: link-{port} and as-{port} defined without path
9235         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
9236
9237 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
9238
9239         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
9240
9241 2003-03-30  Borut Razem <borut.razem AT siol.net>
9242
9243         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
9244           changed type of list parameter to set
9245         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
9246         * src/port.h: changed type of do_assemble() parameter to set
9247         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
9248           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
9249           definition of "cppoutfilename" macro with NULL value in preProcess()
9250         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
9251         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
9252         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
9253           replaced with set *binPathSet
9254         * shash_add() deallocates the item, if allready exsists, before adding the new one
9255         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
9256
9257 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
9258
9259         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
9260           a nested for loop bug in the PIC port
9261         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
9262           for loops
9263
9264 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
9265
9266         * support/Util/dbuf.h: remove C++ stuff to make it portable
9267
9268 2003-03-28  Borut Razem <borut.razem AT siol.net>
9269
9270         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
9271           literal strings in stringLiteral()
9272         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
9273         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
9274           to the project
9275
9276 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
9277
9278         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
9279
9280 2003-03-26    <johan AT balder>
9281
9282         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
9283         * src/ds390/gen.c (saveRegisters): catched symbol abuse
9284         * src/SDCCast.c (decorateType): fixed " -v < 3"
9285
9286 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
9287
9288         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
9289         Added Lenny Story's debug infrastructure changes:
9290         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
9291         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
9292         * src/cdbFile.c: added
9293         * src/SDCCdebug.c: added
9294         * src/SDCCdebug.h: added
9295         * src/SDCCast.c (createFunction)
9296         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
9297         * src/SDCCmain.c (parseCmdLine, main)
9298         * src/SDCCmem.c (redoStackOffsets)
9299         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
9300         * src/SDCCsymt.h
9301         * src/common.h
9302         * src/avr/gen.c (genAVRCode)
9303         * src/ds390/gen.c (gen390Code)
9304         * src/mcs51/gen.c (gen51Code)
9305         * src/pic/gen.c (genpic14Code)
9306         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
9307         * src/xa51/gen.c (genXA51Code)
9308         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
9309
9310 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9311
9312         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
9313         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
9314
9315 2003-03-22    <johan AT balder>
9316
9317         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
9318
9319 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
9320
9321         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
9322         * doc/cdbfileformat.lyx: added, written by Lenny Story
9323         * doc/Makefile: added cdbfileformat.lyx
9324         * doc/clean.mk: added cdbfileformat.lyx
9325
9326 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
9327
9328         * src/mcs51/peeph.def: fix bug #705773
9329
9330 2003-03-20    <johan AT balder>
9331
9332         An sfr/sbit can have an "at #" AND an initializer
9333         * src/SDCCsymt.c (checkSClass):
9334         * src/SDCCmem.c (allocGlobal):
9335         * src/SDCCmem.c (allocLocal):
9336         * src/SDCCast.c (createBlock):
9337
9338 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
9339
9340         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
9341
9342 2003-03-16    <johan AT balder>
9343
9344         Undid the hackup of const and volatile, the problem is much bigger
9345         * src/SDCC.y:1.65
9346         * src/SDCCast.c:1.171
9347         * src/SDCCglue.c:1.138
9348         * src/SDCCicode.c:1.146
9349         * src/SDCCsymt.c:1.150
9350         * src/SDCCval.c:1.65
9351
9352 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
9353
9354         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
9355         * src/ds390/gen.c (genAddrOf): fixed bug #704087
9356
9357 2003-03-13    <johan AT balder>
9358
9359         Hackup const and volatile modifiers in type chains a bit:
9360         * src/SDCC.y:1.63
9361         * src/SDCCast.c:1.169
9362         * src/SDCCglue.c:1.136
9363         * src/SDCCicode.c:1.143
9364         * src/SDCCsymt.c1.146
9365         * src/SDCCsymt.h1.59
9366         * src/SDCCval.c:1.63
9367
9368 2003-03-12    <johan AT balder>
9369
9370         * src/SDCCBBlock.h: more LRH debugging junk
9371         * src/SDCCcflow.h: more LRH debugging junk
9372         * src/SDCCloop.c: more LRH debugging junk
9373         * src/SDCC.y (struct_declaration): fixed bug #697590
9374         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
9375         * src/ds390/gen.c (aopForRemat): fixed bug #700031
9376         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
9377
9378 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9379         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
9380         test function names must now match exactly).
9381         * src/SDCCcse.c: added special case in findCheaperOp to allow
9382         extending a short integer. Makes less awful code for bug 700121 test case.
9383
9384 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9385
9386         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
9387         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
9388
9389 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9390
9391         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
9392         actually called (operandsNotEqual() was called for all
9393         operandsNotEqualX tests).
9394
9395 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9396
9397         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
9398         with shorter literals. Fixes bug 700121.
9399
9400 2003-03-11    <johan AT balder>
9401
9402         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
9403
9404 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
9405
9406         * src/SDCCloop.c (mergeRegions): an evil beast is dead
9407         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
9408
9409 2003-03-10  Borut Razem <borut.razem AT siol.net>
9410
9411         * src/SDCCmain.c: pipe preprocessor's output
9412         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9413         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9414         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9415         which closes all pipes in pipeSet set
9416         * src/SDCCset.c: free deleted item in function deleteSetItem()
9417         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9418         moved from z80 to src subproject
9419         * .version: increased version number to 2.3.4
9420
9421 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
9422
9423         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
9424         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
9425         * support/regression/ports/xa51/spec.mk: fix typo
9426
9427 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
9428
9429         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
9430
9431 2003-03-09  Borut Razem <borut.razem AT siol.net>
9432
9433         * src/SDCCmain.c: pipe preprocessor's output
9434         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9435         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9436         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9437         which closes all pipes in pipeSet set
9438         * src/SDCCset.c: free deleted item in function deleteSetItem()
9439         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9440         moved from z80 to src subproject
9441
9442 2003-03-09  Borut Razem <borut.razem AT siol.net>
9443
9444         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
9445         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
9446         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
9447         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
9448         * src/SDCCglobl.h: unification of WIN32 native definitions
9449
9450 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9451
9452         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
9453
9454 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9455
9456         * src/configure.in:   check for endianess (even while cross-compiling)
9457         * src/configure:      check for endianess (even while cross-compiling)
9458         * src/configure_in.h: check for endianess (even while cross-compiling)
9459         * src/avr/gen.c:        remove old endianess stuff
9460         * src/mcs51/gen.c:      remove old endianess stuff
9461         * src/ds390/gen.c:      remove old endianess stuff
9462         * src/pic/gen.c:        remove old endianess stuff
9463         * src/pic/genarith.c:   remove old endianess stuff
9464         * src/pic/glue.c:       fix endianess check
9465         * src/pic16/gen.c:      remove old endianess stuff
9466         * src/pic16/genarith.c: remove old endianess stuff
9467         * src/pic16/glue.c:     fix endianess check
9468         * src/xa51/gen.c:       remove old endianess stuff
9469         * src/z80/gen.c:        fix endianess check
9470         * src/SDCCglue.c:       fix endianess check
9471         * src/ds390/peeph.def: fix bug 700036
9472
9473 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9474
9475         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
9476         * src/configure: find appropriate data-types on host for SDCC's int and long
9477         * src/configure.in: find appropriate data-types on host for SDCC's int and long
9478         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
9479         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
9480
9481 2003-03-07    <johan AT balder>
9482
9483         Just a big NOOP:
9484                 some minor cleanups before the big shot
9485                 OP_DEFS and OP_USES now use Kevin's protection
9486                 new option --nolabelopt
9487
9488         * src/SDCCBBlock.c:
9489         * src/SDCCast.c,:
9490         * src/SDCCcflow.c:
9491         * src/SDCCcse.c:
9492         * src/SDCCicode.c:
9493         * src/SDCCicode.h:
9494         * src/SDCClabel.c:
9495         * src/SDCCloop.c:
9496         * src/SDCCmain.c:
9497         * src/ds390/ralloc.c:
9498         * src/mcs51/ralloc.c:
9499         * src/pic/ralloc.c:
9500         * src/xa51/ralloc.c:
9501         * src/z80/ralloc.c:
9502
9503 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
9504
9505         * src/pic/pcode.c (get_op): fix 64 bit warnings
9506         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
9507         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
9508         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
9509         * support/regression/tests/malloc.c: fix 64 bit warnings
9510
9511 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
9512
9513         * src/mcs51/gen.c (genMinus): fixed bug 696436
9514
9515 2003-03-02  Borut Razem <borut.razem AT siol.net>
9516
9517         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
9518
9519 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
9520
9521         * configure.in: test for mkstemp
9522         * sdccconf_in.h: add HAVE_MKSTEMP
9523
9524 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
9525
9526         * device/include/ctype.h: removed warning while using --stack-auto
9527         * device/include/malloc.h: removed warning while using --stack-auto
9528         * device/include/string.h: removed warning while using --stack-auto
9529
9530 2003-02-23  Borut Razem <borut.razem AT siol.net>
9531
9532         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
9533         because NDEBUG is defined (see man assert)
9534         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
9535
9536 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9537
9538         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
9539         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
9540
9541 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9542
9543         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
9544         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
9545
9546 2003-02-18    <johan AT balder>
9547
9548         * as/mcs51/asmain.c (asmbl): module can start with a digit
9549         * as/z80/asmain.c (asmbl): module can start with a digit
9550
9551 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
9552
9553         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
9554         * src/asm.c: fix pipe() for Mingw32
9555
9556 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
9557
9558         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
9559         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
9560         make -V work again; --c1mode reads now from stdin
9561         * doc/sdccman.lyx: added --c1mode
9562         * support/Util/SDCCerr.c: new messages for c1 mode
9563         * support/Util/SDCCerr.h: new messages for c1 mode
9564         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
9565
9566 2003-02-15    <johan AT balder>
9567
9568         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
9569
9570 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
9571
9572         * doc/sdccman.lyx: Environment variables, -o and other minor things
9573
9574 2003-02-14    <johan AT balder>
9575
9576         * src/xa51/main.c: before anyone really tries to use it :)
9577
9578         * Install doc's in share/sdcc/doc
9579         * removed some obsolete files
9580         * Do a proper make distclean and uninstall
9581         M Makefile.common.in
9582         R sdccbuild.sh
9583         M as/Makefile
9584         M device/include/Makefile.in
9585         M device/lib/Makefile.in
9586         M doc/sdccman.lyx
9587         M link/Makefile
9588         M sim/ucsim/doc/Makefile.in
9589         M src/clean.mk
9590         R src/avr/peeph.rul
9591         R src/xa51/peeph.rul
9592         M support/cpp2/Makefile.in
9593         M support/makebin/Makefile
9594
9595
9596 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
9597
9598         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
9599
9600 2003-02-10  Borut Razem <borut.razem AT siol.net>
9601
9602         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
9603         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
9604         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
9605         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
9606         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
9607         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
9608         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
9609         src/z80/Makefile.bcc: Borland Makefile cleanup
9610         * as/z80/Makefile.bcc: Added Borland Makefile
9611         * support/cpp2/borland.h: Removed
9612
9613 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
9614
9615         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
9616         * src/SDCC.lex: new pragma NOIV
9617         * src/SDCCglobl.h: new pragma NOIV
9618         * src/SDCCmem.c: new pragma NOIV
9619
9620 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9621
9622         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
9623
9624 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9625
9626         * src/SDCCmain.c: signal handling is switched off by --debug
9627         * doc/Makefile: small fix for install; use clean.mk again
9628         * doc/clean.mk: clean *.pdf and *.html too
9629
9630 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
9631
9632         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
9633         * device/lib/printfl.c: fix a ds390 bug by making it portable
9634         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
9635         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
9636         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
9637         * debugger/mcs51/cmd.c: converted multi-line string literals
9638         * sim/ucsim/globals.cc: converted multi-line string literals
9639         * src/SDCCmain.c: introduced signal handler to remove temp files
9640         * doc/Makefile: small tweaks, implement clean
9641         * doc: removed generated files
9642
9643 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9644
9645         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
9646         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
9647         Address Record is not correctly generated for DS390."
9648
9649 2003-02-02  Borut Razem <borut.razem AT siol.net>
9650
9651         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
9652         * as/mcs51/asm.h: fixed compilation with Borland C
9653         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
9654         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
9655         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
9656         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
9657         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
9658         src/z80/Makefile.bcc: delete $(LIB) only if exist
9659         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
9660
9661 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
9662
9663         * device/include/malloc.h: introduced NULL
9664         * device/include/string.h: introduced NULL
9665         * device/include/stdlib.h: introduced NULL
9666         * device/lib/_memcpy.c: removed NULL
9667         * device/lib/_strcat.c: removed NULL
9668         * device/lib/_strchr.c: removed NULL
9669         * device/lib/_strcmp.c: removed NULL
9670         * device/lib/_strcpy.c: removed NULL
9671         * device/lib/_strcspn.c: removed NULL
9672         * device/lib/_strlen.c: removed NULL
9673         * device/lib/_strncat.c: removed NULL
9674         * device/lib/_strncmp.c: removed NULL
9675         * device/lib/_strncpy.c: removed NULL
9676         * device/lib/_strpbrk.c: removed NULL
9677         * device/lib/_strrchr.c: removed NULL
9678         * device/lib/_strspn.c: removed NULL
9679         * device/lib/_strstr.c: removed NULL
9680         * device/lib/_strtok.c: removed NULL
9681         * device/lib/malloc.c: removed NULL, include own header
9682
9683 2003-02-02    <johan AT balder>
9684
9685         * 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
9686         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
9687         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
9688         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
9689         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
9690         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
9691
9692 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9693
9694         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
9695         area 'DATA'"
9696
9697 2003-02-01    <johan AT balder>
9698
9699         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
9700
9701 2003-01-31    <johan AT CP255758-A>
9702
9703         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
9704
9705 2003-01-30    <johan AT balder>
9706
9707         * src/SDCCBBlock.c: automatic bug detection
9708         * src/SDCCicode.c: automatic bug detection
9709
9710 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9711
9712         * src/SDCCglobl.h:   now --xram-size 0 works
9713         * src/SDCCmain.c:    now --xram-size 0 works
9714
9715 2003-01-29    <johan AT balder>
9716
9717         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
9718
9719 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9720
9721         * as/mcs51/aslink.h: Added options --xram-size and --code-size
9722         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
9723         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
9724         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
9725         * src/SDCCglobl.h:   Added options --xram-size and --code-size
9726         * src/SDCCmain.c:    Added options --xram-size and --code-size
9727
9728 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
9729
9730         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
9731         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
9732
9733 2003-01-27    <johan AT balder>
9734
9735         * src/SDCC.y: fixed bug #613764
9736
9737 2003-01-26    <johan AT balder>
9738
9739         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
9740         * src/SDCCsymt.h: fixed bug #673374
9741         * src/SDCCglue.c: fixed bug #661910
9742         * src/SDCCast.c: fixed bug #458099 and 673374
9743
9744 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
9745
9746         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
9747         * as/mcs51/strcmpi.h: added
9748         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
9749         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
9750         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
9751         * as/mcs51/assym.c: strcmpi -> as_strcmpi
9752         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
9753         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
9754         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
9755         * as/mcs51/Makefile.aslink: new module strcmpi
9756         * as/mcs51/Makefile.asx8051: new module strcmpi
9757         * as/mcs51/Makefil.bcc: new module strcmpi
9758         * as/mcs51/Makefile.in: new module strcmpi
9759         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
9760
9761 2003-01-26    <johan AT balder>
9762
9763         * src/SDCCglue.c: reverted back to 1.124
9764         * src/SDCCast.c: reverted back to 1.156
9765         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
9766
9767 2003-01-25    <johan AT balder>
9768
9769         * src/SDCCglue.c: A better fix for bug #661910
9770         * src/SDCCast.c: A better fix for bug #661910
9771         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
9772
9773 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9774
9775         * src/Makefile.in: remove spawn.o
9776         * src/SDCCmain.c: remove spawn.h
9777         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
9778         * src/spawn.c: removed
9779         * src/spawn.h: removed
9780         * support/regression/ports/ds390/spec.mk: link with -r
9781
9782 2003-01-24    <johan AT CP255758-A>
9783
9784         * src/ds390/gen.c (aopOp): fixed bug #667458
9785         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
9786         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
9787         (createIvalCharPtr): an ival doesn't always have a storage class anymore
9788
9789 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9790
9791         * src/mcs51/peeph.def: better assembler identation by Frieder
9792         * src/mcs51/gen.c: better assembler identation by Frieder
9793
9794 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
9795
9796         * as/z80/string.h: removed for gcc 3.2
9797         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
9798         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
9799
9800 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9801
9802         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
9803         * src/SDCCpeeph.c (replaceRule): fix bug #663503
9804         * support/regression/Makefile: separate temp files for ports
9805         * support/regression/generate-cases.py: separate temp files for ports
9806         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9807         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9808
9809 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9810
9811         * moved tinitalk to device/examples/ds390
9812
9813 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
9814
9815         * as/mcs51/lkmem.c: rflag is for DS390
9816         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
9817         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
9818                          (linkEdit): move mem- and map-files the same way as ihx-files
9819         * src/z80/main.c (_setDefaultOptions): removed --generic
9820         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
9821         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
9822         * src/pic/glue.c (picglue): --c1mode works again
9823         * src/pic16/glue.c (pic16glue): --c1mode works again
9824         * src/asm.c (printCLine): fix #660034
9825
9826 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
9827
9828         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
9829         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
9830         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
9831         * as/mcs51/lkmem (summary): better fix for sp problem
9832         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
9833         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
9834         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
9835                                               remove --stack-after-data
9836
9837 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
9838
9839         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
9840         * src/SDCCutil.c (join): ugly bug: missing '\0'
9841         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
9842
9843 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9844
9845         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
9846         * src/port.h: typo
9847         * src/pic/main.c (_asmCmd): gpasm supports -o
9848         * src/z80/main.c: more general macros
9849         * device/lib/Makefile.in: remove intermediate files
9850
9851 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9852
9853         * .version: Bumped version number to 2.3.3
9854         * src/SDCCBBlock.c: new option -o
9855         * src/SDCCglobl.h: new option -o
9856         * src/SDCCglue.c: new option -o
9857         * src/SDCCmain.c: new option -o
9858         * src/asm.c: new option -o
9859         * src/ds390/main.c: new option -o
9860         * src/pic/glue.c: new option -o
9861         * src/pic/pcode.c: new option -o
9862         * src/pic/ralloc.c: new option -o
9863         * src/pic16/glue.c: new option -o
9864         * src/pic16/pcode.c: new option -o
9865         * src/pic16/ralloc.c: new option -o
9866         * src/z80/main.c: new option -o
9867         * device/lib/Makefile.in: use -o
9868         * support/regression/ports/ds390/spec.mk: use -o
9869         * support/regression/ports/gbz80/spec.mk: use -o
9870         * support/regression/ports/mcs51/spec.mk: use -o
9871         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
9872         * support/regression/ports/z80/spec.mk: use -o
9873         * support/regression/ports/ucz80/spec.mk: use -o
9874         * support/regression/ports/xa51/spec.mk: use -o
9875         * support/regression/fwk/lib/timeout.c: fix usage string
9876
9877 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
9878         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
9879
9880 2003-01-07    <johan AT balder>
9881
9882         * src/SDCCast.c (decorateType): fixed bug #600035
9883
9884 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
9885         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
9886         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
9887         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
9888         * src/pic/pcode.c: outcommented unused variable to remove warnings
9889         * src/pic/ralloc.c: outcommented unused variable to remove warnings
9890
9891 2003-01-06    <karl AT turbobit.com>
9892         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
9893    regression tests.
9894
9895 2003-01-06    <johan AT balder>
9896
9897         * src/SDCCicode.c: fixed array add
9898
9899 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
9900         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
9901         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
9902
9903 2003-01-04    <johan AT balder>
9904
9905         * src/SDCCval.c (getNelements): fixed the initialized array of structures
9906
9907 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9908         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
9909
9910 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9911         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
9912         * support/regression/tests/bug-524697.c: fit mem usage into 8032
9913
9914 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9915         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
9916
9917 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
9918         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
9919
9920 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
9921         * src/mcs51/main.c: removed {bindir}{sep} from aslink
9922
9923 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9924
9925     * in \sdcc\as\mcs51\ changed these files in order to create an
9926     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
9927     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
9928     following files to include the previous two files: aslink.dsp,
9929     Makefile.aslink, Makefile.bcc, and Makefile.in.
9930
9931     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
9932     .adb instead of .cdb
9933
9934 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9935
9936         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
9937         value from option --iram-size.
9938
9939 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9940
9941         * \sdcc\as\mcs51\lklist.c: added boundary check before using
9942         dram[] array.
9943
9944 2002-09-18    <wiml AT hhhh.org>
9945
9946         * SDCClrange.h: exposed setFromRange() and setToRange()
9947         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
9948           packRegsForAccUse() (bug 542397)
9949         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
9950           multiple times and emitting the fetch operations more than once
9951           added aopGetUsesAcc() function to allow binary operators to
9952           fetch their operands in the correct order; made genMinus() emit
9953           compact code for X = LITERAL - Y
9954
9955 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9956         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
9957         sprintf() in line 1267.
9958
9959 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9960         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
9961         like ports.
9962
9963 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9964         Changes to aslink (All the changes are marked with 'JCF'):
9965
9966         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
9967         summary().
9968
9969         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
9970         area BSEG.  Also moves, if possible, the DATA area down into the internal
9971         ram so more space is available.
9972
9973         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
9974         sflag.
9975
9976         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
9977         not bytes.  Function summary() which creates a memory usage summary
9978         file with extension .mem.  Reports of overlaping stack and small stack
9979         size.  If the space for the stack is less than 16 bytes aslink trows a
9980         warning.
9981
9982         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
9983         the 8051.  Option 'y' for memory summary output file.
9984
9985         Changes to sdcc (All the changes are marked with 'JCF'):
9986
9987         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
9988
9989         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
9990         overlaying area for it (uses RegBankUsed[4]).
9991
9992         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
9993         bank zero as used by default.  By default aslink locates the stack
9994         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
9995         the creation of the .mem file.  Delegates the allocation of data area
9996         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
9997         the begining of the stack area to aslink.
9998
9999         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
10000         glue() in SDCCglue.c creates an area for it.
10001
10002 2002-09-03  Borut Razem <borut.razem AT siol.net>
10003         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
10004         sdcc/src/pic/glue.c:
10005         introduced atexit() handler for teporay files removal in case of
10006         errors, assertions, ...
10007
10008 2002-08-29  Borut Razem <borut.razem AT siol.net>
10009         * sdcc/support/cpp2/auto-host_vc_in.h:
10010         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
10011         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
10012         Maybe there is a similar problem with BORLANDC? It should be checked!
10013
10014         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
10015         corrected improper use of assert: the assignment to clr variable was done inside the assert.
10016         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
10017         was not executed, and the compiler (cl) launched a warning:
10018         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
10019
10020 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
10021         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
10022
10023 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
10024         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
10025
10026         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10027           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
10028           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
10029           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10030           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
10031           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
10032           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
10033         - added Release configuration in VS projects
10034         - review of compiler an linker options
10035         - VC .exe files are generated in bin_vc directory, not to interfere
10036           with binaries generated from other projects (cygwin, mingw, bcc ...)
10037
10038         * sdcc/src/yacc.dsp: added
10039
10040         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
10041         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
10042         and insert the version number definitions from .version
10043
10044         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
10045
10046         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
10047         added - genarate auto-host.h using auto-host_vc_in.h as template
10048
10049         * sdcc/sdcc_vc.h,
10050         removed from CVS, generated automatically
10051
10052 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
10053         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
10054
10055 2002-08-11  Borut Razem <borut.razem AT siol.net>
10056         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
10057
10058 2002-08-10  Borut Razem <borut.razem AT siol.net>
10059         * src/SDCCmain.c (main):
10060         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
10061         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
10062         The consequence was that some temporary files were not removed.
10063
10064         * src/SDCCglue.c:
10065         unification of code in functions tempfilename() and tempfile():
10066         function tempnam() is defined in Visual Studio 6.0 and .NET
10067
10068         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
10069
10070         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10071           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
10072         - removed compiler command line option /WX: Treats all warnings as errors
10073         - update a list of source files, included into the project
10074
10075         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10076           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
10077         changed project type to Generic Project so that can be correcly converted to VS.NET project
10078
10079         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
10080
10081         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
10082
10083         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
10084
10085         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
10086         added return 0 statements after assert() to make compiler happy
10087
10088         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
10089         added newline in the def file to keep MSC compiler satisfied
10090
10091         * sdcc/src/z80/gen.c:
10092         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
10093           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
10094         - solved MSC error in function aopDump()
10095
10096         * sdcc_vc.h: define PREFIX as "\\sdcc"
10097
10098 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
10099         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
10100
10101 2002-06-22  Scott Dattalo <scott AT dattalo.com>
10102         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
10103         - Rewrote the register banking algorithm.
10104         - Added pCode live-range analysis to registers (for now, only non-used and
10105         singly-used registers optimized away)
10106
10107         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
10108
10109         * 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.
10110
10111 2002-05-10  Scott Dattalo <scott AT dattalo.com>
10112         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
10113
10114 2002-04-22  Michael Hope  <michaelh AT vroom>
10115
10116         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
10117
10118         * configure.in (DD_COPT): Added include support required for gbdk.
10119
10120         * .version: Bumped version number just to increase it.
10121
10122         * src/SDCCmain.c: Added -nostdinc to the default options.
10123
10124 2002-04-15  Michael Hope  <michaelh AT vroom>
10125
10126         * device/lib/z80/printf.c (sprintf): Added.
10127
10128         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
10129
10130         * src/z80/peeph.def: Added transpose redundent load rule.
10131
10132         * src/z80/main.c: Added force callee saves for jaune.
10133
10134         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
10135
10136         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
10137
10138 2002-03-28  Johan Knol  <johan AT balder>
10139
10140         * src/SDCCval.c: fixed bug #532436
10141
10142 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10143         * /src/port.h:
10144         Added "char *Processor" field to the port structure.
10145
10146         * /src/SDCCmain.c:
10147         Added -p option. Allows port dependent processor to be specified.
10148
10149         * all ports:
10150         Initialized the new field char *Processor field to NULL in all ports
10151
10152         * /src/pic/*:
10153         Compiler generated registers for interrupt context saving
10154         were not getting allocated.
10155
10156 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
10157
10158         * /src/SDCCast.c:
10159         Fixed left shift. Will promote the left side of a left shift
10160         if a) left shifting more than size of operand or b) when assigned
10161         to something size > size of left side
10162
10163 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10164         * src/pic/*
10165         tons of changes. Register allocation has been
10166         rewritten. Added customization for the various PICs. Flow
10167         analysis is restructured. ...
10168
10169         * src/pic/device.h:
10170         Added
10171
10172         * src/pic/device.c:
10173         Added. device.c is a PIC port hack to accomodate variations
10174         in PIC devices.
10175
10176 2002-03-13  Michael Hope  <michaelh AT vroom>
10177
10178         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
10179
10180 2002-03-04  johanknol  <johanknol AT manik>
10181
10182         * /src/SDCCval.c: fixed
10183
10184         const unsigned char arr[][2] = { { 0, 1 } };
10185         t18.c:1: error: Initializer element is not constant
10186
10187 2002-03-04  bela  <bela AT manik>
10188
10189         * /device/include/mcs51reg.h:
10190         ds89c420 register definition update
10191
10192 2002-03-03    <johan AT FRIJA>
10193
10194         * support/Util/SDCCerr.c: did something, but don't no why anymore
10195
10196         * support/regression/tests/bug-524691.c: made it a little less shy
10197
10198         * src/SDCCast.c (decorateType): fixed bug #524697
10199
10200         * src/SDCCast.c: made some lineno improvements
10201
10202         * src/SDCCval.c (getNelements): changed warning to error
10203
10204         * src/SDCCglue.c (printIvalArray): changed warning to error
10205
10206         * src/SDCCicode.c: fixed a warning for mingw
10207
10208         * src/SDCCast.c (decorateType): fixed the << promotion for ops
10209
10210         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
10211
10212 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
10213
10214         * src/ds390/peeph.def:
10215         Added some more peephole rules
10216
10217         * src/ds390/gen.c: Various fixes & enhancements
10218
10219         * src/SDCClrange.c, src/SDCClrange.h:
10220         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
10221
10222         * src/ds390/ralloc.c:
10223         various fixes & enhancements (ds390) specific
10224
10225         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
10226         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
10227         from rallocs.
10228
10229         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
10230
10231 2002-03-02    <johan AT FRIJA>
10232
10233         * src/SDCCast.c (decorateType): fixed bug #524708
10234
10235         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
10236
10237         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
10238
10239 2002-03-01  Michael Hope  <michaelh AT vroom>
10240
10241         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
10242
10243         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
10244
10245 2002-03-01    <johan AT FRIJA>
10246
10247         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
10248
10249         * src/SDCCast.c (decorateType): fixed bug #524209
10250
10251         * src/SDCCval.c (valNot): fixed bug #524195
10252
10253 2002-02-26    <johan AT balder>
10254
10255         * src/xa51/gen.c: fixed a warning
10256
10257         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
10258
10259         * src/SDCCast.c (decorateType): fixed bug #522534
10260
10261 2002-02-23    <johan AT balder>
10262
10263         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
10264
10265 2002-02-22    <johan AT balder>
10266
10267         * src/SDCCast.c: fixed bug #514865
10268
10269         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
10270
10271 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
10272
10273         * sdcc/src/SDCCloop.c:
10274         Previous fix was not good. basic blocks that have "break" or "return" are
10275         not really partof a loop , but live ranges used in these blocks should
10276         be live thru the entire loop, so set partOfLoop but don't add them to
10277         loop region
10278
10279 2002-02-21    <johan AT FRIJA>
10280
10281         * src/SDCCcse.c: fixed bug #514308
10282
10283 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
10284
10285         * src/SDCCloop.c:
10286         Fixed BUG #519583. If a conditional block ended in a return/break
10287         statement inside a loop, it was not being considered part of the loop.
10288
10289         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
10290
10291 2002-02-10  Karl Bongers <karl AT turbobit.com>
10292
10293         * debugger/*:
10294         Fixed up SDCDB debugger somewhat.  Updated debugger/README
10295         with lots of comments and notes.
10296
10297         * device/examples/test2.c:
10298         Fix bug, "red" variable not being initialized(compiler complained).
10299
10300         * device/examples/Makefile, examples/test3.c:
10301         Add Makefile in device/examples folder, compiles test3.c
10302         for use as a multiple module SDCDB test case.
10303
10304         * sim/ucsim/cmd.src/cmdset.cc:
10305         Took out debug printfs in ucsim "next" command.
10306
10307         * sim/ucsim/xa.src:
10308         Karl and Johan start ucsim XA support.  Most dissassembly working,
10309         about 75% emulation done(plenty of work remaining).
10310
10311         * sim/ucsim/z80.src:
10312         Add Z80 support to ucsim, add test-ucz80 regression test,
10313         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
10314         Notice z80 compiler fails on examples/test3.c/crc code.
10315
10316 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
10317
10318         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
10319         Added support for --parms-in-bank1
10320
10321         * src/ds390/peeph.def:
10322         added a few more peephole optimzations
10323
10324         * src/ds390/main.c:
10325         1) added __builtin_inp & __builtin_outp used to read in data of given length
10326            from a memory mapped port
10327         2) added __builtin_memcmp
10328         3) added __builtin_swapw swap bytes of a short
10329
10330         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
10331         1) handle multiple send & receives from register bank1
10332         2) ralloc can now allocate DPTR1 to some liveRanges
10333
10334         * src/SDCCsymt.c, src/SDCCsymt.h:
10335         changes to handle multiple sends & receives
10336
10337         * src/SDCCptropt.h:
10338         added some pointer arithmetic optimization
10339
10340         * src/SDCCptropt.c:
10341         added some pointer arithmetic optimizations but not stable yet so not
10342         called from anywhere (will get this working shortly)
10343
10344         * src/SDCCopt.c: fixed for multiple sends & receives
10345
10346         * src/SDCCmain.c:
10347         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
10348         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
10349            set preprocessor defines (depending on options)
10350
10351         * src/SDCCicode.c, src/SDCCicode.h:
10352         changes made to handle multiple sends & receives
10353
10354         * src/SDCCglobl.h:
10355         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
10356
10357         * src/SDCCcse.c, src/SDCCcse.h:
10358         added function findbackward def (to be used in upcoming optimization)
10359
10360         * src/SDCCcflow.c, src/SDCCcflow.h:
10361         added function returnAtEnd - to determine if a basic block terminates with
10362         a RETURN iCode
10363
10364         * src/SDCCast.c, src/SDCCast.h:
10365         added option parms-in-bank1
10366
10367         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
10368         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
10369         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
10370         adjusted for --parms-in-bank1 option
10371
10372         * device/include/string.h:
10373         donot redefine "reentrant" keyword
10374
10375         * device/include/ds80c390.h: Added some more SFRs
10376
10377 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
10378
10379         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
10380
10381 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
10382
10383         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
10384
10385 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
10386
10387         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
10388
10389 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
10390
10391         * Added --xram-movc option
10392
10393 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
10394
10395         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
10396
10397 2002-01-11  Johan Knol
10398
10399         * Added math lib of Jesus Calvino-Fraga
10400
10401 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
10402
10403         * src/SDCCmain.c (processFile): fix processing of ../../src.c
10404         * support/regression/Makefile: new target test-mcs51-stack-auto
10405         * support/regression/ports/mcs51-stack-auto/spec.mk: added
10406
10407 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10408
10409         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
10410
10411 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10412
10413         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
10414
10415 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
10416
10417         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
10418
10419         * src/SDCCglue.h: add definition for printIvalChar()
10420
10421 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10422
10423         * src/SDCCast.c: fix #498138 by Johan
10424
10425         * src/SDCCglue.c: fix #498138 by Johan
10426
10427 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10428
10429         * support/regression/Makefile: fix clean
10430
10431         * support/regression/ports/ds390/support.c: fix transmission of last character
10432
10433 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
10434
10435         * /sdcc/src/ds390/gen.c:
10436         a) improved computing address of stack variable
10437         b) took out some #if 0 code
10438         c) improved parmBytes adjustment
10439         d) improved genPlusIncr & genMinusIncr
10440         e) genCmp could generate bad code (when left assigned to DPTR)
10441         f) Fixed bug in hasInc
10442
10443         * /sdcc/src/ds390/ralloc.c:
10444         a) packRegsForSupport could mess up live information (Fixed)
10445         b) packRegsDPTRuse could be incorrect for left & right shift
10446
10447         * /sdcc/src/mcs51/ralloc.c:
10448         packRegsForSupport could mess up the live information (Fixed)
10449
10450         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
10451
10452         * /sdcc/src/SDCCast.c:
10453         can reverse a loop even if function call is present as long
10454         as the loop control variable is local & is not passed as parameter
10455
10456 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10457
10458         * /sdcc/ChangeLog: *** empty log message ***
10459
10460         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
10461         More builtin function additions for TININative
10462
10463         * /sdcc/src/ds390/ralloc.c:
10464         Had broken the regression testsuite
10465
10466         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
10467
10468         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
10469         Added funcattr hasStackParms will be set for reentrant functions when there
10470         are paramteres on the stack, this helps in minimizing frame pointer generation
10471         typeFromStr can handle function pointers now
10472
10473         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
10474         *** empty log message ***
10475
10476 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10477
10478         * /src/ds390/gen.c, /src/ds390/main.c:
10479         More builtin function additions for TININative
10480
10481         * /src/ds390/ralloc.c:
10482         Had broken the regression testsuite
10483
10484         * /src/SDCCast.c: Fixed a bug in dumptree
10485
10486         * /src/SDCCsymt.c, /src/SDCCsymt.h:
10487         Added funcattr hasStackParms will be set for reentrant functions when there
10488         are paramteres on the stack, this helps in minimizing frame pointer generation
10489         typeFromStr can handle function pointers now
10490
10491         * /doc/builtins.txt, /doc/TININative.txt:
10492         *** empty log message ***
10493
10494
10495 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10496
10497         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
10498         ALPHA version for -mTININative
10499
10500         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
10501         updated to reflect changes in the port structure
10502
10503         * /src/port.h:
10504         added function do_assemble (similar to do_link) if non-null this function
10505         will be called to do assembly (-mTININative) requires a multi command
10506         assembly
10507         added function genAssemblerEnd will be called to generate assembler Epilogue
10508
10509         * /src/SDCCsymt.c:
10510         added _JavaNative to debug info printing
10511
10512         * /src/SDCCmain.c: added option --tini-libid
10513         added port->do_assemble function (-mTININative) has a multi command assemble
10514
10515         * /src/SDCCglue.c: Disabled "constExpr" check
10516         added port->genAssemblerEnd function
10517
10518         * /src/SDCCglobl.h: Added option --tini-libid value
10519
10520         * /src/SDCCast.h:
10521         tookout optimizeCompare from the header (has no external references)
10522
10523         * /src/SDCCast.c: made one more function "static"
10524
10525 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
10526
10527         * src/z80/mappings.i: Added z80asm support.
10528
10529         * src/z80/main.c: Added z80asm support on --asm=z80asm
10530
10531         * src/z80/gen.c: Fixed asm portability issues.
10532
10533         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
10534
10535         * src/SDCCglue.c (printExterns): Added global/extern split.
10536
10537 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
10538
10539         * support/regression/Makefile: added test for mcs51 model large
10540
10541         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
10542
10543         * support/regression/ports/gbz80/spec.mk: added -mgbz80
10544
10545 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
10546
10547         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
10548
10549 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
10550
10551         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
10552
10553         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
10554
10555 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
10556
10557         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
10558
10559         * support/regression/tests/simplefloat.c: Port to mcs51.
10560
10561 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
10562         * support/regression/tests/bug-485362.c: Added.
10563
10564         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
10565
10566         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
10567
10568         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
10569
10570         * src/z80/gen.c (aopDump): Added a dump function.
10571
10572 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
10573         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
10574
10575         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
10576
10577         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
10578
10579         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
10580
10581         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
10582
10583         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
10584
10585         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
10586
10587         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
10588
10589         * support/regression/ports/ds390/support.c: Use tinibios.
10590
10591         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
10592
10593 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
10594
10595         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
10596         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
10597
10598         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
10599
10600         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
10601
10602 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
10603
10604         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
10605
10606         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
10607         (packRegsForIYUse): Created and optimised.
10608
10609 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10610
10611         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
10612 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
10613
10614         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
10615
10616         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
10617
10618         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
10619
10620 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10621
10622         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
10623
10624         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
10625
10626 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10627
10628         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
10629
10630         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
10631
10632         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
10633
10634 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10635
10636         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
10637         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
10638         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
10639
10640         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
10641
10642         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
10643         (genNotFloat): Added.
10644         (genUminusFloat): Added.
10645
10646         * device/lib/z80/Makefile: Added floating pt stubs.
10647
10648         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
10649
10650         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
10651
10652         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
10653
10654 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10655
10656         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
10657
10658         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
10659
10660         * sdcc/support/regression/Makefile: Add port ds390.
10661
10662         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
10663
10664         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
10665
10666         * sdcc/support/regression/ports/ds390/spec.mk: Added.
10667
10668         * sdcc/support/regression/ports/ds390/support.c: Added.
10669
10670         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
10671
10672         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
10673
10674         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
10675
10676 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
10677
10678         * device/include/malloc.h: Added z80 and gbz80 support.
10679
10680         * device/lib/gbz80/heap.s: Added.
10681
10682         * device/lib/z80/heap.s: Added.
10683
10684         * device/lib/malloc.c: Added z80 and gbz80 support.
10685
10686         * support/regression/tests/malloc.c (testMalloc): Added.
10687
10688         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
10689
10690         * support/regression/tests/bug-478094.c: Added.
10691
10692         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
10693
10694 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
10695
10696         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
10697
10698         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
10699
10700         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
10701
10702         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
10703
10704         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
10705
10706 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
10707
10708         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
10709
10710 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
10711
10712         * support/regression/tests/bug-477927.c: Added.
10713
10714         * src/z80/peeph.def: Added minor rules.
10715
10716         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
10717
10718         * src/z80/peeph.def: Added jump optimisation modification.
10719
10720 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
10721
10722         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
10723
10724 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
10725
10726         * support/regression/tests/funptrs.c: Added.
10727
10728 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
10729
10730         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
10731
10732 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
10733
10734         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
10735
10736         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
10737
10738         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
10739         (movLeft2ResultLong): Created.
10740
10741         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
10742         (joinPushes): Added.  Joins two char pushes into a word push.
10743
10744 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
10745
10746         * support/cpp2/Makefile.in (install): Added creation of dest dir.
10747
10748         * support/makebin/Makefile (install): Added creation of dest dir.
10749
10750 2001-10-24 Karl Bongers <karl AT turbobit.com>
10751
10752         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
10753
10754 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
10755
10756         * src/z80/ralloc.c: Turned off faulty pack for one use.
10757
10758         * src/z80/peeph-gbz80.def: Removed redundent restart options.
10759
10760         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
10761
10762 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
10763
10764         * support/regression/Makefile: Improved clean
10765
10766         * support/regression/ports/gbz80/spec.mk: Added clean
10767
10768         * support/regression/ports/host/spec.mk: Added clean
10769
10770         * support/regression/ports/z80/spec.mk: Added clean
10771
10772         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
10773
10774         * support/regression/ports/mcs51/timeout.c: little improvements
10775
10776 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
10777
10778         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
10779
10780         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
10781
10782         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
10783
10784 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
10785
10786         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
10787
10788         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
10789
10790 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
10791         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
10792
10793         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
10794
10795         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
10796
10797         * src/mcs51/main.c (_linkCmd): Added bin path to command.
10798
10799         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
10800
10801         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
10802
10803         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
10804
10805         * support/regression/tests/longor.c: Added.
10806
10807 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
10808
10809         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
10810
10811         * as/mcs51/aslink.h: define PATH_MAX
10812
10813         * as/mcs51/asm.h: define PATH_MAX
10814
10815         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
10816
10817         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
10818
10819         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
10820
10821         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
10822
10823         * src/SDCCglobl.h: define PATH_MAX
10824
10825         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
10826
10827         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
10828
10829 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
10830
10831         * src/z80/gen.c (gencjneshort): Fixed
10832
10833         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
10834
10835 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
10836
10837         * support/regression/tests/bug-469671.c: Added.
10838
10839         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
10840
10841 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
10842
10843         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
10844
10845         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
10846
10847 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
10848
10849         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
10850
10851         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
10852
10853         * src/device/lib/_mullong.c : removed hint: nooverlay bug
10854
10855         * src/device/lib/_divuint.c : removed hint: nooverlay bug
10856
10857         * src/device/lib/_divulong.c: removed hint: nooverlay bug
10858
10859         * src/device/lib/_moduint.c : removed hint: nooverlay bug
10860
10861         * src/device/lib/_modulong.c: removed hint: nooverlay bug
10862
10863 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
10864
10865         * 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.
10866
10867         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
10868
10869         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
10870
10871 2001-10-07    <johan AT FRIJA>
10872
10873         * device/lib/gets.c (gets): fixed the return value.
10874
10875 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
10876         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
10877
10878         * 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.
10879
10880         * 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.
10881
10882         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
10883
10884         * src/pic/gen.c: Removed Safe_strdup.
10885
10886         * configure.in: Added option to enable libgc support.
10887
10888         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
10889         (bitVectUnion): Optimised.
10890         (bitVectIntersect): Optimised.
10891         (bitVectBitsInCommon): Optimised.
10892         (bitVectCplAnd): Optimised.
10893
10894         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
10895
10896 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10897
10898         * src/SDCCmain.c: distinguish between assembler debug and plain options
10899
10900         * src/avr/main.c:   remove standard assembler options
10901
10902         * src/ds390/main.c: remove standard assembler options
10903
10904         * src/mcs51/main.c: remove standard assembler options
10905
10906         * src/port.h: removed "PENDING" comment
10907
10908 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10909
10910         * src/device/lib/_mulint.c  : new, with assember functions
10911
10912         * src/device/lib/_mullong.c : new, with assember functions
10913
10914         * src/device/lib/_divuint.c : with assember functions
10915
10916         * src/device/lib/_divsint.c : with assember functions
10917
10918         * src/device/lib/_divulong.c: with assember functions
10919
10920         * src/device/lib/_divslong.c: with assember functions
10921
10922         * src/device/lib/_moduint.c : with assember functions
10923
10924         * src/device/lib/_modsint.c : with assember functions
10925
10926         * src/device/lib/_modulong.c: with assember functions
10927
10928         * src/device/lib/_modslong.c: with assember functions
10929
10930         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
10931
10932         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
10933
10934         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
10935                                       replaced _mululong.c and _mulslong.c by _mullong.c
10936
10937 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10938
10939         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
10940
10941 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10942
10943         * src/SDCCglue.c: test, if win32api is available for MINGW
10944
10945 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10946
10947         * src/SDCCsymt.c: no more _modifier in printTypeChain()
10948         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
10949         * support/regression/ports/gbz80/spec.mk: removed GENERIC
10950         * support/regression/ports/host/spec.mk: removed GENERIC
10951         * support/regression/ports/mcs51/spec.mk: removed GENERIC
10952         * support/regression/ports/z80/spec.mk: removed GENERIC
10953
10954 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
10955
10956         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
10957
10958         * support/regression/tests/bug-467035.c: Created.
10959
10960 2001-10-01    <johan AT FRIJA>
10961
10962         * src/SDCC.y: fixed bug #466586 part 1
10963
10964 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
10965
10966         * SDCCicode.c: z80 has no generic pointers
10967         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
10968
10969 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
10970
10971         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
10972
10973 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
10974
10975         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
10976
10977         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
10978
10979 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
10980
10981         * configure.in: Fixed up so that ucsim is only configured once.
10982
10983         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
10984
10985         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
10986         (getPathDifference): As above.
10987
10988         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
10989
10990         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
10991
10992 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
10993         * .version: Updated to 2.3.1
10994
10995         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
10996         Added copyright header.
10997
10998         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
10999         (assemble): Added support for macro based assembler commands.
11000         (linkEdit): Added support for macro based linker commands.
11001         (preProcess): Changed the pre-processor to use macros.
11002         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
11003         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
11004
11005         * device/lib/z80/crt0.s: Added module name for debugging.
11006
11007 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
11008
11009         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11010
11011         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
11012
11013         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
11014
11015         * src/Makefile.in: Added SDCCmacro and SDCCutil
11016
11017 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
11018
11019         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11020
11021 2001-09-16    <johan AT FRIJA>
11022
11023         * 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.
11024
11025 2001-09-15    <johan AT FRIJA>
11026
11027         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
11028         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
11029
11030 2001-09-11    <johan AT FRIJA>
11031
11032         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
11033
11034 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
11035
11036         * support/regression/tests/bug-460444.c: Added test case.
11037
11038         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
11039         (genCast): Added justification for all of the asserts.
11040
11041 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
11042
11043         * support/regression/support.c: _xdata replaced by xdata
11044
11045         * support/regression/spec.mk: removed _generic
11046
11047 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
11048
11049         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
11050
11051         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
11052         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
11053
11054         * src/z80/peeph.def: Added a rule to optimise shift then compare.
11055
11056         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
11057
11058         * support/regression/tests/bug-460010.c: Added test case.
11059
11060         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
11061
11062 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
11063
11064         * support/regression/Makefile: inter-port-clean adjusted for mcs51
11065
11066         * support/regression/testfwk.c: removed workaround for bug #436344
11067
11068         * support/regression/tests/bp.c: use less memory with mcs51
11069
11070         * support/regression/tests/bug-441448.c: use less memory
11071
11072         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
11073
11074         * support/regression/collate-results.py: typo
11075
11076 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
11077
11078         * support/regression/tests/fetchoverlap.c: Added new test case.
11079
11080         * support/regression/tests/bp.c: Added new test case.
11081
11082         * support/regression/tests/bug-448984.c: Added new test case.
11083
11084         * support/regression/tests/pow2shifts.c: Added new test case.
11085
11086         * src/z80/gen.c: Turned off the noise it normally generates for the release.
11087         (genlshTwo): Fixed right shift for count > 8.
11088
11089         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
11090
11091 2001-09-08    <johan AT FRIJA>
11092
11093         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
11094
11095 2001-09-07    <johan AT FRIJA>
11096
11097         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
11098
11099         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
11100
11101 2001-09-06    <johan AT FRIJA>
11102
11103         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
11104         * bernhard noted me at this: "() equals to (void)" (1.38)
11105
11106 2001-09-05    <johan AT FRIJA>
11107
11108         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
11109
11110 2001-09-04    <johan AT FRIJA>
11111
11112         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
11113
11114
11115 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
11116
11117         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
11118
11119 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
11120
11121         * link/z80/aslink.h: Fixed path for PATH_MAX
11122
11123 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
11124
11125         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
11126
11127         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
11128
11129         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
11130
11131         * 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.
11132
11133 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
11134
11135         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
11136         (genCmp): Fixed up genCmp for the GB with longs.
11137
11138         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
11139
11140         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
11141
11142         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
11143
11144         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
11145
11146 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
11147
11148         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
11149
11150 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
11151
11152         * 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.
11153
11154         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
11155
11156 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
11157
11158         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
11159
11160         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
11161
11162 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
11163
11164   * sim/ucsim/configure:    little improvement of Cygwin-detection
11165   * sim/ucsim/configure.in: little improvement of Cygwin-detection
11166   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
11167   * support/regression/tests/bug-221100.c: small changes for mcs51
11168   * support/regression/tests/bug-221168.c: small changes for mcs51
11169   * support/regression/tests/bug-227710.c: small changes for mcs51
11170   * support/regression/tests/staticinit.c: small changes for mcs51
11171   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
11172   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11173   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11174
11175 $Revision$
11176