557be87508a564382ef79907eaff3851982701f2
[fw/sdcc] / ChangeLog
1 2006-04-28 Bernhard Held <bernhard AT bernhardheld.de>
2
3         * device/lib/pic/libdev/Makefile.in,
4         * device/lib/hc08/Makefile.in,
5         * device/lib/gbz80/Makefile.in,
6         * device/lib/z80/Makefile.in,
7         * device/lib/ds390/Makefile.in,
8         * device/lib/ds400/Makefile.in: added srcdir to include search path,
9         thanks to Borut for the bug report
10         * configure.in,
11         * configure: always create doc/Makefile independent from --enable-doc
12         * Makefile.in: always install from directory doc independent from
13         --enable-doc
14         * device/lib/pic/Makefile.in: added libdev again, it was erroneously
15         removed
16         * device/lib/pic/libdev/Makefile.in: fixed VPATH build
17         * doc/Makefile.in: install *.txt if present
18         * device/include/Makefile.in (install): added installation of pic/*.inc
19         and pic/*.txt files again, they were erroneously removed
20
21 2006-04-28 Raphael Neider <rneider AT web.de>
22
23         * src/pic/{gen.c,main.h,pcode.c},
24         * src/pic16/{gen.c,pcode.c}: quietened compiler warnings
25             concerning signedness with casts
26
27 2006-04-28 Raphael Neider <rneider AT web.de>
28
29         * src/pic/gen.c (genFunction): set global pic14_hasInterrupt on
30             definition of an interrupt handler,
31         * src/pic/glue.c (pic14_emitInterruptHandler): moved output of
32             interrupt handler stuff from picglue() to separate routine,
33           (picglue): enabled definition of intr handlers in files w/o main()
34
35 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
36
37         * support/librarian/sdcclib.c: moved include <limits.h> up to enable
38           compilation with MSVC 2005 Express Edition (VC8)
39
40 2006-04-26 Bernhard Held <bernhard AT bernhardheld.de>
41
42         * device/lib/Makefile: fixed build of gbz80 lib
43
44 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
45
46         * support/regression/tests/bug-460010.c,
47         * support/regression/tests/bug-524691.c,
48         * support/regression/tests/bug-716242.c: removed conditional defines
49           that are already in testfwk.h
50
51 2006-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
52
53         * src/ds390/gen.c (AccAXRrl1, AccAXLrl1): changed to real rotate by 1,
54           (AccAXRsh1): added, shift right by 1,
55           (AccAXLsh, AccAXRsh, AccAXRshS): updated for AccAXRrl1, AccAXRsh1 and
56            AccAXLrl1
57         * support/regression/tests/rotate.c: use <stdint.h> and enabled ds390
58
59 2006-04-25 Bernhard Held <bernhard AT bernhardheld.de>
60
61         * src/SDCCast.c (decorateType): partial fix for RFE 1475769,
62         remove cast to same type
63         * src/SDCCast.c (decorateType): fix for RFE 1475742,
64         optimize 'ifx (op == 0)' resp. 'ifx (op != 0)'
65         * as/z80/Makefile,
66         * link/z80/Makefile: removed, they have moved to
67         Makefile.in files
68         * configure,
69         * configure.in: replaced duplicate message about ucsim by missing sdcpp
70         * install-sh: fix bug #1204398 by setting umask 0022
71         * device/lib/Makefile: separate build of z80 and gbz80 lib
72
73 2006-04-24 Bernhard Held <bernhard AT bernhardheld.de>
74
75         Enabled VPATH feature: changed nearly all Makefiles (149 files).
76         See sdccman.lyx '2.4.10 VPATH feature' about how to use it.
77
78         One basic decision: e.g. src/clean.mk includes further files. In order
79         to make this work there are two solutions:
80         - rename another dozen clean.mk to clean_in.mk, add srcdir to them and
81           run configure on them. This way they can use
82           'include $(srcdir)/port-clean.mk'
83         - always include clean.mk by the Makefile at the same level. To avoid
84           that `make clean` tries to include and build Makefile.dep the
85           MAKECMDGOALS are examined (see e.g. src/Makefile.in). This has been
86           implemented, because now even `make uninstall` doesn't create
87           Makefile.in. clean.mk could be eliminated by pasting it in
88           Makefile.in.
89
90         * debugger/mcs51/Makefile.in: build own objects from library sources
91         (SLIB, SDCC) in current directory
92
93         * configure, configure.in: renamed --disable-device-lib-build in
94         --disable-device-lib; added --enable-doc, the required tools are
95         searched by configure; added result message; the toolchain for the
96         belonging ports are now only built, if the port is enabled.
97
98         * support/regression/*: all output is written in directory gen, because
99         the fwk and ports directories don't livet in the build tree using vpath
100
101         * doc/sdccman.lyx: renamed --disable-device-lib-build to
102         --disable-device-lib, added --enable-doc, added section VPATH
103
104         * sim/ucsim/configure.in,
105         * sim/ucsim/configure.in: hc08 couldn't be disabled, now hc08 and
106         z80 are enabled by default
107
108 2006-04-24 Raphael Neider <rneider AT web.de>
109
110         * src/pic/device.c (pic14_assignConfigWordValue): remember assignments
111             to config word, "pic14_"-prefixed some extern functions
112           (pic14_emitConfigWord): emit __config directive(s) if assignment to
113             config word has been found
114         * src/pic/device.h: added prototypes
115         * src/pic/pcode.c: added "pic14_"-prefix where needed
116         * src/pic/ralloc.c (IS_CONFIG_ADDRESS,pic14_assignRegisters): cosmetic
117             fixup
118         * src/pic/glue.c (pic14_constructAbsMap): handle assignments to config
119             words,
120           (pic14emitRegularMap): ignore config words,
121           (pic14createInterruptVect): moved generating __config directives away
122           (picglue): have __config directives emitted
123
124 2006-04-24 Borut Razem <borut.razem AT siol.net>
125
126         * doc/Makefile: sync with nightly build makefile
127
128 2006-04-24 Raphael Neider <rneider AT web.de>
129
130         * src/pic/pcoderegs.c (OptimizeRegUsage): do not optimize
131             registers that have not been assigned proper liveranges,
132             fixes #1469504 and #1474602,
133           (pCodeRegOptimizeRegUsage): fixed typo in comment
134
135 2006-04-24 Borut Razem <borut.razem AT siol.net>
136
137         * device/examples/main8051.c: deleted - it was removed from CVS
138           24.mar.2000 and after that modified 18.feb.2001, so it reappered
139           after the transition to Subversion
140         * src/SDCCalloc.h: deleted - it was removed  from CVS
141           3.feb.2001 and after that modified 18.feb.2001, so it reappered
142           after the transition to Subversion
143         * sim/ucsim/cpu.gif, sim/ucsim/interrupt.gif, sim/ucsim/new.gif,
144           sim/ucsim/serial1.gif, sim/ucsim/serial2.gif,
145           sim/ucsim/term_cpuopt.gif, sim/ucsim/timers.gif, sim/ucsim/wins.gif,
146           sim/ucsim/post.jpg, sim/ucsim/UCsim.jpg: corrected
147
148 2006-04-22 Maarten Brock <sourceforge.brock AT dse.nl>
149
150         * as/asx8051.dsp: added mcs51/strcmpi.h
151         * as/hc08/as_hc08.dsp: added asm.h, m6808.h, strcmpi.h
152         * as/hc08/aslink.h: updated lnksect prototype
153         * as/hc08/asm.h,
154         * as/mcs51/asm.h: added a_addr to struct area and s_org to struct sym
155         * as/hc08/asmain.c,
156         * as/mcs51/asmain.c (asmbl): init dot.s_org for S_ORG,
157           (newdot): handle A_ABS
158         * as/hc08/asout.c,
159         * as/mcs51/asout.c (outarea): output address
160         * as/hc08/lkaomf51.c,
161         * as/mcs51/lkaomf51.c: disabled unused array UsageType
162         * as/hc08/m08pst.c,
163         * as/mcs51/i51pst.c,
164         * as/z80/z80pst.c: "ABS" is not A_OVR
165         * as/hc08/lkarea.c (newarea): read a_addr,
166           (lnkarea): added codemap array, sort absolute areas to the front,
167            combine all GSINITx/GSFINAL,
168           (find_empty_space, allocate_space): new functions,
169           (lnksect): return next address, handle absolute sections
170         * as/mcs51/lkarea.c (newarea): read a_addr,
171           lnksect2 prototype changed,
172           (lnkarea2): define codemap unsigned, combine all GSINITx/GSFINAL,
173           (find_empty_space, allocate_space): new, factored out of lnksect2,
174           (lnksect2): return next address, handle absolute sections
175         * as/hc08/lkhead.c,
176         * as/mcs51/lkhead.c (newhead): head is absolute but not overlay
177         * as/hc08/lklibr.c (addfile, fndsym),
178         * as/mcs51/lklibr.c (addfile, buildlibraryindex, fndsym): prevent
179           index out of range and detect both '\' and '/'
180         * device/include/mcs51/c8051f200.h: added _XPAGE, removed bad comment
181         * device/include/stdbool.h: removed SDCC_ds390 from check to pass
182           regression tests (ds390 cannot return bool yet)
183         * doc/sdccman.lyx: changed version number, document changed --no-peep,
184           document critical interrupts on z80, document changed SDCC define
185         * src/asm.c (_asxxxx_mapping): fixed .org directive,
186           (_a390_mapping): added .org directive
187         * src/hc08/gen.c (transferAopAop): made bytemask log to fix warning,
188           (genMultOneByte): fixed warnings
189         * src/hc08/hc08.dsp: lowered warning level to 2 to suppress pedantic
190           ones
191         * src/pic16/device.c: removed newReg prototype, removed BYTE_IN_LONG
192         * src/pic16/gen.c (pic16_popGetLabel): made parameter key signed,
193           (pic16_genLeftShiftLiteral, genRightShiftLiteral): fixed warnings
194         * src/pic16/gen.h: changed prototype for pic16_popGetLabel
195         * src/pic16/main.c: removed newReg prototype
196         * src/pic16/pcode.c,
197         * src/pic16/pcode.h (pic16_emitDB): changed parameter c to int to fix
198           warnings
199         * src/pic16/pic16.dsp: lowered warning level to 2 to suppress pedantic
200           ones
201         * src/pic16/ralloc.c
202         * src/pic16/ralloc.h (newReg): changed type to int and size to unsigned
203           to fix warnings
204         * src/pic/pcode.c (allocInternalRegister): changed parameter optype
205           from short to PIC_OPTYPE
206         * src/pic/pic.dsp: lowered warning level to 2 to suppress pedantic ones
207         * src/pic/ralloc.c (newReg, allocInternalRegister): changed parameter
208           optype from short to PIC_OPTYPE
209         * src/port.h: made int_size unsigned to fix warnings
210         * src/SDCC.y: fixed warning on MSVC
211         * src/SDCCicode.c (getArraySizePtr): return unsigned int
212         * src/SDCCopt.c (convertToFcall): fixed warnings
213         * src/SDCCsymt.h: removed double prototype for genSymName
214         * src/xa51/ralloc.c (allocReg): made size unsigned int, type int and
215           offset int to fix warnings
216
217 2006-04-22 Borut Razem <borut.razem AT siol.net>
218
219         * doc/sdccman.lyx, */Makefile, */Makefile.in:
220           references to CVS replaced with Subversion
221
222 2006-04-21 Borut Razem <borut.razem AT siol.net>
223
224         * doc/sdccman.lyx, */Makefile, */Makefile.in:
225           references to CVS replaced with Subversion
226
227 2006-04-19 Borut Razem <borut.razem AT siol.net>
228
229         * src/version.awk: adapted for svn
230         * /asxxxx/asxhtml/*.gif: set property svn:mime-type to image/gif
231           sim/ucsim/doc/*.gif: set property svn:mime-type to image/gif
232           sim/ucsim/doc/*.jpg: set property svn:mime-type to image/jpeg
233           /binutils-avr/etc/*.vi, *.jin: removed all properties
234           support/scripts/sdcc.ico: set property svn:mime-type to image/x-icon
235
236 2006-04-19 Borut Razem <borut.razem AT siol.net>
237
238         * CVS to Subversion migration completed
239
240 2006-04-18 Borut Razem <borut.razem AT siol.net>
241
242         * support/scripts/sdcc.nsi: removed unexisting ${DEV_ROOT}\lib\pic\*.o,
243           ${DEV_ROOT}\lib\src\pic\libdev\*.S, ${DEV_ROOT}\lib\src\pic\libdev\*.inc
244
245 2006-04-17 Borut Razem <borut.razem AT siol.net>
246
247         * device/include/Makefile.in: added pic/*.inc to the installation
248
249 2006-04-15 Bernhard Held <bernhard AT bernhardheld.de>
250
251         * support/regression/collate-results.py: fixed output in case of
252         a valdiag error
253         * support/regression/generate-cases.py: fixed splitting of pathnames
254         with dots
255         * as/hc08/lklibr.c (addfile),
256         * as/mcs51/lklibr.c (addfile): fixed off-by-one bug
257
258 2006-04-11 Raphael Neider <rneider AT web.de>
259
260         * src/pic16/gen.c (getFreePtr, pic16_popRegFromString),
261         * src/pic16/ralloc.c (pic16_allocregWithName): removed debug output
262         * src/pic16/pcode.c (assignValnums): fixed #1460578
263
264 2006-04-11 Raphael Neider <rneider AT web.de>
265
266         * device/lib/pic/libdev/*.c,
267         * device/include/pic/*.h: replaced sfr and data with __sfr and __data,
268           fixes #1468739, enables compilation in --std-c99 mode
269         * support/scripts/inc2h.pl: emit __sfr/__data instead of sfr/data
270
271 2006-04-11 Raphael Neider <rneider AT web.de>
272
273         * src/pic/device.c (find_device): removed debug output
274           (list_valid_pics): enabled verbose listing of supported devices
275         * device/include/stdbool.h: define bool as char for pic14/16 as well
276
277 2006-04-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
278
279         * src/SDCC.y: allow using brackets here: "__interrupt (1) __using (1)"
280
281 2006-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
282
283         * .version: bumped version to 2.5.6
284         * src/pic/ralloc.c (newReg): MSVC doesn't support __builtin_return_address
285
286 2006-04-06 Raphael Neider <rneider AT web.de>
287
288         * .version: bumped version to 2.5.6 (pic14 ABI changed)
289         * src/SDCCmain.c: add -DSDCC_PROCESSOR=<id> for pic14 port
290         * src/pic/glue.c (emitSymbolToFile,pic14_constructAbsMap,
291           pic14emitRegularMap,pic14emitMaps): moved output for absolute symbols to
292             pic14_constructAbsMap
293           (pic14printPublics): declare absolute global symbols as global
294           (pic14createInterruptVect),
295         * src/pic/ralloc.c (IS_CONFIG_ADDRESS): support second config word,
296           (newReg): assume new registers unused, use correct name in
297             hashtable (reg->name instead of name), more debugLog output
298         * src/pic/device.h (PIC_device): added fields for verbose output
299         * src/pic/device.c: moved device definition to pic14devices.txt,
300             added routines for runtime parsing of pic14devices.txt,
301             added support for second config word
302         * src/pic/main.c (_process_pragma): removed #pragma maxram,
303           (_pic14_keywords): no longer accept "bit" and "sbit" keywords
304           (_pic14_initPaths): add search paths with "pic" suffix (not "pic14")
305           (_pic14_parseOptions): moved pCodeInitRegisters here
306           (_pic14_do_link): add "pic$(ARCH).lib" to linker arguments
307         * src/pic/pcode.c (AnalyzeBanking): bail out on unset processor,
308           (pCodeInitRegisters): rewrapped comments, perpared new approach to
309             handling the pseudo stack
310         * device/lib/Makefile.in: ignore failures in objects-pic16,
311         * device/lib/pic/{configure,configure.in,Makefile}: added libdev/
312         * device/lib/pic/NEWS: document new dependency on picXXX.lib
313         * device/lib/pic/Makefile.subdir,
314         * device/lib/pic16/Makefile.subdir: improved clean rules
315         * device/lib/pic/libdev/: NEW, pic14 device libraries
316         * device/lib/pic/libsdcc/_gptr{get,put}{1,2,3,4}.S: use _X not X
317         * device/lib/pic/libsdcc/macros.inc: use _X not X, declare default SFRs
318         * device/include/Makefile.in: create subdir and install pic14 headers
319         * device/include/pic/p16f_common.inc: removed unused declarations
320         * device/include/pic/pic16*.h: added header files for 100+ 14 bit
321             PICs from inc2h.pl v1.6,
322             replaced BIT_AT macros with struct declarations
323         * device/include/pic/pic14devices.txt: definition of supported devices,
324             all above improvements contributed by Zik Saleeba, thanks
325         * support/scripts/inc2h.pl: removed BIT_AT, replaced with structs
326         * support/scripts/sdcc.nsi: also install pic14 device libraries and
327             headers
328
329 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
330
331         * device/include/mcs51/c8051f410.h: added interrupt numbers,
332         * device/include/mcs51/c8051f200.h: old SiLabs mcu completes the list,
333           thanks to Charles Olds
334
335 2006-04-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
336
337         * debugger/mcs51/cmd.c (infoRegisters): show return address on stack
338
339 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
340
341         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug 1464657
342         * src/mcs51/gen.c (genJumpTab): fixed bug in medium model
343         * support/regression/bug1464657.c: added, new test
344
345 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
346
347         * src/SDCCmain.c (preProcess): implemented RFE 1449908, define SDCC as the
348           version number
349
350 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
351
352         * src/SDCCpeeph.c (initPeepHole): implemented RFE 1460196, when both
353           --no-peep and --peep-file <file> are used don't use default rules but
354           do use the <file>
355
356 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
357
358         * src/mcs51/gen.c (genCall): fixed bug 1457608
359
360 2006-03-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
361
362         * doc/sdccman.lyx: reverted to version 1.129 of december as my latest
363         changes seem to cause (trigger?) problems with the build system.
364
365 2006-03-29 Maarten Brock <sourceforge.brock AT dse.nl>
366
367         * src/SDCCpeeph.c (operandsLiteral): new, added,
368           (callFuncByName): inserted operandsLiteral
369         * src/mcs51/peeph.def: reenabled 132.e, added extra check to 132.x
370
371 2006-03-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
372
373         * doc/sdccman.lyx: added paragraph "Use of SDCC in Education"
374         * src/mcs51/peeph.def: disabled rule 132.e fixing bug #1453093
375
376 2006-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
377
378         * src/z80/gen.c (genFunction, genEndFunction): fixed bug 1160666,
379           implemented patch 1120823 Thanks to Willy De la Court (normal
380           interrupts need an interrupt number now if they are made critical),
381           and enabled nesting of critical functions though not for gbz80
382           (genCritical, genEndCritical): added functions
383           (genZ80Code): added cases for CRITICAL and ENDCRITICAL
384         * src/z80/mappings.i: added "ei" to all mappings
385
386 2006-03-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
387
388         * sim/ucsim/cmd.src/newcmdcl.h: applied patch fixing GCC 4.1 build
389         submitted by the Debian SDCC maintainer Aurelien Jarno:
390         "Credits goes to Martin Michlmayr, who rebuilt the whole Debian
391         archive with gcc 4.1 on mips and wrote the patch"
392
393 2006-03-16 Raphael Neider <rneider AT web.de>
394
395         * src/pic16/genarith.c (genAddLit): simplified and fixed case where
396           the left operand is shorter than the result (c* = lit-c* + int),
397           fixes bug #1450796
398         * src/pic16/gen.c (genRightShift): check IS_SYMOP before accessing
399           OP_SYMBOL
400
401 2006-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
402
403         * src/.version: increased version number to 2.5.5
404         * src/SDCCmain.c (linkEdit): do not test for PIC16 target since, PIC16
405         linking is done manually in pic16 port's _linkEdit,
406         * src/SDCCsymt.c (compStructSize): for target PIC16 and shell variable
407         PIC16_PACKED_BITFIELDS, compact bitfield structures as much as possible,
408         * src/pic16/gen.c (aopForSym): when direct register name is WREG then
409         allocate asmop as AOP_ACC,
410         (aopForRemat): added parameter 'bool result' in function declaration,
411         (pic16_aopGet): return AOP_ACC when accessing WREG,
412         (pic16_popGetTempReg): minor modification,
413         (pic16_popRegFromIdx): first try with 'pic16_regWithIdx' then with
414         'pic16_allocWithIdx',
415         (genPcall): removed ftype, usage of OP_SYM_TYPE asserted error when
416         calling function in absolute addresses,
417         (genAssign): take into account AOP_ACC asmop,
418         * src/pic16/pcode.c (pic16_newpCodeOpReg): minor modifications,
419         * src/pic16/pcoderegs.c: some debug functions and lines added,
420         * src/pic16/ralloc.c (decodeRegType): added but commented out,
421         * (pic16_typeRegWithIdx): search 'pic16_dynInternalRegs' for given
422         register too,
423         * (pic16_findFreeReg, pic16_findFreeRegNext): allocate new register via
424         call to allocReg, not by manually allocating a new one,
425         (pic16_assignRegisters): now before going through the register
426         allocating functions mark all registers as free. This eliminates some
427         side effects resulting from peephole parser done earlier in the backbone
428
429 2006-03-13 Maarten Brock <sourceforge.brock AT dse.nl>
430
431         * src/SDCCicode.c (geniCodeLogic),
432         * src/SDCCast.c (decorateType): applied patch by Bernhard for rfe 1422617
433
434 2006-03-10 Maarten Brock <sourceforge.brock AT dse.nl>
435
436         * src/mcs51/gen.c (sameReg): new, checks if two aop regs are the same,
437           (genSend): bugfix, do not allocate and free twice,
438           (shiftRLong): handle partially overlapping aops
439         * support/regression/tests/bitopcse.c: fixed warning redefined idata
440
441 2006-03-08 Borut Razem <borut.razem AT siol.net>
442
443         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata
444           for pic16
445
446 2006-03-08 Maarten Brock <sourceforge.brock AT dse.nl>
447
448         * support/regression/tests/bug1409955.c: new, added
449         * src/mcs51/gen.h: changed asmop.freed:1 to asmop.allocated for tracking
450         * src/mcs51/gen.c (newAsmop): set asmop.allocated to 1,
451           (aopForSym, aopOp): increment asmop.allocated if reused,
452           (freeAsmop): decrement asmop.allocated and check for zero instead of
453           using asmop.freed,
454           (freeForBranchAsmop): use asmop.allocated instead of asmop.freed,
455           (genNot, genCpl, genUminus, genMinus, genMult, genDiv, genMod, genCmpGt,
456            genCmpLt, genAndOp, genOrOp, genAnd, genOr, genXor, genRRC, genRLC,
457            genGetHbit, genGetAbit, genGetByte, genGetWord, genSwap,
458            genLeftShiftLiteral, genLeftShift, genRightShiftLiteral,
459            genSignedRightShift, genRightShift, genDataPointerGet,
460            genPagedPointerGet, genFarPointerGet, genCodePointerGet,
461            genGenPointerGet, genDataPointerSet, genAssign, genCast): free asmop's
462             in reverse order from allocation,
463           (genPlus, genCmpEq): free asmop's in reverse order from allocation and
464             added swappedLR to keep track
465         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata,
466           pdata & code for GCC, z80, gbz80 & hc08
467         * support/regression/tests/zeropad.c: moved defines to testfwk.h
468
469 2006-03-08 Raphael Neider <rneider AT web.de>
470
471         * src/pic16/main.c (_hasNativeMulFor): fixed bug #1444425
472
473 2006-03-07 Maarten Brock <sourceforge.brock AT dse.nl>
474
475         * device/include/mcs51/c8051f410.h: new SiLabs mcu
476         * src/ds390/peeph.def: disabled 186.d and 227.a as fix for #1434401
477         * support/regression/tests/array.c: added parenthesis, made arrays unsigned
478
479 2006-03-06 Borut Razem <borut.razem AT siol.net>
480
481         * support/regression/ports/pic16/spec.mk: link with libm18f.lib,
482           made the linker quiet
483
484 2006-03-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
485
486         * src/pic16/gen.c (genPcall): fixed bug #1443644
487         * src/pic16/device.h (struct pic16_options_t): added 'int CATregs' flag
488         which dumps before the function entry point a data byte which represents
489         the number of the local variables used by the specified function, added
490         'xinst' for initial support for Extended Instruction Support,
491         * src/pic16/gen.c (aopForSym, pic16_aopGet): beautifications,
492         (pic16_testStackOverflow): do not prefix GSTACK_TEST_NAME with
493         port->fun_prefix anymore (may change later),
494         (genFunction, genEndFunction): do not store/restore local registers for
495         _main (this should take care the --main-return command line option in
496         the future),
497         (genOr): removed some legacy pic-port instructions,
498         * src/pic16/genarith.c (genAddLit): re-enabled old code because
499         performing operations with SFR's causes data to be written more than
500         once to each SFR. Perhaps SFRs should be handled in special cases...
501         * src/pic16/glue.c: macros BIG_ENDIAN and BYTE_IN_LONG are moved to
502         pcode.h
503         * src/pic16/main.c (_process_pragma): stack bound checking did not take
504         into account for stack starting position,
505         (struct OPTIONS pic16_optionsTable): added command line argument
506         --extended or -y for Extended Instruction Support,
507         * src/pic16/ralloc.c (pic16_decodeOp): added case for FUNCTION,
508         (deassignLRs): *** perhaps the most important change, old 'for' code
509         (commented out for reference), didn't account for some registers which
510         were left marked 'not free' after a pointer operation. The change
511         reduces register usage a lot in some cases
512
513 2006-03-04 Borut Razem <borut.razem AT siol.net>
514
515         * support/regression/ports/hc08/spec.mk: remove *.asm in traget
516           _clean
517         * support/regression/tests/bug-524697.c: decreased array size for
518           mcs51 to fit into the internal RAM
519         * support/regression/Makefile.in: a little bit more verbose
520
521 2006-03-03 Borut Razem <borut.razem AT siol.net>
522
523         * support/regression/fwk/lib/testfwk.c,
524           support/regression/fwk/include/testfwk.h: introduced function
525           _prints(), nonrecursive _printn(), call _initEmu() from main()
526         * support/regression/ports/gbz80/support.asm,
527           support/regression/ports/ucz80/support.asm,
528           support/regression/ports/z80/support.asm,
529           support/regression/ports/ds390/support.c,
530           support/regression/ports/hc08/support.c,
531           support/regression/ports/host/support.c,
532           support/regression/ports/mcs51/support.c,
533           support/regression/ports/xa51/support.c: added empty _initEmu()
534           function
535         * support/regression/ports/pic16/gpsim.cmd,
536           support/regression/ports/pic16/spec.mk,
537           support/regression/ports/pic16/support.c,
538           support/regression/Makefile.in: added pic16 regression test
539
540 2006-03-01 Raphael Neider <rneider AT web.de>
541
542         * src/pic16/gen.c (genPcall,pic16_derefPtr,genGenPointerGet,
543           genConstPointerGet): use safe way of generating MOVFF to cover
544             literals as well as registers, fixes bug #1440527
545         * src/pic16/glue.c (pic16_printIvalBitFields): prevent NULL pointer
546             dereference
547           (pic16_printIvalUnion,pic16_isUnion): NEW, handle initialized unions
548             more correctly, fixes bug #1232186
549           (pic16_printIval): use pic16_printIvalUnion() for initialized unions
550         * src/pic16/main.c (_pic16_linkEdit): reorder linker arguments to make
551             gplink guess the correct processor in more cases, applied patch
552             from Till Riedel attached to and fixing bug #1436552
553
554 2006-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
555
556         * support/regression/tests/array.c: added, contains check for #1434401
557         * src/mcs51/peeph.def: disabled 186.d as temporary fix for #1434401
558
559 2006-02-16 Maarten Brock <sourceforge.brock AT dse.nl>
560
561         * device/include/mcs51/at89s8253.h: new, thanks to Krzysztof Polomka
562         * device/include/mcs51/at89S8252.h: fixed, thanks to Krzysztof Polomka
563         * device/include/mcs51/c8051f326.h,
564         * device/include/mcs51/c8051f340.h: new SiLabs mcu's
565         * device/include/mcs51/c8051f000.h,
566         * device/include/mcs51/c8051f018.h,
567         * device/include/mcs51/c8051f020.h: used () with __at, renamed IDLE,STOP to
568           PCON_IDLE,PCON_STOP and added sfr16 definitions
569
570 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
571
572         * src/mcs51/gen.c (genPlus, genMinus, genMult, genGetAbit, genGetByte,
573           genGetWord): fixed bug 1409955
574
575 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
576
577         * device/include/hc08/mc68hc908gp32.h,
578         * device/include/hc08/mc68hc908jb8.h: removed AWUL, added PTA6 & PTA7
579
580 2006-02-13 Maarten Brock <sourceforge.brock AT dse.nl>
581
582         * src/SDCCast.c (constExprValue): return NULL if not a value
583         * src/SDCCglue.c (printIvalArray): fixed bug 1225568
584         * src/hc08/gen.c(genUnpackBits, genUnpackBitsImmed): fixed bug 1019480
585         * support/regression/tests/bitfields.c: enabled signed bitfield for all
586
587 2006-02-13 Borut Razem <borut.razem AT siol.net>
588
589         * src/regression/ptrarg.c: added, fails due to bug #1430967
590         * src/regression/Makefile: ptrarg.c added, ...
591
592 2006-02-12 Maarten Brock <sourceforge.brock AT dse.nl>
593
594         * src/z80/gen.c (genUnpackBits): fixed bug 1019480
595         * support/regression/tests/bitfields.c: enabled signed bitfield for z80
596
597 2006-02-11 Borut Razem <borut.razem AT siol.net>
598
599         * src/SDCCmain.c: Added "sdcc: Calling linker..." if --verbose,
600           print "Processor: xxx" message to stdout only if --verbose
601
602 2006-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
603
604         * src/SDCCglue.c (printIvalStruct): fixed bug 1426356 union initializer
605         * support/regression/tests/bug1426356.c: added
606         * support/regression/tests/bitfields.c: removed 2 tests
607
608 2006-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
609
610         * device/include/mcs51/at89c51snd1c.h: updated comments, see patch 1428901
611         * device/include/mcs51/c8051f330.h,
612         * device/include/mcs51/c8051f350.h: used () with __at, renamed IDLE,STOP to
613           PCON_IDLE,PCON_STOP and added sfr16 definitions
614         * device/lib/_divsint.c,
615         * device/lib/_divuint.c,
616         * device/lib/_divulong.c,
617         * device/lib/_divulong.c: renamed a,b to x,y to avoid confusion, fixed
618           register bank bug for small stackauto
619
620 2006-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
621
622         * support/regression/fwk/lib/timeout.c: include <stdlib.h> for exit()
623
624 2006-02-08 Maarten Brock <sourceforge.brock AT dse.nl>
625
626         * support/regression/ports/mcs51-xstack-auto/spec.mk: forgot -I(...)/mcs51
627         * all.dsp: corrected several bin paths
628         * device/include/mcs51/c8051f120.h,
629         * device/include/mcs51/c8051f300.h,
630         * device/include/mcs51/c8051f310.h: used () with __at and renamed IDLE,STOP
631           to PCON_IDLE,PCON_STOP
632         * device/include/mcs51/c8051f320.h: see above, also added sfr16 definitions
633         * device/lib/printf_large.c (output_float): fixed bug 1388703
634         * support/regression/tests/bug1057979.c: added test for bug 1388703
635
636 2006-02-08 Raphael Neider <rneider AT web.de>
637
638         * src/pic/pcode.c (pciTRIS): fixed typo,
639           (BuildFlow,LinkFlow_pCode): added (disabled) debug output,
640           (LinkFlow): fixed handling of flows that end in a call,
641           (ReuseReg): perform safety check earlier
642         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed
643             to work with flows at the beginning of a pBlock,
644             fixes #1426557 (Symbol not previously defined),
645           (pic14_ReMapLiveRanges): NEW, destroy and rebuild register
646             usage information
647           (RemoveUnusedRegisters): update register usage info
648         * src/pic/ralloc.c (newReg): prevent duplicate registers from being
649             created, reuse existing ones instead
650         * src/pic/gen.c (genPcall): fixed #1424719
651
652 2006-02-07 Bernhard Held <bernhard AT bernhardheld.de>
653
654         * link/z80/lkmain.c,
655         * link/z80/lklex.c,
656         * link/z80/lkdata.c,
657         * link/z80/aslink.h: fixed build on current cygwin:
658         replaced getline() by lk_getline()
659
660 2006-02-01 Borut Razem <borut.razem AT siol.net>
661
662         * src/regression/add.c, src/regression/add2.c, src/regression/add3.c,
663           src/regression/add4.c, src/regression/and1.c, src/regression/and2.c,
664           src/regression/arrays.c, src/regression/b.c, src/regression/bank1.c,
665           src/regression/bool1.c, src/regression/bool2.c,
666           src/regression/bool3.c, src/regression/call1.c,
667           src/regression/compare.c, src/regression/compare10.c,
668           src/regression/compare2.c, src/regression/compare3.c,
669           src/regression/compare4.c, src/regression/compare5.c,
670           src/regression/compare6.c, src/regression/compare7.c,
671           src/regression/compare8.c, src/regression/compare9.c,
672           src/regression/configword.c, src/regression/for.c,
673           src/regression/inline.c, src/regression/mult1.c,
674           src/regression/nestfor.c, src/regression/or1.c,
675           src/regression/pointer1.c, src/regression/ptrfunc.c,
676           src/regression/rotate1.c, src/regression/rotate2.c,
677           src/regression/rotate3.c, src/regression/rotate4.c,
678           src/regression/rotate5.c, src/regression/rotate6.c,
679           src/regression/rotate7.c, src/regression/string1.c,
680           src/regression/struct1.c, src/regression/sub.c,
681           src/regression/sub2.c, src/regression/switch1.c,
682           src/regression/while.c, src/regression/xor.c,
683           src/regression/create_stc, src/regression/simulate,
684           src/regression/rt.sh, src/regression/Makefile: reenabled Scott's PIC14
685           regression tests
686         * src/regression/gpsim_assert.h: added
687
688 2006-01-28 Bernhard Held <bernhard AT bernhardheld.de>
689
690         * src/ds390/gen.c (unsaveRegisters): fixed literal function pointer
691         ((void (code *) (void)) 0) ();
692         * as/hc08/aslex.c,
693         * as/hc08/aslink.h,
694         * as/hc08/asm.h,
695         * as/hc08/asmain.c,
696         * as/hc08/lkdata.c,
697         * as/hc08/lklex.c,
698         * as/hc08/lkmain.c,
699         * as/mcs51/aslex.c,
700         * as/mcs51/aslink.h,
701         * as/mcs51/asm.h,
702         * as/mcs51/asmain.c,
703         * as/mcs51/lkdata.c,
704         * as/mcs51/lklex.c,
705         * as/mcs51/lkmain.c,
706         * as/z80/aslex.c,
707         * as/z80/asm.h,
708         * as/z80/asmain.c: fixed build on current cygwin:
709         replaced getline() by as_getline()
710
711 2006-01-27 Bernhard Held <bernhard AT bernhardheld.de>
712
713         * src/SDCC.y: fixed bug #716242, exchanged pointer and function
714         declarator in the symbol chain
715         * src/SDCCsymt.h,
716         * src/SDCCsymt.c (processFuncPtrArgs): added, removes "(void)"
717         parameter list for function pointers
718         * src/SDCCast.c (decorateType): added call of processFuncPtrArgs()
719         * support/regression/tests/bug-716242.c: added
720
721 2006-01-20 Bernhard Held <bernhard AT bernhardheld.de>
722
723         * src/SDCCicode.c (geniCodeAdd, geniCodeArray): use char for array
724         offset if possible
725         * src/SDCCast.c (getLeftResultType): 255 fits in char, not 256
726
727 2006-01-18 Bernhard Held <bernhard AT bernhardheld.de>
728
729         * src/SDCCast.c (backPatchLabels): fixed bug #1408066: made it
730         inifinitely recurseable, added static
731         * support/regression/tests/bug-1408066.c: added
732
733 2006-01-17 Bernhard Held <bernhard AT bernhardheld.de>
734
735         * src/SDCCicode.h,
736         * src/SDCCicode.c (newiTempPreheaderLabel, newiTempLoopHeaderLabel):
737         renamed, added possibility to create "postLoopLbl"-labels
738         * src/SDCCBBlock.c (iCodeBreakDown): renamed newiTempPreheaderLabel to
739         newiTempLoopHeaderLabel
740         * src/SDCCloop.c (newInduction, newRegion, backEdges, insertIntoLoop,
741         isNotInBlocks, addToExitsMarkDepth, createLoop, dominatedBy,
742         addDefInExprs, assignmentsToSym, isOperandInvariant, pointerAssigned,
743         hasNonPtrUse, loopInvariants, addressTaken, findInduction,
744         findDefInRegion, mergeRegions, ifMerged, mergeInnerLoops): made static,
745         (pinduction, pregion, hasIncomingDefs, findLoopEndSeq): disabled,
746         (basicInduction): fixed bug #136564, made static,
747         (loopInduction): changed parameter of basicInduction, made static,
748         (addPostLoopBlock): added
749         * src/SDCCloop.h: removed backEdges, pregion, pinduction,
750         loopOptimizations, addressTaken, findDefInRegion, hasIncomingDefs,
751         findLoopEndSeq
752         * support/regression/tests/bug-136564.c: added
753         * support/regression/ports/mcs51-xstack-auto/spec.mk: added
754         --std-sdcc99 to LIBSDCCFLAGS
755
756 2006-01-16 Bernhard Held <bernhard AT bernhardheld.de>
757
758         * src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false
759         while loop
760         * support/regression/tests/bug-1406131.c: added
761
762 2005-12-31 Bernhard Held <bernhard AT bernhardheld.de>
763
764         * src/SDCCast.c (decorateType): fix promotion of unary minus
765         * src/SDCCsymt.c (computeType): beautified
766         * src/SDCCval.c (cheapestVal): beautified, old non-Ansi version removed,
767         (valUnaryPM, valComplement): fix sign and promotion,
768         (valNot): ANSI: result type is int (SDCC: unsigned char)
769         * support/regression/tests/uminus.c: speedup by removing superflous
770         test case 'int'
771         * support/regression/tests/onebyte.c: added promotion and signedness
772         tests for unary minus
773         * support/regressions/tests/bug-477927.c: disable warning about
774         uninitialized variables
775         * support/regression/tests/not.c: added
776
777 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
778
779         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
780         * src/mcs51/gen.c (gen51Code): show final register usage after
781         fillGaps in asm with --i-code-in-asm
782         * src/SDCClrange.c (sequenceiCode, setLiveFrom, setLiveTo,
783         markLiveRanges, markAlive, findNextUseSym, findNextUse, unvisitBlocks,
784         incUsed, rliveClear, adjustIChain): made static,
785         (setFromRange): excluded because it's unused,
786         (findPrevUseSym, markWholeLoop): added,
787         (findPrevUse): rewritten; fixes bug 895992; now a complete search
788         through all branches of predecessors enables sdcc to emit the warning
789         W_LOCAL_NOINIT, marking of outermost loop was incomplete,
790         (rlivePoint): made static, added parameter emitWarnings which is only
791         true during the first run out of two,
792         (findRecursiveSucc, findRecursivePred): removed,
793         (computeLiveRanges): made static, added parameter emitWarnings,
794         (dumpIcRlive): added for debugging only
795         * src/SDCClrange.h: added boolean parameter to computeLiveRanges(),
796         removed prototype of setFromRange()
797         * src/SDCCopt.c (eBBlockFromiCode): added new parameter emitWarnings
798         in call of computeLiveRanges()
799         * support/regression/tests/bug-895992.c: added
800         * support/regression/tests/bug-971834.c: added
801         * support/valdiag/tests/bug-895992.c: added
802         * support/valdiag/tests/bug-971834.c: added
803
804 2005-12-18 Raphael Neider <rneider AT web.de>
805
806         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
807           (genUnpackBits): improved code for direct operands,
808           (genPackBits): improved code for literal assignment to bitfields
809             and for direct destination operands (no FSR indirection),
810             prevented redundant AND, fixes #1362800,
811           (AccLsh): added parameter to disable masking of the result
812         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
813           skip instructions with side-effects (like incfsz),
814           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
815         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
816         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
817           fixes #1375263
818
819 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
820
821         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
822         volatile variables as spill location
823
824 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
825
826         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
827         replacing literals
828         * support/regression/tests/bug-1376320.c: added
829
830 2005-12-08 Raphael Neider <rneider AT web.de>
831
832         * src/pic/device.c: renamed is_shared to pic14_is_shared
833         * src/pic/gen.c (genIfx): re-enabled handling of sbits
834         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
835           (is_valid_identifier): added for above workaround
836
837 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
838
839         * device/lib/Makefile.in: fixed to enable port-specific-objects
840         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
841           char, thanks Hubert Sack
842         * doc/sdccman.lyx: documented --xstack-loc,
843           elaborated a bit more on interrupts and pitfalls,
844           removed "setjmp/longjmp unsupported",
845           documented some unsupported C99 features
846         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
847         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
848           if, thanks Hubert Sack
849         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
850         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
851           make make_library
852         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
853           regression tests can report resource usage (rfe 700441)
854         * support/regression/collate-results.py: report resource usage
855         * support/regression/ports/ds390/spec.mk,
856         * support/regression/ports/hc08/spec.mk,
857         * support/regression/ports/mcs51/spec.mk,
858         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
859         * support/regression/ports/ds390/uCsim.cmd,
860         * support/regression/ports/hc08/uCsim.cmd,
861         * support/regression/ports/mcs51/uCsim.cmd,
862         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
863         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
864           library, use the default one
865         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
866           building the library
867
868 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
869
870         * config.dsp: added dependency on .version and configure_vc.awk
871         * device/include/setjmp.h: updated for --stack-auto and --xstack
872         * device/include/mcs51/at89c51snd1c.h: corrected line endings
873         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
874         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
875         * device/lib/libsdcc.lib: added _setjmp
876         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
877           (decorateType): fixed bug 1372851,
878           (optimizeGetHbit): fixed warning
879         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
880           array initialisation
881         * support/regression/tests/bug1057979.c: added test for bug 1358192
882         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
883
884 2005-12-03 Borut Razem <borut.razem AT siol.net>
885
886         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
887           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
888
889 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
890
891         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
892         createIval): implement symbol independant "flexible array member",
893         (createIvalCharPtr): implemented flexible array initialisation with a
894         string
895         * src/SDCCsymt.c (copyStruct): removed,
896         (getSize): fixed misleading comment,
897         (getAllocSize): removed, the additional allocation size is now in
898         sym->flexArrayLength,
899         (checkStructFlexArray): new, syntax checks for flexible array members,
900         (compStructSize): added syntax checks for "flexible array members"
901         (copyStruct): removed,
902         (copyLinkChain): removed inefficient fix for bug 770487
903         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
904         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
905         symbol->flexArrayLength
906         * src/SDCCerr.c,
907         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
908         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
909         * support/regression/tests/structflexarray.c: added
910         * support/valdiag/tests/structflexiblearray.c: added
911
912 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
913
914         * src/SDCCast.c (decorateType): fixed bug 1368489
915         * support/Util/SDCCerr.c,
916         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
917
918 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
919
920         * device/include/mcs51/at89c51snd1c.h: added file submitted by
921           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
922
923 2005-11-27 Borut Razem <borut.razem AT siol.net>
924
925         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
926           support/cpp2/mkdeps.h: added command line option
927           -obj-ext=<extension> to SDCPP to define object file externion, used
928           for generation of make dependencies (-M)
929         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
930
931 2005-11-26 Borut Razem <borut.razem AT siol.net>
932
933         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
934           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
935           added pic and pic16 libraries
936
937 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
938
939         * device/include/float.h: Corrected typo in prototype of __fsgt
940
941 2005-11-25 Borut Razem <borut.razem AT siol.net>
942
943         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
944           added creation of model-mcs51-stack-auto libraries
945
946 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
947
948         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
949         and fields-list too
950         * src/SDCCast.c (createIvalArray): removed obsolete comment
951
952 2005-11-24 Borut Razem <borut.razem AT siol.net>
953
954         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
955           added missing device/lib/mcs51/crt*.asm sources
956
957 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
958
959         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
960
961 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
962
963         * device/lib/_fs2schar.c,
964         * device/lib/_fs2sint.c,
965         * device/lib/_fs2slong.c: optimized inline asm
966
967 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
968
969         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
970           Better handling of floats between -1.0 and 0.0.
971
972 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
973
974         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
975           (the missing "if"s prohibited removal of redundant labels)
976
977 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
978
979         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
980           Properly convert floats between -1.0 and 0.0 to long, int, and char
981           types (max integer value of negative floats tends to zero).
982         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
983           Removed changes made so to work properly with floats between
984           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
985           and _fs2char.c
986
987 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
988
989         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
990         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
991         (genCast) cosmetic change
992         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
993         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
994         from mcs51
995         * support/regression/tests/bitfields (testSignedBitfields): added
996
997 2005-11-18 Borut Razem <borut.razem AT siol.net>
998
999         * sdcc/device/lib/Makefile.in: remove all unnecessary files
1000         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
1001           introduced SILENT option to make building of pic16 libraries less
1002
1003 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1004
1005         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1006           Now they work properly with floats between -1.0 and 0.0
1007         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
1008
1009 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
1010
1011         * src/SDCCicode.c (printOperand): added missing else
1012
1013 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1014
1015         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
1016         reformatted for better readability
1017         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
1018         signed bitfields
1019
1020 2005-11-17 Borut Razem <borut.razem AT siol.net>
1021
1022         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
1023           introduced SILENT option to make building of pic16 libraries less
1024           verbose - used for nightly snapshot build
1025         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
1026           available on Win32 platforms.
1027         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
1028           medium, large, pic and pic16
1029
1030 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1031
1032         * device/lib/printf_large.c: Temporary patch for bug 1358192:
1033           printf("%f"...) sets fraction to zero.
1034
1035 2005-11-16 Raphael Neider <rneider AT web.de>
1036
1037         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
1038           fixes #1357221
1039         * src/pic/gen.c (genIfx): implemented for CARRY bit
1040         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
1041           to generic pointers, fixes #1357332,
1042           (pic16_movLit2f): NEW,
1043           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
1044
1045 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
1046
1047         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
1048
1049 2005-11-11 Raphael Neider <rneider AT web.de>
1050
1051         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
1052         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
1053           compute pointer's type from operand,
1054           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
1055           improved single bit reads, fixes bug #1353379
1056
1057 2005-11-09 Borut Razem <borut.razem AT siol.net>
1058
1059         * support/scripts/sdcc.nsi: added lib/pic to the package
1060
1061 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
1062
1063         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
1064
1065 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
1066
1067         * support/regression/tests/bug1348008.c: added
1068         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
1069         * support/regression/tests/bug1337835.c: updated comment
1070
1071 2005-11-06 Borut Razem <borut.razem AT siol.net>
1072
1073         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1074           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1075           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1076           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1077           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
1078           dynamic construction of cl_error_class and derivates - 2.nd try
1079
1080 2005-11-05 Borut Razem <borut.razem AT siol.net>
1081
1082         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
1083           bug, which caused Bus Errors on sparc solaris
1084
1085 2005-11-04 Borut Razem <borut.razem AT siol.net>
1086
1087         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1088           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1089           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1090           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1091           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
1092           and derivates to resolve the initialization problem on OSX
1093
1094 2005-11-02 Borut Razem <borut.razem AT siol.net>
1095
1096         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1097           corrected typo - #include <winsock2.h>
1098
1099 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
1100
1101         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
1102           (_asxxxx_mapping): added org directive for future enhancements
1103
1104 2005-11-01 Borut Razem <borut.razem AT siol.net>
1105
1106         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1107           enabled sockets on WIN32
1108         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
1109
1110 2005-10-31 Borut Razem <borut.razem AT siol.net>
1111
1112         * support/regression/generate-cases.py: escape backslashes in {testcase}:
1113           WIN32 backslash path delimiters should be escaped when used in C strings
1114         * support/regression/tests/bitfields.c: exclude failing assertions for
1115           __CYGWIN32__ and __MINGW32__ hosts
1116
1117 2005-10-30 Borut Razem <borut.razem AT siol.net>
1118
1119         * src/SDCCutil.c: corrected double comparison typo
1120
1121 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
1122
1123         * device/lib/medium/Makefile: added for new memory model medium
1124         * device/include/asm/mcs51/features.h: updated for medium/pdata
1125         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
1126           added Multiply & Accumulate sbit's and MAC0_PAGE define
1127         * device/include/mcs51/c8051f300.h: added sfr16 definitions
1128         * device/include/mcs51/c8051f310.h: added sfr16 definitions
1129         * device/lib/_mullong.c: update for medium model
1130         * device/lib/incl.mk: added medium model
1131         * doc/sdccman.lyx: documented medium model
1132         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
1133         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
1134         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
1135         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
1136           (allocParms): set SCLS and OCLS to pdata for medium model
1137         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
1138           for pdata,
1139           (powof2): return <0 if not power of 2
1140         * src/avr/gen.c (genBitWise): use updated powof2
1141         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
1142           (shiftR2Left2Result): small optimization in setup, save acc when storing,
1143           (shiftLLeftOrResult): use B if necessary
1144         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
1145         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
1146         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
1147         * support/regression/Makefile.in: added test-mcs51-medium
1148         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
1149
1150 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
1151
1152         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
1153         specifier unsigned
1154         * device/lib/time.c (mktime): fixed bug 1334315
1155
1156 2005-10-28 Raphael Neider <rneider AT web.de>
1157
1158         * device/include/pic/p16f_common.inc: added common declarations
1159         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
1160
1161 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1162
1163         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
1164           (aopPutUsesAcc): added to predict accumulator use,
1165           (assignResultValue): save acc if necessary,
1166           (genMinusDec): store result if indirectly addressed,
1167           (genDivOneByte):  save acc if necessary,
1168           (movLeft2Result): bugfix if left already in acc,
1169           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
1170             attention to accumulator use (esp. pdata),
1171           (genReceive): receive pdata correctly
1172         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
1173         * src/SDCCicode.h: added isOperandInPagedSpace prototype
1174
1175 2005-10-27 Raphael Neider <rneider AT web.de>
1176
1177         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
1178
1179 2005-10-27 Raphael Neider <rneider AT web.de>
1180
1181         * .version: changed version to 2.5.4
1182         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
1183         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
1184           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
1185             arithmetics support routines
1186         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
1187         * device/lib/Makefile.in: also create installdir for pic
1188
1189         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
1190           pic14 port as well
1191         * src/pic/device.c (dump_sfr): rewritten to delegate register
1192           placement to the linker (use `extern sym' rather than sym EQU addr),
1193           (validAddress): fixed to check last specified address
1194         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
1195           (popGetLit): truncate literal value to 8 bit,
1196           (popGet): moved assert to more appropriate place
1197           (popGetExternal): create pCode operand from and mark the according
1198             symbol as being `extern'
1199           (popGetAddr): added sanity check on immediate's offset, provide
1200             GPOINTER tag on demand
1201           (aopPut): fixed for immediates,
1202           (mov2w_op): move operand's address or contents to WREG (depending on
1203             operand type), safer variant of mov2w,
1204           (movwf,call_libraryfunc): NEW, handy abbreviations,
1205           (get_argument_pcop,get_return_val_pcop,pass_argument,
1206           get_returnvalue): interface for accessing function parameters and
1207             return values,
1208           (assignResultValuei,genRet): use new parameter/return value interface
1209           (pic14_getDataSize): back to old version handling generic pointers,
1210           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
1211             provided implementation and/or fixed old one,
1212           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
1213             calls, removed legacy 8051 reference code
1214           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
1215           (loadSignToC): NEW, move the operands sign bit to CARRY,
1216           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
1217             genRightShiftSigned, accepts negative shift counts,
1218           (setup_fsr): load FSR and adjust IRP (indirect memory access),
1219           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
1220             generic pointers, __data pointers and __code pointers,
1221           (genUnpackBits,genPackBits): rewritten to work with generic pointers
1222             and signed bitfields, limit bitfields to 8 bit,
1223           (genDataPointerGet): fixed number of bytes read,
1224           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
1225           (genPointerGet,genPointerSet): fixed handling of __code pointers,
1226             pointers to constant data are no longer assumed to point to __code
1227             space, removed invalid pointer types,
1228           (bitpatternFromVal): retrieve the PICs representation of an integer
1229             or float literal,
1230           (genDataPointerSet): fixed assigning to po_immediate operands,
1231           (genGenPointerSet): implemented as library call,
1232           (genIfx): fixed incorrect condition,
1233           (genAddrOf): limit generic pointers' addresses to 2 bytes,
1234             provide GPOINTER tag according to destination's storage class,
1235           (genCast): added code to handle casting to generic pointers, added
1236             sign-/zero extension of the result
1237           (aop_isLitLike,op_isLitLike): fixed handling of immediates
1238         * src/pic/gen.h: added macros to access IRP bit in STATUS register
1239         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
1240           extend the result
1241         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
1242           address/register resides in the shared banks
1243           (emitSymbolToFile): improved to handle global and `pinned' symbols,
1244             put all variables into separate sections (have the linker arrange
1245             them)
1246           (picglue): put init code and interrupt handlers in separate sections
1247         * src/pic/main.c: added port specific options table, modified to PORT
1248           structure to make GPOINTERs 3 byte, added pic14_options
1249           (_pic14_do_link): private linking routine (update paths to libraries,
1250             add libsdcc.lib by default)
1251         * src/pic/main.h: declare pic14_options
1252         * src/pic/pcode.c: fixed instructions i/o relations,
1253           (RegCond): reverted to correct version,
1254           (newpCodeOpLit): truncate literals to 8 bit,
1255           (genericPrint): added debug output,
1256           (getRegFromInstruction): fixed for various operand types, simplified
1257           (BuildFlow): fixed broken handling of isntructions with labels
1258           (LinkFlow): start at last instruction in flow (skip trailing comments),
1259             pass the flow on to the next instruction after CALL
1260           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
1261           (insertPCodeInstruction): fixed inserting after a skip instruction,
1262           (DoBankSelect): fixed for labeled instructions
1263           (OptimizepBlock): honor --nopeep switch
1264           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
1265         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
1266         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
1267           (pCodeOptime2pCodes): allow disabling this optimization via
1268             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
1269             but is still buggy), started implementation of a dataflow based
1270             pCode optimization (CSE + dead code elimination)
1271           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
1272         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
1273           names are independant of the stack location and therefore portable across
1274           devices
1275
1276 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1277
1278         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
1279           (selectSpil): fixed bug 1337835 by not spilling bit variables
1280         * support/regression/tests/bug1337835.c: added test for this bug
1281         * src/mcs51/peeph.def: restart after rule 3.c,
1282           addded rules 263.x to optimize loading constants
1283
1284 2005-10-26 Raphael Neider <rneider AT web.de>
1285
1286         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
1287         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
1288           (genAssign): emit warning when casting literals to generic pointer
1289             type, also applies when taking the address of a fixed variable,
1290           (genCast): improved casting to generic pointers
1291         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
1292           extern variables, added verbose error message
1293         * device/include/pic16/{string.h,errno.h}: added #pragma library c
1294
1295 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
1296
1297         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
1298         carry must be complemented too
1299         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
1300         could be emitted by genMinus
1301         * src/SDCCval.c (constVal): fixed bug 1305065
1302
1303 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
1304
1305         * src/SDCCast.c (addCast): added promotion for bit variables
1306         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
1307         promotion casts + optimisation
1308         (optimizeGetWord): fix warning 'i' might be used uninitialized
1309         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
1310         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
1311
1312 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
1313
1314         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
1315         all chars are promoted to int; promotion should be handled in SDCCast.c
1316
1317 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1318
1319         * device/lib/_strcmp.c: Fixed bug 1326457
1320
1321 2005-10-11 Raphael Neider <rneider AT web.de>
1322
1323         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
1324         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
1325
1326 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
1327
1328         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
1329         * support/regression/tests/sfr16.c: added test for the sfr32 bug
1330
1331 2005-10-04 Raphael Neider <rneider AT web.de>
1332
1333         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
1334           device/lib/pic16/pics.all: added pic18f1320
1335         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
1336
1337 2005-09-30 Raphael Neider <rneider AT web.de>
1338
1339         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
1340         * src/pic16/devices.inc: NEW, provides device descriptions
1341         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
1342
1343 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
1344
1345         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
1346           GETHBIT
1347
1348 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
1349
1350         * doc/sdccman.lyx: updated Highest Order Bit documentation,
1351           documented Any Order Bit, Higher Order Byte and Higher Order Word
1352         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
1353         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
1354           (optimizeGetAbit): new, to get any bit, not only the high bit,
1355           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
1356           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
1357           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
1358           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
1359             RIGHT_OP: also try GETBYTE, GETWORD optimization,
1360             GETABIT, GETBYTE, GETWORD: decorate them,
1361           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
1362           (ast_print): added GETABIT, GETBYTE, GETWORD
1363         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
1364         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
1365           (geniCodeBinary): new generic binary icode,
1366           (ast2iCode): added GETABIT, GETBYTE, GETWORD
1367         * src/port.h: updated comment for PORT.hasExtBitOp
1368         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
1369           (genGetByte): new, to get a single byte,
1370           (genGetWord): new, to get a word from a long,
1371           (gen51Code): added GETABIT, GETBYTE, GETWORD
1372         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
1373
1374 2005-09-23 Raphael Neider <rneider AT web.de>
1375
1376         * configure.in, configure: have device/lib/pic configured
1377         * device/lib/Makefile.in: added model-pic14
1378         * device/lib/clean.mk: added pic/ to clean rule
1379         * device/lib/pic: added rudimentary pic14 library providing support
1380           functions for multiplication/division/generic pointer access
1381         * src/SDCCopt.c (convilong): mark support functions as extern
1382           for pic14 port as well
1383         * src/pic/gen.c (genMult): added assertions,
1384           (genpic14Code): emit warning on unhandled iCodes
1385         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
1386         * src/pic/pcode.c (pCodeOpCopy),
1387         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
1388           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
1389           SFR_REGISTER}), made safe for future extensions
1390         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
1391           instructions even if preceeded by SKIP instructions (also remove
1392           them); removed unused code
1393         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
1394           prevents leaving parts of the structure uninitialized after copying
1395
1396 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
1397
1398         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
1399           ago by me
1400         * support/regression/tests/addsub.c: added test for the bug
1401
1402 2005-09-21 Raphael Neider <rneider AT web.de>
1403
1404         * device/include/pic16/pic18f1220.h,
1405           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
1406         * device/lib/pic16/Makefile.rules: added missing opening paren
1407         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
1408           are provided in genutils.c,
1409           (genUminusFloat,genUminus,genCmpEq): added asserts on different
1410           operand/result sizes,
1411           (genCmp): assert on NULL pointers first, then check deref'ed values
1412         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
1413           result size
1414
1415 2005-09-18 Raphael Neider <rneider AT web.de>
1416
1417         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
1418           as these are now unused,
1419           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
1420         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
1421           local, avoids uninitialized pointer dereference on r->name
1422         * src/pic16/ralloc.c (newReg): fixed indentation
1423
1424 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
1425
1426         * src/SDCCval.c (constVal): fixed bug 730366
1427         * support/Util/SDCCerr.c,
1428         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
1429
1430 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
1431
1432         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
1433
1434 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
1435
1436         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
1437
1438 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
1439
1440         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
1441           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1442         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
1443           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1444         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
1445         * packihx/packihx.c (hexDigit): made c unsigned char
1446         * as/mcs51/lklibr.c (fndsym),
1447         * link/z80/lkgb.c (gb),
1448         * link/z80/lklibr.c (fndsym),
1449         * link/z80/lkrloc.c (relr),
1450         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
1451         * src/SDCC.lex (checkCurrFile, process_pragma),
1452         * src/SDCCglue.c (spacesToUnderscores),
1453         * src/SDCCmain.c (setParseWithComma, processFile),
1454         * src/asm.c (tvsprintf, printCLine),
1455         * src/avr/gen.c (emitcode, aopPut),
1456         * src/ds390/gen.c (emitcode),
1457         * src/hc08/gen.c (emitcode, emitinline),
1458         * src/mcs51/gen.c (emitcode, genInline),
1459         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1460           tokenizeLineNode),
1461         * src/pic/ralloc.c (debugLog),
1462         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1463           tokenizeLineNode),
1464         * src/pic16/ralloc.c (debugLog),
1465         * src/z80/main.c (_process_pragma):
1466            made all ctype.h function calls safe
1467         * src/SDCCopt.c: include math.h for fabs
1468         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
1469           and used them throughout the code to make ctype.h function calls safe
1470         * src/ds390/main.c (asmLineNodeFromLineNode),
1471         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
1472         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
1473            unsigned char*
1474         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
1475           (newpCodeAsmDir): made ctype.h function calls safe
1476         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
1477           pic16_emitcode):  made lbp unsigned char*
1478         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
1479           (pic16_newpCodeAsmDir): made ctype.h function calls safe
1480         * src/xa51/gen.c (emitcode),
1481         * src/z80/gen.c (_emit2): made lbp unsigned char*
1482         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
1483            char*
1484
1485 2005-09-05 Raphael Neider <rneider AT web.de>
1486
1487         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
1488           access bank splitpoint
1489
1490 2005-09-05 Raphael Neider <rneider AT web.de>
1491
1492         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
1493
1494 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
1495
1496         * .version: changed to version 2.5.3
1497         * doc/sdccman.lyx: changed version to 2.5.3,
1498           documented --codeseg and --constseg and pragma codeseg and constseg,
1499           documented bit parameters (reentrant) and bit returning
1500         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
1501            currFunc->recvSize, but is this ok for all ports?
1502           (ast2iCode): result of ~ on unsigned char must be cast to int for
1503            bool to work
1504         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
1505           function pointers in bit space
1506         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
1507           (processFuncArgs): call port.reg_parm() with reentrancy info
1508         * src/port.h,
1509         * src/avr/main.c,
1510         * src/ds390/main.c,
1511         * src/hc08/main.c,
1512         * src/pic/main.c,
1513         * src/pic16/main.c,
1514         * src/xa51/main.c,
1515         * src/z80/main.c: port.reg_parm prototype extended with
1516           "bool reentrant" parameter
1517         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
1518           options.stackAuto for allocating bit register parameters
1519         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
1520           (genSend): set BitBankUsed if it is,
1521           (selectRegBank): factored out of genCall for use in genPcall,
1522           (genCall): removed redundant dtype assignmen, use selectRegBank,
1523           (genPcall): handle returning in Carry properly, save in F0 if needed,
1524           (genReceive): handle bit register parameters
1525         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
1526           (mcs51_assignRegisters): enable bit registers for all reentrant
1527            functions and don't set BitBankUsed unconditionally
1528         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
1529         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
1530         * support/regression/tests/funptrs.c: added tests for BOOL and for return
1531
1532 2005-08-27 Borut Razem <borut.razem AT siol.net>
1533
1534         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
1535         ppc-osx (Darwin) does not support -u option. It seems that it is
1536         supported only on Linux - GNU cp
1537
1538 2005-08-25 Borut Razem <borut.razem AT siol.net>
1539
1540         * sim/ucsim/gui.src/serio.src/Makefile.in,
1541           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
1542           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1543           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
1544           install and strip, since the strip at /usr/ccs/bin should be used
1545           on solaris
1546
1547 2005-08-24 Borut Razem <borut.razem AT siol.net>
1548
1549         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
1550
1551 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
1552
1553         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
1554         ffffffffu
1555
1556 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
1557
1558         * as/mcs51/aslink.h: completed lkrloc.c prototypes
1559         * as/mcs51/lkmain.c (link_main): fixed warning
1560         * device/include/stdbool.h: ds390 has no advanced bit support yet
1561         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
1562         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
1563         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
1564           and updated their macros
1565         * src/SDCCval.c (constVal): updated comment for renamed b_long
1566
1567 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
1568
1569         * as/mcs51/asdata.c: changed ctype['['] to BINOP
1570         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
1571           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
1572           (oprio): set priority for '['
1573         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
1574            and adb_24_bit
1575         * as/mcs51/asm.h: added defines R_BIT and S_BIT
1576         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
1577         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
1578         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
1579           added overlayable BIT_BANK area
1580         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
1581           (summary2): explain 'T' in legenda
1582         * as/mcs51/lkrloc.c: replaced old K&R style,
1583           (relr): added R_BIT processing,
1584           (errmsg): added "Bit-addressable relocation error",
1585           (adb_bit): added for converting from byte- to bit-addressable space,
1586           (adb_24_bit): added for converting from byte- to bit-addressable space
1587         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
1588            used in reentrant functions now even as return value
1589         * device/lib/_gptrput.c (_gptrput): removed obsolete code
1590         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
1591           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
1592         * src/SDCCglobl.h: added indicator BitBankUsed
1593         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
1594            the bit registers b0-b7
1595         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
1596           (geniCodeCast): fixed bug 1263853,
1597           (geniCodeLogicAndOr): put result in bool or char,
1598           (geniCodeReceive): added parameter func for accessing the return type,
1599           (geniCodeFunctionBody): pass func to geniCodeReceive
1600         * src/SDCCmain.c: added indicator BitBankUsed
1601         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
1602         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
1603           (checkSClass): don't put automatic bool/bit on stack,
1604           (checkFunction): removed check on function cannot return bit
1605         * src/SDCCsymt.h: added newBoolLink prototype
1606         * src/mcs51/gen.c (rb1regs): added bit registers,
1607           (movc): created for assigning to carry,
1608           (pushReg, popReg): created for pushing registers,
1609           (sameRegs): check both AOP_REG and AOP_CRY types,
1610           (aopOp): handle bit registers,
1611           (aopPut): optimization no self-assign,
1612           (saveRegisters): push reg->base (bits) only once for bit registers,
1613            and use pushReg,
1614           (unsaveRegisters): pop reg->base only once and use popReg,
1615           (assignResultValue): added parameter func and return in carry for bits,
1616           (genIpush): optimization no reload in A if not changed,
1617           (genSend): bit parameters in reentrant functions are passed in bit
1618            registers by first assigning to bits in B, then save registers and
1619            copy B to bits,
1620           (genCall): handle returning in Carry properly, save it in F0 if needed,
1621           (genPcall): updated assignResultValue call, this is not safe yet for bit
1622            returning function !!!
1623           (genFunction): don't generate equ's for bit registers and use pushReg,
1624           (genEndFunction): take care of bit returning functions and use popReg,
1625           (genRet): return bit in Carry,
1626           (genIfx): optimize bit registers and other directly addressable bits,
1627           (genReceive): updated assignResultValue call
1628         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
1629           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
1630            registers when using stack-auto
1631         * src/mcs51/ralloc.c (_G): added allBitregs,
1632           (regs8051): added the bit registers,
1633           (createStackSpil): use macro IS_BIT,
1634           (getRegBit): added to allocate a bit register, else spill,
1635           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
1636           (updateRegUsage): factored out to ease stepping while debugging,
1637           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
1638            also allocate bit registers,
1639           (fillGaps): handle bit registers,
1640           (findAllBitregs): added to create bit vector with all bit registers,
1641           (mcs51_allBitregs): returns this bit vector,
1642           (mcs51_assignRegisters): when using stack-auto use bit registers for
1643            passing parameters and creating local variables
1644         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
1645
1646 2005-08-22 Borut Razem <borut.razem AT siol.net>
1647
1648         * device/lib/Makefile.in: replaced find option -or with -o
1649           to make it run on solaris
1650
1651 2005-08-22 Raphael Neider <rneider AT web.de>
1652
1653         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
1654           fixes #1265442 (crash on Solaris)
1655
1656 2005-08-20 Borut Razem <borut.razem AT siol.net>
1657
1658         * configure, configure.in: added tests for libsocket and libnsl libraries,
1659           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
1660           from support/regression/Makefile.in
1661         * support/regression/Makefile.in: added
1662         * device/lib/pic16/Makefile.common.in: force make to use bash shell
1663         * sim/ucsim/libtool: regenerated on sparc-solaris
1664         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1665           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
1666           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
1667           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
1668           sparc-solaris, which doesn't use GNU ld linker
1669         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
1670         * as/Makefile: find on sparc-solaris does not support -maxdepth option
1671
1672 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
1673
1674         * src/mcs51/peeph.def: updated comments
1675
1676 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1677
1678         * device/lib/_gptrget.c,
1679         * device/lib/_gptrput.c: slightly shorter
1680         * doc/sdccman.lyx: incremented version
1681         * src/mcs51/peeph.def: moved peephole comments to the line of first
1682           change to better keep line correlation, reanimated 186.e
1683         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
1684
1685 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
1686
1687         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
1688           David Saxton with quotes around file name.
1689
1690 2005-08-15 Borut Razem <borut.razem AT siol.net>
1691
1692         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
1693           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
1694           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
1695           make tests run on x86_64 platform
1696
1697 2005-08-13 Raphael Neider <rneider AT web.de>
1698
1699         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
1700           as it might be executed DURING a build (parallel make is wonderful)
1701
1702 2005-08-13 Raphael Neider <rneider AT web.de>
1703
1704         * device/lib/Makefile.in (port-specific-objects-pic16):
1705           revert to cp $(PORT)/bin/*.* $(PORTDIR)
1706         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
1707           dependency
1708         * device/lib/pic16/Makefile.rules: build subdirs before creating
1709           the library, removed builddir rule, create $(builddir) early in
1710           recurse rule, use empty recurse rule for leaf directories
1711         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
1712           mkdir errors (race condition), removed duplicate suffix "hex"
1713           from clean rules
1714         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
1715         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
1716           prevents mkdir -p from aborting on Alpha
1717
1718 2005-08-12 Raphael Neider <rneider AT web.de>
1719
1720         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
1721           db-statements in order to allow for arrays of pointers in code
1722           sections to be placed without interspersed 0-padding, fixes
1723           bug #1256215
1724         * (emitStatistics): fixed division by zero for pic18f1220
1725         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
1726           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
1727         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
1728         * (pic16_pCodeConstString): keep track of already emitted string
1729           literals to prevent "duplicate definitions of symbol _str_NR"
1730         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
1731           debug message
1732         * device/lib/Makefile.in: ignore failing PIC16 library builds
1733         * device/lib/pic16/Makefile: do not build if gputils are missing
1734         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
1735
1736 2005-08-10 Raphael Neider <rneider AT web.de>
1737
1738         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
1739           my last commit)
1740
1741 2005-08-10 Raphael Neider <rneider AT web.de>
1742
1743         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
1744           Rokas' patch to add the new fixed point type "__fixed16x16"
1745         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
1746           functions for __fixed16x16 arithmetics
1747         * device/lib/pic16: reimplemented the build system to support
1748           a separate build directory, better handling of libio (create
1749           the library in a separate subdir for each architecture) and
1750           easier configuration (centralized in Makefile.common)
1751
1752 2005-08-07 Raphael Neider <rneider AT web.de>
1753
1754         * src/pic16/gen.c (genrshTwo): fixed sign extension
1755         * src/pic16/device.c: added pic18f2320, 4220 and 4320
1756         * device/include/pic16/pic18f2220.h: changed some bit definitions,
1757           added T0CONbits
1758         * device/include/pic16/pic18f4220.h: NEW, header for
1759           pic18f4220 and pic18f4320
1760         * device/include/pic16/pic18fregs.h: added new devices,
1761           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
1762         * device/include/pic16/signal.h: resolved name clashes
1763           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
1764           to also allow testing for interrupt enable bits, added
1765           comments on how to use the macros
1766         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
1767         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
1768           register definitions for the devices
1769         * device/lib/pic16/pics.all: added new devices
1770         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
1771           allocated memory
1772         * device/lib/pic16/libc/stdlib/memfree: do not count
1773           the block header as free memory
1774         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
1775           simplified and added missing end-of-blocklist-marker
1776           (reported by Peter Onion, fixes #1252814)
1777         * (_mergeHeapBlock): fixed loop condition
1778         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
1779           len==0, restructured code
1780         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
1781           up a bit, reduced bitfield accesses, prevent endless loops
1782           in case of heap corruption
1783         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
1784           "unreferenced arguments/must return a value" warnings
1785         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
1786           replaced BAUDREG with SPBRG
1787         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
1788           device/lib/pic16/debug/gstack/gstack.c: replaced
1789           _naked, _asm, _endasm with __naked, __asm, __endasm
1790
1791 2005-08-05 Raphael Neider <rneider AT web.de>
1792
1793         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
1794           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
1795
1796 2005-08-05 Borut Razem <borut.razem AT siol.net>
1797
1798         * device/lib/Makefile.in: added missing ';'
1799         * configure: removed ^M characters
1800
1801 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1802
1803         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
1804           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
1805           License
1806
1807 2005-08-04 Borut Razem <borut.razem AT siol.net>
1808
1809         * configure.in: pic16 libraries build 2nd try - enable running
1810           configure in device/lib/pic16
1811         * configure: regenerated from configure.in
1812         * device/lib/Makefile.in: create $(PORT)/bin directory
1813
1814 2005-08-03 Raphael Neider <rneider AT web.de>
1815
1816         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
1817           to get/set values via pointers
1818         * (genUnpackBits,genPackBits): changed detection of
1819           ptr->bitfield vs. sym.bitfield, fixed access via generic
1820           pointers, removed dead (wrong) code for multibyte bitfields
1821         * (genNearPointerGet, genGenPointerGet): removed useless code,
1822           fixed bitfield detection, fixes #1250594
1823         * (genNearPointerSet): removed useless code
1824         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
1825           and introduced macro pic16_emitpcode that conditionally emits
1826           the origin of the following pCode (useful for debugging SDCC)
1827         * src/pic16/pcode.c: changed (and disabled) some debug outputs
1828         * (createDefmap): fixed handling of LFSR for --optimize-df
1829
1830 2005-08-02 Borut Razem <borut.razem AT siol.net>
1831
1832         * device/lib/Makefile.in: pic16 libraries build enabled since
1833           gputils-0.13.2 are now localy installed at sourceforge's compile farm
1834
1835 2005-08-02 Raphael Neider <rneider AT web.de>
1836
1837         * src/pic16/gen.c (genPackBits): removed deprecated warning
1838         * (genGenPointerSet): fixed bitfield detection
1839
1840 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1841
1842         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
1843
1844 2005-07-31 Raphael Neider <rneider AT web.de>
1845
1846         * device/lib/pic16/libdev/pic18f458.c,
1847           device/include/pic16/pic18f458.h: added missing T0CONbits
1848
1849 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
1850
1851         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
1852
1853 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
1854
1855         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
1856
1857 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1858
1859         * device/include/mcs51/at89c51ed2.h: added.
1860
1861 2005-07-23 Raphael Neider <rneider AT web.de>
1862
1863         * src/pic/gen.h: added emitpcode macro for debugging
1864         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
1865           and replace by macro adding debug information on demand
1866         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
1867         * (gencjne): tried to fix; replaced with correct (slower) code
1868         * (gen{Unp,P}ackBits): fixed single bit access
1869         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
1870         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
1871           previous instruction
1872         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
1873           register has to be handled with care (forbidding movement
1874           of assignments/uses, removing assignments completely, ...)
1875         * (pCodeOptime2pCodes): make use of regIsSpecial
1876         * added lots of debugging output (commented out)
1877         * src/pic/rallloc.c (deassignLRs): prevent operand registers
1878           from being reused as result UNLESS it is known to work
1879
1880 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
1881
1882         * support/Util/dbuf.h: include <stddef.h> for size_t
1883         * .version: changed to version 2.5.2
1884
1885 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1886
1887         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
1888
1889 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1890
1891         * src/hc08/gen.c (genMinus): fixed bug #1241835,
1892           (genModOneByte): removed needless psha/pula
1893
1894 2005-07-22 Raphael Neider <rneider AT web.de>
1895
1896         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
1897           have PIC14 handled like PIC16, fixes broken pic14 linker calls
1898         * src/pic/gen.c (resolveIfx): do not "invent" labels
1899         * (genSkipc): changed to positive logic
1900         * (genSkipCond): removed as no longer needed
1901         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
1902           backport from PIC16
1903         * (genLeftShift): check operands are in different registers
1904         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
1905           INCF does not update CARRY...
1906         * src/pic/main.c: fixed _linkCmd
1907         * src/pic/pcode.c (unlinkpCode): added inactive code
1908         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
1909           alive (do not assign result and operand overlapping registers)
1910
1911 2005-07-22 Raphael Neider <rneider AT web.de>
1912
1913         * src/pic/device.c (dump_sfr): replaced register declaration with
1914           call to emitSymbolToFile() to avoid duplicate symbols
1915         * (assignRelocatableRegisters): do not declare external symbols
1916         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
1917           right (take size of type, not etype)
1918         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
1919         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
1920         * (packRegsForAccUse): disabled assignment of WREG as
1921           the result reg to prevent occurence of just fixed #1235003,
1922           fixes #1242954
1923         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
1924           symbols (avoids duplicate symbols in .asm file)
1925         * (pic14emitRegularMap): use emitSymbolToFile()
1926         * src/pic/gen.c (aopOp): fixed spillLocation handling
1927         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
1928         * (genDataPointerSet): removed unneccessary variables/output
1929
1930 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
1931
1932         * as/mcs51/lkarea.c: enlarged codemap for banked memory
1933         * device/lib/mcs51/crtbank.asm: added # to 0x0F
1934
1935 2005-07-21 Raphael Neider <rneider AT web.de>
1936
1937         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
1938           architecture cannot handle them efficiently, fixes bug #1235003
1939         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
1940           check for empty sets before using them (fixes bug #1232190)
1941
1942 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
1943
1944         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
1945           (lnksect2): generate warnings for memory overlap
1946         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
1947           constseg to set the name of these segments so you can instruct the linker
1948           to place them in banks
1949         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
1950         * src/SDCCglobl.h: added MODEL_HUGE to enum,
1951           added code_seg and const_seg to options
1952         * src/SDCCglue.c (emitMaps): use options.const_seg,
1953           (createInterruptVect): put interrupt vectors in segment HOME,
1954           (glue): put HOME before static segment and put the main glue in HOME,
1955           (glue): use options.code_seg
1956         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
1957         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
1958           these segments so you can instruct the linker to place them in banks
1959           (linkEdit): use code_loc for HOME segment which should be the first
1960           segment in code memory now
1961         * src/SDCCmem.c: fixed more stuff like bug 1238386
1962         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
1963           (changePointer): don't change function pointers to code pointers for
1964           banked functions,
1965           (compareType): added exceptional check for banked function pointers
1966         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
1967         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
1968           after static in code memory
1969         * src/mcs51/gen.c: added aopLiteralLong prototype,
1970           (aopForSym): use getSize for functions,
1971           (genCall): generate banked calls over one trampoline __sdcc_banked_call
1972           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
1973           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
1974           the segment,
1975           (genPcall): use call for literal function pointers and generate banked
1976           calls over the one trampoline so there's only one place for the user to
1977           modify according to his/hers hardware,
1978           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
1979           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
1980         * src/mcs51/main.c: added keyword banked,
1981           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
1982         * support/Util/SDCCerr.c,
1983         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
1984           needed for passing the bank and address to the trampoline
1985         * device/lib/mcs51/crtbank.asm: added for bankswitching
1986         * device/lib/mcs51/Makefile: added crtbank
1987
1988 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1989
1990         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
1991           for fields at offset 0 of a struct or union as reported
1992           on 2005-07-07 in the developer mailing list.
1993
1994 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
1995
1996         * src/SDCCmem.c: fixed bug 1238386
1997
1998 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1999
2000         * src/mcs51/peeph.def: added labelrefcounting for peepholes
2001           (patch #1144962), added peephole 300, enabled 259.x
2002         * doc/sdccman.lyx: removed screenshot and provided link instead
2003
2004 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2005
2006         * doc/sdccman.lyx: added section about debugging with ddd
2007         * doc/figures/ddd_example.eps: screenshot of debugging session
2008
2009 2005-07-04 Raphael Neider <rneider AT web.de>
2010
2011         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
2012           like CODE pointers, fixes #1115683
2013         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
2014           call, fixes bugs #1232211, #1228110,
2015           fixed wrong casts to pCodeFlow from pCodeInstructions
2016
2017 2005-07-04 Raphael Neider <rneider AT web.de>
2018
2019         * src/pic/gen.c (popGet): changed assert to allow for
2020           bit operands
2021         * (popGetAddr): changed signature to provide
2022           an additional index, patched all call sites
2023         * (genCmpEq): handle literal-like operands correctly
2024         * (genAddrOf): added sanity checks on __code/__data pointers
2025         * (genAssign): added handling of symbols from __code section
2026         * (gencjne): do not generate code for comparisons whose result
2027           is neither stored nor used, fixes bug #1171114
2028         * (AccLsh, AccRsh): operate on operand instead of WREG
2029         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
2030           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
2031           by known count
2032         * rewrote complete shift-by-literal logic, commented unused
2033           functions out
2034         * (genConstPointerGet): get multiple bytes (if result size > 1),
2035           fixed handling of non-immediate addresses
2036         * (genPointerGet): handle CODE pointers like CONST pointers
2037         * (genpic14Code): insert C-SRC lines as Cource-pCodes
2038         * ({aop,op}_isLitLike): NEW, single place to decide whether an
2039           operand is to be treated as a literal or not
2040         * (mov2w,genPcall,genCmpEq),
2041           src/pic/genarith.c: use aop_isLitLike() to decide between
2042           literal/register contents
2043         * (addSign): added missing offset
2044         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
2045           only emit comment in debug-mode,
2046           use {aop,op}_isLitLike throughout the file
2047         * src/pic/glue.c: fix initializers for pointers (work in progress)
2048         * src/pic/pcode.c (get_op): honor index on _const symbols
2049         * ({reset,dump}pCodeStatistics): NEW, estimate code size
2050         * (dumppBlock): added pCode size estimation
2051         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
2052           check for IS_SYMOP before OP_SYMBOL'ing
2053         * fixed indentation, compacted switch-statements
2054         * (allocReg): find free register and allocate it instead of
2055           allocating new registers all the time
2056         * (deassignLRs): prevent POINTER_GET's from being assigned the same
2057           registers as its operands (necessary only for multibyte GETs)
2058
2059 2005-07-01 Raphael Neider <rneider AT web.de>
2060
2061         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
2062           debugging .asm-output macros FENTRY + FEXIT
2063         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
2064           way... I wonder...
2065         * (emitpComment): NEW, printf to pCode
2066         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
2067           offset handling
2068         * (popGetAddr): NEW, variant of popGet to access an immediates
2069           high(er) bytes instead of the n'th byte of memory they reference,
2070           replaced popGet with popGetAddr where neccessary
2071         * (genDataPointerGet): reactivated and fixed implementation
2072         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
2073           accesses
2074         * (genDataPointerSet): fixed multibyte assignments
2075         * (genpic14Code): fixed --i-code-in-asm handling
2076         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
2077         * (genPlus): fixed index-out-of-bounds error
2078         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
2079         * src/pic/ralloc.c: added debugging output macro FENTRY2
2080         * (spillThis): fixed indentation, enbraced for-body for clarity
2081         * (rematStr): commented out as now unused
2082         * (regTypeNum): commented out special spill case (overwrites
2083           arbitrary values)
2084         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
2085
2086 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
2087
2088         * doc/sdccman.lyx: documented sfr16/sfr32,
2089           added example for using storage class with function pointers
2090         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
2091
2092 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
2093
2094         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
2095         * device/lib/_itoa.c,
2096         * device/lib/_ltoa.c: optimized codesize
2097         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
2098           but don't know how to suppress the double warning.
2099         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
2100         * support/Util/SDCCerr.c,
2101         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
2102
2103 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
2104
2105         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
2106           fixed old K&R prototypes
2107         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
2108         * device/lib/_gptrget.c,
2109         * device/lib/_gptrgetc.c,
2110         * device/lib/_gptrput.c: changed versions for new memory indicator values,
2111           also new versions for small generic pointers and banked generic pointers
2112         * src/port.h: added const_name
2113         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
2114         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
2115         * src/SDCCcse.c (findPrevIc): check all associative operators
2116         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
2117         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
2118         * src/SDCCmem.c: updated comments,
2119           set far-space to 0 for pdata, results in optimized code
2120         * src/SDCCmem.h: added macro CONST_NAME
2121         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
2122           moving the info into the highest bits, see also gptrget/gptrput
2123         * src/src.dsp: added sdcc.ico to project files
2124         * src/avr/gen.c (genCast): fixed bug 0x%d
2125         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
2126         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
2127           relation between ptr_type and DCL_TYPE,
2128           (genCast): fixed bug 0x%d
2129         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
2130           (CODE)" for const_name
2131         * src/hc08/gen.c (genCast): fixed bug 0x%d
2132         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
2133           (hc08_port): added "CONST (CODE)" for const_name
2134         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
2135           (aopForRemat, adjustArithmeticResult): disconnected direct relation
2136           between ptr_type and DCL_TYPE,
2137           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
2138           operand* and took AOP() inside function so sfr-ness can be checked,
2139           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
2140           new prototype,
2141           (genFunction, genEndFunction): optimized stack setup,
2142           (genMinus): optimized for literals with ending zeroes (in bytes),
2143           (genCast): fixed bug 0x%d
2144         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
2145           (mcs51_port): added "CONST (CODE)" for const_name
2146         * src/mcs51/peeph.def: made rule 226 more generic
2147         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
2148         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
2149         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
2150         * src/z80/main.c (z80_port): added NULL for const_name,
2151           (gbz80_port): added NULL for const_name
2152         * support/regression/tests/bug663539.c,
2153         * support/regression/tests/sfr16.c: new tests
2154
2155 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2156
2157         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
2158
2159 2005-06-24 Raphael Neider <rneider AT web.de>
2160
2161         * device/lib/pic16/libdev/pic18f[68][567]20.c:
2162           corrected typos...
2163         * device/include/pic16/signal.h: added USBIF
2164           and SIG_USB
2165
2166 2005-06-24 Raphael Neider <rneider AT web.de>
2167
2168         * device/lib/pic16/libdev/pic18f2455.c,
2169           device/include/pic16/pic18f2455.h: NEW
2170         * device/include/pic16/pic18fregs.h,
2171           device/lib/pic16/pics.all,
2172           src/pic16/device.c: added 18f2455
2173         * device/lib/pic16/libdev/pic18f[68][567]20.c,
2174           device/include/pic16/{pic18f[68][567].h,usart.h}:
2175           replaced MULTIPLE_USARTS define with more relaible
2176           compatibility sfrs (for USART access)
2177
2178 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
2179
2180         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
2181           and the output asm file line is printed on two lines.
2182
2183 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2184
2185         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
2186           BGT, BLE, BHI, and BLS instructions
2187         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
2188           genCmpEq): removed
2189         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
2190           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
2191           fixes bug #1216342
2192         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
2193
2194 2005-06-15 Raphael Neider <rneider AT web.de>
2195
2196         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
2197         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
2198         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
2199           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
2200           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
2201
2202 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2203
2204         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
2205           Marcel Telka in bug #1215704
2206
2207 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
2208
2209         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
2210           located in shared memory bank.
2211
2212 2005-05-31 Raphael Neider <rneider AT web.de>
2213
2214         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
2215           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
2216           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
2217
2218 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
2219
2220         * device/lib/_strncpy.c: fixed the fix
2221
2222 2005-05-26 Raphael Neider <rneider AT web.de>
2223
2224         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
2225           initializers with \0, bug #1208187
2226         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
2227           intializers with \0, bug #1208187
2228
2229 2005-05-26 Raphael Neider <rneider AT web.de>
2230
2231         * src/pic16/glue.c (pic16_printIvalChar): fixed string
2232           initializers with \0, bug #1208187
2233         * src/pic16/main.c (_process_pragma): added sanity checks
2234           for stack position and size, emit warnings when appropriate
2235
2236 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
2237
2238         * device/lib/_strncpy.c: fixed not filling with \0
2239
2240 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2241
2242         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
2243           createFunction),
2244         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
2245           compound_statement),
2246         * src/SDCCsymt.h,
2247         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
2248
2249 2005-05-24 Raphael Neider <rneider AT web.de>
2250
2251         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
2252
2253 2005-05-24 Raphael Neider <rneider AT web.de>
2254
2255         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
2256           TRISE definitions, closes bug #1162453
2257
2258 2005-05-22 Raphael Neider <rneider AT web.de>
2259
2260         * src/pic16/main.c (_process_pragma): check for missing
2261           arguments to pragmas code and udata
2262         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
2263           consistency fixes to match other headers (thanks to Jim Paris)
2264         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
2265
2266 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
2267
2268         * src/SDCCicode.c (isOperandEqual): fixed missing ;
2269
2270 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
2271
2272         * support/regression/tests/bug1198642.c: new test
2273         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
2274         * src/SDCCcse.c (findPrevIc): added comment, please have a look
2275         * support/scripts/resource.h,
2276         * support/scripts/resource.rc,
2277         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
2278         * support/scripts/sdcc.ico: added 32x32 icon
2279
2280 2005-05-18 Raphael Neider <rneider AT web.de>
2281
2282         * device/lib/pic16/libdev/pic18f*.c,
2283         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
2284           keywords to "__sfr" and "__at (X)"
2285         * device/include/pic16/pic18fregs.h: added pic18f4520
2286         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
2287           #1203088 (MPLAB compatibility)
2288
2289 2005-05-17 Raphael Neider <rneider AT web.de>
2290
2291         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
2292         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
2293         * device/lib/pic16/pics.all: added new devices
2294         * src/pic16/device.c: added support for pic18f4520
2295
2296 2005-05-16 Raphael Neider <rneider AT web.de>
2297         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
2298         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
2299         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
2300           convenience function for bit access
2301
2302 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
2303
2304         * device/lib/printf_large.c: fixed bug 1193299
2305         * support/regression/tests/bug1057979.c: added test %3.3s
2306
2307 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2308
2309         * device/include/mcs51/8051.h,
2310         * device/include/mcs51/8052.h: made parseable with lint
2311         * device/include/mcs51/lint.h: added include file for (sp)lint
2312         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
2313         * doc/cdbfileformat.lyx,
2314         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
2315
2316 2005-05-14 Raphael Neider <rneider AT web.de>
2317
2318         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
2319         * device/lib/pic16/libc/stdlib/itoa.c (new)
2320         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
2321         * device/lib/pic16/libio/Makefile: exclude subdir according to
2322           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
2323         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
2324         * src/pic16/gen.c (genFunction): prevent annoying warning
2325         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
2326           nameclashes on BeOS
2327         * support/cpp2/cppmain.c (cpp_output_string): new
2328         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
2329           fixes bug 1116802
2330
2331 2005-05-13 Borut Razem <borut.razem AT siol.net>
2332
2333         * src/SDCCmain.c (linkEdit): fixed bug 1195202
2334
2335 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2336
2337         * .version: changed to version 2.5.1; back to bleeding edge development
2338
2339 2005-05-11 Borut Razem <borut.razem AT siol.net>
2340
2341         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
2342           generate PDF version 1.3 documents
2343
2344 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2345
2346         * .version: changed to version 2.5.0
2347
2348 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2349
2350         * doc/sdccman.lyx: updated weblinks, index and smaller updates
2351
2352 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2353
2354         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
2355         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
2356         well as many smaller updates.
2357         * .version: changed to version 2.5.0-pre1
2358
2359 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2360
2361         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
2362
2363 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
2364
2365         * support/regression/tests/bug1185672.c: added
2366         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
2367           bug 1185672
2368         * src/mcs51/gen.c (genCall): added comments, made it look safer
2369         * src/mcs51/gen.c (genEndFunction): simplified
2370
2371 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
2372
2373         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
2374
2375 2005-04-14 Borut Razem <borut.razem AT siol.net>
2376
2377         * fixed bug 1045046 - SIGSEGV with really simple code?:
2378           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
2379           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
2380
2381 2005-04-14 Borut Razem <borut.razem AT siol.net>
2382
2383         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
2384           src/pic16/device.h: temporarily disabled experimental #inline pragma
2385           for 2.5.0 release
2386
2387 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
2388
2389         * device/include/z80/stdio.h,
2390         * device/include/z80/string.h: removed these highly incomplete files so
2391           SDCC can use the default ones in device/include/
2392
2393 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2394
2395         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
2396         gcc warning.
2397         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
2398         fix sdcpp warnings.
2399
2400 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2401
2402         * device/include/malloc.h: removed redundant __reentrant prototypes
2403         * device/lib/_mullong.c: added working xstack variant in asm (C version
2404           doesn't pass regression tests)
2405         * device/lib/bpx.c: used __data and made bpx char for mcs51
2406         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
2407           (createFunction): fixed bug with xstackPtr
2408         * src/SDCCcse.c: corrected comments
2409         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
2410           (killDeadCode, eBBlockFromiCode): removed unused code
2411         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
2412           corrected comments
2413         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
2414           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
2415           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
2416           (genModOneByte): fixed warning in MSVC
2417         * src/mcs51/main.c (): added comments
2418         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
2419
2420 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2421
2422         * src/SDCCmain.c (linkEdit): oops, changed one line too many
2423
2424 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
2425
2426         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
2427
2428 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
2429
2430         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
2431         characters arrays of larger size than the declared one.
2432
2433 2005-04-10 Borut Razem <borut.razem AT siol.net>
2434
2435         * src/pic/gen.c (genInline),
2436           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
2437           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
2438           (findNextInstruction), (findPrevInstruction),
2439           (findInstructionUsingLabel),
2440           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
2441         * src/pic/pcode.c (findLabel): added missing '\n'
2442         * src/src.dsp: added SDCCdwarf2.c to the project
2443
2444 2005-04-09 Borut Razem <borut.razem AT siol.net>
2445
2446         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
2447
2448 2005-04-08 Raphael Neider <rneider AT web.de>
2449
2450         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
2451           into the chain after a given one) and mergeDefmapSymbols (combine
2452           defmap entries for each symbol per pcode)
2453         * (createDefmap): have defmap entries merged in the end
2454         * (defmapReplaceSymRef): split defmap entries covering two accesses to
2455           a symbol before replacing one access type's symbol, merge symbols in
2456           the end (replacement symbol might already have an entry)
2457         * (assignValnums): keep reference to written WREG intact
2458
2459 2005-04-08 Raphael Neider <rneider AT web.de>
2460
2461         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
2462           Alpha)
2463
2464 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
2465
2466         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
2467         bytes
2468
2469 2005-04-07 Raphael Neider <rneider AT web.de>
2470
2471         * device/include/pic16/usart.h: added compatibility defines for
2472           devices with more than one USART
2473         * device/include/pic16/pic18f[68][567]20.h: activated above defines
2474
2475 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2476
2477         * device/lib/Makefile.in: updated for port specific include
2478
2479 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2480
2481         * support/regression/ports/mcs51/spec.mk: added mcs51 include
2482
2483 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2484
2485         * device/include/8051.h,
2486         * device/include/8052.h,
2487         * device/include/at89S8252.h,
2488         * device/include/at89c55.h,
2489         * device/include/at89x051.h,
2490         * device/include/at89x51.h,
2491         * device/include/at89x52.h,
2492         * device/include/mcs51reg.h,
2493         * device/include/reg51.h,
2494         * device/include/reg764.h,
2495         * device/include/regc515c.h,
2496         * device/include/sab80515.h: (re)moved these 12 files
2497         * device/include/mcs51/8051.h,
2498         * device/include/mcs51/8052.h,
2499         * device/include/mcs51/at89S8252.h,
2500         * device/include/mcs51/at89c55.h,
2501         * device/include/mcs51/at89x051.h,
2502         * device/include/mcs51/at89x51.h,
2503         * device/include/mcs51/at89x52.h,
2504         * device/include/mcs51/mcs51reg.h,
2505         * device/include/mcs51/reg51.h,
2506         * device/include/mcs51/reg764.h,
2507         * device/include/mcs51/regc515c.h,
2508         * device/include/mcs51/sab80515.h: and added them here
2509
2510 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
2511
2512         * device/include/stdarg.h: changed SDCC specific keywords to double
2513           underlined form.
2514         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
2515           mcs51 and ds390.
2516         * device/include/hc08/mc68hc908gp32.h,
2517         * device/include/hc08/mc68hc908jb8.h,
2518         * device/include/hc08/mc68hc908jkjl.h,
2519         * device/include/hc08/mc68hc908qy.h: fixed comments
2520         * device/include/mcs51/README: updated
2521         * device/include/mcs51/c8051f120.h: added PINRSF
2522         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
2523         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
2524           amidst code. Also inline is not supported.
2525
2526 2005-04-06 Raphael Neider <rneider AT web.de>
2527
2528         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
2529         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
2530           callers stack/frame pointers
2531
2532 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
2533
2534         * device/include/pic16/usart.h: added, missing in previous commit,
2535         * device/include/pic16/adc.h: fixed typo,
2536         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
2537         commit,
2538         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
2539         <p18fxxx.inc>
2540         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
2541         uninitialized because a bug appears with gplink
2542         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
2543         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
2544         complains for unrecognised option
2545
2546 2005-04-05 Raphael Neider <rneider AT web.de>
2547
2548         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
2549           structs as well (using memcpy)
2550         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
2551           on ISRs (GOTO has no label)
2552         * src/pic16/device.h: added OF_OPTIMIZE_DF
2553         * src/pic16/main.c: added compiler switch --optimize-df to enable the
2554           new data flow analysis/optimization
2555         * src/pic16/pcode.c: added (prototypes for and implementation of)
2556           dataflow analysis functions, fixed pCodeInstructions' inCond and
2557           outCond values, made RCALL a branch instruction
2558         * (pic16_unlinkpCode): keep C line if possible
2559         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
2560           C line moved if possible
2561         * (pic16_getRegFrompCodeOp): NEW, improved version of...
2562         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
2563           to use new pic16_getRegFrompCodeOp (works for more SFRs)
2564         * (pic16_BuildFlow): fixed skip instructions with label (did not start
2565           new flow)
2566         * (pic16_getJumptabpCode): NEW, needed in...
2567         * (LinkFlow): fixed handling of jumptables, calls and conditional
2568           branches
2569         * (pic16_InsertCommentAfter): NEW
2570         * (pic16_pCodeReplace): made verbose and flow preserving
2571         * (AnalyzeFlow): added call to data flow analysis
2572         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
2573         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
2574         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
2575
2576 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2577
2578         * src/SDCCast.c (decorateType): fixed bug #1105626
2579
2580 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
2581
2582         * device/include/asm/pic16/features.h,
2583         * pic18f*.h headers,
2584         * device/include/pic16/adc.h,
2585         * device/include/pic16/delay.h,
2586         * device/include/pic16/i2c.h,
2587         * device/include/pic16/malloc.h,
2588         * device/include/pic16/stdio.h,
2589         * device/include/pic16/stdlib.h,
2590         * device/include/pic16/string.h,
2591         * device/lib/pic16/libc/stdio/printf_tiny.c,
2592         * device/lib/pic16/libc/stdio/printf_small.c,
2593         * device/lib/pic16/libc/stdio/strmgpsim.c,
2594         * device/lib/pic16/libc/stdio/strmmssp.c,
2595         * device/lib/pic16/libc/stdio/strmusart.c,
2596         * device/lib/pic16/libc/stdio/vfprintf.c,
2597         * device/lib/pic16/libc/stdlib/ltoa.c,
2598         * device/lib/pic16/libc/stdlib/putchar.c,
2599         * device/lib/pic16/libc/stdlib/x_ftoa.c,
2600         * device/lib/pic16/libc/stdlib/memchrpgm.c,
2601         * device/lib/pic16/libc/stdlib/memchrram.c,
2602         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
2603         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
2604         * device/lib/pic16/libio/adc/adcbusy.c,
2605         * device/lib/pic16/libio/adc/adcread.c,
2606         * device/lib/pic16/libio/adc/adcsetch.c,
2607         * device/lib/pic16/libio/usart/ubaud.c,
2608         * device/lib/pic16/libio/usart/ubusy.c,
2609         * device/lib/pic16/libio/usart/udrdy.c,
2610         * device/lib/pic16/libio/usart/uopen.c,
2611         * device/lib/pic16/libio/usart/uputc.c,
2612         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
2613         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
2614         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
2615         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
2616         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
2617         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
2618         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
2619         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
2620         specific keywords to double underlined form,
2621         * device/lib/pic16/libc/Makefile.rules,
2622         * device/lib/pic16/libsdcc/Makefile.rules,
2623         * device/lib/pic16/libm/Makefile,
2624         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
2625         to compile with C standard set in Makefile.common
2626         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
2627         rand.c and crc.c in compilation process,
2628         * device/lib/pic16/libsdcc/int/divuint.c,
2629         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
2630         `c' from signed to unsigned,
2631         * device/lib/pic16/startup/crt0.c,
2632         * device/lib/pic16/startup/crt0i.c,
2633         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
2634         keywords to double underlined form, bug fixes in _do_cinit function
2635         which prevented the correct initialization of the .idata segment,
2636         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
2637         core to enter a infinite loop
2638         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
2639
2640 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2641
2642         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
2643
2644 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2645
2646         * device/include/Makefile.in: add support for hc08 subdirectory
2647         * device/include/hc08/: new subdirectory
2648         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
2649         Lucas Loizaga, thanks!
2650         * device/include/hc08/mc68hc908qy.h,
2651         * device/include/hc08/mc68hc908gp32.h,
2652         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
2653         their own directory. Changed internal macro names to use the compiler
2654         reserved namespace. Changed SDCC specific keywords to double
2655         underlined form.
2656         * device/include/math.h,
2657         * device/include/malloc.h,
2658         * device/include/stdarg.h,
2659         * device/include/stdbool.h
2660         * device/include/string.h,
2661         * device/include/tinibios.h,
2662         * device/include/ds400rom.h,
2663         * device/include/8051.h,
2664         * device/include/8052.h,
2665         * device/include/80c51xa.h,
2666         * device/include/at89c55.h,
2667         * device/include/at89S8252.h,
2668         * device/include/at89x51.h,
2669         * device/include/at89x52.h,
2670         * device/include/ds80c390.h,
2671         * device/include/reg764.h,
2672         * device/include/regc515c.h,
2673         * device/include/sab80515.h,
2674         * device/include/mcs51/c8051f000.h,
2675         * device/include/mcs51/c8051f018.h,
2676         * device/include/mcs51/c8051f020.h,
2677         * device/include/mcs51/c8051f040.h,
2678         * device/include/mcs51/c8051f060.h,
2679         * device/include/mcs51/c8051f120.h,
2680         * device/include/mcs51/c8051f300.h,
2681         * device/include/mcs51/c8051f310.h,
2682         * device/include/mcs51/c8051f320.h,
2683         * device/include/mcs51/c8051f330.h,
2684         * device/include/mcs51/c8051f350.h,
2685         * device/include/z180.h: Changed SDCC specific keywords to double
2686         underlined form.
2687
2688 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
2689
2690         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
2691         18F4455,
2692         * (pic16_assignConfigWordValue): disable testing of configuration
2693         register value with config mask,
2694         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
2695         function with port->fun_prefix,
2696         * (genFunction): when generating a naked interrupt function never
2697         create an absolute segment placed in interrupt vector address, place
2698         the actual interrupt function at IVA instead, when an interrupt
2699         function is generated with unspecified interrupt then do not create
2700         the absolute section,
2701         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
2702         code for generating a call to generic pointer get/put function with
2703         a call to function pic16_callGenericPointer(),
2704         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
2705         the call to the generic pointer get/put functions with prefixing the
2706         function name with port->fun_prefix,
2707         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
2708         * src/pic16/main.c (_process_pragma): prefix function with
2709         port->fun_prefix,
2710         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
2711         calling assembler, old 18Fxxxx macro is deprecated,
2712         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
2713         PC_ASMDIR in while condition,
2714         * (findInstruction): add PC_ASMDIR in while condition,
2715         * (buildCallTree): prefix main with port->fun_prefix,
2716         * (pic16_pCode2str): fixed bug that didn't emit the memory access
2717         identifier for variable with banked access in instructions BTFSS,
2718         BTFSC, BCF, BSF, BTG
2719         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
2720         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
2721         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
2722         perform optimization when enviroment variable NO_REG_OPT is set,
2723         * (insideLRBlock): NEW, return 1 if register is inside an
2724         INF_LOCALREGS block,
2725         * (RemoveRegFromLRBlock): remove a register that is completely
2726         eliminated by register optimization, but it is still left in local
2727         register store/restore in/from stack block,
2728         * (Remove2pcodes): after removing register, check to see if it
2729         should be removed from local register store/restore in/from stack
2730         block,
2731         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
2732         DUMMY_READ_VOLATILE,
2733
2734         * device/include/pic16/adc.h: minor prototype modifications and
2735         update,
2736         * device/include/pic16/malloc.h: added GPL notice various
2737         modifications,
2738         * device/include/pic16/stdint.h: NEW, standard header for ints
2739         * device/include/pic16/delay.h: NEW, header for delay functions,
2740         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
2741         delay1mtcy,
2742         * device/include/pic16/signal.h: NEW, header providing helper macros
2743         for implementing signal handlers,
2744         * device/include/pic16/stdio.h: added prototypes for functions,
2745         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
2746         prototypes for stdin and stdout, added macro PUTCHAR to
2747         automatically implement putchar function prototype,
2748         * device/include/pic16/usart.h: modified and updated USART library,
2749         * device/lib/pic16/libio/adc/,
2750         * device/lib/pic16/libio/i2c: some modifications to improve library
2751         performance,
2752         * device/lib/pic16/libc/stdio/: modifications for the new printf*
2753         family of functions,
2754         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
2755         family of functions and other sources,
2756         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
2757         of the PIC18Fxx[28] devices,
2758         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
2759         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
2760         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
2761         _do_cinit function, because the previous failed when local variables
2762         where not placed in the same memory bank,
2763         * device/lib/pic16/libsdcc/char/: various modifications to improve
2764         library performance,
2765         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
2766         information on the new functions of the c library and more...
2767
2768 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2769
2770         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
2771
2772 2005-03-26 Raphael Neider <rneider AT web.de>
2773
2774         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
2775           if condition == CARRY)
2776         * (genCmp): adapted to new genSkipc semantics
2777         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
2778           on rIfx (genCmp was broken)
2779
2780 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2781
2782         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
2783         * src/z80/main.c (_keywords[]),
2784         * src/SDCCglobal.h (struct options),
2785         * src/SDCC.y,
2786         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
2787         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
2788         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
2789         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
2790         always available in leading double underscore form. The C99 support is
2791         mostly missing, but it's a start.
2792         * support/regression/tests/bug-227710.c: fixed nonconforming use of
2793         reserved identifier "__data".
2794
2795 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
2796
2797         * src/mcs51/peeph.def: fixed bug 1170013
2798
2799 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
2800
2801         * device/include/mcs51reg.h: fixed bug 842007
2802
2803 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2804
2805         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
2806         last time.
2807
2808 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2809
2810         * src/port.h (struct PORT),
2811         * src/avr/ralloc.c (avr_assignRegisters),
2812         * src/avr/main.c,
2813         * src/ds390/ralloc.c (ds390_assignRegisters),
2814         * src/ds390/main.c,
2815         * src/hc08/ralloc.c (hc08_assignRegisters),
2816         * src/hc08/main.c,
2817         * src/mcs51/ralloc.c (mcs51_assignRegisters),
2818         * src/mcs51/main.c,
2819         * src/pic/ralloc.c (pic14_assignRegisters),
2820         * src/pic/main.c,
2821         * src/pic16/ralloc.c (pic16_assignRegisters),
2822         * src/pic16/main.c,
2823         * src/xa51/ralloc.c (xa51_assignRegisters),
2824         * src/xa51/main.c,
2825         * src/z80/ralloc.c (z80_assignRegisters),
2826         * src/z80/ralloc.h,
2827         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
2828         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
2829         * src/SDCCcse.h,
2830         * src/SDCCdflow.c (computeDataFlow),
2831         * src/SDCCdflow.h,
2832         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
2833         * src/SDCCloop.h,
2834         * src/SDCCcflow.c (*),
2835         * src/SDCCcflow.h,
2836         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
2837         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
2838         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
2839         immedDom() returning wrong block; probably fixes bug #1160833)
2840
2841 2005-03-20 Borut Razem <borut.razem AT siol.net>
2842
2843         * support/scripts/inc2h.pl: WIN32 port
2844
2845 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
2846
2847         * device/lib/makefile.in: added abs.c and labs.c
2848
2849 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
2850
2851         * device/include/stdint.h: added
2852         * device/lib/abs.c: added
2853         * device/lib/labs.c: added
2854         * device/include/stdlib.h: added abs() and labs() prototypes
2855         * device/lib/libsdcc.lib: added abs and labs
2856         * device/include/float.h,
2857         * device/lib/_fsmul.c,
2858         * device/lib/printf_fast.c,
2859         * device/lib/printf_tiny.c: updated comments
2860
2861 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2862
2863         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
2864         bug #1164313
2865
2866 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2867
2868         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
2869         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
2870
2871 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
2872
2873         * device/lib/printf_large.c: removed inline assembly for portability and
2874           readability. Use printf_fast if speed or size are more important.
2875         * src/pic16/gen.c: removed conditions around use of DEBUGpc
2876         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
2877
2878 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
2879
2880         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
2881         prevent compiler warning
2882
2883 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
2884
2885         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
2886         moved to level 0 and declared as static. Also they are explicit
2887         placed in access bank. This was necessery because some times they
2888         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
2889         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
2890         optimizations. Currently only compare to unsigned char is implemented,
2891         * src/pic16/gen.c: added fReturnIdx array,
2892         * (struct resolvedIfx) is moved to gen.h and made public,
2893         * (struct _G): added sregsAlloc and sregsAllocSet fields,
2894         * (aopForSym): added an optimization to directly store in stack of
2895         the operand of a SEND iCode,
2896         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
2897         but as registers instead (AOP_REG) using the fReturnIdx array,
2898         * (pic16_freeAsmop): remove the freed register from the
2899         _G.sregsAlloc field,
2900         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
2901         a compare of 'WREG',
2902         * (pic16_popGetTempRegCond): changed function prototype, now
2903         function takes also a bitVector argument v which holds the current
2904         set of registers that are allocated for stack access by aopForSym,
2905         registers allocated in aopForSym for accessing stack symbols are not
2906         any more part of the functions usedRegs field,
2907         * (genCall): some times aopOp is called for a stack variable to be
2908         send, aopForSym might perform the push, if this is true make sure
2909         that genCall doesn't push the variable twice by testing _G.resDirect,
2910         * (genFunction): changed testing for unspecified interrupt number
2911         from 256 to INTNO_UNSPEC,
2912         * modified selection scheme of frame pointer generation. Previously
2913         if function did use local registers a frame pointer was generated,
2914         now a frame pointer is generated only if function has arguments
2915         (that need PLUSW2 register access), or has stack arguments, or the
2916         compiler is not instructed to omit the frame pointer,
2917         * (genEndFunction): before restoring local registers that were saved
2918         in the function preamble, also restore the registers that *might*
2919         have been allocated for stack access,
2920         * (genRet): removed some old comments,
2921         * (genCmp, the active (RN's) version): added a call to the
2922         pic16_genCmp_special function to perform the compare with a more
2923         robust and optimized way,
2924         * (genInline): a feature has been added in inline code generation,
2925         which allows a wildcard variable substitution when writing inline
2926         assembly. Code is incomplete and experimental therefore undocumented,
2927         * (genCast): changed order of aopOp for result and right to allow
2928         aopForSym to directly load the result if possible,
2929         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
2930         perform an optimized compare on some selected special occasions,
2931         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
2932         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
2933         generate an IVT any more,
2934         * src/pic16/main.c (pic16_optionsTable): added command line option
2935         --optimize-cmp,
2936         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
2937         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
2938         macros,
2939         * src/pic16/NOTES: Raphael Neider added in list of active developers
2940         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
2941         jumptable_end to prevent bug #,
2942         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
2943         inCond and outCond fields,
2944         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
2945         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
2946         turn off register spilling,
2947         * (packRegsForOneUse): synced with other ports' versions although it
2948         is not used currently,
2949         * (pic16_packRegisters): added an optimization while reading
2950         structure bitfields, some registers may be saved (malloc code is
2951         decreased by 80 bytes)
2952
2953 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
2954
2955         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
2956         left is a bitfield, if yes, then don't optimize assignment. Perhaps
2957         this can be optimized more?
2958
2959 2005-03-10 Raphael Neider <rneider AT web.de>
2960
2961         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
2962           genNearPointerGet): (hopefully) fixed access to bitfields via
2963           pointers (p->bitN = x; and x = p->bitN; failed)
2964
2965 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
2966
2967         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
2968
2969 2005-03-09 Raphael Neider <rneider AT web.de>
2970
2971         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
2972
2973 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
2974
2975         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
2976         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
2977           (regTypeNum): set REG_BIT type if necessary
2978         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
2979         * support/regression/tests/critical.c: check bug 1144613
2980
2981 2005-03-02 Raphael Neider <rneider AT web.de>
2982
2983         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
2984
2985 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2986
2987         * src/avr/ralloc.c (serialRegAssign),
2988         * src/ds390/ralloc.c (serialRegAssign),
2989         * src/hc08/ralloc.c (serialRegAssign),
2990         * src/mcs51/ralloc.c (serialRegAssign),
2991         * src/pic/ralloc.c (serialRegAssign),
2992         * src/pic16/ralloc.c (serialRegAssign),
2993         * src/xa51/ralloc.c (serialRegAssign),
2994         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
2995
2996 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
2997
2998         * src/SDCCast.c (decorateType): fixed bug 1124787
2999
3000 2005-02-20 Hubert Sack <sack AT digiplan.de>
3001         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3002
3003         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
3004         patch #1121755
3005
3006 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3007
3008         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
3009         to keep the correct label reference count when adding/removing references
3010         to labels. A peephole file using this is appended to patch #1144962.
3011
3012 2005-02-14 Raphael Neider <rneider AT web.de>
3013
3014         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
3015         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
3016         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
3017           retrievals of result operand's value on assignment
3018
3019 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
3020
3021         * device/include/pic16/string.h: modified prototype for memccpy()
3022         to memccpy(void *, void *, char, size_t)
3023         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
3024         check whether to omit frame pointer or not,
3025         * (genInline): convert all occurences of "\n" to LF in inline
3026         assembler blocks, this helps formatting the inline text,
3027         * (pic16_loadFSR0): modified prototype,
3028         * (genNearPointerGet, genNearPointerSet): reorganization of code,
3029         removed some 8051 legacy code,
3030         * (genPackBits): enabled handling bitfields exceeding one byte in size,
3031         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
3032         before allocating temporary registers in functions,
3033
3034 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
3035
3036         * support/regression/tests/bitvars.c: corrected the "fix"
3037
3038 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
3039
3040         * support/regression/tests/bitvars.c,
3041         * support/regression/tests/bitwise.c,
3042         * support/regression/tests/rotate.c: "fixed" problems on Alpha
3043
3044 2005-02-10 Raphael Neider <rneider AT web.de>
3045
3046         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
3047           different size for Alpha
3048         * src/pic16/gen.c (genCmpEq) : improved compare with 0
3049
3050 2005-02-09 Raphael Neider <rneider AT web.de>
3051
3052         * src/SDCC.lex(doPragma) : save and restore warning options as well
3053           (also added new stack plus clone- and copyAndFreeSDCCERRG())
3054         * have #pragma less_pedantic set the errorlevel to WARNING
3055           (fixes #1117001)
3056         * (cloneOptimize) : fixed wrong malloc's size
3057         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
3058           facilitate correct handling of #pragma (save|restore)
3059
3060 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
3061
3062         * src/mcs51/gen.c: removed non-standard C nameless struct/union
3063
3064 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
3065
3066         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
3067
3068 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
3069
3070         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
3071
3072 2005-02-02 Raphael Neider <rneider AT web.de>
3073
3074         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
3075         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
3076         * (pic16_storeForReturn): fixed to allow returning function pointers
3077         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
3078         * device/include/pic16/{stddef.h,stdbool.h}: added
3079
3080 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
3081
3082         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
3083
3084 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
3085
3086         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
3087         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
3088          appeared to be required
3089
3090 2005-01-31 Borut Razem <borut.razem AT siol.net>
3091
3092         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
3093           include/mcs51 and include/z80 directories to the package
3094
3095 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3096
3097         * src/hc08/gen.c (genFunction): fixed bug #1112752
3098
3099 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3100
3101         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
3102
3103 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3104
3105         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
3106
3107 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
3108
3109         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
3110
3111 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
3112
3113         * device/include/c8051fxxx.h: removed these 6 files
3114         * device/include/mcs51/c8051fxxx.h: added these 11 new files
3115
3116 2005-01-26 Raphael Neider <rneider AT web.de>
3117
3118         * src/pic16/gen.c (genAssign): fixed assignment from longs
3119           in codespace (were cut to three bytes)
3120         * (genDummyRead): implemented (except for CODESPACE...),
3121           fixed bug #1108575
3122         * src/pic16/glue.c (emitStatistics): beautified
3123         * device/lib/pic16/libm/Makefile: added include path
3124
3125 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3126
3127         * src/z80/gen.c (aopPut): fixed bug #1103902
3128
3129 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3130
3131         * device/lib/expf.c: fixed bug #1095792
3132
3133 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
3134
3135         * device/lib/pic16/libm: added Math library sources
3136
3137 2005-01-24 Raphael Neider <rneider AT web.de>
3138
3139         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
3140           to enable upcast to pCodeOpReg2 (there is no type tag to
3141           differenciate the two and pic16_popGet2p cast into PCOR2)
3142         * src/pic16/main.c (_process_pragma): fixed another malloc bug
3143           (sizeof(sectNames) changed to sizeof(sectName))
3144           Both patches fix segfaults under MinGW.
3145
3146 2005-01-23 Raphael Neider <rneider AT web.de>
3147
3148         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
3149           Safe_[mc]?alloc()'ed variables
3150         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
3151           of (byte sized) temporaries (assign them to WREG for now)
3152         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
3153           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
3154           this might fix SIGSEGVs on MinGW...
3155         * src/SDCCopt.c (killDeadCode): restored original behaviour
3156           (volatile operands might get thrown away though)
3157
3158 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
3159
3160         * src/pic16/gen.c: fixed bug #1106975,
3161         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
3162         pointer update, INTCON is saved, global interrupts are disabled and
3163         restored after updateing TOS.
3164         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
3165         * added function attribute 'shadowregs' to take advantage of shadow
3166         registers,
3167         * added function attribute 'wparam' as an alternative to the wparam
3168         pragma,
3169         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
3170         user declares a non-ISR function as 'shadowregs',
3171         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
3172
3173 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
3174
3175         * .version: bumped version number to 2.4.8
3176         * device/lib/pic16/pics.all: list of PIC18F devices supported by
3177         pic16 port,
3178         * device/lib/pic16/libio/i2c/: I2C module support library,
3179         * device/include/pic16/i2c.h: I2C support library header,
3180         * device/lib/pic16/libc/stdio/: standard IO support sources,
3181         * (printf_small.c): printf_small() source, supports float print,
3182         * (printf_tiny.c): printf_tiny() source, does not support floats,
3183         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
3184         enable global optimizations for entire library source, other
3185         Makefiles in the source tree are also modified to reflect this,
3186         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
3187         function,
3188         * doc/sdccman.lyx: updated to reflect new changes,
3189         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
3190         sym->onStack if-case,
3191         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
3192         sbit, idata, _idata, xdata, _xdata,
3193         * added pragma library, to link an external library, (see doc),
3194         * removed command line options, --pomit-config-words, --pomit-ivt,
3195         --pleave-reset-vector,
3196         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
3197         when calling assembler to reflect memory model used, also define
3198         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
3199         reflect stack model used,
3200         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
3201         on stack return NULL,
3202
3203 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3204
3205         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
3206           of the operands is volatile. Fixes #1020220
3207
3208 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3209
3210         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
3211         * (OptimizeRegUsage): make sure that there is really no other flow where
3212           the first pCode is used
3213
3214 2005-01-22 Raphael Neider <rneider AT web.de>
3215
3216         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
3217           to fix #1106967 (pCode->seq are not set up correctly)
3218
3219 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3220
3221         * src/SDCCglue.c (glue): make sure code area is declared before the
3222         static initialization area.
3223
3224 2005-01-21 Raphael Neider <rneider AT web.de>
3225
3226         * device/lib/Makefile.in: fixed test for pic16 install dir
3227         * device/lib/pic16/*/Makefile*: modified compile flags to enable
3228           optimizations
3229         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
3230           added --optimize-goto compiler switch and pragma wparam documentation
3231         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
3232         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
3233           and PRODH closing bug #1071770 (peephole optimizer)
3234
3235 2005-01-19 Raphael Neider <rneider AT web.de>
3236
3237         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
3238           cmdLine buffers (used when calling sdcpp...) are large enough
3239           (MAX_PATH=256 truncates arguments leading to system halts when
3240           used in MinGW...)
3241         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
3242         * (genUminus): rewritten to for efficiency
3243         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
3244           used uninitialized in some cases)
3245         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
3246           copy the third byte from the int -- now assumes 0x80 (data memory)
3247         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
3248           operands (genAddLit expects the iCode's operands to swapped as
3249           well), fixed leftover bytes (crashed for short left operands)
3250         * (pic16_genMinusDec): performance improvements, removed false
3251           PIC14 emitSKPNCs
3252         * (pic16_genMinus): fixed to cope with differently sized operands
3253         * src/pic16/glue.c (pic16_glue): added new banksel optimization
3254           for --obanksel > 1
3255         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
3256         * src/pic16/graph.[ch]: implementation of directed graphs, used by
3257           new banksel optimization
3258         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
3259           analysis for temporary registers (segfaults...)
3260         * src/pic16/peeph.def: added rule
3261
3262 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
3263
3264         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
3265         which converts a float number to its ASCII representation
3266         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
3267         functions to convert the fractional and integer part of a float to ASCII,
3268         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
3269         realloc.c): added _MALLOC_SPEC to explicit place variables in data
3270         ram
3271         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
3272         _STATMEM macros,
3273         * device/include/pic16/adc.h: added GPL info,
3274         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
3275         a pCodeOp as tested operand,
3276         * (genNearPointerGet): optimized bit testing, does not use
3277         intermediate register for bit value, test directly instead with
3278         BTFSS, BTFSC, works only for single bits,
3279         * (genpic16Code): dump the name of the iCode in the asm,
3280         * src/pic16/ralloc.c (decodeOp): removed static declaration and
3281         renamed to pic16_decodeOp,
3282         * (serialRegAssign): do not allocate a temporary register for iCode
3283         sequences that test a single bit for 1/0
3284
3285 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
3286
3287         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
3288         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
3289         access stack and frame pointers. They are initially assigned to
3290         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
3291         accessing SFRs. Updated all occurences of modification of stack or
3292         frame pointer in gen.c and pcode.c,
3293         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
3294         assigning of a literal value to pointers,
3295         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
3296         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
3297         selected
3298
3299 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
3300
3301         * doc/sdccman.lyx: update documentation about stack pragma, added
3302         some info for stack memory models
3303
3304 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3305
3306         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
3307
3308 2005-01-08 Raphael Neider <rneider AT web.de>
3309
3310         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
3311           udata sections to fix bug #1097823
3312
3313 2005-01-05 Raphael Neider <rneider AT web.de>
3314
3315         * src/pic16/gen.c (genGenericShift): added handling of differently
3316           sized left operand and result
3317
3318 2005-01-04 Raphael Neider <rneider AT web.de>
3319
3320         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
3321         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
3322           to hold the condition bit)
3323         * added new version of genCmp (old code available via #define)
3324         * added new version of genShiftLeft/genShiftRight in a generic
3325           way, now supports shifting by negative values
3326         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
3327           shiftCount (expected by genGenericShift)
3328         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
3329         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
3330           dump
3331         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
3332           is an invalid literal too...)
3333
3334 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
3335
3336         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
3337         from Raphael Neider,
3338         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
3339         for 8-bit literals. This fixes some literal operands which are sign
3340         extended to 16-bits ints when instruction needs only 8-bits.
3341
3342 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
3343
3344         * device/lib/logf.c: added mcs51 assembly version
3345         * device/lib/expf.c: added mcs51 assembly version
3346         * device/lib/_logexpf.c: new shared asm code for expf and logf
3347         * device/include/math.h: add defines for assembly math library
3348         * device/lib/Makefile.in: build new _logexpf.c
3349         * device/lib/libfloat.lib: use new _logexpf.c
3350
3351 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3352
3353         * src/pic/device.c
3354         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
3355           device types which have less than 0x7f registers.
3356
3357 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3358
3359         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
3360
3361 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3362
3363         * device/lib/printf_fast.c: only build on supported arch.
3364         * device/lib/printf_tiny.c: only build on supported arch.
3365         * device/lib/printf_fast_f.c: only build if asm float lib
3366         * device/lib/_fsget1arg.c: only build if asm float lib
3367         * device/lib/_fsget2args.c: only build if asm float lib
3368         * device/lib/_fsnormalize.c: only build if asm float lib
3369         * device/lib/_fsreturnval.c: only build if asm float lib
3370         * device/lib/_fsrshift.c: only build if asm float lib
3371         * device/lib/_fsswapargs.c: only build if asm float lib
3372         * device/include/stdio.h: don't provide print_fast,
3373           print_fast_f, print_tiny prototypes if --xstack used
3374
3375 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
3376
3377         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
3378         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
3379           to the SOURCES
3380
3381 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3382
3383         * device/lib/printf_fast_f.c: same as printf_fast, but
3384           with floating point enabled
3385         * device/lib/printf_fast.c: minor tweaks
3386         * device/include/stdio.h: add printf_fast_f
3387
3388 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3389
3390         * src/SDCCmain.c: make --float-reent default for mcs51
3391         * device/lib/_fsadd.c: added mcs51 assembly version
3392         * device/lib/_fssub.c: added mcs51 assembly version
3393         * device/lib/_fsmul.c: added mcs51 assembly version
3394         * device/lib/_fsdiv.c: added mcs51 assembly version
3395         * device/lib/_fseq.c: added mcs51 assembly version
3396         * device/lib/_fsneq.c: added mcs51 assembly version
3397         * device/lib/_fsgt.c: added mcs51 assembly version
3398         * device/lib/_fslt.c: added mcs51 assembly version
3399         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
3400         * device/lib/Makefile.in: add _fscmp to build
3401         * device/lib/libfloat.lib: add _fscmp to build
3402
3403 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3404
3405         * device/lib/_fs2slong.c: added mcs51 assembly version
3406         * device/lib/_fs2sint.c: added mcs51 assembly version
3407         * device/lib/_fs2schar.c: added mcs51 assembly version
3408         * device/lib/_fs2ulong.c: added mcs51 assembly version
3409         * device/lib/_fs2uint.c: added mcs51 assembly version
3410         * device/lib/_fs2uchar.c: added mcs51 assembly version
3411         * device/lib/_slong2fs.c: added mcs51 assembly version
3412         * device/lib/_sint2fs.c: added mcs51 assembly version
3413         * device/lib/_schar2fs.c: added mcs51 assembly version
3414         * device/lib/_ulong2fs.c: added mcs51 assembly version
3415         * device/lib/_uint2fs.c: added mcs51 assembly version
3416         * device/lib/_uchar2fs.c: added mcs51 assembly version
3417         * device/include/float.h: added #define to select asm vs c
3418
3419 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
3420
3421         * device/lib/printf_fast.c: improvements to float output
3422         * device/include/float.h: add defines for assembly float library
3423         * device/lib/_fsget1arg.c: receive 1 float arg
3424         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
3425         * device/lib/_fsnormalize.c: normalize a float
3426         * device/lib/_fsreturnval.c: return float, various helper routines
3427         * device/lib/_fsrshift.c: right shift a float's mantissa
3428         * device/lib/_fsswapargs.c: swap 2 floats
3429         * device/lib/Makefile.in: build these 6 new files for mcs51
3430         * device/lib/libfloat.lib: add these 6 files to the library
3431
3432 2004-12-26 Borut Razem <borut.razem AT siol.net>
3433
3434         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
3435           built by gcc 3.4.2
3436
3437 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
3438
3439         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
3440           and fully reentrant and register bank neutral.
3441         * device/lib/printf_fast.c: added float (not enabled by default),
3442           added compact/slower integer (also not enabled by default),
3443           improved size/speed of fast integer code, other minor changes
3444         * device/include/stdio.h, device/lib/Makefile.in,
3445           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
3446
3447 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
3448
3449         * src/pic16/pcode.c: declaring variables other than at the start of a
3450           block is not supported in C by VC6.
3451
3452 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
3453
3454         * applied a previous patch from Raphael Neider that wasn't included
3455         in the previous commits, which fixes infinite loops within jumptable
3456         improvements,
3457         * made some fixes that previous patches introduced
3458
3459 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
3460
3461         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
3462         that fixes an issue with AOP_PCODE asmop's offset,
3463         * (pic16_popCopyReg): update instance field too,
3464         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
3465         function of pic port,
3466         * (genCmp, genAnd, genAssign),
3467         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
3468
3469 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
3470
3471         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
3472         variables initial values to idata section,
3473         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
3474         variables in some functions. This utilizes parmBytes field of iCode
3475         structure to hold the offset of the variable in stack. (might be
3476         able to use the stack field too?)
3477         * applied patch from Raphael Neider # ### , # ###
3478         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
3479         variable initial values in idata section,
3480         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
3481         for static variables with initial value
3482         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
3483         applied fix in while loop from Raphael Neider.
3484
3485 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
3486
3487         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
3488         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
3489         * src/ds390/ralloc.c (serialRegAssign): spill bits
3490         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
3491         * support/Util/SDCCerr.c,
3492         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
3493         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
3494         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
3495
3496 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
3497
3498         * device/include/sdcc-lib.h: inserted LGPL, added includes
3499           asm/ds390/features.h and asm/mcs51/features.h
3500         * device/include/asm/default/features.h,
3501         * device/include/asm/gbz80/features.h,
3502         * device/include/asm/z80/features.h: added empty _AUTOMEM
3503           and _STATMEM
3504         * device/include/asm/ds390/features.h,
3505         * device/include/asm/mcs51/features.h: added files with defines for
3506           _AUTOMEM and _STATMEM indicating automatic and static storage class
3507         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
3508         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
3509         * src/SDCCicode.c (geniCodeCast),
3510         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
3511         * src/SDCCloop.c (loopInduction): removed unused variable lr
3512         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
3513           to convertToFcall to include char modulo (RFE 1065037), added check
3514           if left operand is unsigned and use abs of literal value
3515         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
3516           as it doesn't work after conversion from peephole.def to peephole.rul
3517         * src/mcs51/gen.c (toBoolean): added check for size,
3518           (genModOneByte): optimized code for signed char modulo a literal
3519           power of 2 (thanks to Hubert Sack),
3520           (genRRC): removed unnecessary "clr c",
3521           (genRLC): replaced "add a,acc" with cheaper "rlc a"
3522         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
3523           jump optimization,
3524           swapped rules 256.c and 256.d,
3525           extended 256.d by using new multiple checks (thanks Erik),
3526           added rules 256.e and 256.f,
3527           updated rule 261.a and 261.b to new generated code
3528         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
3529
3530 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3531
3532         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
3533           induction related bugs, including first part of bug #1074377
3534
3535 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
3536
3537         * applied patch from bug-report #1076292,
3538         * applied patches for genAnd and Goto-optimizations for Raphael
3539         Neider,
3540         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
3541         dump a less iCode information,
3542         * src/pic16/device.h (pic16_options_t): added field debgen,
3543         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
3544         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
3545         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
3546         puclic,
3547         * (various functions): added macros FENTRY and FENTRY2 to functions,
3548         to emit function prologue,
3549         * (various functions): fixed indentation,
3550         * (genNearPointerGet): fixed loading of FSR0,
3551         * (genPackBits): applied patch from Raphael Neider to fix updating
3552         of FSR0 and touching only the modified bits,
3553         * src/pic16/genarith.c (various functions): added macros FENTRY to
3554         emit function prologue in comments,
3555         * src/pic16/pcode.h: added functions debugf2, debugf3,
3556         * src/pic16/ralloc.c: partial fix for packForPush caused
3557         segmentation fault,
3558
3559 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3560
3561         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
3562           <stsp AT users.sourceforge.net> with reversed byte order
3563         * support/regression/tests/rotate.c: added (ds390 skips some tests)
3564
3565 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3566
3567         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
3568           bug #1074377
3569         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
3570         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
3571
3572 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3573
3574         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
3575
3576 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3577
3578         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
3579           conditions,
3580           (setFromConditionArgs): friendly operand parser for peephole rules,
3581           (operandBaseName, operandsNotRelated): new peephole condition
3582           "operandsNotRelated" -- similar to "operandsNotSame", but takes
3583           architecture specific register naming into account, handles n-way
3584           comparisons, and supports quoted literals
3585         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
3586
3587 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3588
3589         * src/mcs51/peeph.def: fixed bug #1076940
3590
3591 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3592
3593         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
3594
3595 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3596
3597         Adding support for replacing ljmps with sjmps in jumptables
3598         generated for switch statements. For now you need to set the
3599         environment variable SDCC_SJMP_JUMPTABLE to enable this.
3600         Now 4 algorithms for mcs51 jumptable generation are used:
3601         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
3602         addresses loaded pc-relative for up to 112 cases and stack-pushing
3603         target addresses loaded with offset from dptr for up to 256 cases.
3604
3605         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
3606         * src/mcs51/main.c: adapted constants for switch table generation
3607         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
3608
3609 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
3610
3611         * device/lib/printf_large.c (_print_format): fixed bug 1073386
3612         * support/regression/tests/bug1057979.c: added test for bug 1073386
3613
3614 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3615
3616         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
3617         compilers
3618
3619 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3620
3621         * src/pic16/device.h,
3622         * src/pic16/genarith.c,
3623         * src/pic16/glue.c,
3624         * src/pic16/main.c,
3625         * src/pic16/pcode.c: applied patches #1068154 and #1070213
3626
3627 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
3628
3629         Large cummulative patch for pic16 port.
3630         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
3631         to call when a stack overflow occurs,
3632         * (malloc.h): added CVS Id tag,
3633         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
3634         variable,
3635         * added libc directory. The current version of LibC contains string
3636         functions, ctype functions and macros and some functions of the
3637         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
3638         be extensively tested in the future. Standard disclaimer here.
3639         Library is not automatically build yet. But one can build it by
3640         invoking 'make' inside the libc directory.
3641         * added ADC library under libio. Preliminary version yet.
3642
3643         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
3644         * src/pic16/gen.c (aopForRemat): asmop size is filled by
3645         aopForRemat() now and not by pic16_aopOp(),
3646         * (pic16_popGetTempReg): removed warning messgae when allocating
3647         temporary registers, its a buggy feature and will be removed,
3648         * (pic16_popGet): set register instance field in AOP_CRY,
3649         * (pic16_outBitC): fixed for results in size greater than 1,
3650         * (genUminusFloat): fixed for pic16, ported code from mcs51,
3651         * (pic16_storeForReturn): optimized return of 0,
3652         * (genCmp): experimental code for new genCmp which uses PIC18's
3653         special compare&skip instructions. Initial tests fail some times
3654         with variables grater than 1 byte in size, so new code is disabled,
3655         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
3656         a single bit,
3657         * (genCast): began a fix to optimize the casting of a bit to another
3658         bit, now assigning a bitfield to another bitfield will fail, sorry,
3659         * src/pic16/main.c: disabled the use of lr-support feature,
3660         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
3661         * added some function prototypes, added function _debugf prototype,
3662         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
3663         bits with offset (case PO_GPR_BIT),
3664         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
3665         command line,
3666         * (isBankInstruction): modified to return 0 for no banking instruction,
3667         and 1 for banking instruction,
3668         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
3669         caused stop processing pCodes after a inline assembly block,
3670         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
3671         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
3672         registers when it shouldn't,
3673         * src/pic16/ralloc.c (allocReg): add preliminary support for
3674         supporting a limited set of temporary registers,
3675
3676 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3677
3678         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
3679           genDataPointerSet): ensure assignments always copy in MSB to LSB
3680           order,
3681           (loadRegFromAop): recognize CLRH optimization,
3682           (genFunction): optimize RECEIVE iCodes in reentrant functions
3683
3684 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3685
3686         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
3687           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
3688           selected.
3689         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
3690         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
3691           contiguous with data
3692
3693 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3694
3695         * device/lib/_gptrget.c (_gptrget),
3696         * device/lib/_gptrgetc.c (_gptrgetc),
3697         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
3698           instead of sjmp to ret
3699         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
3700           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
3701
3702 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
3703
3704         * .version: bumped version to 2.4.7
3705         * device/lib/_gptrget.c (_gptrget): is now _naked
3706         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
3707         * device/lib/_gptrput.c (_gptrput): is now _naked
3708         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
3709           (createFunction): fixed xstack
3710         * src/SDCCglue.c (emitMaps): set allocation required for bit area
3711         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
3712           or bit either,
3713           (geniCodeCritical): store original interrupt state in an iTemp bit
3714           var unless stack-auto
3715         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
3716         * src/SDCCmain.c (setIncludePath): added include/target to search path
3717         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
3718         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
3719           prototype,
3720           (processFuncArgs): put bit vars in bit area
3721         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
3722           unsaveRBank): fixed xstack,
3723           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
3724           (genFunction, genEndFunction): fixed xstack,
3725           (genAssign): optimization don't walk backwards through mem
3726         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
3727         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
3728         * support/regression/Makefile: also make library (for stack-auto) when
3729           making "all" and added "test-mcs51-xstack-auto"
3730         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
3731         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
3732         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
3733         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
3734         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
3735           make-library by MAKE_LIBRARY
3736         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
3737           regression tests for xstack
3738         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
3739         * support/regression/tests/critical.c: test for critical on mcs51
3740
3741 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3742
3743         * support/regression/ports/ucz80/spec.mk: use include and lib files from
3744           built version of sdcc instead of installed version
3745
3746 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
3747
3748         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
3749         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
3750           vprintf.c now
3751         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
3752         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
3753           WARNING: remove device/lib/build/z80/printf.o by hand when
3754           updating from previous build!
3755         * device/lib/z80/printf.c: updated comment
3756         * support/regression/tests/bug1057979.c: test all ports now
3757         * support/regression/tests/bug1065458.c: file added
3758
3759 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3760
3761         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
3762           *_start and *_end symbols for static functions
3763
3764 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
3765
3766         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
3767           and search crt0.o in all library paths,
3768           (setIncludePath): proper handling of --nostdinc,
3769           (setLibPath): proper handling of --nostdlib
3770         * support/regression/Makefile,
3771         * support/regression/ports/ds390/spec.mk,
3772         * support/regression/ports/gbz80/spec.mk,
3773         * support/regression/ports/hc08/spec.mk,
3774         * support/regression/ports/mcs51/spec.mk,
3775         * support/regression/ports/mcs51-large/spec.mk,
3776         * support/regression/ports/mcs51-stack-auto/spec.mk,
3777         * support/regression/ports/z80/spec.mk: use include and lib files from
3778           built version of sdcc instead of installed version
3779         * doc/sdccman.lyx: fixed typo in --nostdinc
3780
3781 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
3782
3783         * src/pic/pcode.c,
3784         * src/pic/device.c,
3785         * src/pic/ralloc.c,
3786         * src/pic/gen.c : added support to generate code for struct bit fields.
3787
3788 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
3789
3790         * as/xa51/xa_version.h,
3791         * device/include/errno.h,
3792         * device/include/regc515c.h,
3793         * device/lib/_itoa.c,
3794         * device/lib/_ltoa.c,
3795         * device/lib/ser_ir_cts_rts.c,
3796         * sim/ucsim/xa.src/glob.cc,
3797         * sim/ucsim/xa.src/inst_gen.cc,
3798         * sim/ucsim/xa.src/xa_bit.cc,
3799         * sim/ucsim/xa.src/xa_sfr.cc,
3800         * sim/ucsim/z80.src/inst_dd.cc,
3801         * sim/ucsim/z80.src/inst_fdcb.cc,
3802         * support/scripts/keil2sdcc.pl,
3803         * src/pic16/pic16.dsp,
3804         * src/pic16/pic16a.dsp: corrected cvs line endings
3805         * device/lib/printf_large.c: fixed bug 1057979
3806         * src/pic16/gen.c: fixed non-C standard code
3807         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
3808         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
3809         * support/regression/ports/mcs51/support.c: reload T1 asap
3810         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
3811           pdata use and clear idata startup behaviour
3812         * support/regression/tests/bug1057979.c: added
3813
3814 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
3815
3816         * device/examples/ds390/ow390/ad26.h,
3817         * device/examples/ds390/ow390/cnt1d.h,
3818         * device/examples/ds390/ow390/crcutil.c,
3819         * device/examples/ds390/ow390/ownet.h,
3820         * device/examples/ds390/ow390/owsesu.c,
3821         * device/examples/ds390/ow390/swt12.h,
3822         * device/examples/ds390/ow390/swtoper.c,
3823         * device/examples/ds390/ow390/temp10.h,
3824         * device/examples/ds390/ow390/thermodl.c,
3825         * device/examples/ds390/tinitalk/tinitalk.dsp,
3826         * device/examples/ds390/tinitalk/tinitalk.dsw,
3827         * device/examples/mcs51/clock/hw.h,
3828         * device/examples/mcs51/simple2/go.bat,
3829         * device/examples/serialcomm/windows/serial.h,
3830         * device/examples/xa51/dummy.c,
3831         * device/examples/xa51/hello.c,
3832         * device/include/80c51xa.h,
3833         * device/include/at89x051.h: corrected cvs line endings
3834
3835 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
3836
3837         * src/pic16/main.c (options): added command line --gstack, to trace
3838         stack over/under flows,
3839         * added pragma 'wparam' to allow passing first byte of function
3840         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
3841         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
3842         call to __gstack_test function and sets up the symbol as extern,
3843         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
3844         * popaop): added call to pic16_testStackOverflow,
3845         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
3846         wparamList list,
3847         * (genCall, genPcall): now all parameters are passed via stack
3848         except in functions that are pass to wparam pragma in which WREG is
3849         used too,
3850         * (genPcall): REENTRANT flag is checked to see if variable prototype
3851         contains reentrant keyword, don't call a non-reentrant function, via
3852         a reentrant function pointer or vice versa, functions are never
3853         passed via WREG,
3854         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
3855         D.Winkler,
3856         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
3857         SIGSEGV when accessing a NULL register stucture,
3858         * (pic16_printGPointerType): modified to handle UPPER modifier for
3859         function initializers, changed prototype of function to simpler one,
3860         * (pic16_printIvalFuncPtr): check to see if function is already
3861         added in externs list,
3862         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
3863         optimized a move from W to SFR with a move to the same register
3864         later after a CALL,
3865         * device/lib/pic16/debug: NEW directory, contains debug features
3866         which are enabled when linking with libdebug.lib, currently command
3867         line option --gstack enables stack pointer tracing for over/under
3868         flow, corresponding sources are in debug/gstack
3869
3870 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
3871
3872         * doc/sdccman.lyx: updated SDCC version,
3873         * (PIC16 port): update list of command line options,
3874         * src/pic16/device.h (structure pic16_options_t): added field gstack
3875         to enable stack overflow tracing on push/pops,
3876         * src/pic16/device.c (statistics structure): added statistics
3877         structure,
3878         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
3879         pic16_dump_int_registers): increase statistics counters for each
3880         * variable which is encountered
3881         * (pic16_dump_usection): emit each .udata variable to its own udata
3882         section,
3883         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
3884         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
3885         parameters via stack, otherwise use old scheme,
3886         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
3887         assembler output file,
3888         * src/pic16/main.c: added command line options --gstack to enable
3889         push/pop tracing for stack overflow,
3890         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
3891         instructions): added size of each instruction,
3892         * (pic16_countInstruction): estimate size of instructions in
3893         the_pFile list, inline assembly blocks are not counted,
3894         * (pic16_FixRegisterBanking): trace previous register usage, when
3895         banksel optimizations is greater than 0, don't emit a redudant
3896         banksel directive,
3897
3898 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
3899
3900         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
3901         * src/pic16/ralloc.c : applied same fix for pic16.
3902         * src/pic/gen.c : tidied it up a little.
3903
3904 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3905
3906         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
3907         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
3908
3909 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3910
3911         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
3912
3913 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3914
3915         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
3916         non-reentrant function __modsint in the interrupt function (thus
3917         corrupting math operations during serial I/O)
3918         * device/lib/ser_ir.c: as above, changed buffersize
3919         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
3920         256.c,d for zeroing
3921         * doc/Makefile: added option -t for rsync
3922
3923 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3924
3925         * src/SDCCast.h (struct ast),
3926         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
3927
3928 2004-10-20 Borut Razem <borut.razem AT siol.net>
3929
3930         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
3931         package
3932
3933 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
3934
3935         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
3936         makefile targets,
3937         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
3938         support functions to replace long sequences of MOVFF's from access
3939         bank registers to stack and vice versa,
3940         * src/pic16/device.h: added new field opt_flags, where optimization
3941         flags can be set to enable certain features,
3942         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
3943         * pBlock, (genFunction, genEndFunction): surroung loop for
3944         saving/loading used registers in stack with PC_INFO pCodes,
3945         INF_LREGS. Code in between can then be optimized by pCode optimizer
3946         to support function calls,
3947         * (genDataPointerSet): fixed bug which loaded float fields in
3948         structures with corrupt data,
3949         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
3950         in a standard way debug info on stderr. Feature used for developing
3951         and debugging only,
3952         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
3953         obsolete chunks of code,
3954         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
3955         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
3956         * pic16/src/pcode.c (pic16_newpCodeInfo,
3957         * (pic16_newpCodeOpLocalRegs),
3958         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
3959         feature,
3960         * (pic16_pCodeConstString): printing of the initial value of a
3961         symbol as a comment is inhibited since parsing was already done by
3962         copyStr and output is corrupt,
3963         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
3964
3965 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3966
3967         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
3968
3969 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
3970
3971         * as/mcs51/lkarea.c: removed old K&R style,
3972           (lnksect): changed check on boundary error,
3973           (lnksect2): changed check on boundary error,
3974           (lnksect2): extend XSTK to end of page if size = 1
3975         * as/mcs51/lkmain.c: removed old K&R style,
3976           (Areas51): create l_IRAM symbol
3977         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
3978         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
3979           model-mcs51-stack-auto, added model-mcs51-xstack-auto
3980         * device/lib/_mullong.c: added version to be compiled with xstack
3981         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
3982         * device/lib/mcs51/crtxclear.asm: clear pdata as well
3983         * device/lib/mcs51/crtxstack.asm: fixed comment
3984         * src/SDCCglue.c: maxInterrupts defaults to 0,
3985           (emitMaps): added pdata,
3986           (createInterruptVect): (re)moved default,
3987           (glue): added pdata,
3988           (glue): moved __start__xstack to XSTK with default size 1
3989         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
3990           and options.float_rent when options.stackAuto is set,
3991           (linkEdit): only write XDATA_NAME if provided on command line
3992         * src/SDCCmem.h,
3993         * src/SDCCmem.c: added pdata
3994         * src/port.h: added pdata_name to PORT
3995         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
3996           (saveRegisters, unsaveRegisters): removed usage of B,
3997           (genMinus): fixed accumulator clash,
3998           (genJumpTab): added comment, this needs another look
3999         * src/mcs51/gen.c: added check for "B in use" paranoia,
4000           added pushB() and popB()
4001         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
4002           chance
4003         * src/avr/main.c,
4004         * src/ds390/main.c,
4005         * src/hc08/main.c,
4006         * src/mcs51/main.c,
4007         * src/pic/main.c,
4008         * src/pic16/main.c,
4009         * src/xa51/main.c,
4010         * src/z80/main.c: (reset_regparms) made void parameter explicit and
4011           added PSEG (PAG,XDATA) or NULL to port specifier
4012         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
4013         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
4014           (_mcs51_genInitStartup): removed __start__xstack equ,
4015           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
4016         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
4017         * src/z80/gen.c (_rleAppend): fixed warnings
4018         * support/regression/tests/zeropad.c: added pdata test
4019         * .version: bumped to 2.4.6
4020
4021 2004-10-17 Borut Razem <borut.razem AT siol.net>
4022
4023         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
4024         as a part of nightly build
4025
4026 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
4027
4028         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
4029         WREG holds the first byte function parameters,
4030         * (aopForSym): take special case for symbols which are in FARSPACE
4031         but in CODESPACE too,
4032         * (assignResultValue): modified to take into account _G.useWreg,
4033         * (genCall): don't use wreg for parameter passing when function is
4034         declared as reentrant, too, added optimization INCF to stack
4035         pointer when stack parameter count is 1,
4036         * (genFunction, genEndFunction): refurnished and fixed to not using
4037         wreg for passing parameters when function has varargs or is
4038         reentrant, fixed bug with symbol name compare for generating
4039         functions in absolute address,
4040         * (pic16_storeForReturn): refurnished,
4041         * (genCmp): began writing a new version of the function, not ready
4042         yet, therefore it is disabled,
4043         * (genAssign): do not read code memory when assigning a function to
4044         a pointer function,
4045         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
4046         array of characters, not pointer,
4047         * (pic16initialComments): in debug mode emit an .ident directive for
4048         the assembler,
4049         * (_process_pragma): emit a new warning type (internal to pic16)
4050         when setting stack to default length, emit a similar warning when
4051         placing a function at absolute address and address is not word aligned
4052         * (_pic16_parseOptions): added 'return TRUE' statement,
4053         * (_pic16_linkEdit): if compiling a source, then add the source's
4054         file object, first in the list of objects to link,
4055
4056 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
4057
4058         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
4059         * src/pic/main.c : removed VC warning.
4060         * src/pic/gen.c : changed comment.
4061
4062 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
4063
4064         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
4065         reference to a deprecated symbol _GPTRREG was causing failure to
4066         link. Thanks G. M. Gallant for the info.
4067
4068 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
4069
4070         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
4071         comments for Bugs item #954788.
4072
4073 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
4074
4075         * src/pic16/device.c (pic16_dump_gsection,
4076         * pic16_groupRegistersInSection): handle symbols declared to be in
4077         access bank differently,
4078         * src/pic16/gen.c (struct _G): added field resDirect,
4079         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
4080         send values read from stack directly to result and don't allocate
4081         temporary values,
4082         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
4083         same registers,
4084         * (pic16_sameRegsOfs): NEW,
4085         * (freeAsmop): if _G.resDirect is set then do not mark registers as
4086         free because they were not allocated from temporary pool,
4087         * pic16_popRegFromString): workaround to fix a problem with
4088         allocating variables twice or never,
4089         * (genGenPointerGet): using PRODL instead of FSR0H,
4090         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
4091         instead of FSR0H,
4092         * (genAssign): take advantage of the _G.resDirect flag,
4093         * (genCast): around line 11844, use mov2f instead of directly
4094         MOVFF'ing between operands to account for literal values,
4095         * src/pic16/genutils.c: some new debug functions for gpsim have been
4096         added,
4097         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
4098         float with integer part only,
4099         * src/pic16/main.c (_process_pragma): handle pragma udata access to
4100         place variables in access bank
4101         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
4102         updated sources to reflect recent changes in gen.c
4103
4104 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
4105
4106         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
4107         sources that searched for headers in installation path, now the
4108         device/include/pic16 is used,
4109         * src/pic16/glue.c (pic16glue),
4110         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
4111         .line directives if not in debug mode, this suppresses assembler's
4112         warnings for ignored directives
4113
4114 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
4115
4116         * src/port.h: made reset_regparms prototype void parameter explicit.
4117         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
4118         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
4119         * doc/sdccman.lyx: documented warning disabling and how to use
4120           printf_large to make it print floats.
4121         * device/include/stdbool.h: NEW
4122         * device/lib/_atof.c,
4123         * device/lib/_divuint.c,
4124         * device/lib/_divulong.c,
4125         * device/lib/expf.c,
4126         * device/lib/printf_large.c,
4127         * device/lib/sincosf.c,
4128         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
4129         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
4130           a completely reentrant lib.
4131
4132 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
4133
4134         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
4135         * device/include/pic16/stdio.h: fixed bug with colon
4136
4137 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
4138
4139         * device/include/pic16/stdio.h,
4140         * device/include/pic16/stdlib.h,
4141         * device/include/pic16/math.h: NEW
4142         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
4143         declared as _naked to reduce overhead
4144         * device/lib/Makefile.in (target port-specific-objects-pic16):
4145         changed * to *.* so to ignore the CVS directory,
4146         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
4147         stacked variables back in stack,
4148         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
4149         corruption
4150
4151 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
4152
4153         * .version: bumped version number to 2.4.5
4154         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
4155         * support/Util/SDCCerr.c (messages structure): added entry for
4156         W_POSSBUG2
4157
4158         Large cumulative patch for pic16 port and libraries.
4159         * device/include/pic16/sdcc-lib.h,
4160         * device/include/pic16/stdarg.h,
4161         * device/include/asm/pic16/features.h,
4162         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
4163         * device/include/pic16/float.h: changes reentrant keyword with
4164         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
4165         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
4166         updated target build-libraries to include objects from gptr,
4167         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
4168         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
4169         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
4170         all function headings,
4171         * src/SDCCmain.c: added global parameter userIncDirsSet,
4172         * (parseCmdLine): when option -I is encountered add directory to
4173         userIncDirsSet too,
4174         * src/version.awk: added space between control and long,
4175         * src/pic16/NOTES: added some notes for the port,
4176         * src/pic16/gen.c: added prototype for mov2fp function,
4177         * (fReturnpic16[]): properly named return value registers,
4178         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
4179         * (aopForSym): added code to handle symbols with onStack flag set,
4180         symbols onStack are allocated PTRSIZE bytes,
4181         * (aopFreeAsmop): handles special case where asmops are stack objects,
4182         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
4183         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
4184         added argument lock to trace flaws in allocating temporary registers
4185         when developing port,
4186         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
4187         * (pic16_popRegFromString): reenabled allocating a direct register
4188         from string,
4189         * (assignResultValue): various beautifications,
4190         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
4191         referenced function argument,
4192         * (genIpush): reenabled to allow stacked arguments, handles only
4193         ic->parmPush iCodes,
4194         * (genCall, genPcall): major changes to allow for variable argument
4195         functions, fixed a bug with falsely restoring stack pointer after
4196         returning from call,
4197         * (genFunction): pending code for critical function,
4198         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
4199         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
4200         * (genNearPointerGet): fixed bug with indirect reading, was always
4201         reading from INDF0
4202         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
4203         pointers,
4204         * (genAddrOf): rewrote code to take address of a stacked function parameter
4205         * (genCast): fixed casting to generic pointer type,
4206         * src/pic16/gen.h: added AOP_STA,
4207         * (struct asmop): added field stk,
4208         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
4209         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
4210         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
4211         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
4212         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
4213         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
4214         generic pointers,
4215         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
4216         and library paths,
4217         * (pic16_port structure): generic pointer size is set to 3,
4218         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
4219         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
4220         compiler warning,
4221         * src/pic16/ralloc.c (allocReg): prevent allocating register when
4222         operand is an iTemp,
4223
4224 2004-09-24 Martin Helmling <mh AT octo-soft.de>
4225
4226         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
4227         * debugger/mcs51/simi.c: addapt new syntax of s51
4228
4229 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
4230
4231         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
4232         * src/pic16/pcode.c: commented out some calls to free() in order to
4233         fix bug #989576,
4234
4235 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4236
4237         * src/SDCCicode.h,
4238         * src/SDCCicode.c (isiCodeInFunctionCall),
4239         * src/avr/ralloc.c (selectSpil),
4240         * src/pic/ralloc.c (selectSpil),
4241         * src/pic16/ralloc.c (selectSpil),
4242         * src/ds390/ralloc.c (selectSpil),
4243         * src/hc08/ralloc.c (selectSpil),
4244         * src/xa51/ralloc.c (selectSpil),
4245         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
4246         stack in the middle of a function call sequence (fixes bug #1020268)
4247         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
4248         costs associated with the minimum switch case.
4249
4250 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4251
4252         * src/SDCC.lex: fixed bug #1030549
4253
4254 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4255
4256         * src/SDCCcse.h (struct cseDef),
4257         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
4258         over a function call if the CSE is derived from a symbol whose
4259         address has been taken (fixes bug #1029883)
4260         * support/regression/tests/bug-1029883: a new regression test for
4261         this bug
4262
4263 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4264
4265         * src/hc08/gen.c (emitinline): fixed bug #1029778
4266         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
4267         to a cast object is no longer a syntax error ("fixes" bug #1030006,
4268         and starts toward RFE #905167)
4269
4270 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
4271
4272         * src/pic16/gen.c (mov2f): New function to move an operand to
4273         another without considering if it is a literal or a register,
4274         * (pic16_sameRegs): don't check if they are both AOP_REG,
4275         * (AccRsh): removed andmask=0 lines,
4276         * (genLeftShift): duplicated to be improved in future versions,
4277         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
4278         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
4279         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
4280         * (pic16initMnemonics): added initialization for POC_INFSNZW,
4281         * (insertBankSwitch): fixed inserting banksel directives algorithm
4282         for instructions that follow a skip instruction, this fixes a report
4283         for broken subtraction code generation,
4284         * src/pic16/ralloc.c (deassignLRs): do not free register if current
4285         iCode is a left op, just in case result and right share the same
4286         registers
4287
4288 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4289
4290         * src/hc08/main.c,
4291         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
4292         preservation of HX
4293         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
4294         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
4295         on 2004-09-12; it was buggy
4296
4297 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
4298
4299         * src/SDCCsymt.h: removed RESULT_CHECK
4300         * src/SDCCast.c,
4301         * src/SDCCglue.c,
4302         * src/SDCCval.c,
4303         * src/pic/glue.c,
4304         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
4305
4306 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
4307
4308         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
4309         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
4310         configuration values no more rejected by compiler, they are assigned
4311         to configuration registers with a warning message instead,
4312         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
4313         the for-loop so last conf register is emitted too,
4314         * (_pic16_initPaths): link library libsdcc.lib by default,
4315         * (_hasNativeMulFor): modified test for multiplication according to
4316         Raphael Neider's remarks. Integer multiplication is also done with
4317         support functions,
4318         * device/include/pic16/pic18fregs.h: corrected type error in while
4319         testing and including 18f6720 header file
4320
4321 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
4322
4323         * src/pic16/device.h (pic16_options): removed field use_crt,
4324         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
4325         until an optimization to handle single bits is added,
4326         * (pic16_loadFSR0): moved before genUnpackBits,
4327         * (genAnd): some white lines removed,
4328         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
4329         leave_reset flags in pic16_options when using crt modules,
4330
4331 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
4332
4333         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
4334           for bugs 898889 & 979599. Also used some safer print instructions.
4335
4336 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
4337
4338         * src/pic16/device.h (pic16_options_t): added field use_crt,
4339         crt_name, no_crt,
4340         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
4341         catch a probable future bug,
4342         * src/pic16/gen.c: aopIdx function commented out,
4343         * (genAssign): commented out old code which used aopIdx,
4344         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
4345         code, added if conditionals to take into account the --use-crt
4346         command line options,
4347         * src/pic16/main.c (pic16_optionsTable): added new command line
4348         options, --use-crt= and --no-crt,
4349         * (_pic16_linkEdit): now the proper crt object is added in the
4350         linker command line except than when --no-crt is specified,
4351         * src/pic16/pcode.c,
4352         * src/pic16/pcode.h: added some structures and functions for a new
4353         optimization scheme to compansate for instruction overhead between
4354         same iCodes, this scheme is currently under development and is not
4355         working in any way,
4356         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
4357         to && operator,
4358         * device/lib/pic16/startup/crt0i.c,
4359         * device/lib/pic16/startup/crt0iz.c: added global char variable
4360         __uflags to force the generation of an idata section
4361
4362 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
4363
4364         * doc/Makefile,
4365         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
4366         * doc/sdccman.lyx: updated sdcc version to 2.4.4
4367
4368 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4369
4370         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
4371         Frieder) and clarified the default code optimization mode
4372
4373 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4374
4375         * src/SDCC.lex (doPragma, process_pragma),
4376         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
4377         "opt_code_size", and "opt_code_balanced"
4378         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
4379         regrouped options by category, added support for category headers
4380         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
4381         and "--opt-code-size"
4382         * doc/sdccman.lyx: documented these new options and pragmas
4383         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
4384         preference into account
4385
4386 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4387
4388         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
4389           geniCodePreDec): Fixed bug 904237 by generating a warning
4390         * src/SDCCerr.h,
4391         * src/SDCCerr.c: added warning W_SIZEOF_VOID
4392
4393 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
4394
4395         * src/pic/device.c : When no max ram set validate full memory range.
4396         * src/pic/pcode.c,
4397         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
4398
4399 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4400
4401         * device/lib/_gptrget.c,
4402         * device/lib/_gptrput.c: updated comment
4403         * device/lib/calloc.c,
4404         * device/lib/free.c,
4405         * device/lib/malloc.c,
4406         * device/lib/realloc.c: added LGPL, made them reentrant-safe
4407         * src/SDCCcse.c (cseBBlock),
4408         * src/SDCCicode.c (printOperand, geniCodeArray),
4409         * src/SDCCicode.h (struct operand): fixed bug 868103
4410         * support/regression/tests/bug-868103.c: added
4411         * src/SDCCast.c (searchLitOp),
4412         * src/SDCCcse.h (struct cseDef),
4413         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
4414         * src/SDCCicode.h (struct operand),
4415         * src/SDCCsymt.h (struct sym_link),
4416         * src/avr/gen.c (hasInc),
4417         * src/ds390/gen.c (hasInc),
4418         * src/hc08/gen.c (genPlusIncr, hasInc),
4419         * src/mcs51/gen.c (hasInc),
4420         * src/pic16/glue.c (pic16_printIvalChar),
4421         * src/pic16/ralloc.c (regWithIdx),
4422         * src/xa51/gen.c (hasInc) : removed warnings
4423         * src/SDCCast.c (createBlock): added comment ???
4424         * src/hc08/ralloc.c: updated comments
4425
4426 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4427
4428         * doc/sdccman.lyx: updated section on switch statements, added
4429         section about semaphore locking
4430         * doc/Makefile: added option -info for latex2html
4431         * device/lib/_gptrget.c,
4432         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
4433
4434 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4435
4436         * src/pic/device.h,
4437         * src/pic/device.c,
4438         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
4439          maxram is less than 0x100.
4440
4441 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4442
4443         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
4444
4445 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4446
4447         * src/port.h,
4448         * src/mcs51/main.c,
4449         * src/ds390/main.c,
4450         * src/z80/main.c,
4451         * src/hc08/main.c,
4452         * src/pic/main.c,
4453         * src/pic16/main.c,
4454         * src/avr/main.c,
4455         * src/xa51/main.c
4456         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
4457         a jump table is the best form for a switch statement, including
4458         automatic insertion of missing cases to make the case range
4459         continuous. Developed in collaboration with Frieder Ferlemann.
4460
4461 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4462
4463         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
4464         accumulator result if it needs sign extension
4465
4466 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4467
4468         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
4469
4470 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4471
4472         * device/lib/gbz80/printf.c,
4473         * device/lib/z80/printf.c: removed define for NULL
4474
4475 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4476
4477         * as/xa51/xa_link.c,
4478         * device/examples/ds390/ow390/ad26.c,
4479         * device/examples/ds390/ow390/cnt1d.c,
4480         * device/examples/ds390/ow390/counter.c,
4481         * device/examples/ds390/ow390/ds2480.h,
4482         * device/examples/ds390/ow390/ds2480ut.c,
4483         * device/examples/ds390/ow390/findtype.c,
4484         * device/examples/ds390/ow390/gethumd.c,
4485         * device/examples/ds390/ow390/owllu.c,
4486         * device/examples/ds390/ow390/ownetu.c,
4487         * device/examples/ds390/ow390/swt12.c,
4488         * device/examples/ds390/ow390/swtloop.c,
4489         * device/examples/ds390/ow390/temp.c,
4490         * device/examples/ds390/ow390/temp10.c,
4491         * device/examples/ds390/ow390/thermo21.c,
4492         * device/examples/ds390/ow390/tinilnk.c,
4493         * device/examples/ds390/ow390/tstfind.c,
4494         * device/examples/serialcomm/windows/serial.cpp,
4495         * device/examples/serialcomm/windows/test_serialcomm.cpp,
4496         * device/include/reg51.h: fixed line endings for cvs
4497
4498 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4499
4500         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
4501         packRegsForAccUse, packRegisters): new accumulator register
4502         packing algorithm
4503         * support/regression/ports/hc08/support.c (_putchar): suppress
4504         warning of unused variable
4505         * src/SDCCicode.c: added SWAP entry to codeTable
4506
4507 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
4508
4509         * device/lib/sprintf.c: forgot to add this file before previous commit
4510
4511 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
4512
4513         * src/pic16/gen.c (genPackBits): added operand right in function
4514         parameters, load result directly if p_type is POINTER (that is
4515         called by genNearPointerSet)
4516         * (genUnPackBits): added operand left in function parameters,
4517         * (genNearPointerGet, genNearPointerSet): prevent the loading of
4518         FSR0 if accessing bitfields,
4519
4520 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
4521
4522         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
4523           _print_format; updated printf, sprintf, vsprintf
4524         * device/include/asm/default/features.h: corrected comment/define
4525         * device/lib/Makefile.in: added sprintf.c
4526         * device/lib/libsdcc.lib: added sprintf module
4527         * device/lib/printf_large.c,
4528         * device/lib/vprintf.c,
4529         * device/lib/sprintf.c: totally refactored printf_large and vprintf
4530           into these 3 files
4531         * support/regression/Makefile: changed ALL_PORTS into a usefull default
4532         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
4533         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
4534           hc08 test
4535         * support/regression/tests/zeropad.c: define idata as data for hc08
4536
4537 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4538
4539         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
4540         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
4541         labels are referenced at least once (even if a reference is not found)
4542         * src/hc08/gen.c (emitcode): set isComment flag for comments
4543         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
4544         loads), rules 6a..6b (optimize jumps to return)
4545
4546 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4547
4548         * device/lib/acosf.c (acosf),
4549         * device/lib/asinf.c (asinf),
4550         * device/lib/atanf.c (atanf),
4551         * device/lib/ceilf.c (ceilf),
4552         * device/lib/cosf.c (cosf),
4553         * device/lib/coshf.c (coshf),
4554         * device/lib/cotf.c (cotf),
4555         * device/lib/fabsf.c (fabsf),
4556         * device/lib/floorf.c (floorf),
4557         * device/lib/log10f.c (log10f),
4558         * device/lib/logf.c (logf),
4559         * device/lib/sinf.c (sinf),
4560         * device/lib/sinhf.c (sinhf),
4561         * device/lib/sqrtf.c (sqrtf),
4562         * device/lib/tanf.c (tanf),
4563         * device/lib/tanhf.c (tanhf),
4564         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
4565         replaced all instances of "reentrant" in the library functions
4566         defined in math.h with this macro.
4567         * support/regression/tests/float_trans.c: reenabled test for hc08
4568
4569 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
4570
4571         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
4572         erroneously deleted
4573
4574 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4575
4576         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
4577         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
4578         multi-byte volatile operands are used
4579         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
4580         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
4581         initialization to area GSINIT0 so that it would always precede
4582         any static initializers in GSINIT
4583         * support/regression/tests/zeropad.c: fixed idata define for hc08
4584         * support/regression/tests/bug-927659.c,
4585         * support/regression/tests/float_trans.c: disabled tests for hc08
4586         pending missing library routines
4587         * .version: increased version number to 2.4.4 - hc08 port now passes
4588         regression tests
4589
4590
4591 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
4592
4593         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
4594         * Makefile.common.in,
4595         * as/Makefile,
4596         * as/hc08/Makefile.in,
4597         * as/mcs51/Makefile.in,
4598         * as/z80/Makefile.in,
4599         * debugger/mcs51/Makefile.in,
4600         * device/include/Makefile.in,
4601         * device/lib/Makefile.in,
4602         * doc/Makefile,
4603         * link/Makefile,
4604         * link/z80/Makefile.in,
4605         * packihx/Makefile.in,
4606         * sim/ucsim/main_in.mk,
4607         * sim/ucsim/avr.src/Makefile.in,
4608         * sim/ucsim/doc/Makefile.in,
4609         * sim/ucsim/gui.src/serio.src/Makefile.in,
4610         * sim/ucsim/hc08.src/Makefile.in,
4611         * sim/ucsim/s51.src/Makefile.in,
4612         * sim/ucsim/xa.src/Makefile.in,
4613         * sim/ucsim/z80.src/Makefile.in,
4614         * src/Makefile.in,
4615         * support/cpp2/Makefile.in,
4616         * support/librarian/Makefile,
4617         * support/makebin/Makefile: added DESTDIR to the install path proposed
4618         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
4619         * doc/sdccman.lyx: added DESTDIR documentation
4620
4621 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
4622
4623         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
4624         instruction for interrupt handlers, use fast returns when returning
4625         from high priority interrupts
4626
4627 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4628
4629         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
4630         code generation
4631         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
4632         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
4633         bugs, ported much of Bernhard's code from mcs51
4634         * src/mcs51/gen.c (genSend),
4635         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
4636         than one when calling a reentrant function
4637         * device/lib/_mullong.c: defined an alternate struct layout for big
4638         endian ports (hc08)
4639
4640 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4641
4642         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
4643         test
4644
4645 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4646
4647         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
4648         are sane and complete before asking the port its prefered parameter
4649         passing method (fixes bug #1017633)
4650         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
4651         and _ret3
4652
4653 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4654
4655         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
4656         problem in bitfields >= 8 bits.
4657
4658 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4659
4660         * src/SDCCsymt.c: undid changes that were not meant to be committed
4661
4662 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4663
4664         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
4665
4666 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4667
4668         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
4669           copied and wrong bit got inverted
4670
4671 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4672
4673         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
4674         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
4675         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
4676         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
4677         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
4678         assignments to bitfields at known addresses
4679         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
4680         reads from bitfields at known addresses
4681         * src/hc08/ralloc.c (packRegisters),
4682         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
4683         genhc08Code): optimize pointer get values used as conditionals
4684         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
4685         and branch
4686
4687 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4688
4689         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
4690         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
4691         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
4692         as conditionals
4693
4694 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4695
4696         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
4697
4698 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4699
4700         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
4701         related problems
4702
4703 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
4704
4705         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
4706
4707 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4708
4709         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
4710         mcs51 port
4711
4712 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
4713
4714         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
4715
4716 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4717
4718         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
4719         cases use more compact code.
4720
4721 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
4722
4723         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
4724
4725 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4726
4727         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
4728
4729 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4730
4731         * src/SDCCsymt.h,
4732         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
4733         parameter of changePointer() from symbol* to sym_link*
4734         * src/SDCCast.c (decorateType): call changePointer() for CAST op
4735         * src/SDCCsymt.c (compareType): void* type is castable to other
4736         pointers, but not necesarily an exact match.
4737         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
4738         is no longer blindly treated as an exact match.
4739         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
4740
4741 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
4742
4743         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
4744
4745 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
4746
4747         * src/pic/gen.c,
4748         * src/pic/pcode.c,
4749         * src/pic/ralloc.h,
4750         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
4751
4752 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
4753
4754         * src/pic/device.c,
4755         * src/pic/device.h,
4756         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
4757
4758 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4759
4760         * src/mcs51/gen.c (emitcode): fixed bug #992819
4761
4762 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
4763
4764         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
4765           there's no need to make it worse
4766
4767 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4768
4769         * src/mcs51/ralloc.c (deassignLR),
4770         * src/ds390/ralloc.c (deassignLR),
4771         * src/hc08/ralloc.c (deassignLR),
4772         * src/z80/ralloc.c (deassignLR),
4773         * src/pic/ralloc.c (deassignLR),
4774         * src/pic16/ralloc.c (deassignLR),
4775         * src/avr/ralloc.c (deassignLR),
4776         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
4777         rlivePoint): fixed another part of bug #971834
4778
4779 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4780
4781         * src/z80/main.c: enabled "critical" keyword
4782         * src/z80/mappings.i,
4783         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
4784         functions (fixes bug #979646)
4785         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
4786
4787 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4788
4789         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
4790           such as c:\mydir.
4791
4792 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
4793
4794         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
4795           doesn't disable too much optimizations
4796
4797 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4798
4799         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
4800
4801 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
4802
4803         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
4804
4805 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4806
4807         * src/pic/gen.c tidied up tabs
4808         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
4809         * src/pic/main.c tidied up tabs
4810         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
4811         * src/pic/pcoderegs.c tidied up tabs
4812         * src/pic/ralloc.c tidied up tabs
4813
4814 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
4815
4816         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
4817         to S_FIXED for pic16 port and when symbol is not in level 0,
4818         allocate for S_REGISTER storage class and pic16 port, too,
4819         * src/pic16/device.h: prototype for checkSym,
4820         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
4821         * (pic16_assignConfigWordValue): test the value and the mask to
4822         validate that the value is suitable for the configuration word,
4823         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
4824         collect extern declared symbols, don't emit symbol twice, check
4825         first if symbol is in publics set first,
4826         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
4827         * added command line '--fstack' which enables an experimental
4828         feature for stack access, too buggy to be used yet...
4829         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
4830         * (pic16_allocDirReg): when register has storage class S_REGISTER
4831         allocate in pic16_dynAccessRegs,
4832         * device/include/pic16/pic18f????.h: modified configuration word
4833         naming convention, words started as CONFIG0H but should be CONFIG1H
4834
4835 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
4836
4837         * device/include/mcs51reg.h: fixed bug 970993
4838
4839 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
4840
4841         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
4842         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
4843         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
4844         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
4845         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
4846         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
4847           error/warning numbers,
4848           added function setWarningDisabled()
4849         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
4850         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
4851           _memcmp.c _memmove.c calloc.c realloc.c free.c
4852         * support/regression/tests/malloc.c: added tests for new functionality
4853         * support/regression/tests/zeropad.c: added tests for truncated initializers
4854           and initialized char arrays starting with '\x0'
4855         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
4856
4857 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
4858
4859         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
4860
4861 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4862
4863         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
4864         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
4865         peephole 177.e. Thanks to anonymous
4866
4867 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
4868
4869         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
4870         function isn't used in the source but referenced as a
4871         variable initializer then declare it as extern in .asm file
4872
4873 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
4874
4875         * .version: increased version number to 2.4.3
4876
4877         Adding version extension according to ChangeLog CVS revision
4878         * src/Makefile.in (target all): added dependency 'version.h'
4879         * (rule version.h): added rule to create version.h from ChangeLog,
4880         * (rule dep): added dependency version.h,
4881         * src/version.awk: AWK script to create version.h
4882         * src/SDCCdwarf2.c (dwWriteModule),
4883         * src/SDCCglue.c (initialComments),
4884         * src/SDCCmain.c (printVersionInfo): modified to write after
4885         version string the version extension number,
4886         * src/SDCCutil.c: included "version.h"
4887         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
4888         number,
4889         * src/SDCCutil.h: added prototype for getBuildNumber
4890
4891         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
4892         includeDirsSet, too,
4893         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
4894         const char [] is found in function prototype...
4895
4896         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
4897         moving to WREG with source is already in WREG,
4898         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
4899         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
4900         * (aopForSym): stack'ed symbols are partially supported, added
4901         if-clause to support symbols in FARSPACE,
4902         * (sameRegs): added test for AOP_ACC to see if registers are same,
4903         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
4904         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
4905         * (pic16_popRegFromString): will not allocate a new register if it
4906         doesn't find one by name, bug may have introduced...
4907         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
4908         * (genIpush): revived to use pic16 port's stack,
4909         * (genAddrOf): added incomplete case for stack'ed operand,
4910         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
4911         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
4912         can handle multibyte operands,
4913         * src/pic16/glue.c (pic16_printIval*): some debug info added,
4914         * (pic16initialComments): added message for MPLAB compatibility
4915         mode enabled,
4916         * src/pic16/main.h: prototype for pic16_mplab_comp,
4917         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
4918         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
4919         * (_pic16_linkEdit): NEW, handles link stage, transferred here
4920         because of increased complexity of procedure,
4921         * (_process_pragma): stack pragma changed to format 'stack pos len',
4922         emit symbol '_stack_end' to conform with gplink,
4923         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
4924         to search for register,
4925         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
4926         PO_GPR_REGISTER,
4927         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
4928         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
4929         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4930         case for PO_GPR_REGISTER,
4931         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
4932         dies, the new era is ahead !...
4933         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
4934         pic16_dynInternalRegs,
4935         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
4936         * (pic16_allocDirReg): minor optimizations and bug fixes,
4937         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
4938
4939         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
4940         load stack and frame pointer with address of 'stack_end' symbol
4941
4942 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
4943
4944         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
4945         without source code but only variable initializers
4946
4947 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
4948
4949         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
4950         external are not declared as extern to reduce overhead while linking
4951
4952 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
4953
4954         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
4955
4956 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
4957
4958         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
4959           Yee Keat for the patch
4960         * src/SDCCast.c (decorateType): fixed bug #979599
4961         * src/ds390/gen.h: removed local fReturnSizeDS390
4962         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
4963         * src/ds390/gen.c (genAnd, genOr, genXor),
4964         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
4965
4966 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
4967
4968         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
4969         add relFilesSet to $3, manipulate $2 to handle linking of object
4970         files without source files in command line,
4971         * device/include/pic16 (all headers): added ID location macros,
4972         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
4973         entries for ID location bytes,
4974         * (pic16_assignIdByteValue): NEW,
4975         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
4976         added field dumpcalltree to pic16_options_t,
4977         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
4978         is used instead of pic16_Gstack_base_addr, check if (ifx) before
4979         emitting rFalseIfx label after check_carry label,
4980         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
4981         pic16_emitDIRegs), NEW
4982         * (pic16glue): dump .calltree file when option --calltree found,
4983         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
4984         * (_pic16_genAssemblerPreamble): emit ID locations after
4985         configuration registers,
4986         * (pic16_linkCmd): modifications of the link command,
4987         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
4988         * (pic16_pCodeInitRegisters): don't init stack registers,
4989         * (pic16_findPrevInstruction): fixed bug,
4990         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
4991         bug with immediate registers,
4992         * (buildCallTree): traces stack push and pop,
4993         * (pct2): dump also stack usage for each function,
4994         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
4995         * (pic16_allocDirReg): various modifications,
4996         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
4997         fixed to 1,
4998
4999 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
5000
5001         * src/pic16/pcode.c: removed buggy double colon
5002
5003 2004-07-01 Borut Razem <borut.razem AT siol.net>
5004
5005         * support/scripts/sdcc.nsi: added include/pic16 to setup
5006
5007 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
5008
5009         * device/lib/Makefile.in: fixed bug in target objects-pic16,
5010         * device/lib/pic16/Makefile: prefixed with dash (-) command under
5011         target 'clean',
5012         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
5013         specific command line arguments. Also added sample lkr script
5014         for placing a variable at a specific memory bank.
5015         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
5016         at a specific memory bank,
5017         * (pic16_dump_isection): fixed bug which caused string literals to
5018         be omitted when dumping idata section,
5019         * (pic16_groupRegistersInSection): added code to handle registers
5020         in specific memory banks,
5021         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
5022         public, all references are renamed too,
5023         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
5024         AOP_DPTR2,
5025         * (pic16_storeForReturn): added case to handle when dest is WREG,
5026         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
5027         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
5028         pic16_rel_udata, check to see if that register is marked as being
5029         a member of a specific memory bank,
5030         * (pic16_printIvalCharPtr): added code to add string literals either
5031         to code or the idata sections,
5032         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
5033         also accept the 'udata' pragma,
5034         * src/pic16/main.h: new structure types sectName and sectSym
5035         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
5036         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
5037         * (pic16_findPrevInstruction): fixed, it returned nothing,
5038         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
5039         instruction combinations,
5040         * (pic16_FixRegisterBanking): heavily reorganised,
5041         * (pic16_AnalyzeBanking): if generating banksel directives is
5042         disabled, then don't call FixRegisterBanking at all,
5043         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
5044         completely removed,
5045         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
5046
5047 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
5048
5049         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
5050         Phuah Yee Keat <yk.phuah AT nestac.com>
5051
5052 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5053
5054         * src/pic16/glue.c (pic16createInterruptVect): function now emits
5055         correctly the IVT even if it is relocated to some other location
5056
5057 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5058
5059         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
5060         * device/include/pic16/pic18f2220.h: NEW,
5061         * device/lib/pic16/libdev/pic18f2220.c: NEW,
5062         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
5063         * src/pic16/device.c (struct Pics16): added info for 18f2220,
5064         * src/pic16/device.h (struct pic16_options): added ivt_loc and
5065         nodefaultlibs, ivt_loc is the location of the interrupt vector
5066         table, and nodefaultlibs signs that default libraries should not be
5067         linked in link stage,
5068         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
5069         according to --ivt-loc argument,
5070         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
5071         when pragma stack is found,
5072
5073 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5074
5075         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
5076         256 (range check), 257 (do while), 258.a-f (bit banging
5077         f.e. on 3-wire SPI bus)
5078
5079 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5080
5081         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
5082         variables used exclusively within a loop
5083
5084 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
5085
5086         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
5087
5088 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5089
5090         * src/SDCClrange.c (computeClash): fixed bug #971834
5091
5092 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5093
5094         * src/mcs51/gen.c (genCmp): fixed bug #975903
5095         * src/hc08/gen.c (operandsEqu),
5096         * src/ds390/gen.c (operandsEqu),
5097         * src/z80/gen.c (operandsEqu),
5098         * src/pic/gen.c (operandsEqu),
5099         * src/pic16/gen.c (operandsEqu),
5100         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
5101         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
5102
5103 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5104
5105         * src/SDCCcse.c (cseBBlock): fixed bug #966963
5106
5107 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
5108
5109         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
5110         default case in switch statement,
5111         * glue.c (pic16_initPointer): expr is initialised via decoarteType
5112         to eliminate problem with initialisation of pointers, but problem
5113         still exists,
5114         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
5115         * (emitStaticSegment): removed various lines emitting debug info,
5116         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
5117         added processor registers for utilizing EEPROM,
5118         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
5119         configurable and set 8
5120
5121 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
5122
5123         * .version: increased version number to 2.4.2,
5124
5125         Cumulative patch for pic16 port
5126         * src/pic16/device.c: changed scheme to dump initial values for
5127         variables in idata segment, all print_idata* functions were removed,
5128         now the pic16_printIval* will be called,
5129         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
5130         * _pic16_printPointerType, pic16_printPointerType,
5131         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
5132         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
5133         NEW, similar to the respective functions in SDCCglue.c,
5134         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
5135         way, emitting hex bytes,
5136         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
5137
5138 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5139
5140         * src/avr/ralloc.c (serialRegAssign),
5141         * src/xa51/ralloc.c (serialRegAssign),
5142         * src/pic/ralloc.c (serialRegAssign),
5143         * src/pic16/ralloc.c (serialRegAssign),
5144         * src/hc08/ralloc.c (serialRegAssign),
5145         * src/z80/ralloc.c (serialRegAssign),
5146         * src/ds390/ralloc.c (serialRegAssign),
5147         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
5148
5149 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5150
5151         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
5152         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
5153
5154 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
5155
5156         Cumulative patch for pic16 port:
5157         * src/pic16/device.h (typedef PIC16_device) modified fields for
5158         defining microcontrollers,
5159         * src/pic16/device.c: added new info for all devices in Pics16 array,
5160         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
5161         to be optimised out by the pCode optimiser,
5162         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
5163         specially, bug reported by G.M. Gallant,
5164         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
5165         as force'd so that cannot be optimised out by pCode optimiser,
5166         * src/pic16/pcode.c,
5167         * src/pic16/pcodepeeph.c,
5168         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
5169         they are disabled by default, but can be enabled explicit with
5170         command argument --denable-peeps, for testing,
5171         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
5172         --pomit-ivt in COMPILE_FLAGS
5173
5174 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5175
5176         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
5177           compilation on MSVC
5178
5179 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5180
5181         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
5182
5183 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5184
5185         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
5186         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
5187
5188 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
5189
5190         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
5191         would only assign 0x300001 register.
5192
5193 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
5194
5195         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
5196         in COMPILE_FLAGS. Thanks to G. Gallant for report.
5197
5198 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5199
5200         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
5201         for ds80c400
5202         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
5203         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
5204         added peephole 254 (left shift), 255 (jump table)
5205
5206 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
5207
5208         * device/lib/Makefile.in: removed comment line with model-pic16,
5209         * (target port-specific-objects-pic16): the libraries and objects
5210         are copied to the build directory form the device/lib/pic16/bin
5211         directory
5212
5213         Cumulative patch concerning pic16 port:
5214         * library directory has been re-organized,
5215         * added support for PIC18F1220,
5216         * added headers and library sources for chips 18f1220,18f6520,
5217         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
5218
5219         * configuration registers setting has changed, now each supported
5220         device has a complete description of the registers it uses,
5221         * all initialisations are moved to idata sections, these section
5222         can be absolute or relocatable,
5223         * fixed initialisation of codespace variables,
5224         * fixed warning about PCLATU and gpsim,
5225         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
5226         * (genAssign): use table reads when assigning from variables in codespace,
5227         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
5228         char/int variables placed in codespace,
5229         * (pic16_emitConfigRegs): NEW, emits a list with configuration
5230         registers set in .asm file, no need for --pomit-config-words anymore,
5231         * (pic16glue): some 8051 legacy segments are commented out
5232         (to be removed completely),
5233         * added support for alternative assembler and linker with --asm=
5234         and --link= command line arguments,
5235         * peepholes are disabled automatically in the port, no need to
5236         specify on command line,
5237         * port supports natively char/int/long multiplication, but converts
5238         all divisions to support functions,
5239         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
5240         to the file set in variable $2,
5241         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
5242         strings in ASCII format and not in hex,
5243         * ralloc.c (serialRegAssign): added a triplet of conditional calls
5244         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
5245         allocate proper register if iCodes aren't temporary,
5246
5247 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
5248
5249         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
5250
5251 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
5252
5253         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
5254         is commented out
5255
5256 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5257
5258         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
5259         computed address is reused
5260         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
5261         multi-byte bitfields
5262
5263 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5264
5265         * src/z80/gen.c: (genArrayInit): must check for pointers too
5266
5267 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5268
5269         * support/regression/tests/zeropad.c: never meant to commit the
5270           nestedstruct test: removed, added check for GCC version
5271
5272 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
5273
5274         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
5275         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
5276         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
5277           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
5278           bugs 928906 and 954082 half-empty initializers
5279         * src/SDCCsymt.h,
5280         * src/SDCCsymt.c (getAllocSize): added for above fix
5281         * src/z80/gen.c (genArrayInit): fixed bug 741044
5282         * support/regression/tests/zeropad.c: added tests
5283
5284 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
5285
5286         * src/pic16/device.c (pic16_dump_section): corrected bug which
5287         caused some symbols of the libraries to be misplaced
5288
5289 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
5290
5291         * src/pic16/glue.c,
5292         * src/pic16/ralloc.h,
5293         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
5294         to fix conflict with pic port
5295
5296 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
5297
5298         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
5299         externs configuration variables,
5300         * src/pic16/ralloc.h,
5301         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
5302         prototype in header, commented out some debug messages
5303
5304 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
5305
5306         * src/pic16/glue.c,
5307         * src/pic16/main.c,
5308         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
5309         for gpasm COFF object generation. Thanks to D. Hawkins for
5310         his patch info
5311
5312 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5313
5314         * src/ds390/main.c,
5315         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
5316         Brock for spotting this)
5317         * src/ds390/gen.c (genEndFunction),
5318         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
5319         interrupt handler and critical. Disable push/pop optimizations when
5320         peephole optimizations disabled.
5321
5322 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
5323
5324         Updated pic16 library sources and headers.
5325         * device/lib/pic16/pic18f*/ ,
5326         * device/include/pic16/*.h: modified to handle structured SFR
5327         definitions
5328
5329 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
5330
5331         * src/port.h (PORT structure): added hook initPaths, now each
5332         port can declare its own default search paths,
5333         which can been seen with the --print-search-dirs option,
5334         see pic16 port for example,
5335         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
5336         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
5337         * (doPrintSearchDirs): NEW, replaces in a central manner the
5338         printing of search dirs which was split in set*Paths functions,
5339         * (main): added call to port->initPaths and doPrintSearchDirs,
5340         * src/avr/main.c,
5341         * src/ds390/main.c,
5342         * src/hc08/main.c,
5343         * src/izt/i186.c,
5344         * src/izt/tlcs900h.c,
5345         * src/mcs51/main.c,
5346         * src/pic/main.c,
5347         * src/pic16/main.c: modified port structures to reflect addition of
5348         initPaths hook,
5349
5350         * src/pic16/device.c (regCompare): registers are finally sorted by name,
5351         * (pic16_dump_section): for registers in same address reserve memory once,
5352         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
5353         to no_banksel,
5354         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
5355         result is greater in size than right or left,
5356         * (pic16_genUMult8X8_8): there are some cases where the result can
5357         be 16 bits size, so handle these,
5358         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
5359         * (pic16_outBitC): modified to emit pcodes,
5360         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
5361         or not,
5362         * (genDivOneByte): implemented algorithm to divide 8-bits,
5363         * (genCmp): uncommented goto, but issues still exist,
5364         * (genAnd): fixed a bug with variables >8bits,
5365         * (genPackBits): optimization added that uses BCF/BSF to change a
5366         single bit,
5367         * (genAssign): fixed bug when assigning floating point literals,
5368         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
5369         __sdcc_gsinit_startup label,
5370         * src/pic16/main.c (_pic16_init): removed search directory
5371         initialisations,
5372         * (_pic16_initPaths): NEW, used to initialise search directories,
5373         * (_hasNativeMulFor): support functions for all except char/int
5374         multiplication, and char division,
5375         * (PIC16_port struct): modified entry for native mul support,
5376         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
5377         no_banksel option,
5378         * (buildCallTree): call to register_usage is ifdef'ed out,
5379
5380 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5381
5382         * device/include/string.h: applied Stas Sergeev's patch to make this
5383         header file compatible with the preprocessor -Wundef option
5384         * src/SDCCmain.c (main): abort compilation if preprocessor reports
5385         failure (fixes bug #941458)
5386
5387 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5388
5389         * src/SDCCopt.c (killDeadCode): fixed bug #907733
5390         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
5391         that the variable, not the function, should be static
5392         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
5393         to be consistent with non-literal case
5394
5395 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5396
5397         * src/SDCCast.c (isConformingBody): fixed bug #949967
5398         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
5399         convilong): fixed bug #952086
5400
5401 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5402
5403         * src/SDCCmem.c (allocVariables): fixed bug #955321
5404
5405 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5406
5407         * src/hc08/main.c (_hc08_genAssemblerEnd),
5408         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
5409         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
5410         completely eliminated the use of a temporary file
5411         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
5412         when more than one file linked
5413         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
5414
5415 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5416
5417         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
5418         which fixes bug #543481
5419         * support/regression/tests/bug-751703.c: fixed comments left from a
5420         cut and paste error
5421         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
5422         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
5423         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
5424         scopes
5425         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
5426         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
5427         are now changed to underscores in moduleName
5428
5429 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5430
5431         * as/mcs51/lkmem.c: better fix for bug #954173
5432
5433 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
5434         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5435
5436         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
5437         * device/include/c8051f000.h,
5438         * device/include/c8051f120.h,
5439         * device/include/c8051f300.h,
5440         * device/include/c8051f310.h,
5441         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
5442         PWM16) and detab'ed
5443
5444 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5445
5446         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
5447         and mailing lists, doc'ed --no-peep-comments, removed reference
5448         to knoppix (newest version has no LyX/LaTeX), other minor changes
5449         * src/SDCCglue.c (glue): save 2 bytes stack space with
5450         option --main-return. The ljmp could probably be avoided too
5451
5452 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5453
5454         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
5455
5456 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5457
5458         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
5459         * src/SDCCopt.c (isLocalWithoutDef),
5460         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
5461         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
5462         (credit to Maarten Brock for patch #949363, on which this is based)
5463         * support/regression/tests/bug-751703.c: some test cases of extern used
5464         within inner scopes.
5465
5466 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5467
5468         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
5469         SPEC_STRUCT
5470         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
5471         struct definitions
5472         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
5473         dwWriteLabel): fix to create valid debugger symbols even when
5474         the module name has non-alphanumeric symbols in it
5475         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
5476         when a variable's allocation has been optimized away
5477
5478
5479 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5480
5481         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
5482         * src/hc08/main.c,
5483         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
5484         * src/mcs51/main.c,
5485         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
5486         * src/ds390/main.c,
5487         * src/z80/gen.c (z80_emitDebuggerSymbol),
5488         * src/z80/main.c,
5489         * src/pic/gen.c (pic14_emitDebuggerSymbol),
5490         * src/pic/main.c,
5491         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
5492         * src/pic16/main.c,
5493         * src/avr/gen.c (avr_emitDebuggerSymbol),
5494         * src/avr/main.c,
5495         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
5496         * src/xa51/main.c,
5497         * src/SDCCdebug.c (emitDebuggerSymbol),
5498         * src/SDCCdebug.h,
5499         * src/port.h: added a debugger struct to the port struct. Added a
5500         callback for defining debugger symbols
5501
5502         * src/SDCCast.c (createLabel),
5503         * src/SDCC.y (labeled_statement): mark all compiler generated labels
5504         with isitmp = 1
5505         * src/SDCCicode.h,
5506         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
5507         iCode back to the ast for the function
5508
5509         * src/hc08/ralloc.c (hc08_assignRegisters),
5510         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
5511         unneeded fields from the regs struct.
5512         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
5513         pushReg() & pullReg() functions instead of emitcode()
5514
5515         * src/hc08/gen.c (genLabel, genhc08Code),
5516         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
5517
5518         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
5519         debugger hooks
5520
5521         * src/hc08/gen.c (genEndFunction, genhc08Code),
5522         * src/hc08/gen.h,
5523         * src/mcs51/gen.c (genEndFunction, gen51Code),
5524         * src/mcs51/gen.h,
5525         * src/ds390/gen.c (genEndFunction, gen390Code),
5526         * src/ds390/gen.h,
5527         * src/z80/gen.c (genEndFunction, genZ80Code),
5528         * src/z80/gen.h,
5529         * src/z80/z80.h,
5530         * src/pic/gen.c (genEndFunction, genpic14Code),
5531         * src/pic/gen.h,
5532         * src/pic16/gen.c (genEndFunction, genpic16Code),
5533         * src/pic16/gen.h,
5534         * src/avr/gen.c (genEndFunction, genAVRCode),
5535         * src/avr/gen.h,
5536         * src/xa51/gen.c (genEndFunction, genXA51Code),
5537         * src/xa51/gen.h,
5538         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
5539         specific code to cdbFile.c and out of the backend code generators
5540
5541         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
5542         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
5543         starting address is now 0
5544
5545         * as/hc08/asm.h,
5546         * as/hc08/m08pst.c,
5547         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
5548         assembler directive for DWARF support
5549         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
5550
5551         * src/src.dsp,
5552         * src/Makefile.in,
5553         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
5554
5555 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5556
5557         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
5558         and inappropriate peephole optimization in jump tables
5559
5560 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5561
5562         * as/hc08/m08pst.c,
5563         * src/SDCCglue.c: sdccopt works for the hc08 port now
5564
5565 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
5566
5567         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
5568
5569 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5570
5571         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
5572
5573 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5574
5575         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
5576         rules
5577         * src/SDCCmain.c,
5578         * src/SDCCglobl.h,
5579         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
5580         comments from the peephole optimizer replacement rules
5581         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
5582         symbols
5583         * src/SDCCcse.c (updateSpillLocation),
5584         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
5585         equivalents
5586         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
5587         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
5588         objects far pointers
5589
5590 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5591
5592         * src/SDCCsymt.h: a missing part of my last change
5593         * src/pic/ralloc.c (regTypeNum),
5594         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
5595
5596 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5597
5598         * src/SDCCicode.h,
5599         * src/SDCCicode.c (aggrToPtrDclType),
5600         * src/SDCCptropt.h,
5601         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
5602         ptrPseudoSymConvert),
5603         * src/pic/ralloc.c (regTypeNum),
5604         * src/pic16/ralloc.c (regTypeNum),
5605         * src/hc08/ralloc.c (regTypeNum),
5606         * src/ds390/ralloc.c (regTypeNum),
5607         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
5608         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
5609
5610 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5611
5612         * link/z80/lkmain.c (afile),
5613         * as/hc08/lkmain.c (afile),
5614         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
5615         prevent a pointer problem when a filename has no directory and
5616         no extension specified.
5617
5618 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5619
5620         * link/z80/lkmain.c (afile): allow periods in directory names
5621         * link/z80/lkmain.c (afile),
5622         * as/mcs51/lkmain.c (afile),
5623         * as/hc08/lkmain.c (afile): allow linker script file to have an
5624         extension other than ".lnk"
5625         * link/z80/lklex.c (getfid),
5626         * link/z80/lkmain.c (parse),
5627         * as/mcs51/lklex.c (getfid),
5628         * as/mcs51/lkmain.c (parse),
5629         * as/hc08/lklex.c (getfid),
5630         * as/hc08/lkmain.c (parse): Support comments in the linker script
5631         file on lines by themselves and after filenames
5632
5633 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5634
5635         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
5636
5637 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5638
5639         * src/z80/peeph-z80.def: removed some peephole rules that don't
5640         work with multibyte arithmetic (fixed bug #937126)
5641         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
5642         to registers and not global variables
5643         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
5644         geniCodePreInc, geniCodePostDec, geniCodePreDec,
5645         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
5646         checking for assignments not internally generated (fixed bug #931895)
5647         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
5648         structure member (fixed bug #930072)
5649
5650 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5651
5652         * src/SDCCmain.c (linkEdit),
5653         * src/hc08/main.c (_hc08_parseOptions),
5654         * as/hc08/Makefile.in,
5655         * as/hc08/aslink.h,
5656         * as/hc08/asm.h,
5657         * as/hc08/m08pst.c,
5658         * as/hc08/lkrloc.c (relr, rele),
5659         * as/hc08/lkarea.c (lnkarea)
5660         * as/hc08/lkmain.c (afile, parse),
5661         * as/hc08/lkelf.c: support for ELF output
5662         * as/hc08/lks19.c (s19),
5663         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
5664
5665 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5666
5667         * as/mcs51/lkihx.c: Fixed bug #899105.
5668
5669 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5670
5671         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
5672         .dsp files from Unix to DOS.
5673
5674 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5675
5676         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
5677         function pointers; we have been compliant for several months now.
5678         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
5679         change that was accidently commented out
5680         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
5681         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
5682         bug #922319
5683
5684 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5685
5686         * src/hc08/gen.c: output of all of the internal debugging information
5687         is now controlled by the D() macro; it is disabled by default
5688
5689 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5690
5691         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
5692         harder to keep the same registers during a CAST iCode
5693         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
5694         long via int can be done in a single cast, if the signedness is
5695         correct.
5696         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
5697         putchar() in tinibios.c in ds390's library
5698
5699 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
5700
5701         * src/SDCCast.c (decorateType): fixed bug #898889,
5702         cast result of a literal complement too
5703         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
5704         fixed check for bitfields
5705
5706 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
5707
5708         * src/SDCCicode.c (geniCodeLogic): made it static,
5709         (geniCodeLogicAndOr): added in order to fix bug #905492,
5710         (ast2iCode): fixed bug #905492
5711         * support/regression/tests/bug-905492.c: added
5712         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
5713         (processParms): fixed bug #927659: don't copy parms, this will clear
5714         decorated flag
5715         * support/regression/tests/bug-927659.c: added
5716
5717 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
5718
5719         * src/SDCCast.c (addCast): don't cast float to char
5720         * device/lib/libsdcc.lib: added _memmove
5721
5722 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
5723
5724         * device/lib/large/Makefile: fixed parallel execution by
5725         replacing `make` by `$(MAKE)`
5726
5727 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5728
5729         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
5730         offsets (fixes bug #923936)
5731
5732 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
5733
5734         * device/lib/small/Makefile: fixed parallel execution by
5735         replacing `make` by `$(MAKE)`
5736
5737 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
5738
5739         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
5740
5741 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
5742
5743         * src/pic/gen.c (genCpl): multi-byte complements were not working.
5744         * src/regression/Makefile: Regression test was not running.
5745
5746 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
5747
5748         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
5749         complement if possible
5750         * src/SDCCval.c (valComplement),
5751         * src/SDCCicode.c (operandOperation): fixed complement of literal
5752         * support/regression/tests/onebyte.c (testComplement): added
5753
5754 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
5755
5756         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
5757         return an optimized tree; actually replace actParm with the new tree
5758         * src/SDCCast.h: added some parantheses to remove side effects
5759         * support/regression/tests/bug-920866.c
5760
5761 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
5762         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
5763         Bit operands were not being handled properly in the pic14 port.
5764         (now src/regression/add.c passes again).
5765
5766 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5767
5768         * src/SDCC.y (labeled_statement): case and default no longer require
5769         a following statement (RFE #893037)
5770
5771 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5772
5773         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
5774         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
5775         disabled (fixes bug #916294)
5776         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
5777         "mov a,acc"; patch provided by Lenny Story
5778         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
5779
5780 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5781
5782         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
5783         functions
5784         * src/ds390/gen.c (genFunction, genEndFunction),
5785         * src/ds390/ralloc.c (ds390_assignRegisters),
5786         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
5787         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
5788         pushed if there are parameters passed on the stack. Also, a cleaner
5789         way to decide if r0/r1 should be pushed/popped. (Together they fix
5790         bug #918693)
5791
5792 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5793
5794         * doc/sdccman.lyx,
5795         * device/lib/mcs51/crtpagesfr.asm,
5796         * device/lib/mcs51/crtxinit.asm,
5797         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
5798         to avoid confusion with Si Lab's SFRPAGE register.
5799
5800 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5801
5802         * src/SDCCglue.c (emitMaps): allow public sfr variables
5803         * src/SDCCglue.c (initialComments): include compiler build date
5804         with compiler version and put the timestamp of the generated
5805         assembly file on a serperate line to be less confusing.
5806         * src/port.h: added genInitStartup hook
5807         * src/avr/main.c,
5808         * src/ds390/main.c,
5809         * src/hc08/main.c,
5810         * src/pic/main.c,
5811         * src/pic16/main.c,
5812         * src/xa51/main.c,
5813         * src/z80/main.c: genInitStartup initialize as NULL (default to
5814         historical behaviour)
5815         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
5816         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
5817         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
5818         library instead of hard coding it into the compiler.
5819         * support/regression/ports/mcs51-stack-auto/spec.mk,
5820         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
5821         * device/lib/mcs51/Makefile,
5822         * device/lib/small/Makefile,
5823         * device/lib/large/Makefile,
5824         * device/lib/mcs51/crtpagesfr.asm,
5825         * device/lib/mcs51/crtstart.asm,
5826         * device/lib/mcs51/crtxclear.asm,
5827         * device/lib/mcs51/crtxinit.asm,
5828         * device/lib/mcs51/crtclear.asm,
5829         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
5830         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
5831         and into user configurable files.
5832         * device/lib/clean.mk: clean mcs51 directory too
5833         * support/regression/tests/longlit.c: added static to T1 declaration
5834         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
5835         accesses in the initialization code
5836
5837 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5838
5839         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
5840         OSCTRIMVAL as noted in bug #916008
5841
5842 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5843
5844         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
5845         in loops with multiple exits (reported as incorrect registers
5846         used by Martin Helmling in Sdcc-user list)
5847
5848 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5849
5850         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
5851         made ds390 register extensions look less like error messages
5852
5853 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5854
5855         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
5856         reported by Adam Wozniak in Sdcc-user list
5857
5858 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
5859
5860         * src/SDCCast.c (decorateType): fixed with bug and promotion in
5861         arithmetic optimizations, added debug output
5862
5863 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
5864
5865         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
5866         * sdcc.spec: updated and split sdcc into 3 rpms
5867         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
5868         needed for literals of LEFT_OP and '+'
5869         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
5870         introduced RESULT_TYPE_NOPROM
5871         (geniCodeMultiply): fixed logic for decision if mul is optimized to
5872         left shift
5873         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
5874         limited promotion to int only for '*'
5875         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
5876
5877 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
5878
5879         * src/pic16/gen.c (genSkip),
5880         (genc16bit2lit), (gencjneshort): commented out
5881         (is_LitOp): new helper function, checks operand type
5882         (genCmpEq): rewritten
5883
5884 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
5885
5886         * support/regression/tests/bug-908454.c: added
5887
5888 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
5889
5890         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
5891         * src/SDCCicode.c (usualBinaryConversions): op needs int type
5892         (geniCodeCast): cosmetic, don't preserve bit storage class
5893         (geniCodeLeftShift): added promotion
5894         (geniCodeLogic): fixed regression
5895         * src/SDCCsymt.c (computeTypeOr): accept bits too
5896         (compareType): 2nd part of fix for bug #908454, needed for bitfields
5897
5898 2004-03-07  Borut Razem <borut.razem AT siol.net>
5899
5900         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
5901
5902 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
5903
5904         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
5905         version of pic16_genPackRegisters which does not check if ic is a
5906         CAST operator,
5907         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
5908         function cause string1.c regression test fails
5909
5910 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
5911
5912         * sim/ucsim/configure.in,
5913         * sim/ucsim/configure,
5914         * sim/ucsim/doc/Makefile.in: use docdir
5915         * src/SDCC.y: fixed sbit atrributes
5916         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
5917         * src/SDCCast.c (decorateType): |^& need special promotion handling
5918         * src/SDCCast.h,
5919         * src/SDCCsymt.h: moved definition of RESULT_TYPE
5920         * src/SDCCsymt.h (computeType),
5921         * src/SDCCicode.c: computeType() needs op
5922         * src/SDCCsymt.c (checkTypeSanity),
5923         * doc/sddman.lyx: "plain" bitfields are unsigned
5924         * src/SDCCsymt.c (computeTypeOr): added
5925         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
5926         |^& ops
5927         * src/SDCCval.c (val*): computeType() needs op
5928         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
5929         * support/regression/tests/onebyte.c: added tests for |^&
5930
5931 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
5932
5933         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
5934         for writing icode into asm output.
5935
5936 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
5937
5938         * src/pic16/device.c: added some debug lines enabled
5939         with macro DEBUG_CHECK,
5940         * src/pic16/genarith.c: more debug in genPlus,
5941         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
5942         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
5943         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
5944         * (aopForSym): onStack symbols are re-placed in data memspace,
5945         and onStack flag is cleared,
5946         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
5947         copy temporary pcodeop,
5948         * (genPcall): added warning for not updating PCLATU,
5949         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
5950         always true for pic16 port,
5951         * (genMultOneWord): NEW, supports integer multiplication,
5952         * (genMult): modified to call genMultOneWord,
5953         * (ifxForOp): added warning when return NULL,
5954         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
5955         flag is set before call to operandFromSymbol for implicit
5956         added structures,
5957         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
5958         options.intlong_rent are set by default,
5959         * (_hasNativeMulFor): modified to allow port generation of integer
5960         multiplication,
5961         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
5962         set regtype to REG_SFR for all registers, restricting seting the
5963         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
5964
5965 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5966
5967         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
5968         more than 500 times in the regression tests
5969
5970 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5971
5972         * support/Util/SDCCerr.h,
5973         * support/Util/SDCCerr.c,
5974         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5975         enumerator_list),
5976         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
5977         for symbol conflicts.
5978         * support/valdiags/tests/enum.c,
5979         * support/valdiags/tests/tentdecl.c,
5980         * support/valdiags/tests/struct.c: expect possible error messages
5981         referring to original symbol definitions.
5982         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
5983         * src/SDCCsymt.h,
5984         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
5985
5986 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
5987
5988         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
5989
5990 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
5991
5992         * src/pic16/ralloc.c (newReg): fixed bug #908929
5993
5994 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5995
5996         * src/ds390/gen.c: added missing #include "main.h"
5997
5998 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
5999
6000         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
6001         checking if symbol is already in set,
6002         * src/pic16/device.h: prototype for checkAddSym,
6003         * src/pic16/gen.c: (_G): added entry interruptvector,
6004         * (assignResultValue): removed some commented out lines,
6005         * (genFunction): check for ISR via sym->type, absolute section for
6006         interrupt code is created via a new pBlock, the goto instruction is
6007         placed now correctly at the interrupt vector position, changed all
6008         references from ivec to _G.interruptvector,
6009         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
6010         is the interrupt is a high priority one, same for return from ISR,
6011         * src/pic16/glue.c: changed all calls of addSetHead for publics and
6012         externs to calls of checkAddSym,
6013         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
6014         pic16_pcode_verbose flag is set,
6015         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
6016         * src/pic16/pcoderegs.c: message about how many registers are saved
6017         will only be emitted if pic16_pcode_verbose flag is set,
6018
6019 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6020
6021         * src/ds390/ralloc.h,
6022         * src/ds390/ralloc.c (ds390_regWithIdx),
6023         * src/ds390/gen.c (emitcode),
6024         * src/ds390/main.h,
6025         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
6026         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6027         ds390operandCompare, getRegsRead, getRegsWritten,
6028         initializeAsmLineNode): customized instruction size calculation for
6029         ds390, started basis for some register optimizations
6030         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
6031         corresponding assembly output
6032         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
6033         missing push/pop of r0/r1. Optimized push/pops
6034
6035 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6036
6037         * src/mcs51/main.c (instructionSize): fixed ACALL size
6038         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
6039
6040 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
6041
6042         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
6043         the sorting of rlist with NULL elements
6044         * (print_idataType, print_idata): NEW to create idata sections
6045         * src/pic16/device.h: idataSymSet new variable
6046         * src/pic16/gen.c (genFunction): fixed some bugs in string
6047         comparing, improved the absolute section creation for ISRs,
6048         added FSR0L/FSR0H in registers that are saved in an ISR,
6049         * (genInline): fixed the processing of inline snippets,
6050         now they undergo no process by the peephole optimizer
6051         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
6052         are placed in idataSymSet,
6053         * (pic16emitStaticSeg): extern symbols are added in externs,
6054         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
6055         switching when aboslute variables are placed in access bank memory
6056         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
6057         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
6058         commented out with #if,
6059         * (pic16_packRegisters): reintroduce the check for CAST because some
6060         symbols are not correctly handled,
6061         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
6062         pCodeInstruction instead of pCode,
6063         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
6064         pCodeAsmDir definition,
6065         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
6066         directive, then the argument directive is emitted without the leading
6067         tab, hack for inline labels which must be in the first column,
6068         * (compareLabel,pic16_findNextInstruction),
6069         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
6070         * (insertBankSwitch): modified for the new pCodeAsmDir,
6071
6072 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6073         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
6074
6075         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
6076         instance,
6077         * (pushSide): commented out with #if,
6078         * (assignResultValue): fixed some typos in saving
6079         registers,
6080         * (genPcall): FIXED and sync'ed with genCall,
6081         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
6082         * (genNearPointerGet): fixed to handle some more cases,
6083         implementation scheme via table reads,
6084         * (genConstPointerGet): modified to access code memory correct,
6085         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
6086         and improved to handle some cases
6087         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
6088         instead of "RETLW" for init data
6089         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
6090         not IN_DIRSPACE, work around to reduce bank switching when aboslute
6091         variables are placed in access bank memory (<0x80 and >=0xf80),
6092         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
6093         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
6094         TBLWT_POSTDEC,TBLWT_PREINC
6095         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
6096         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
6097         directives
6098         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
6099         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
6100         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
6101         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
6102
6103 2004-02-29  Borut Razem <borut.razem AT siol.net>
6104
6105         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
6106         support/Util/findme.h, support/Util/system.h: enhance binary relative
6107         search for lib and include by using findProgramPath()
6108
6109 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6110
6111         * src/SDCCpeeph.h,
6112         * src/SDCCpeeph.c (pcDistance),
6113         * src/port.h,
6114         * src/mcs51/ralloc.h,
6115         * src/mcs51/ralloc.c (mcs51_regWithIdx),
6116         * src/mcs51/main.h,
6117         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
6118         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6119         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
6120         size calculation port specific, started basis for some register
6121         optimizations
6122         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
6123         missing push/pop of r0/r1. Optimized push/pops
6124         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
6125         * device/lib/_modsint.c (_modsint),
6126         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
6127         and stack version so regression tests pass
6128
6129 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
6130
6131         * src/Makefile.in (dep): include SLIBOBJS in dependency check
6132         * src/SDCCast.c (decorateType): catch another small optimization
6133         with '?' operator
6134         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
6135         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
6136         modified to finally use computeType() all over SDCC,
6137         see Feature Request #877103
6138         * src/SDCCval.h: cosmetic
6139         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
6140         valCompare(); regression tested in muldiv.c
6141         * support/regression/tests/muldiv.c (testMod): mod sign follows
6142         dividend only
6143
6144 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
6145
6146         * src/SDCCast.c (decorateType): fixed bug #902362
6147         * doc/INSTALL.txt: fixed install instructions for win32
6148
6149 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
6150
6151         * device/include/Makefile.in (install): fixed by replacing spaces
6152         by tabs
6153         * doc/README.txt,
6154         * doc/INSTALL.txt: updated for release
6155         * doc/sdccman.lyx: added warning for --xstack being buggy
6156
6157 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
6158
6159         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
6160         to eliminate build warnings.
6161         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
6162
6163 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
6164            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6165
6166         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
6167         removed -penable-stack, added comment for stack pragma, added
6168         warning for not initializing the stack/frame registers, removed
6169         comment at interrupts section
6170
6171         Stack is made permanent, there is no ability to disable stack usage.
6172         * src/pic16/device.h,
6173         * src/pic16/device.c: removed all references to USE_STACK macro,
6174         * src/pic16/device.c (pic16_dump_section): when no elements in
6175         rlist, free rlist before return,
6176         * (pic16_dump_int_registers): NEW, internal registers are a new set
6177         of general purpose registers reused by each function,
6178         * (checkAddReg): returns 1 if registers is added to set,
6179         * (pic16_groupRegistersInSection): when a registers is of type
6180         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
6181         * src/pic16/device.h: memRange and Assigned Memory are deleted,
6182         SRCASECMP macro is moved here from device.c
6183         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
6184         PO_PCLATU, PO_PRODL, PO_PRODH,
6185         * (pic16_pCodeOpType, genMinus,
6186         changed compares to "a" register, with AOP_ACC,
6187         * (pic16_genPlus): fixed some bugs and indented properly,
6188         * (pic16_addSign): changed size to size+offset in the MOVWF
6189         instruction,
6190         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
6191         multiply 8-bit operand by literal, result is 8-bit,
6192         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
6193         multiply 2 8-bit operand, result is 8-bit,
6194         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
6195         genUMult8X*_16,
6196         * src/pic16/gen.c: changed accUse to contain WREG only,
6197         * (pic16_emitcomment): renamed to pic16_emitpcomment,
6198         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
6199         true, do not use immediate addressing any more unless sym is a
6200         pointer in codespace,
6201         * (aopForRemat): do not use immediate addressing when symbol not in
6202         codespace and when symbol's address is requested,
6203         * (aopOp): for-loop in if(sym->accUse) is modified for the new
6204         accUse size (= 1),
6205         * (aopGet): added case for AOP_ACC and don't return "accumulator
6206         bug" but WREG instead,
6207         * (popGetTempReg): pushes contents of temporary register in stack,
6208         * (popReleaseTempReg): pops contents of temporary register from
6209         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
6210         * (pic16_popGet): separated case AOP_ACC to return register WREG
6211         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
6212         or PO_IMMEDIATE and initializes their instance/offset appropriately,
6213         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
6214         the use of immediate pointers to certain cases only.
6215
6216         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
6217         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
6218         * (assignResultValue, genCall, genRet): modified to use the new
6219         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
6220         genPcall is still broken,
6221         * (genFunction): added code to create 'A' type pBlocks when
6222         interrupt functions are generated, code not extensively tested yet,
6223         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
6224         * (genEndFunction): modified so ISRs pop stored registers from stack,
6225         * (genMultOneByte): cleanup,
6226         * (AccRsh): added flag andmask, to and result with appropriate mask,
6227         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
6228         * (genDataPointerGet): fixed and reenabled its use,
6229         * (genNearDataPointerGet): bugs fixed,
6230         * (genDataPointerSet): bugs fixed,
6231         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
6232         pic16_DumpSymbol, pic16_DumpOp,
6233         * src/pic16/genutils.h: function prototypes for the above functions,
6234         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
6235         pointers,
6236         * (pic16emitRegularMap): many many many improvements, but needs a
6237         major cleanup,
6238         * src/pic16/main.c: enable_stack in pic16_options is removed,
6239         * (_pic16_parseOptions): removed command line options -penable-stack,
6240         * (_process_pragma): emit stack symbol only when stack pragma is
6241         processed,
6242         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
6243         redirected to FSR0L/FSR0H pair,
6244         * (pic16_get_op, pic16_get_op2): modifications and improvements,
6245         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
6246         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
6247         for immediates,
6248         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
6249         * (dumpPicOptype): NEW,
6250         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
6251         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
6252         with movff instruction,
6253         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
6254         added pic16_int_regs, some packRegsFor* functions are commented out,
6255         because produce errors,
6256         * src/pic16/NOTES: minor modifications
6257
6258 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6259
6260         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
6261         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
6262         --pack-iram.
6263         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
6264         * as/mcs51/lkaomf51.c: fixed bug #895763
6265
6266 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
6267
6268         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
6269
6270 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6271
6272         * doc/sdccman.lyx: added details about the HC08 storage classes and
6273         interrupts, fixed the register usage info for z80 & gbz80
6274
6275 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
6276
6277         * doc/sdccman.lyx: added more pic16 port documentation
6278         * device/include/pic16/: added header pic18fregs.h
6279
6280 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
6281
6282         * doc/sdccman.lyx: added Vangelis' contribution
6283
6284 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6285
6286         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
6287         extend to the next CALL or PCALL, not just to the next CALL.
6288
6289 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
6290
6291         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
6292
6293 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6294
6295         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
6296         bug #895752 and a better fix for bug #716790
6297
6298 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6299
6300         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
6301
6302 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6303
6304         * doc/sdccman.lyx: minor changes, minor changed
6305
6306 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
6307
6308         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
6309         which can't handle SDCC_NEWONEBYTEOPS,
6310         (geniCodeMultiply): removed conversion from mult to shift for pic14
6311         and pic16
6312
6313 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6314
6315         * src/hc08/gen.h,
6316         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
6317         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
6318         thus fixing bug #895406
6319
6320 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
6321
6322         * device/lib/_modsint.c,
6323         * device/lib/_modslong.c: sign follows divisor only
6324         * src/hc08/gen.c (genMultOneByte): if result size is 1,
6325         signs or signedness can be ignored
6326         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
6327         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
6328         added optimization for IFX,
6329         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
6330         arguments;
6331         reenabled optimization for IFX, which was removed on 2004-01-11
6332         * src/SDCCast.h: added return type IFX
6333         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
6334         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
6335         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
6336         SDCC_OLDONEBYTEOPS selects the old behaviour
6337         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
6338         changed again and commented promotion rule
6339         * src/SDCCval.c (valDiv): promotion no longer necessary
6340         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
6341         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
6342         rewritten
6343         * support/regression/tests/onebyte.c: added
6344
6345 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
6346
6347         * gen.c (genInline): reverted to old code for assemnling inline
6348         code because of bug reported James Chadd
6349
6350 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
6351
6352         * ralloc.h: missing declarations from previous patch,
6353         seems that patch for ralloc.h was never applied, fixed
6354
6355 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6356            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6357
6358         * pcode.c,
6359         * pcode.h,
6360         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
6361         indirect addressing. Marked FSR0 as deprecated
6362         * gen.c (pointerCode): commented out, not needed now
6363         (pic16_popGet2p): new MOVFF helper function
6364         (genGenPointerGet),
6365         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
6366         (shiftRLong): removed duplicate debugging info
6367
6368 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6369
6370         * src/ds390/gen.c (genNearPointerGet),
6371         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
6372         optimization with bits, but not bitfields.
6373         * src/ds390/ralloc.c (packRegisters),
6374         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
6375
6376 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
6377
6378         * src/SDCCcse.c (algebraicOpts): copy operands before modification
6379
6380 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6381
6382         * src/SDCCsymt.h,
6383         * src/SDCCicode.c (operandFromSymbol),
6384         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
6385         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
6386         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
6387         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
6388         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
6389         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
6390         bug #892038
6391         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
6392         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
6393         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
6394         * src/SDCCsymt.c (newSymbol),
6395         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6396         enumerator_list),
6397         * src/SDCCval.h,
6398         * src/SDCCval.c (newiList): fixed bug #885705
6399
6400 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6401
6402         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
6403         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
6404
6405 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6406
6407         * device/include/c8051f120.h,
6408         * device/include/c8051f300.h,
6409         * device/include/c8051f310.h: added/updated header files for Silicon
6410         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6411         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
6412         in new section Submitting patches
6413
6414 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6415
6416         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
6417         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6418         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6419         genGenPointerSet),
6420         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
6421         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6422         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6423         genGenPointerSet),
6424         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
6425         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6426         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6427         genGenPointerSet),
6428         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
6429         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6430         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6431         genGenPointerSet): fixed bug #892400
6432         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
6433         to eliminate build warnings.
6434         * src/SDCCast.c (processParms),
6435         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
6436         fixed bug 751859
6437         * support/valdiag/valdiag.py: added GCC to the list of defines active
6438         when compiling with gcc
6439
6440 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6441
6442         * support/Util/SDCCerr.h,
6443         * support/Util/SDCCerr.c,
6444         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
6445         with an incomplete type (fixed bug #883734)
6446         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
6447
6448 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6449
6450         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
6451
6452 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6453
6454         * src/SDCCast.c (decorateType),
6455         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
6456         function pointer implementation
6457         * support/regression/tests/funptrs.c: added tests to verify both forms
6458         of function pointers work correctly. Added tests to verify parameters
6459         are passed in the correct order.
6460
6461 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
6462
6463         * device.c (regCompare): registers are sorted by ascending
6464         address and increasing size,
6465         * main.c (_pic16_finaliseOptions): removed the declaration
6466         of compiler macro MCU. Now a macro of the format pic18fxxxx
6467         will be defined from the command line
6468
6469 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6470             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6471
6472         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
6473         PCOP_RLCF was overwritten!
6474         * gen.c (genSkip): commented out calls to pic16_emitcode,
6475         * (genCmpEQ): fixed "long" compares, only high word did get compared,
6476         * (genlshTwo),
6477         * (genRRC): added debugging info,
6478         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
6479         overwritten while shifting,
6480         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
6481         overwritten while shifting,
6482         * (AccLsh),
6483         * (AccRsh),
6484         * (shiftLLeftOrResult),
6485         * (shiftRLeftOrResult),
6486         * (shiftRLong),
6487         * (shiftLLong): Implemented with pic16_emitpcode
6488         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
6489         * (genLeftShift): Fixed bug, operand for shift by variable always
6490         was "and"ed with 0x0f,
6491         * (genLeftShiftLiteral),
6492         * (genrshTwo),
6493         * (genRightShiftLiteral): added debugging info,
6494         * (genrshFour): added comment,
6495         * (genRightShift): determined signedness from operand "left"
6496         instead of "result"
6497
6498 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6499
6500         * src/SDCCicode.c (geniCodeParms),
6501         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
6502         function pointers, fixed function pointer bugs #861242 and #861896
6503
6504 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6505
6506         * device/include/c8051f000.h,
6507         * device/include/c8051f120.h,
6508         * device/include/c8051f300.h: added header files for Silicon
6509         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6510
6511 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
6512
6513         * src/SDCCast.c (processParams): added new type flow and restructured
6514         (gatherAutoInit): added new type flow
6515         (addCast): cosmetic changes
6516         (getLeftResultType): added new type flow for array indices, patch
6517         provided by Stas, see FR #877103
6518         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
6519         array index patch by Stas
6520         * src/SDCCast.h: added prototype getResultTypeFromType()
6521         * src/SDCCval.h,
6522         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
6523         * src/pic/glue.c (pic14emitStaticSeg),
6524         * src/pic16/glue.c (pic16emitStaticSeg),
6525         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
6526         for initialization of symbols
6527         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
6528         * support/Util/SDCCerr.h:
6529         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
6530         * .version: bumped version number to 2.3.8
6531         * device/include/Makefile.in (install),
6532         * doc/Makefile (install): changed to 'rm `find ...`' construct to
6533         avoid warnings
6534
6535 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
6536
6537         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
6538         Slade Rich fixed an optimization bug
6539         * src/pic/pcodepeep.c,
6540         * src/pic/pcoderegs.c
6541         * doc/Makefile (install): added test for directory
6542
6543 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6544
6545         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
6546         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
6547         * src/pic/ralloc.c (getRegPtr, getRegGpr),
6548         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
6549         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
6550         * as/mcs51/asexpr.c (term),
6551         * as/hc08/asexpr.c (term): fixed bug #887146
6552
6553 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6554
6555         * src/z80/gen.c (genMult): handle single byte result product
6556         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
6557         DUMMY_READ_VOLATILE (fixed bug #886367)
6558
6559 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6560
6561         * support/regression/tests/libmullong.c: fixed logic, on little endian
6562         hosts we ended without a mullong_wrapper()
6563
6564 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6565
6566         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
6567         virus/worm forged address usage.
6568
6569 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6570
6571         Fixed promotion, it should be done on AST level:
6572         * src/SDCCast.c (addCast): added promotion to int
6573         (decorateType): updated call to upCast()
6574         * src/SDCCicode.c (geniCodeLeftShift): removed call to
6575         usualUnaryConversions()
6576
6577 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
6578
6579         * support/regression/tests/literalop.c (mulWrapper): Added a
6580         wrapper to remove integer overflow warnings.
6581
6582         * support/regression/tests/float_trans.c: Made work on host.
6583
6584         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
6585         location of sz80.
6586
6587         * support/regression/generate-cases.py (main): Changed from inline
6588         to a main method.
6589
6590         * doc/Makefile (install): Changed to depth first to get rid of
6591         missing directory install warning.
6592
6593         * as/Makefile (install-doc): Made work on Mac.
6594
6595 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
6596
6597         * src/SDCCast.c: added an additional type flow in decorateType() of
6598         opposite direction, see feature request #860006; it's enabled at runtime
6599         by setting the environment variable SDCC_NEWTYPEFLOW
6600         * src/SDCCast.h: changed prototype of decorateType()
6601         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
6602         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
6603         'char' to 'int' can be omitted, if both operands are 'unsigned char';
6604         see feature request #877103
6605         * src/SDCCval.c: updated call of decorateType()
6606         (valBitwise): fixed bug #882876
6607         (valMinus): added promotion
6608         (valLogicAndOr): result is unsigned
6609         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
6610         * src/SDCCsymt.c (computeType),
6611         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
6612         must not cause an unsigned operation
6613         * src/pic/glue (pic14emitRegularMap),
6614         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
6615
6616 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
6617
6618         * src/pic/pcode.c (PCodeID): commented out left over debug code
6619
6620 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
6621
6622         * support/valdiag/tests/overflow.c: added shift tests
6623         * src/pic/device.c,
6624         * src/pic/gen.c,
6625         * src/pic/gen.h,
6626         * src/pic/glue.c,
6627         * src/pic/main.c,
6628         * src/pic/pcode.c,
6629         * src/pic/pcode.h,
6630         * src/pic/pcodepeep.c,
6631         * src/pic/pcoderegs.c,
6632         * src/pic/ralloc.c,
6633         * src/pic/ralloc.h: applied patch from Slade Rich;
6634         added support for multiple code pages and multiple RAM banks on the
6635         PIC 14 port. The ASM files now no longer simply assume all the
6636         code / RAM are in the same page / bank. This means the linker can
6637         safely allocate code/RAM of separate ASM files to different pages/banks.
6638         * doc/sdccman.lyx: added Slade's tips
6639         * src/mcs51/peeph.def: fixed bug #880768
6640
6641 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6642
6643         * src/hc08/ralloc.c (rematStr): fixed bug #879282
6644         * src/SDCCast.c (decorateType): fixed bug #880197
6645
6646 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
6647
6648         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
6649         getopt.h.
6650
6651         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
6652         strtof is not part of C89 and isn't included with Mac OS X.
6653
6654 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6655
6656         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
6657         shiftL2Left2Result): fixed bug #879326
6658         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
6659         (genMultOneByte): fixed bug in signed vs unsigned multiplication
6660         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
6661         address fetch for clr instruction
6662         * device/lib/hc08/_mulint.c: created optimized assembly version
6663         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
6664
6665 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
6666
6667         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
6668         proposed in FR #877103
6669
6670 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
6671
6672         * src/SDCCval.c (cheapestVal): added missing checks
6673         * src/SDCCicode.c (usualBinaryConversions): fixed condition
6674         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
6675
6676 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
6677
6678         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
6679         equal operands
6680
6681 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
6682
6683         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
6684         loaded with the linker search paths (-L arguments) and the libraries
6685         to be linked with the current source (-l arguments). Changes
6686         currently will affect only the pic16 port.
6687         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
6688         include path the port specific paths and port specific libraries,
6689         * gplink command now contains the $3 argument,
6690         * src/pic16/device.h,
6691         * src/pic16/device.c,: structure PIC_device is made public and
6692         renamed to PIC16_device, the same for variable Pics which is renamed
6693         to Pics16. Updated all references to them.
6694         * src/pic16/glue.c (pic16glue): corrected bug with code
6695         initialization which bypassed the variable initializations block.
6696
6697         * device/lib/pic16/Makefile.rules: removed --penable-stack from
6698         COMPILE_FLAGS and added the --nostdinc option
6699
6700 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6701
6702         * device/include/mc68hc908jb8.h: Register defs for another member
6703         of the hc08 family. Contributed by Bjorn Bringert - thanks!
6704
6705 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
6706
6707         Documenting changes from previous commits.
6708         * configure.in (version 1.56),
6709         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
6710         when generating output files to configure the pic16 library,
6711         but now I've commented it out, since gputils aren't installed in the
6712         SF compile farm, so library won't compile
6713
6714         * device/lib/Makefile.in (version 1.56): initially I've added in
6715         target 'all' the prerequestive 'model-pic16' so it compiled the
6716         pic16 library, but now I've commented it out for the same reasons
6717         above,
6718         * added targets 'model-pic16' and 'objects-pic16' to compile the
6719         library
6720         * added target 'port-specific-objects-pic16' to handle the
6721         generated libraries and copy them into the build/ directory
6722         * added target 'clean-intermediate-pic16' to clean intermediate
6723         files into pic16 directory
6724         * in target 'installdirs' added line to create directory pic16 in
6725         the installation path
6726
6727         * device/include/Makefile.in (version 1.11): in target 'install'
6728         added lines to copy all header files to installation path,
6729         * in target 'installdirs' added line create directory for pic16
6730         headers in the installation path
6731
6732 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
6733
6734         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
6735          a function call
6736
6737 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
6738
6739         * configure,
6740         * device/lib/configure.in,
6741         * device/lib/configure: fixed for autoconf 2.57
6742
6743 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6744
6745         * src/z80/main.c (_parseOptions): fixed the portmode= command line
6746         option so that it actually works. Made it specific to the z80, since
6747         the gbz80 doesn't have these kinds of I/O ports.
6748
6749 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6750
6751         * device/include/z180.h,
6752         * device/lib/_memcpy.c,
6753         * device/lib/_memmove.c,
6754         * device/lib/_mulint.c,
6755         * device/lib/ser_ir.c,
6756         * device/lib/ser_ir_cts_rts.c,
6757         * device/lib/_strcmp.c,
6758         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
6759         * src/z80/main.c (_process_pragma): add support for pragmas bank and
6760         portmode; added deprecation warning for bank= and protmode= forms.
6761         Also, guard against buffer overflow.
6762         * src/z80/gen.c (aopGet): generate better code for sfr banked read
6763
6764 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6765
6766         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
6767         changed interrupt vector table generation to only emit declared vectors.
6768         * device/include/Makefile.in: added missing backslash
6769         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
6770
6771 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
6772
6773         Mainly changes to support compilation of the device libraries
6774         * src/pic16/device.c: stack is allocated via symbol and not
6775         via literal number. The symbol is placed in the corresponding
6776         position of the data ram
6777         * (pic16_dump_section): relocatable and absolute uninitialized
6778         data are now emitted in sorted order to reduce section naming,
6779         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
6780         weren't marked as being in the access bank,
6781
6782 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
6783
6784         Added portion of GNU PIC Library under the directory
6785         device/include/pic16 and device/lib/pic16. These files
6786         contain the declarations of SFRs for the PIC18Fxx2 devices.
6787         The directory is initialized via configure from toplevel.
6788
6789 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
6790
6791         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
6792         the spilllocations to be compared correctly
6793
6794 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6795
6796         * src/SDCCast.c (decorateType): fixed bug introduced today
6797
6798 2004-01-12  Borut Razem <borut.razem AT siol.net>
6799
6800         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
6801         doc/sdccman.lyx: upper case pragmas are deprecated
6802
6803 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6804
6805         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
6806         in simpler and even better code
6807
6808 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
6809
6810         * src/SDCCicode.c (operandOperation): fixed bug #874819
6811         * src/SDCCast.c (decorateType): fixed
6812         char foo (unsigned long ul) { return ul > 0; }
6813
6814 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6815
6816         * doc/sdccman.lyx: Moved and added some sections, small changes
6817         all over. Telling LaTeX to be less strict with word spacing
6818         to better keep the right margin. Changed some notes about
6819         maintainance of the ports in section 3.2.1 - is it OK like this?
6820
6821 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
6822
6823         SDCC source changes:
6824         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
6825         convilong): modified to inform the pic16 port that builtin functions
6826         are external
6827
6828         PIC16 PORT specific changes:
6829         * src/pic16/device.c pic16_dump_equates() added,
6830         processor registers declared internally by the port are emitted in
6831         the translation as equates,
6832         * src/pic16/gen.c: inline code is passed unprocessed to the
6833         translation,
6834         * (pic16_popGetLit2): fnuction modified to take second operand as
6835         pCodeOp pointer and not as literal,
6836         * (popRegFromIdx): prefixed with pic16_,
6837         * (pic16_popCombine2): modified to receive already allocated pCode
6838         operands,
6839         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
6840         * (genFunction): initializes local stack frame and pushes on stack
6841         all the registers used by this function,
6842         * (genEndFunction): restores all registers from stack and restores
6843         stack frame,
6844         * src/pic16/glue.c (pic16emitRegularMap): various changes and
6845         improvements,
6846         * (pic16glue): changed the program startup sequence,
6847         * added new dbName code 'A' for functions placed in absolute section
6848         * src/pic16/main.c: added function attribute _naked,
6849         * added pragma 'code' to place a fnuction at an absolute address,
6850         * added command line arguments --debug-ralloc and --pcode-verbose,
6851         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
6852         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
6853         * (pic16_newpCodeOpLit2): modified to take the second operand as
6854         pCodeOp pointer,
6855         * (pic16_printpBlock): modified to emit each function in a separate
6856         section,
6857         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
6858         UPPER for immediate operands,
6859         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
6860         instruction,
6861         * src/pic16/peeph.def: all peepholes with movff are commented out,
6862         because there is a problem in the pcode peep optimizer,
6863         * src/pic16/ralloc.c: the register allocator can now reuse local
6864         function symbols for another function. This saves register usage.
6865         * src/pic16/ralloc.h: added flag isLocal in structure regs,
6866
6867         Added file src/pic16/NOTES with information about program writing on
6868         the current port version.
6869
6870 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6871
6872         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
6873         and peephole 252 (array access)
6874
6875 2004-01-09  Borut Razem <borut.razem AT siol.net>
6876
6877         * src/SDCCmain.c : fixed #872250: -l command line defined library
6878           files are scanned before standard library files
6879
6880 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6881
6882         * src/SDCCast.c (decorateType): fixed bug #874046
6883
6884 2004-01-09  Borut Razem <borut.razem AT siol.net>
6885
6886         * support/scripts/sdcc.nsi: remove previous installation
6887
6888 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6889
6890         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
6891         bytes for last interrupt vector (mcs51)
6892         * sdcc.spec: fixed typo
6893
6894 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6895
6896         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
6897         gen51Code): more efficient parameter receive for --model-large
6898         ("bug" #845294)
6899
6900 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6901
6902         * src/ds390/main.c,
6903         * src/z80/main.c: added missed needLinkerScript flags (more than
6904         one port structure defined in these file)
6905         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
6906         bug #795325
6907
6908 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
6909
6910         * src/SDCCmain.c: removed various references to DEFAULT_PORT
6911         * src/port.h: added flag needLinkerScript in port->linker
6912         structure to inform whether to create a .lnk file or not,
6913         * src/avr/main.c,
6914         * src/ds390/main.c,
6915         * src/hc08/main.c,
6916         * src/mcs51/main.c,
6917         * src/pic/main.c,
6918         * src/pic16/main.c,
6919         * src/xa51/main.c,
6920         * src/z80/main.c: changed appropriately to configure
6921         needLinkerScript flag
6922         * src/pic/gen.c,
6923         * src/pic16/gen.c (genAddrOf): fixed bug #863624
6924         * src/pic/glue.c: added variable udata_section_name to
6925         override default uninitialized data segment definition for
6926         devices only with SHAREBANK memory (reported from Erik Epetrich)
6927         * (pic14emitOverlay): modified to emit a commented overlay segment
6928         directive when no overlay data exist
6929         * (picglue): modified to emit uninitialized data segment
6930         according to udata_section_name
6931         * src/pic/main.c (_pic14_parseOptions): added command line
6932         options --udata-section-name=[name] to override default
6933         udata definition name
6934         * modified _linkCmd and _asmCmd to include compiler passed
6935         arguments via -W option
6936         * src/pic16/main.c: added $l in _asmCmd, changed extension for
6937         object file from '.rel' to '.o' in port->linker structure,
6938         changed size of fptr from 2 to 3 in port structure
6939
6940 2004-01-07  Borut Razem <borut.razem AT siol.net>
6941
6942         * support/scripts/sdcc.nsi: update PATH
6943         * support/scripts/sdcc.ico: craeted
6944
6945 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
6946
6947         * device/include/Makefile.in: fix install
6948         * doc/Makefile: fix install
6949
6950 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6951
6952         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
6953         in bug #860505
6954         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
6955         how the function variable allocation summary is displayed; also
6956         include information about variables allocated to the overlay
6957         segment
6958
6959 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6960
6961         * as/mcs51/lkmain.c: Help about -Y option
6962         * as/mcs51/lkarea.c: Fixed gcc warnings
6963
6964 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6965
6966         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
6967         fixed warning
6968         * support/valdiag/tests/overflow.c: added
6969         * src/SDCCast.c (decorateType),
6970         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
6971         LEFT_OP (left shift)
6972
6973 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6974
6975         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
6976         (default behaviour).
6977
6978 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6979
6980         A python script to validate compiler diagnostic messages. It can be
6981         used to verify that sdcc complains about bad c source code and
6982         gives a good location of the error.
6983         * support/valdiag/Makefile,
6984         * support/valdiag/valdiag.py,
6985         * support/valdiag/tests/*
6986
6987 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6988
6989         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
6990         * src/SDCCsymt.c (newEnumType),
6991         * src/SDCCsymt.h
6992         * support/Util/SDCCerr.c,
6993         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
6994         enum related bugs.
6995         * support/regression/tests/enum.c: added test for enum values that
6996         require at least 2 bytes of storage.
6997
6998 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6999
7000         * src/common.h: added ifndef/define/endif macros
7001         around the header file.
7002         Bug reported from Jesus Calvino-Fraga
7003
7004 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
7005
7006         * sdcc.spec: updated
7007         * device/include/Makefile.in: don't install CVS directories
7008         * device/lib/Makefile.in: added removal of CVS directories after install
7009         * doc/Makefile: fixed install, added local_icons
7010         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
7011         * src/mcs51/gen.c (genRightShift): fixed bug #870788
7012         * src/ds390/gen.c (genRightShift): fixed bug #870788
7013         * src/SDCCast.c (decorateType): fixed bug #870781
7014
7015 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7016
7017         PIC16 port related changes:
7018         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
7019         added variable stackPos,
7020
7021         * gen.c: genCall, assignResultValue: added support for
7022         pushing/retrieving function parameters to/from stack,
7023         genFunction,genEndFunction: setup stack frame for the
7024         generated function,
7025         genAddrOf: will be changed according to bug 863624
7026
7027         * added files genutils.c and genutils.h which contain gen*
7028         debugged and optimised functions extracted from gen.c
7029
7030         * glue.c: added variable 'externs' which holds extern symbols,
7031         pic16emitRegularMap: is modified to properly handle relocatable
7032          symbols under the new scheme,
7033         pic16createInterruptVect: is modified
7034         pic16printPublics: is modified to emit 'global' assembler directives,
7035         added pic16_printExterns to print extern symbols,
7036         pic16glue: initializes stack/frame pointer in the beginning of
7037         the assembly output. Temporary hack, will be corrected later,
7038         because gplink yet does not support stack and SDCC does not
7039         yet support a type of crt0.o object to create the final binary.
7040
7041         * Removed many lines that contain 8051 legacy code.
7042         * The code is finally placed under a 'code' directive.
7043         * Added port specific options.
7044
7045         * _process_pragma: simplified since now we do not need *special*
7046         include file to define SFR registers. But a separate header
7047         will be needed. This will be developed later.
7048         * _pic16_parseOptions: added, parses port specific options:
7049         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
7050         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
7051         --preplace-udata-with=
7052
7053         * _pic16_setDefaultOptions: modified to initialize section names,
7054         but hack is temporarly out of order since it needs improvement.
7055         * _pic16_genAssemblerPreamble: configuration words are emitted by
7056         their address instead of their name. This part is incomplete and
7057         supports only the 18Fxx2 devices. Other devices will emit an error
7058         during assembly since they do not contain the same set of config
7059         registers
7060         * _pic16_genIVT: is modified,
7061
7062         * pcode.c: added definitions for some hardware registers that are needed
7063         for stack support
7064         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
7065         All PCI entries are updated. Now LFSR is supported.
7066         * Removed pic16_pciTRIS is mentioned by mdubuc in source
7067         * added pic16_newpCodeOpLit2 to support instructions with
7068         two literal arguments
7069         * pic16_pCode2str: corrected code that emits assembler instructions
7070         with two literal operands and those that have an access bit modifier
7071         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
7072         this fixes a bug which caused some labels to be lost, when an
7073         assembler directive was added, i.e. banksel,
7074         * pic16_FixRegisterBanking: improved logic that causes the insertion
7075         of bank switching,
7076         * InlineFunction: functions that are called once, are not any more
7077         inlined. This can be a port option in the future,
7078
7079         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
7080
7081         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
7082         hold the corresponding uninitialized symbols,
7083         * pic16_allocProcessorRegister: registers have explicit marked the
7084         accessBank field,
7085         * pic16_allocInternalRegister: registers are explicit marked as
7086         not used,
7087         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
7088         processing list, so bit registers were lost,
7089         *
7090
7091         * ralloc.h: added field 'accessBank' and original symbol operand
7092         in register definition,
7093         * removed the field isMapped from register definition,
7094
7095         ** Several functions have been removed from various sources:
7096         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
7097         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
7098         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
7099         pic16_assignRelocatableRegisters
7100
7101         ** others have been introduced:
7102         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
7103         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
7104
7105 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
7106
7107         * support/scripts/inc2h.pl: changed definition of BIT_AT
7108         to emit 'sbit at' instead of 'bit at'. This was a request.
7109
7110         PIC16 port related preliminary changes:
7111         * gen.c: prefixed function popRegFromString with
7112         pic16_ and all references to it corrected
7113         * pcode.c: all pic16_pc_* hardware registers prefixed
7114         with underscore (_),
7115         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
7116         * ralloc.c: newReg(): when register is REG_SFR then
7117         set address to rIdx,
7118         pic16_allocProcessorRegister(): marks register wasUsed=0
7119         pic16_writeUsedRegs(): added a call to assign processor
7120         registers via pic16_assignFixedRegisters
7121
7122 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7123
7124         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
7125         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
7126         variables in unused register banks.  Also the SSEG is placed
7127         wherever there is enough space for it, and IDATA can be anywhere
7128         in internal RAM.  For now compile using -Wl-Y[stack_size].
7129         The mem file is different for this option as well, since it
7130         makes no sense of talking about DSEG lenght.
7131
7132 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
7133
7134         * src/SDCClrange.c: fixed bug 869095 that caused segfault
7135         in certain cases, e.g. when ROM assignment, patch provided
7136         from Albert den Haan.
7137
7138 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
7139
7140         Many signedness and type propagation fixes:
7141         * src/SDCCicode.c: made geniCodeCast() static
7142         replaced SPEC_ by IS_ (cosmetic)
7143         (operandOperation): fixed div and mod operation
7144         (usualBinaryConversions): added support for promotion of char
7145         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
7146         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
7147         (geniCodeAdd): an array index will stay unsigned, even if promoted
7148         from char to int
7149         (geniCodeArray): ditto
7150         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
7151         * src/SDCCsymt.c (computeType): added more support for char;
7152         promotion of char is selectable by promoteCharToInt, fixed signedness
7153         for all cases
7154         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7155         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7156         * src/SDCCval (val*): replaced signedness calculation by
7157         computeType()
7158         rearranged if-branches (cosmetic)
7159         (valShift): added warning W_SHIFT_CHANGED
7160         (valCompare): fixed problem with different types
7161         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
7162         * support/regression/tests/literalop.c: added many cases
7163         * support/regression/tests/ast_constant_folding.c: changed finally to
7164         'unsigned int'
7165         * .version: new year, new version: 2.3.7
7166         * src/SDCCmain.c (main): applied patch #866468
7167         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
7168         provided by Scott Bronson
7169         * doc/sdccman.lyx: updated documentation for sdcdb
7170         updated and added chapter tips
7171
7172 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7173
7174         * src/SDCCsymt.h: missing from yesterday's commits
7175
7176 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7177
7178         * src/SDCC.y (struct_or_union_specifier),
7179         * support/Util/SDCCerr.c,
7180         * support/Util/SDCCerr.h: verify that struct & union tags are used
7181         as declared.
7182
7183 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7184
7185         * src/SDCCglobl.h: missing from yesterday's commits
7186
7187 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7188
7189         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
7190         sft_attributes, struct_declaration, parameter_declaration,
7191         type_name, start_block, declaration_list),
7192         * src/SDCC.lex (check_type): support redefinition of typedef names
7193
7194 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7195
7196         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
7197         aligned xdata arrays. Erik helped me with the if clause.
7198
7199 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7200
7201         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
7202         warning
7203
7204 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7205
7206         * src/SDCCast.h,
7207         * src/SDCCast.c (newAst_),
7208         * src/SDCCicode.h,
7209         * src/SDCCicode.c (ast2iCode, newiCode),
7210         * src/SDCCglobl.h,
7211         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
7212         expr, statement, expression_statement, selection_statement,
7213         iteration_statement, expr_opt, jump_statement): foundation for tracking
7214         sequence points
7215         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
7216         point code too)
7217
7218 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7219
7220         * support/Util/SDCCerr.c,
7221         * src/SDCCast.h,
7222         * src/SDCCast.c (createCase, createDefault, decorateType),
7223         * src/SDCClabel.c (labelUnreach),
7224         * src/SDCC.y (labeled_statement, jump_statement): More improvements
7225         to error messages.
7226         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
7227         (with thanks to Stas Sergeev)
7228         * device/include/time.h,
7229         * device/lib/time.c (CheckTime): suppress unreachable code warning
7230
7231 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7232
7233         * src/SDCCast.c (createIvalCharPtr),
7234         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
7235         bug #753752)
7236         * support/regression/tests/nullstring.c: tests for these two bugs
7237
7238 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7239
7240         * support/Util/SDCCerr.h,
7241         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
7242         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
7243         about storage class and 'at' used inside struct or union
7244         * src/SDCCBBlock.c (iCodeFromeBBlock),
7245         * src/SDCCcse.c (ifxOptimize),
7246         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
7247         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
7248         printIval, emitStaticSeg, emitOverlay),
7249         * src/SDCClabel.c (deleteIfx),
7250         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
7251         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
7252         gatherAutoInit, processParms),
7253         * support/Util/SDCCerr.h,
7254         * support/Util/SDCCerr.c (werrorfl): Support for better error location
7255         reporting for post-parse errors.
7256
7257 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7258
7259         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
7260         implicit casts via union; they don't work on big endian systems
7261         (possible fix for bug #861138)
7262
7263 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7264
7265         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
7266         * src/mcs51/main.c: fixed the fix for bug #737001
7267
7268 2003-12-15  Borut Razem <borut.razem AT siol.net>
7269
7270         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
7271
7272 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7273
7274         * support/makebin/makebin.c: put output in binary mode
7275
7276 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7277
7278         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
7279         xdata and data memory on startup. Set the environment variable
7280         SDCC_NOGENRAMCLEAR to disable this.
7281         * src/mcs51/peephole.def,
7282         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
7283         (allows non-interrupt and interrupt code to safely compete for a resource
7284         without the non-interrupt code having to disable interrupts)
7285
7286 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7287
7288         * src/SDCCicode.c (geniCodeAdd),
7289         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
7290         with valFromType if type might be a pointer and host is big endian).
7291         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
7292         types, not just integer types.
7293         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
7294         multiply defined with mismatching "at" address.
7295
7296 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7297
7298         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
7299         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
7300         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
7301         with embedded nulls (fixed bug #753752)
7302
7303 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7304
7305         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
7306         Apparently this did not see much testing (endless loop)
7307
7308 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7309
7310         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
7311
7312 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7313
7314         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
7315         gracefully handle NULL memmap pointers
7316
7317 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7318
7319         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
7320         instead of deleting the iCode when an operand is volatile
7321         * src/z80/gen.c (genDummyRead),
7322         * src/mcs51/gen.c (genDummyRead),
7323         * src/ds390/gen.c (genDummyRead),
7324         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
7325         not just IC_RIGHT
7326         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
7327         * src/SDCC.y: fixed bug #850420
7328
7329 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7330
7331         Applied z80 i/o port patch from Peter Townson and fixed some operators
7332         to better handle operands in A register.
7333         * device/include/z180.h
7334         * src/SDCC.y
7335         * src/SDCCglue.c
7336         * src/z80/gen.c
7337         * src/z80/gen.h
7338         * src/z80/main.c
7339         * src/z80/peeph-z80.def
7340         * src/z80/peeph.def
7341         * src/z80/z80.h
7342
7343 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7344
7345         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
7346
7347 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7348
7349         * device/lib/hc08/_mullong.c: Removed extra #endif
7350
7351 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7352
7353         * sim/ucsim/hc08.src/inst.cc,
7354         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
7355         carries from x to h
7356         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
7357         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
7358         * device/include/stdarg.h: fixed varargs for hc08
7359         * device/lib/Makefile.in,
7360         * device/lib/hc08/Makefile,
7361         * device/lib/hc08/_mulint.c,
7362         * device/lib/hc08/_mullong.c: fixed some endian problems
7363
7364 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7365
7366         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
7367         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
7368         * device/lib/_gptrget.c,
7369         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
7370
7371 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7372
7373         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
7374         * src/SDCCast.c (astErrors): fixed bug #846007
7375         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
7376
7377 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7378
7379         * src/SDCCast.c (decorateType): disabled a transformation I added in
7380         revision 1.188 (access to fields of a structure at an absolute address);
7381         it breaks with bitfields, extern declarations, and gcse analysis.
7382         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
7383         could be assigned through a pointer, so don't complain.
7384         * src/SDCCast.c (astErrors),
7385         * src/SDCCast.h,
7386         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
7387
7388 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
7389
7390         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
7391         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
7392         output of __config directives, since gpasm now supports them
7393         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
7394         pre-processor macro, i.e. -DMCU=p18f452
7395         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
7396         and modified to handle 'cast' icode similarly to '=' icode
7397         * src/pic16/device.h (typedef struct PIC_device): added field
7398         'extMIface' to indicate that chip has external memory interface
7399         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
7400         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
7401         18F8720
7402
7403 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7404
7405         * src/SDCC.y (pointer): fixed bug #846006
7406         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
7407         * src/SDCCast.c (decorateType): fixed bug #846009
7408         * src/ds390/peeph.def,
7409         * src/ds390/gen.c (genAnd, genOr),
7410         * src/mcs51/peeph.def,
7411         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
7412
7413 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7414
7415         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
7416         * src/SDCCdflow.c
7417         * src/SDCCcse.c
7418         * src/SDCCcse.h
7419         * src/SDCCBBlock.h
7420         * src/SDCCBBlock.c
7421
7422 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
7423
7424         fixed bug #845089
7425         * src/SDCCbitv.h,
7426         * src/SDCCbitv.c: added function to free a bitvector
7427         * src/SDCClrange.h,
7428         * src/SDCClrange.c: added function to recompute the liveranges
7429         * src/avr/ralloc.c,
7430         * src/ds390/ralloc.c,
7431         * src/hc08/ralloc.c,
7432         * src/mcs51/ralloc.c,
7433         * src/pic/ralloc.c,
7434         * src/pic16/ralloc.c,
7435         * src/xa51/ralloc.c,
7436         * src/z80/ralloc.c: recompute the liveranges after register packing
7437
7438 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
7439
7440         * src/SDCCloop.c (newInduction): fixed bug #845630
7441
7442 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7443
7444         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
7445         inadvertantly left behind from my 2003-11-12 change
7446
7447 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7448
7449         Updated headers I neglected to commit yesterday.
7450         * src/SDCClrange.h,
7451         * src/SDCCicode.h
7452
7453 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7454
7455         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
7456         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
7457         * src/SDCCopt.c (eBBlockFromiCode),
7458         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
7459         the creation of the key hash table from the sequencing so it can be used
7460         earlier (for some GCSE bug fixes still pending)
7461
7462 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7463
7464         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
7465         * support/regression/tests/addsub.c: testing genPlus shortcut
7466
7467 2003-11-15  Borut Razem <borut.razem AT siol.net>
7468
7469         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
7470
7471 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7472
7473         * src/SDCCcse.c (cseBBlock): fixed bug #527779
7474         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
7475         ordering is immaterial.
7476         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
7477
7478 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7479
7480         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
7481         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
7482         (SIGSEV) of bug #840381
7483         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
7484         unlink new file before rename if new and old filenames are the same)
7485
7486 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7487
7488         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
7489         uninitialized variables) for the mcs51. Set environment variable
7490         SDCC_GENRAMCLEAR to test.
7491         xdata initialization slightly shorter
7492
7493 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7494
7495         * src/SDCCsymt.h,
7496         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
7497         #838241 & 780691 (basicly the same bug)
7498         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
7499         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
7500
7501 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
7502
7503         * src/SDCCmain.c (linkEdit): "fix" #834252
7504
7505 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7506
7507         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
7508         * src/SDCCast.h,
7509         * src/SDCC.y: fixed bug #819403
7510
7511 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7512
7513         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
7514         the reentrant attribute.
7515         * src/hc08/gen.c (genPackBits): added missing stack readjustment
7516         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
7517         simulation
7518         * src/SDCCast.c (decorateType): fixed bug with storage class not being
7519         updated during pointer dereference; f.e. ~(((char *)1)*) was being
7520         erroneously reduced to a literal.
7521         * src/hc08/ralloc.c (packRegisters, rematStr),
7522         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
7523         some cases
7524
7525 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7526
7527         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
7528         * doc/sdccman.lyx: changed from 'article' to 'book'
7529         * doc/Makefile: readded test_suite_spec and cdbfileformat
7530
7531 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
7532
7533         * device/include/stdlib.h: include malloc.h to comply with ANSI
7534         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
7535
7536 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7537
7538         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
7539         * doc/clean.mk: also remove *.out files
7540         * doc/sdccman.lyx: some additions, larger top/bottom margins
7541
7542 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7543
7544         * src/SDCC.y: fixed bug #837365
7545         * support/regression/tests/bitopcse.c
7546         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
7547         a symbol (might be valop instead)
7548         * device/lib/Makefile.in: added errno.c to HC08SOURCES
7549         * device/lib/clean.mk: added hc08 to the cleaning list
7550
7551 2003-11-04  Borut Razem <borut.razem AT siol.net>
7552
7553         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
7554           made 2003-11-04
7555         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7556           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
7557           malloc is declared in standard stdlib.h
7558
7559 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7560
7561         * device/lib/hc08/Makefile: need to clean .rel not .o files
7562         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
7563
7564 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7565
7566         * src/port.h,
7567         * src/hc08/main.c,
7568         * src/mcs51/main.c,
7569         * src/ds390/main.c,
7570         * src/z80/main.c,
7571         * src/avr/main.c,
7572         * src/pic/main.c,
7573         * src/pic16/main.c,
7574         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
7575         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
7576         tests (which uses the port's oclsExpense function)
7577         * src/SDCC.y,
7578         * src/SDCCast.c,
7579         * src/SDCCicode.c,
7580         * src/hc08/gen.c,
7581         * src/ds390/gen.c,
7582         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
7583
7584 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7585
7586         * src/SDCCcse.c (ifxOptimize),
7587         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
7588         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
7589         deleting the IFX iCode.
7590         * src/hc08/ralloc.c: reduced unneeded slocs
7591         * src/hc08/gen.c: fixed bug in asmopToBoolean
7592
7593 2003-11-04  Borut Razem <borut.razem AT siol.net>
7594
7595         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
7596           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7597           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
7598           transferred to configure
7599
7600 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
7601
7602         Use headers defined in the C[++] standards:
7603         * sim/ucsim/gui.src/serio.src/fileio.cc
7604         * sim/ucsim/gui.src/serio.src/frontend.cc
7605         * sim/ucsim/gui.src/serio.src/main.cc
7606         * sim/ucsim/gui.src/serio.src/posix_signal.cc
7607         * support/Util/NewAlloc.c
7608         * as/hc08/lklibr.c
7609         * as/mcs51/lklibr.c
7610         * as/z80/aslist.c
7611         * as/z80/assym.c
7612
7613 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7614
7615         * Added MSVC projects for hc08 assembler and linker:
7616         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
7617         /as/hc08/link_hc08.dsp
7618
7619 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
7620
7621         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
7622
7623 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
7624
7625         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
7626
7627 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7628
7629         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
7630
7631 2003-10-31  Borut Razem <borut.razem AT siol.net>
7632
7633         * support/cpp2/cpplib.h,
7634           support/cpp2/cpplib.c,
7635           support/cpp2/cpplex.c,
7636           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
7637           to switch _asm block preprocessing on / off. Default is
7638           #pragma preproc_asm +
7639
7640 2003-10-31  Borut Razem <borut.razem AT siol.net>
7641
7642         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
7643           when outputting comment blocks (when executed with -C option) and
7644           _asm (SDCPP specific) blocks
7645
7646 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7647
7648         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
7649
7650 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
7651
7652         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
7653
7654 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
7655
7656         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
7657         * src/SDCCast.c (decorateType): fixed bug #832664
7658
7659 2003-10-31  Borut Razem <borut.razem AT siol.net>
7660
7661         * support\cpp2\cpplex.c: fixed for SDCPP:
7662           comments(when executed with -C option) and _asm blocks
7663           were included even if they where in skipped #if block.
7664           Applied solution from GCC cpp 3.3.2
7665
7666 2003-10-31  Borut Razem <borut.razem AT siol.net>
7667
7668         * src/SDCC.lex: sdcc now understands both formats:
7669           '# <line_number> <file_name>' and
7670           '#line <line_number> <file_name>'
7671         * support/cpp2/cppmain.c: sdcpp now generates the standard
7672           '# <line_number> <file_name>' instead of former
7673           '#line <line_number> <file_name>'
7674
7675 2003-10-30  Borut Razem <borut.razem AT siol.net>
7676
7677         * support/cpp2/cpphash.h,
7678         * support/cpp2/cpplib.h
7679         * support/cpp2/cpplex.c,
7680         * support/cpp2/cppmain.c,
7681         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
7682
7683 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7684
7685         Fixed a number of problems revealed by bug #827883.
7686         * src/SDCCloop.c (loopInvariants): Spill location of the
7687         result operand should be recomputed if extracted from
7688         a loop. Also, don't extract assignments of an iTemp
7689         from a literal.
7690         * src/SDCCast.c (isConformingBody): loop reversal should
7691         not occur if the control variable is involved with a
7692         relational operator.
7693
7694 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
7695
7696         * .version: bumped to 2.3.6 to reflect the big improvements
7697         made by Erik and Klaus. Thanks!
7698
7699 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
7700
7701         Replaced the livrange code.
7702         * src/SDCClrange.c: added new LR code
7703         * src/SDCCloop.c,
7704         * src/SDCCBBlock.h: removed remainig parts from old LR code
7705         * src/ds390/ralloc.c,
7706         * src/ds390/gen.c: minor fixes to make it work with new code
7707
7708 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7709
7710         * as/hc08/asm.h,
7711         * as/hc08/lkrloc.c,
7712         * src/hc08/gen.c,
7713         * src/hc08/ralloc.c: Fix various warnings related to the hc08
7714         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
7715         (tweaked fix for bug #818696)
7716
7717 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7718
7719         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
7720
7721 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7722
7723         * src/SDCCmain.c,
7724         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
7725         * src/mcs51/gen.c (gencjneshort),
7726         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
7727         more efficient (per Scott Bronson's suggestion)
7728
7729 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7730
7731         Extended the semantics of the critical keyword to include
7732         individual statements. See RFE #827755 and #799831
7733         * src/SDCC.y
7734         * src/SDCCicode.c
7735         * src/SDCCopt.c
7736         * src/SDCCast.c
7737         * support/Util/SDCCerr.c
7738         * support/Util/SDCCerr.h
7739         * src/mcs51/gen.c
7740         * src/ds390/gen.c
7741         * src/hc08/gen.c
7742
7743 2003-10-19  Borut Razem <borut.razem AT siol.net>
7744
7745         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
7746
7747 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7748
7749         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
7750         Fixed bug #818696
7751         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
7752         and predecrement operand is displayed
7753
7754 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
7755
7756         * src/SDCCval.c (valMinus): fixed bug #826041
7757
7758 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7759
7760         Some hc08 related updates that I missed earlier
7761         * sim/ucsim/stypes.h
7762         * support/regression/ports/hc08/spec.mk
7763
7764 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7765
7766         New target "hc08" for the Motorola 68hc08 family of micros
7767
7768         * configure
7769         * configure.in
7770         * Makefile
7771         * src/hc08/*
7772         * src/SDCCmain.c
7773         * src/port.h
7774         * sim/ucsim/hc08.src/*
7775         * sim/ucsim/configure.in
7776         * src/ucsim/configure
7777         * sim/ucsim/packages_in.mk
7778         * as/hc08/*
7779         * as/Makefile
7780         * device/include/mc68hc908qy.h
7781         * device/lib/hc08/*
7782         * device/lib/Makefile.in
7783         * support/regression/ports/hc08/*
7784         * support/regression/Makefile
7785
7786 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7787
7788         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
7789         regression test
7790         * src/ds390/gen.c (genCast): fixed bug #821957
7791
7792 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
7793
7794         * device/lib/logf.c: "fixed" overlay bug
7795         * support/regression/ports/host/spec.mk: added m library
7796         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
7797         * support/regression/tests/float_trans: added (for Eric)
7798
7799 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
7800
7801         * src/mcs51/gen.c (genCpl): fixed bug
7802         http://sf.net/mailarchive/message.php?msg_id=6263915
7803
7804 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
7805
7806         * src/SDCCast.c (decorateType): added extended constant folding
7807         * src/SDCCsymt.c (computeType): cleanup
7808         * src/SDCCval.c (valShift): minor optimization
7809         * support/regression/tests/ast_constant_folding.c: added
7810
7811 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7812
7813         * src/SDCCmain.c: removed some unintended changes
7814
7815 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7816
7817         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
7818         * src/z80/gen.c: fixed part of bug #817589
7819         * src/SDCCsymt.c (checkFunction): fixed bug #817895
7820
7821 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
7822
7823         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
7824         * src/SDCCcflow.c
7825         * src/SDCCcse.c
7826         * src/SDCCdflow.c
7827         * src/SDCClabel.c
7828         * src/SDCClrange.c
7829         * src/SDCCmem.c
7830         * src/SDCCopt.c
7831         * src/SDCCpeeph.c
7832         * src/SDCCset.c
7833         * src/avr/ralloc.c
7834         * src/ds390/ralloc.c
7835         * src/izt/ralloc.c
7836         * src/mcs51/ralloc.c
7837         * src/pic/ralloc.c
7838         * src/pic16/ralloc.c
7839         * src/xa51/ralloc.c
7840         * src/z80/ralloc.c
7841         * src/z80/gen.c: removed unused label "release:"
7842
7843 2003-10-06  Borut Razem <borut.razem AT siol.net>
7844
7845         * src/SDCC.lex: removed definition of unused variables
7846           save_optimize and save_options
7847
7848 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
7849
7850         * clean.mk: removed '=' in "-maxdepth=1"
7851         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
7852         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
7853
7854 2003-10-06  Borut Razem <borut.razem AT siol.net>
7855
7856         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
7857           my_unput() replaced by unput()
7858
7859 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
7860
7861         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
7862         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
7863         type-punned pointer will break strict-aliasing rules"
7864         Old LR behaviour is again default; Klaus' LR can be choosen by
7865         defining the environment variable LRKLAUS
7866         * src/SDCCBBlock.h
7867         * src/SDCCloop.c
7868         * src/SDCClrange.c
7869         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
7870         * clean.mk: fixed removal of files in bin/CVS/
7871         * device/lib/clean.mk: fixed removal of directories small and large
7872         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
7873         * src/SDCCicode.c,
7874         * src/SDCCval.c: removed superflous test for pedantic
7875
7876 2003-10-05  Borut Razem <borut.razem AT siol.net>
7877
7878         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
7879           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
7880           message "unmatched #pragma SAVE and #pragma RESTORE"
7881
7882 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7883
7884         * doc/sdccman.lyx: various additions and updates (interrupts, inline
7885           assembly, critical functions, atomic, nojtbound)
7886
7887 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
7888
7889         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
7890         * src/SDCCBBlock.h
7891         * src/SDCCloop.c
7892         * src/SDCCloop.h
7893         * src/SDCClrange.c
7894
7895 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7896
7897         * src/z80/gen.h,
7898         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7899         * src/mcs51/gen.h
7900         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7901         * src/ds390/gen.h
7902         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7903         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
7904         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
7905
7906 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7907
7908         * src/z80/gen.c (genRet): fixed bug #524753
7909         * src/z80/gen.c (genCast): fixed internal error on cast from
7910         pointer to long
7911         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
7912         fix for bug #477835 to the z80
7913         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
7914         for tracking iCodes in the peephole optimizer for z80
7915
7916 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7917
7918         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
7919         the other part of bug #814548
7920         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
7921
7922 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
7923
7924         * src/SDCCcse.c: fixed part of bug #814548
7925
7926 2003-09-28  Borut Razem <borut.razem AT siol.net>
7927
7928         * src/asm.c: rewrite of printILine() to use temporary file instead
7929           a pipe
7930         * src/xa51/main.c: commented out declaration of int rewinds
7931
7932 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7933
7934         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
7935
7936 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7937
7938         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
7939         * src/asm.c (printILine): Fixed bug #811015
7940
7941 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7942
7943         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
7944         freeing.
7945
7946 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7947
7948         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
7949         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
7950         to correctly handle general case of AOP_PAIRPTR
7951         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
7952
7953 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7954
7955         * src/mcs51/ralloc.c (fillGaps),
7956         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
7957         register positioning bug)
7958
7959 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
7960
7961         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
7962
7963 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7964
7965         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
7966         genCodePointerGet, genGenPointerGet, genFarPointerSet,
7967         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
7968         (ralloc doesn't intentionally do this now, but perhaps later)
7969         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
7970         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
7971         register positioning bugs (Fixed bug #762602 and #795325)
7972         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
7973         (Fixed bug #808779)
7974         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
7975         lines that --i-code-in-asm generates
7976
7977 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7978
7979         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
7980         trying to fclose a FILE* that was already closed.
7981
7982 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7983
7984         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
7985         of const struct should be treated as if const themselves)
7986
7987 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
7988
7989         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
7990
7991 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7992
7993         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
7994         Unix (/n) and DOS (/r/n) line terminations.
7995
7996 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7997
7998         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
7999         bug #613775
8000
8001 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8002
8003         * src/mcs51/gen.c (genFunction, genEndFunction),
8004         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
8005         and restore of EA so that stack offsets to parameters are
8006         correct when using both critical and reentrant/stack-auto.
8007         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
8008         size (can be triggered in error if sloc is shared between
8009         different sized objects)
8010         * device/include/float.h: fixed macros to explicitly use
8011         unsigned long where needed
8012
8013 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
8014
8015         Feature req. 799831: added code to allow nesting of critical functions
8016         * src/mcs51/gen.c (genFunction, genEndFunction)
8017         * src/ds390/gen.c (genFunction, genEndFunction)
8018
8019 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8020
8021         * src/SDCCsymt.c (sclsFromPtr),
8022         * src/SDCCsymt.h,
8023         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
8024         support for standard C idiom of memory mapped variables; for
8025         example, *((xdata int*)0x1234) = 1 is now internally equivalent
8026         to xdata int at 0x1234 tempvar = 1.
8027         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
8028         provided by Akiya ISHIDA
8029
8030 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
8031
8032         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
8033         * src/SDCCval.c (constVal): added reduction from int to char
8034         * src/SDCCval.c (valMult, valDiv): fixed sign handling
8035         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
8036         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
8037         to ignore the sign
8038         * support/regression/tests/shifts.c: fixed
8039
8040 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8041
8042         * src/z80/gen.c (genXor): Fixed bug #805445
8043
8044 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8045
8046         Fixed bug #621531 (const & volatile confusion in the type chain).
8047         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
8048         refer to the const or volatile state of the pointer itself.
8049
8050         * src/SDCCast.c
8051         * src/SDCCglue.c
8052         * src/SDCCicode.c
8053         * src/SDCCsymt.c
8054         * src/SDCCval.c
8055         * src/SDCC.y
8056         * src/SDCCsymt.h
8057         * src/pic/gen.c
8058         * src/pic/ralloc.c
8059         * src/pic16/gen.c
8060         * src/pic16/ralloc.c
8061         * support/regression/tests/const.c
8062
8063 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8064
8065         When checking for duplicated modules, use absolute paths
8066         instead of relative paths.  Files changed:
8067
8068         * as/mcs51/lklib.c
8069         * link/z80/lklib.c
8070
8071 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8072
8073         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
8074
8075 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8076
8077         * device/include/string.h: added size_t typedef, changed
8078         prototypes to use size_t, eliminated separate reentrant and
8079         non-reentrant declarations, added _memmove declaration
8080         * device/lib/_memcpy.c: changed to use size_t instead of int,
8081         changed /4 to >>2 to avoid division library call
8082         * device/lib/_memcmp.c,
8083         * device/lib/_memset.c,
8084         * device/lib/_strncat.c,
8085         * device/lib/_strncpy.c,
8086         * device/lib/_strncmp.c: changed to use size_t instead of int
8087         * device/lib/_memmove.c: new file (fixed bug #772294)
8088         * device/lib/Makefile.in: added _memmove.c
8089         * device/lib/z80/asm_strings.s: fixed bug #772290
8090         * support/regression/tests/bitfields.c: attempt to fix host assertion
8091         failure on amd64-unknown-linux2.2
8092
8093 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8094
8095         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
8096         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
8097         * as/z80/asmain.c (main): fixed bug #801766
8098
8099 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
8100
8101         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
8102         compilers
8103
8104 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8105
8106         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
8107         reported in bug #800609
8108
8109 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
8110
8111         * Top header beautifications in src/pic16 directory:
8112           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
8113           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
8114           pcoderegs.h, ralloc.c, ralloc.h
8115         * main.c: added top header and GPL license notice
8116         * pcode.c: fixed the if-conditional warning
8117
8118 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
8119
8120         * device/lib/_mullong.c: replaced int by short for gcc
8121
8122 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8123
8124         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
8125         and JUMPTABLE iCodes properly now (worked by accident before)
8126         * src/mcs51/gen.c (leftRightUseAcc),
8127         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
8128         iCode properly now. Use getSize instead of nRegs since a & b
8129         aren't part of the nRegs tally.
8130
8131 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
8132
8133         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
8134         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
8135           before instructions that use the _STATUS register
8136
8137 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
8138
8139         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
8140         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
8141         fetching of the pointer
8142         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
8143         copied from genNearPointerSet()
8144         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
8145         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
8146         If they pop r0/r1 they must be called in the opposite order than aopOp().
8147         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
8148         (resp. --stack-auto), prepared for --xstack
8149
8150 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8151
8152         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
8153
8154 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8155
8156         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
8157         these ports have their own __sdcc_external_start()
8158
8159 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
8160
8161         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8162         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
8163         type for bits was changed. It resulted in bit variables becoming
8164         global, which is not permitted in PIC 14 assembly output.
8165
8166 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8167
8168         * doc/sdccman.lyx: various additions and updates. Rearranged sections
8169
8170 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8171
8172         Z80 and MCS51 linkers complaint if a public symbol is defined
8173         in more than one library module:
8174
8175         * as/mcs51/lklib.c
8176         * link/z80/lklib.c
8177         * as/mcs51/Makefile.in
8178
8179 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8180
8181         A few small changes that speed up the peephole optimizer.
8182
8183         * src/SDCCpeeph.c
8184
8185 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8186
8187         Try to make the peephole optimizer smarter by maintaining
8188         an association between the assembly source code and the
8189         iCodes that originated them. Put this information to use
8190         with a new peephole rule condition "notVolatile" so that
8191         the rules can be aggressive yet still safe.
8192
8193         * src/SDCCpeeph.c
8194         * src/SDCCpeeph.h
8195         * src/mcs51/gen.c
8196         * src/mcs51/peeph.def
8197
8198 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8199
8200         Fixed bug #741761
8201
8202         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
8203         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
8204         if the left or right operand symbols have the accuse flag set.
8205
8206 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8207
8208         Changed the type of the result of the ! (NOT) operator to char;
8209         previously it returned the same type as the source. This allows
8210         us to eliminate all the genFloatNot functions (all of its target
8211         implementations were very buggy) since !float can use the same
8212         code as !long now.
8213
8214         * src/SDCCicode.c (ast2iCode): ! returns char
8215         * src/mcs51/gen.c (genNot, genNotFloat),
8216         * src/ds390/gen.c (genNot, genNotFloat),
8217         * src/z80/gen.c (genNot, genNotFloat),
8218         * src/pic/gen.c (genNot, genNotFloat),
8219         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
8220
8221 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
8222
8223         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8224         1. Interrupt would not compile properly. Ensure PCLATH register is saved
8225            during interrupts. Ensure WSAVE is located at a shared bank address.
8226         2. Fixed page selection in some places
8227         3. Fixed BTFSS/C to where necessary use registers directly and not simply
8228            the registers name strings.
8229         4. Fixed "signed / unsigned compare" compiler warnings.
8230         5. The PIC port manages its own allocation of the general purpose
8231            registers, but makes no attempt to reuse them. As a result when
8232            compiling it soon runs out of general purpose registers. Some
8233            additional code was added to the files pcode.c and device.c to walk
8234            through the function call tree and rename the registers so that they
8235            get reused.
8236
8237         * src/pic/device.c
8238         * src/pic/gen.c
8239         * src/pic/glue.c
8240         * src/pic/pcode.c
8241         * src/pic/pcode.h
8242         * src/pic/ralloc.c
8243         * src/pic/ralloc.h
8244         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
8245         genPlus() & genMinus() when the result is the same as left or right
8246
8247 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8248
8249         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
8250
8251 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8252
8253         Made bitfield a distinct type from bit so that bitfields
8254         convert as per ANSI C and bits retain their traditional
8255         boolean style behaviour. Implemented bitfield support in
8256         the z80 port.
8257
8258         * src/SDCCsymt.h,
8259         * src/SDCCsymt.c,
8260         * src/SDCCast.c,
8261         * src/cdbFile.c,
8262         * src/mcs51/gen.c,
8263         * src/ds390/gen.c: bit v bitfield split
8264         * src/z80/gen.c: New support for bitfields
8265         * support/regression/tests/bitfields.c: reenabled z80,
8266         added more tests
8267
8268 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8269
8270         Rules 246.x, 247.x relate to bitfields, the others speed up
8271         access to xdata mapped I/O devices.
8272
8273         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
8274
8275 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8276
8277         Cleaned up genPackBits and genUnpackBits and added two helper
8278         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
8279         for literal assignments in genPackBits (thanks to Frieder for
8280         reminding me).
8281
8282         * src/mcs51/gen.c
8283         * src/ds390/gen.c
8284
8285 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8286
8287         Fixed bug #748310 (pointer to function type mishandled when the
8288         function name is omitted). Also fixed a SIGSEGV when a function
8289         attribute (reentrant, etc) is used on a non-function or on a
8290         function but misplaced before the parameter list.
8291
8292         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
8293         bug #748310
8294         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
8295         * support/Util/SDCCerr.h,
8296         * support/Util/SDCCerr.c: Added func attr misuse error msg
8297
8298 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
8299
8300         Fixed bug #787649 by anonymous
8301         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
8302         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
8303
8304 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8305
8306         Fixed numerous bitfield problems.
8307
8308         * src/SDCC.y: More bitfield related error checking
8309         * src/SDCCsymt.h,
8310         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
8311         * support/Util/SDCCerr.h,
8312         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
8313         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
8314         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
8315         * support/regression/tests/bitfields.c: tests added
8316
8317 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8318
8319         Made the constant following the "interrupt" keyword optional. If
8320         omitted, the function will not automatically be given an entry
8321         in the interrupt vector table (similar to #pragma NOIV, but
8322         less syntacticly kludgy). The interrupt number is also now
8323         range checked. Also fixed a bug in the high order bit example
8324         in the manual.
8325
8326         * src/SDCC.y
8327         * src/SDCCmem.c
8328         * src/SDCCglue.c
8329         * src/SDCCsymt.h
8330         * support/Util/SDCCerr.c
8331         * support/Util/SDCCerr.h
8332         * doc/sdccman.lyx
8333
8334 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
8335
8336         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
8337         * src/SDCCicode.c (operandOperation): rewritten some ops
8338         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
8339         * src/SDCCsymt.c (computeType): literals are handled the same way as any
8340         other type
8341         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
8342         be re-activated by defining REDUCE_LITERALS)
8343         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
8344         unsigned, but are signed by default
8345         * src/SDCCval.c (constVal): rearranged
8346         * src/SDCCval.c (valMod): preliminary fix
8347         * src/SDCCval.c (valCastLiteral): use TYPE_* types
8348         * support/regression/literalop.c: added, work in progress
8349
8350 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8351
8352         Generate warnings for useless declarations like "char data;"
8353         that don't do what new users expect.
8354
8355         * src/SDCC.y
8356         * support/Util/SDCCerr.h
8357         * support/Util/SDCCerr.c
8358
8359 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
8360
8361         * src/SDCCval.c (valMult): fix overflow detection of negative int
8362
8363 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8364
8365         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
8366
8367         Changes to support big endian targets:
8368
8369         * src/ports.h
8370         * src/SDCCglue.c
8371         * src/avr/main.c
8372         * src/ds390/main.c
8373         * src/izt/i186.c
8374         * src/mcs51/main.c
8375         * src/pic/main.c
8376         * src/pic16/main.c
8377         * src/xa51/main.c
8378         * src/z80/main.c
8379
8380 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
8381
8382         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
8383         * device/lib/time.c: fixed warning "integer overflow in expression"
8384
8385 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
8386
8387         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
8388         * src/SDCCval.c (constVal): changed default to signed; hex and octal
8389         constants are unsigned; added recognition of "u" flag for unsigned
8390         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
8391         * src/SDCCval.c (valDiv, valMod): fixed signdness
8392         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
8393         signedness of modulo, left and right shift
8394         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
8395         * support/Util/SDCCerr.h: added warning W_INT_OVL
8396         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
8397         * src/SDCCast.c (ast_print): improved output of constants
8398
8399 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8400
8401         Fixed some warnings when building with MSVC:
8402
8403         * as\mcs51\asdata.c
8404         * as\z80\asdata.c
8405         * as\mcs51\asm.h
8406         * as\z80\asm.h
8407         * link\z80\aslink.h
8408         * link\z80\lkdata.c
8409         * link\z80\lkeval.c
8410         * link\z80\lkgb.c
8411         * link\z80\lkihx.c
8412         * link\z80\lks19.c
8413         * link\z80\lksym.c
8414         * support\cpp2\cpplib.c
8415         * src\ds390\gen.c
8416         * src\mcs51\gen.c
8417
8418 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
8419
8420         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
8421
8422 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8423
8424         * support\librarian\clean.mk: Do not remove Makefile.
8425         * support\librarian\Makefile: added.
8426
8427 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8428
8429         Added librarian to MSVC build:
8430         * all.dsp
8431         * sdcc.dsw
8432         * support\librarian\librarian.dsp
8433
8434         'configure' not needed for librarian, removed:
8435         * support\librarian\configure
8436         * support\librarian\configure.in
8437         * support\librarian\config_in.h
8438         * support\librarian\Makefile.in
8439
8440         Hopefully these ones built the librarian and the rest of sdcc properly:
8441         * Makefile
8442         * Makefile.common.in
8443
8444         Messed up 'configure', so revert to previous version:
8445         * configure
8446         * configure.in
8447
8448 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
8449
8450         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
8451         there, while the mantissa of a double is "only" 53 bits wide.
8452
8453 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8454
8455         Adding sdcclib to the build.  MSVC project coming soon.
8456         Files added/changed:
8457
8458         * support\librarian\clean.mk
8459         * support\librarian\configure
8460         * support\librarian\configure.in
8461         * support\librarian\config_in.h
8462         * support\librarian\Makefile.bcc
8463         * support\librarian\Makefile.in
8464         * support\librarian\sdcclib.c
8465         * Makefile.bcc
8466         * Makefile
8467         * Makefile.common.in
8468         * configure
8469         * configure.in
8470
8471 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8472
8473         Linker now complaints if linked modules have conflicting options, for
8474         example, one compiled using --model-large and another one compiled with
8475         --model-small.  The following files were modified:
8476
8477         * as\mcs51\asdata.c
8478         * as\mcs51\aslink.h
8479         * as\mcs51\asm.h
8480         * as\mcs51\asmain.c
8481         * as\mcs51\asout.c
8482         * as\mcs51\i51pst.c
8483         * as\mcs51\lkdata.c
8484         * as\mcs51\lklibr.c
8485         * as\mcs51\lkmain.c
8486         * as\z80\asdata.c
8487         * as\z80\asm.h
8488         * as\z80\asmain.c
8489         * as\z80\asout.c
8490         * as\z80\z80pst.c
8491         * link\z80\aslink.h
8492         * link\z80\lkdata.c
8493         * link\z80\lklibr.c
8494         * link\z80\lkmain.c
8495         * src\SDCCglue.c
8496
8497 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8498
8499         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
8500         as/mcs51/lklibr.c: Generate a warning when a library is not found.
8501
8502 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
8503
8504         * src/z80/mappings.i: fix _mul[us][int,long] entries
8505
8506 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8507
8508         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
8509
8510 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8511
8512         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
8513         * support/regression/tests/bitopcse.c: added
8514         fixed warning:
8515         * src/avr/gen.c:
8516         * src/pic/gen.c:
8517         * src/pic16/gen.c:
8518         * src/z80/gen.c:
8519         * src/xa51/gen.c:
8520
8521 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8522
8523         added support for new library format to z80, gbz80 linkers:
8524         *link/z80/aslink.h
8525         *link/z80/lklex.c
8526         *link/z80/lklib.c
8527         *link/z80/lklist.c
8528
8529 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8530
8531         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
8532         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
8533
8534 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
8535
8536         added DUMMY_READ_VOLATILE:
8537         * src/SDCC.y:
8538         * src/avr/gen.c:
8539         * src/xa51/gen.c:
8540         * src/z80/gen.c:
8541         * src/pic/gen.c:
8542         * src/pic16/gen.c:
8543         * src/mcs51/gen.c:
8544         * src/ds390/gen.c:
8545         * src/SDCCcse.c (algebraicOpts): many improvements
8546         * src/SDCCcse.h: removed algebraicOpts()
8547         * src/SDCCicode.c (picDummyRead): added
8548
8549 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8550
8551         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
8552         "Insufficient space in data memory".
8553
8554 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8555
8556         * src/mcs51/gen.c: fixed bug #771358
8557         * src/z80/gen.c: fixed bug #759087
8558
8559 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
8560
8561         * src/pic16/glue.c: minor cleanup by Vangelis
8562
8563 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8564
8565         * device/include/regc515c.h: fixed #758477
8566         * device/lib/_gptrget.c: saving some cycles in generic pointer get
8567         * device/lib/_gptrput.c: saved a few bytes
8568         * my tab spacing is 8, yours too?)
8569         * device/lib/_ser.c: process RX bytes earlier than TX bytes
8570         * device/lib/serial.c: process RX bytes earlier than TX bytes
8571         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
8572
8573 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8574
8575         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
8576
8577 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8578
8579     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
8580
8581 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
8582
8583         * device/lib/Makefile.in: bad fix, reverted to 1.43
8584
8585 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
8586
8587         * device/lib/Makefile.in: added missing z80 object files
8588
8589 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
8590
8591         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
8592         pic16 progress by Vangelis:
8593         * src/SDCCglobl.h:
8594         * src/SDCCmain.c:
8595         * src/pic/Makefile:
8596         * src/pic:
8597         * pic/Makefile:
8598         * pic16/device.c:
8599         * pic16/device.h:
8600         * pic16/gen.c:
8601         * pic16/gen.h:
8602         * pic16/genarith.c:
8603         * pic16/glue.c:
8604         * pic16/main.c:
8605         * pic16/pcode.c:
8606         * pic16/pcode.h:
8607         * pic16/pcodepeep.c:
8608         * pic16/peeph.def:
8609
8610 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8611
8612     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
8613
8614 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8615
8616     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
8617     added gbz80 build to MSVC project.
8618     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
8619     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
8620     from 8051 stuff and setup so it links using a .lnk file.
8621
8622 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8623
8624     * support/librarian/sdcclib.c: sdcc librarian.
8625     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
8626     with sdcclib.
8627
8628 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8629
8630     * as/mcs51/lkmain.c: properly handle extensions in function afile.
8631
8632 2003-07-02  Borut Razem <borut.razem AT siol.net>
8633
8634         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
8635         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
8636         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
8637         src/xa51/main.c, src/z80/main.c:
8638         virtualization of glue() function: each port has it's own glue function,
8639         which is accessed by do_glue function pointer in PORT.general structure
8640
8641 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
8642
8643         * DS800C400 fun, improved ROM interface and tinibios.
8644
8645 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
8646
8647         * More support for DS80C400. Now includes beginning of interface to ROM.
8648
8649 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
8650
8651         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
8652
8653 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8654
8655         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
8656
8657 2003-06-19  Borut Razem <borut.razem AT siol.net>
8658
8659         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
8660
8661 2003-06-19  Borut Razem <borut.razem AT siol.net>
8662
8663         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
8664         fixed Z80 port - crt0.o: cannot open.
8665
8666 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
8667
8668         * support/Util/MySystem.c (merge_command): revert bad fix
8669
8670 2003-06-18  Borut Razem <borut.razem AT siol.net>
8671
8672         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
8673
8674 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8675
8676         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8677         option --use-stdout sends errors to stdout instead of stderr.
8678
8679 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
8680
8681         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
8682
8683 2003-06-15  Borut Razem <borut.razem AT siol.net>
8684
8685         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
8686         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
8687         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
8688         fixed width array of pointers replaced with sets;
8689         multiple include and lib paths ared transferred to preprocessor and linker
8690         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
8691         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
8692         fixed width array of pointers
8693         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
8694         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
8695         fixupPath(), getPathDifference()
8696         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
8697         fixed width array of pointers
8698
8699 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
8700
8701         * src/pic16/ralloc.c: fix warnings
8702         * src/pic16/pcode.c: fix warning
8703
8704 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
8705
8706          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
8707         know all the details, but essentially this set of changes enable
8708         the pic16 port to generate movff instructions and generate assembler
8709         directives,
8710         * src/SDCCmain.c:
8711         * src/pic16/gen.c:
8712         * src/pic16/glue.c:
8713         * src/pic16/pcode.c:
8714         * src/pic16/device.c:
8715         * src/pic16/main.c:
8716         * src/pic16/pcode.h:
8717         * src/pic16/pcoderegs.c:
8718         * src/pic16/ralloc.c:
8719         * src/pic16/ralloc.h:
8720
8721 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8722
8723         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8724         added option --vc, so sdcc errors and warnings are compatible with
8725         Microsoft Visual Studio.
8726
8727 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8728
8729         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
8730           device/lib/libfloat.lib: added atof function.
8731
8732 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
8733
8734         * doc/sdccman.lyx: updated to Lyx 1.3
8735         * doc/cdbfileformat.lyx: updated to Lyx 1.3
8736         * doc/test_suite_spec.lyx: updated to Lyx 1.3
8737         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
8738
8739 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
8740
8741         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
8742
8743 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8744
8745         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
8746           additions to the "related tools/documentation" section
8747
8748 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
8749
8750         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
8751
8752 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
8753
8754         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
8755         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
8756
8757 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
8758
8759         * doc/sdccman.lyx: fix double dash and other minor things
8760         * doc/Makefile: fix double dash
8761
8762 2003-05-28  Karl Bongers(patches from Martin Helmling)
8763         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
8764           condition and ignore commands.
8765
8766 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8767
8768         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
8769           is in parts still quite out of date, I did changes as far as I felt makes sense
8770           for a non-native english speaker.
8771           Please feel free to add to the manual or to correct my changes.
8772         * doc/Makefile: undid touching the date of intermediate tex files.
8773
8774 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8775
8776         * doc/sdccman.lyx: Manual has an index now
8777
8778 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
8779
8780         Finalize muluint/mulsint and mululong/mulslong merging:
8781         * device/lib/_mulint.c
8782         * device/lib/_mullong.c
8783         * device/lib/gbz80/mul.s
8784         * device/lib/gbz80/stubs.s
8785         * device/lib/z80/mul.s
8786         * device/lib/z80/stubs.s
8787         * src/SDCCsymt.c (initCSupport)
8788
8789 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8790
8791         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
8792         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
8793           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
8794           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
8795           instead of /Zm500.
8796
8797 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8798
8799         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
8800           the regression tests I'm not brave enough to enable 245.b, 245.c
8801         * doc/sdccman.lyx: added latex preamble for hyperref package.
8802           Using pdflatex this will give you a hyperlinked pdf file with
8803           bookmarks. (prepend '%' before /usepackage if this breaks something)
8804
8805 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8806
8807          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
8808
8809 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
8810
8811         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
8812
8813 2003-05-21    <johan AT balder>
8814
8815         * src/SDCCglue.c (printIval): fixed bug #739934
8816
8817 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8818
8819         Applied patch from bug 737905 (renamed yylineo to mylineno):
8820         * src/altlex.c
8821         * src/SDCCast.c
8822         * src/SDCglobl.h
8823         * src/SDCC.lex
8824         * src/SDCCsymt.c
8825         * src/SDCCval.c
8826         * src/pic16/pcode.c: Cleaned warnings
8827         * src/pic16/pcodeflow.c: Cleaned warnings
8828         * src/pic16/pcoderegs.c: Cleaned warnings
8829
8830 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
8831
8832         * src/pic16/pcode.c: Cleaned warnings
8833         * src/pic16/pcodepeep.c: Cleaned warnings
8834         * src/pic16/ralloc.c: Cleaned warnings
8835
8836 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8837
8838         * doc/sdccman.lyx: fixed bug 739745
8839         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
8840
8841 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
8842
8843         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
8844         it can be defined with CFLAGS when running configure
8845         * src/SDCCmain.c: fixed compiling + linking with object files
8846
8847 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
8848
8849         * configure.in: configure for pic16 port,
8850             added --disable-pic16-port
8851         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
8852         * src/SDCCmain.c: linkOptions is changed to set *,
8853             added if/endif conditional macros to remove options help
8854             messages from optionsTable when a port is not configured, added
8855             support for the PIc16 port in the ports table, when executing
8856             the compiler with no port specified on command line, a default
8857             port is selected with the new macro DEFAULT_PORT which is
8858             defined in port.h, in setDefaultOptions() linkOptions is removed
8859             from initialization assignment, since now it is a set,
8860             parseCmdLine uses setParseWithComma for linkOptions, in
8861             linkEdit() linkOptions are accessed with new function indexSet()
8862             which returns the i'th item of a set variable. See SDCCset.c, in
8863             linkEdit() when calling buildCmdLine(), added linkOptions as
8864             last argument. Now users can pass arguments to gplink via the
8865             -Wl option, main() uses pic16glue() to glue up pic16 programs
8866         * src/SDCCpeeph.c: various changes to support pic16
8867         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
8868             return the i'th item of the set
8869         * src/SDCCset.h: added function prototype for indexSet()
8870         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
8871         * src/clean.mk: added pic16 in CLEANALLPORTS variable
8872         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
8873             added macro DEFAULT_PORT
8874         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
8875         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
8876             generated
8877         * src/pic16/glue.c: commented out some error producing lines
8878         * src/pic16/main.c: __config directives are commented out to stop
8879             gpasm complaining and test the linkage with gplink, _linkCmd and
8880             _asmCmd changed to be more gplink and gpasm friendly
8881         * src/pic16/peeph.def: peep rule 3 is commented out, since it
8882             produced an error when parsed, peep rule 12 is added to utilize
8883             movff, but it is commented out since the pCode does not support
8884             yet a command with 2 address arguments
8885
8886 2003-05-18    <johan AT balder>
8887
8888         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8889         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8890 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
8891
8892         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
8893   Added feature to script commands from file.
8894
8895 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
8896
8897         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
8898         * src/SDCCutil.c: include ctype.h for win32
8899
8900 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
8901
8902         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
8903
8904 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
8905
8906         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
8907   Fixed so you can set breakpoints prior to run, run does not stop
8908   on entry now.  Add tbreak.  Other enhancements and fixes for use
8909   with ddd.
8910
8911 2003-05-12  Borut Razem <borut.razem AT siol.net>
8912
8913         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
8914
8915 2003-05-11  Borut Razem <borut.razem AT siol.net>
8916
8917         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
8918         the path of bin directory, so that PATH is the only env. variable, which has to be set
8919         in case of standard installation.
8920         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
8921         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
8922         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
8923
8924 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8925
8926         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
8927         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
8928         temp files are in the port dir; clean the gen/test directory when
8929         generating new test.c
8930         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
8931         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
8932         * support/regression/tests/zeropad.c: added
8933
8934 2003-05-09    <johan AT balder>
8935
8936         * src/SDCCglue.c: fixed bug #597940
8937
8938 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
8939
8940         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8941   cache sfr, optimize next,step, fix off by one sourceline,
8942   support ddd list function.
8943         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
8944
8945 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8946
8947         * support/regression/HTMLgen.py: added compare_s2f()
8948         * support/regression/Makefile: redo 1.27
8949         * support/regression/generate-cases.py: redo 1.5
8950
8951 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
8952
8953         * support/regression/tests/float.c: workaround 33 bit hex constant
8954         * support/regression/tests/simplefloat.c: fix division for host
8955
8956 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
8957
8958         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
8959         that tame's the PIC's over-aggressive optimizer.
8960
8961 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8962
8963          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
8964          support for MSVC.
8965
8966 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
8967
8968         Initial support for DS80C400. "Hello world" runs on TINIm400
8969         (with polled I/O).
8970
8971 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
8972
8973          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8974          * Some notes on ddd usage added in debugger/README
8975          Martin Helmling adding more features and fixes for ddd GUI debugger.
8976          Code added for nexti, stepi, up, down, and other adjustments.
8977
8978 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
8979
8980         * src/pic/pCodepeep.c non-wildcard asmops are now handled
8981         * src/pic/peeph.def Added two rules to optimize carry manipulation
8982         * src/pic/* removed debug printfs
8983
8984 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
8985
8986         * debugger/mcs51/cmd.c: added header newalloc.h
8987
8988 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
8989
8990         * as/Makefile: new EXEEXT
8991         * as/z80/Makefile: remove trailing slash of BUILDIR
8992         * as/z80/clean.mk: new EXEEXT
8993         * Makefile.common.in: add to CFLAGS (and others), don't replace it
8994         * support/cpp2/Makefile.in: new EXEEXT
8995         * src/pic/glue.c (pic14emitRegularMap): fixed warning
8996
8997 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
8998
8999         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
9000         EXEEXT was introduced to fix all related problems with targets
9001         "clean", "install" and "uninstall"; a couple of further flaws
9002         especially with "clean" have been fixed too
9003         * as/mcs51/Makefile.in
9004         * as/mcs51/clean.mk
9005         * as/z80/Makefile
9006         * Makefile
9007         * clean.mk
9008         * debugger/mcs51/Makefile.in
9009         * debugger/mcs51/clean.mk
9010         * link/z80/Makefile
9011         * link/z80/Makefile.in
9012         * link/z80/clean.mk
9013         * link/Makefile
9014         * packihx/Makefile.in
9015         * packihx/clean.mk
9016         * sim/ucsim/Makefile
9017         * sim/ucsim/clean.mk
9018         * sim/ucsim/avr.src/Makefile.in
9019         * sim/ucsim/avr.src/clean.mk
9020         * sim/ucsim/s51.src/Makefile.in
9021         * sim/ucsim/s51.src/clean.mk
9022         * sim/ucsim/xa.src/Makefile.in
9023         * sim/ucsim/xa.src/clean.mk
9024         * sim/ucsim/z80.src/Makefile.in
9025         * sim/ucsim/z80.src/clean.mk
9026         * sim/ucsim/main_in.mk
9027         * sim/ucsim/packages_in.mk
9028         * sim/ucsim/gui.src/Makefile.in
9029         * sim/ucsim/gui.src/serio.src/Makefile.in
9030         * sim/ucsim/gui.src/serio.src/clean.mk
9031         * src/Makefile.in
9032         * src/clean.mk
9033         * support/cpp2/Makefile.in
9034         * support/cpp2/clean.mk
9035         * support/makebin/Makefile
9036         * support/makebin/clean.mk
9037         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
9038         * doc/sdccman.lyx: --program-suffix no longer needed
9039
9040 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
9041
9042          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
9043          Martin Helmling added support for ddd GUI debugger.
9044          Code added to display assembly, set variables, and other commands
9045          to interface to ddd.
9046
9047 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
9048
9049         * as/Makefile: fix target clean
9050         * as/clean.mk: fix target clean
9051         * as/z80/clean.mk: fix target clean
9052
9053 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
9054
9055         * Makefile.common.in: added  AT EXEEXT AT
9056         * configure.in: removed all mingw32 stuff
9057         * configure: rebuilt from configure.in
9058         * doc/sdccman.lyx: updated section "installation"
9059         * support/scripts/sdcc_mingw32: adapted to configure
9060         * support/scripts/sdcc_cygwin_mingw32: added
9061
9062 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
9063
9064         * src/pic Added object file support for the PIC port
9065         * src/pic Applied patch from Craig Franklin (this started the object file support)
9066         * src/regression Updated the PIC regression tests for object files
9067
9068 2003-04-20  Borut Razem <borut.razem AT siol.net>
9069
9070         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
9071           lklex.c: In function `getfid':
9072           lklex.c:203: warning: array subscript has type `char'
9073         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
9074           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
9075         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
9076           stack handling macros
9077
9078 2003-04-19  Borut Razem <borut.razem AT siol.net>
9079
9080         * "handling space characters in file path" task:
9081         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
9082         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
9083         * support/Util/MySystem.h: make it self-sufficient
9084         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
9085           src/z80/main.c, sdcc/as/mcs51/lklex.c:
9086           handling space characters in file path
9087         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
9088           (it will be used by assemblers, which have their own includes, e.g. gpasm)
9089         * support/Util/MySystem.c: handling space characters in executable's path
9090
9091 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
9092
9093         * as/z80/Makefile: fix permanent rebuild of z80
9094         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
9095         * support/regression/tests/bitfields.c: added Johan's bitfields.c
9096
9097 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
9098
9099         * src/SDCCopt.c: add special case optimization to replace modulo by
9100           a power of two with a bitwise AND.
9101
9102 2003-04-18    <johan AT balder>
9103
9104         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
9105
9106 2003-04-17    <johan AT balder>
9107
9108         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
9109         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
9110
9111 2003-04-13  Borut Razem <borut.razem AT siol.net>
9112
9113         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
9114         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
9115           fixed mingw problem in adl_NORMALIZE_PATH
9116
9117 2003-04-12  Borut Razem <borut.razem AT siol.net>
9118
9119         * fixed "#pragma SAVE/RESTORE can not be nested":
9120         * src/SDCC.lex: reworked pragma handling functions
9121         * sdcc/src/SDCCglobl.h: reworked stack handling macros
9122         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
9123
9124 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9125
9126         * src/SDCCutil.c (pathEquivalent): defined but not used
9127         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
9128         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
9129         * configure: rebuilt from configure.in
9130         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9131         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9132         * device/include/Makefile.in: replace sdcc_datadir
9133         * device/lib/Makefile.in: replace sdcc_datadir
9134         * Makefile.common.in: add LDFLAGS from configure
9135         * packihx/Makefile.in: use LDFLAGS
9136         * src/Makefile.in: use LDFLAGS
9137         * support/cpp2/Makefile.in: add LDFLAGS from configure
9138         * support/makebin/Makefile: use LDFLAGS
9139         * .version: bumped version number to 2.3.5
9140
9141 2003-04-12  Borut Razem <borut.razem AT siol.net>
9142
9143         * completed "different paths" task:
9144         * src/SDCCmacro.c: fixed bug in handling quotes
9145         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
9146         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
9147
9148 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9149
9150         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
9151
9152 2003-04-11 kevin Vigor <kevin AT vigor.nu>
9153
9154         * ds390/gen.c ds390/peeph.def: fix bug 706781
9155
9156 2003-04-11  Borut Razem <borut.razem AT siol.net>
9157
9158         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
9159
9160 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
9161
9162         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
9163         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
9164          set - this bit used to not be set...).
9165         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
9166           bad code in PIC Port
9167         * src/regression/and2.c added to test bug 609268
9168         * src/regression/Makefile added and2.c to regression test
9169
9170
9171 2003-04-08    <johan AT CP255758-A>
9172
9173         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
9174         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
9175         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
9176
9177 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
9178
9179         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
9180         fix bug #487815
9181         * support/cpp2/Makefile.in: fix bug #487815
9182         * configure: rebuilt from configure.in
9183         * Makefile.common.in: docdir changed, new path suffixes
9184         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9185         * sdcc_vc_in.h: reflect changes from sdccconf.h
9186         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
9187         * src/SDCCutil.h: remove BINDIR hack
9188         * doc/sdccman.lyx: update new path hierarchy
9189
9190 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9191
9192         * src/SDCCpeeph.c: added okToRemoveSLOC test
9193
9194 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9195
9196         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
9197
9198 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9199
9200         * src/SDCCpeeph.c: added labelIsReturnOnly test
9201         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
9202
9203 2003-04-05    <johan AT balder>
9204
9205         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
9206         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
9207         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
9208         * src/SDCCast.c: fixed a warning
9209         * src/SDCCast.h: fixed a warning
9210         * src/SDCCicode.c (operandFromAst): fixed a warning
9211
9212 2003-04-04    <johan AT balder>
9213
9214         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
9215         * src/SDCCast.c (decorateType): fixed bug #715076
9216         * src/SDCC.y: fixed bug #702907
9217
9218 2003-04-03    <johan AT balder>
9219
9220         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
9221         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
9222         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
9223         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
9224         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
9225
9226 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
9227
9228         * _decdptr.c: fix return values
9229         * _gptrget.c: fix return values
9230         * _gptrgetc.c: fix return values
9231         * _gptrput.c: fix return values
9232         * _mulint.c: fix return values
9233         * as/z80/Makefile: fix 'make -j' problem
9234
9235 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
9236
9237         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
9238         * configure.in: big cleanup, updated to autoconf 2.5x
9239         * configure: rebuilt from configure.in
9240         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9241         * sdcc_vc_in.h: reflect changes from sdccconf.h
9242         * doc/Makefile: fixed a flaw in "make install"
9243
9244 2003-04-02    <johan AT balder>
9245
9246         * src/ds390/gen.c (genCmp): no comments
9247         * src/mcs51/gen.c (genCmp): no comments
9248         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
9249         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
9250
9251 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
9252
9253         * support/regression/generate-cases.py: place generated file in given sub directory
9254         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
9255         * support/regression/Makefile: improvements for 'make -j';
9256         side effect: it's simpler and faster now
9257
9258 2003-03-31  Borut Razem <borut.razem AT siol.net>
9259
9260         * src/z80/main.c: link-{port} and as-{port} defined without path
9261         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
9262
9263 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
9264
9265         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
9266
9267 2003-03-30  Borut Razem <borut.razem AT siol.net>
9268
9269         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
9270           changed type of list parameter to set
9271         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
9272         * src/port.h: changed type of do_assemble() parameter to set
9273         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
9274           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
9275           definition of "cppoutfilename" macro with NULL value in preProcess()
9276         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
9277         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
9278         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
9279           replaced with set *binPathSet
9280         * shash_add() deallocates the item, if allready exsists, before adding the new one
9281         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
9282
9283 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
9284
9285         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
9286           a nested for loop bug in the PIC port
9287         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
9288           for loops
9289
9290 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
9291
9292         * support/Util/dbuf.h: remove C++ stuff to make it portable
9293
9294 2003-03-28  Borut Razem <borut.razem AT siol.net>
9295
9296         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
9297           literal strings in stringLiteral()
9298         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
9299         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
9300           to the project
9301
9302 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
9303
9304         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
9305
9306 2003-03-26    <johan AT balder>
9307
9308         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
9309         * src/ds390/gen.c (saveRegisters): catched symbol abuse
9310         * src/SDCCast.c (decorateType): fixed " -v < 3"
9311
9312 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
9313
9314         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
9315         Added Lenny Story's debug infrastructure changes:
9316         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
9317         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
9318         * src/cdbFile.c: added
9319         * src/SDCCdebug.c: added
9320         * src/SDCCdebug.h: added
9321         * src/SDCCast.c (createFunction)
9322         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
9323         * src/SDCCmain.c (parseCmdLine, main)
9324         * src/SDCCmem.c (redoStackOffsets)
9325         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
9326         * src/SDCCsymt.h
9327         * src/common.h
9328         * src/avr/gen.c (genAVRCode)
9329         * src/ds390/gen.c (gen390Code)
9330         * src/mcs51/gen.c (gen51Code)
9331         * src/pic/gen.c (genpic14Code)
9332         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
9333         * src/xa51/gen.c (genXA51Code)
9334         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
9335
9336 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9337
9338         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
9339         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
9340
9341 2003-03-22    <johan AT balder>
9342
9343         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
9344
9345 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
9346
9347         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
9348         * doc/cdbfileformat.lyx: added, written by Lenny Story
9349         * doc/Makefile: added cdbfileformat.lyx
9350         * doc/clean.mk: added cdbfileformat.lyx
9351
9352 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
9353
9354         * src/mcs51/peeph.def: fix bug #705773
9355
9356 2003-03-20    <johan AT balder>
9357
9358         An sfr/sbit can have an "at #" AND an initializer
9359         * src/SDCCsymt.c (checkSClass):
9360         * src/SDCCmem.c (allocGlobal):
9361         * src/SDCCmem.c (allocLocal):
9362         * src/SDCCast.c (createBlock):
9363
9364 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
9365
9366         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
9367
9368 2003-03-16    <johan AT balder>
9369
9370         Undid the hackup of const and volatile, the problem is much bigger
9371         * src/SDCC.y:1.65
9372         * src/SDCCast.c:1.171
9373         * src/SDCCglue.c:1.138
9374         * src/SDCCicode.c:1.146
9375         * src/SDCCsymt.c:1.150
9376         * src/SDCCval.c:1.65
9377
9378 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
9379
9380         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
9381         * src/ds390/gen.c (genAddrOf): fixed bug #704087
9382
9383 2003-03-13    <johan AT balder>
9384
9385         Hackup const and volatile modifiers in type chains a bit:
9386         * src/SDCC.y:1.63
9387         * src/SDCCast.c:1.169
9388         * src/SDCCglue.c:1.136
9389         * src/SDCCicode.c:1.143
9390         * src/SDCCsymt.c1.146
9391         * src/SDCCsymt.h1.59
9392         * src/SDCCval.c:1.63
9393
9394 2003-03-12    <johan AT balder>
9395
9396         * src/SDCCBBlock.h: more LRH debugging junk
9397         * src/SDCCcflow.h: more LRH debugging junk
9398         * src/SDCCloop.c: more LRH debugging junk
9399         * src/SDCC.y (struct_declaration): fixed bug #697590
9400         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
9401         * src/ds390/gen.c (aopForRemat): fixed bug #700031
9402         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
9403
9404 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9405         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
9406         test function names must now match exactly).
9407         * src/SDCCcse.c: added special case in findCheaperOp to allow
9408         extending a short integer. Makes less awful code for bug 700121 test case.
9409
9410 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9411
9412         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
9413         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
9414
9415 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9416
9417         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
9418         actually called (operandsNotEqual() was called for all
9419         operandsNotEqualX tests).
9420
9421 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9422
9423         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
9424         with shorter literals. Fixes bug 700121.
9425
9426 2003-03-11    <johan AT balder>
9427
9428         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
9429
9430 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
9431
9432         * src/SDCCloop.c (mergeRegions): an evil beast is dead
9433         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
9434
9435 2003-03-10  Borut Razem <borut.razem AT siol.net>
9436
9437         * src/SDCCmain.c: pipe preprocessor's output
9438         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9439         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9440         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9441         which closes all pipes in pipeSet set
9442         * src/SDCCset.c: free deleted item in function deleteSetItem()
9443         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9444         moved from z80 to src subproject
9445         * .version: increased version number to 2.3.4
9446
9447 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
9448
9449         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
9450         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
9451         * support/regression/ports/xa51/spec.mk: fix typo
9452
9453 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
9454
9455         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
9456
9457 2003-03-09  Borut Razem <borut.razem AT siol.net>
9458
9459         * src/SDCCmain.c: pipe preprocessor's output
9460         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9461         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9462         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9463         which closes all pipes in pipeSet set
9464         * src/SDCCset.c: free deleted item in function deleteSetItem()
9465         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9466         moved from z80 to src subproject
9467
9468 2003-03-09  Borut Razem <borut.razem AT siol.net>
9469
9470         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
9471         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
9472         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
9473         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
9474         * src/SDCCglobl.h: unification of WIN32 native definitions
9475
9476 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9477
9478         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
9479
9480 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9481
9482         * src/configure.in:   check for endianess (even while cross-compiling)
9483         * src/configure:      check for endianess (even while cross-compiling)
9484         * src/configure_in.h: check for endianess (even while cross-compiling)
9485         * src/avr/gen.c:        remove old endianess stuff
9486         * src/mcs51/gen.c:      remove old endianess stuff
9487         * src/ds390/gen.c:      remove old endianess stuff
9488         * src/pic/gen.c:        remove old endianess stuff
9489         * src/pic/genarith.c:   remove old endianess stuff
9490         * src/pic/glue.c:       fix endianess check
9491         * src/pic16/gen.c:      remove old endianess stuff
9492         * src/pic16/genarith.c: remove old endianess stuff
9493         * src/pic16/glue.c:     fix endianess check
9494         * src/xa51/gen.c:       remove old endianess stuff
9495         * src/z80/gen.c:        fix endianess check
9496         * src/SDCCglue.c:       fix endianess check
9497         * src/ds390/peeph.def: fix bug 700036
9498
9499 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9500
9501         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
9502         * src/configure: find appropriate data-types on host for SDCC's int and long
9503         * src/configure.in: find appropriate data-types on host for SDCC's int and long
9504         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
9505         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
9506
9507 2003-03-07    <johan AT balder>
9508
9509         Just a big NOOP:
9510                 some minor cleanups before the big shot
9511                 OP_DEFS and OP_USES now use Kevin's protection
9512                 new option --nolabelopt
9513
9514         * src/SDCCBBlock.c:
9515         * src/SDCCast.c,:
9516         * src/SDCCcflow.c:
9517         * src/SDCCcse.c:
9518         * src/SDCCicode.c:
9519         * src/SDCCicode.h:
9520         * src/SDCClabel.c:
9521         * src/SDCCloop.c:
9522         * src/SDCCmain.c:
9523         * src/ds390/ralloc.c:
9524         * src/mcs51/ralloc.c:
9525         * src/pic/ralloc.c:
9526         * src/xa51/ralloc.c:
9527         * src/z80/ralloc.c:
9528
9529 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
9530
9531         * src/pic/pcode.c (get_op): fix 64 bit warnings
9532         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
9533         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
9534         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
9535         * support/regression/tests/malloc.c: fix 64 bit warnings
9536
9537 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
9538
9539         * src/mcs51/gen.c (genMinus): fixed bug 696436
9540
9541 2003-03-02  Borut Razem <borut.razem AT siol.net>
9542
9543         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
9544
9545 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
9546
9547         * configure.in: test for mkstemp
9548         * sdccconf_in.h: add HAVE_MKSTEMP
9549
9550 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
9551
9552         * device/include/ctype.h: removed warning while using --stack-auto
9553         * device/include/malloc.h: removed warning while using --stack-auto
9554         * device/include/string.h: removed warning while using --stack-auto
9555
9556 2003-02-23  Borut Razem <borut.razem AT siol.net>
9557
9558         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
9559         because NDEBUG is defined (see man assert)
9560         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
9561
9562 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9563
9564         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
9565         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
9566
9567 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9568
9569         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
9570         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
9571
9572 2003-02-18    <johan AT balder>
9573
9574         * as/mcs51/asmain.c (asmbl): module can start with a digit
9575         * as/z80/asmain.c (asmbl): module can start with a digit
9576
9577 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
9578
9579         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
9580         * src/asm.c: fix pipe() for Mingw32
9581
9582 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
9583
9584         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
9585         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
9586         make -V work again; --c1mode reads now from stdin
9587         * doc/sdccman.lyx: added --c1mode
9588         * support/Util/SDCCerr.c: new messages for c1 mode
9589         * support/Util/SDCCerr.h: new messages for c1 mode
9590         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
9591
9592 2003-02-15    <johan AT balder>
9593
9594         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
9595
9596 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
9597
9598         * doc/sdccman.lyx: Environment variables, -o and other minor things
9599
9600 2003-02-14    <johan AT balder>
9601
9602         * src/xa51/main.c: before anyone really tries to use it :)
9603
9604         * Install doc's in share/sdcc/doc
9605         * removed some obsolete files
9606         * Do a proper make distclean and uninstall
9607         M Makefile.common.in
9608         R sdccbuild.sh
9609         M as/Makefile
9610         M device/include/Makefile.in
9611         M device/lib/Makefile.in
9612         M doc/sdccman.lyx
9613         M link/Makefile
9614         M sim/ucsim/doc/Makefile.in
9615         M src/clean.mk
9616         R src/avr/peeph.rul
9617         R src/xa51/peeph.rul
9618         M support/cpp2/Makefile.in
9619         M support/makebin/Makefile
9620
9621
9622 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
9623
9624         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
9625
9626 2003-02-10  Borut Razem <borut.razem AT siol.net>
9627
9628         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
9629         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
9630         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
9631         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
9632         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
9633         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
9634         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
9635         src/z80/Makefile.bcc: Borland Makefile cleanup
9636         * as/z80/Makefile.bcc: Added Borland Makefile
9637         * support/cpp2/borland.h: Removed
9638
9639 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
9640
9641         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
9642         * src/SDCC.lex: new pragma NOIV
9643         * src/SDCCglobl.h: new pragma NOIV
9644         * src/SDCCmem.c: new pragma NOIV
9645
9646 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9647
9648         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
9649
9650 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9651
9652         * src/SDCCmain.c: signal handling is switched off by --debug
9653         * doc/Makefile: small fix for install; use clean.mk again
9654         * doc/clean.mk: clean *.pdf and *.html too
9655
9656 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
9657
9658         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
9659         * device/lib/printfl.c: fix a ds390 bug by making it portable
9660         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
9661         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
9662         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
9663         * debugger/mcs51/cmd.c: converted multi-line string literals
9664         * sim/ucsim/globals.cc: converted multi-line string literals
9665         * src/SDCCmain.c: introduced signal handler to remove temp files
9666         * doc/Makefile: small tweaks, implement clean
9667         * doc: removed generated files
9668
9669 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9670
9671         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
9672         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
9673         Address Record is not correctly generated for DS390."
9674
9675 2003-02-02  Borut Razem <borut.razem AT siol.net>
9676
9677         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
9678         * as/mcs51/asm.h: fixed compilation with Borland C
9679         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
9680         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
9681         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
9682         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
9683         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
9684         src/z80/Makefile.bcc: delete $(LIB) only if exist
9685         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
9686
9687 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
9688
9689         * device/include/malloc.h: introduced NULL
9690         * device/include/string.h: introduced NULL
9691         * device/include/stdlib.h: introduced NULL
9692         * device/lib/_memcpy.c: removed NULL
9693         * device/lib/_strcat.c: removed NULL
9694         * device/lib/_strchr.c: removed NULL
9695         * device/lib/_strcmp.c: removed NULL
9696         * device/lib/_strcpy.c: removed NULL
9697         * device/lib/_strcspn.c: removed NULL
9698         * device/lib/_strlen.c: removed NULL
9699         * device/lib/_strncat.c: removed NULL
9700         * device/lib/_strncmp.c: removed NULL
9701         * device/lib/_strncpy.c: removed NULL
9702         * device/lib/_strpbrk.c: removed NULL
9703         * device/lib/_strrchr.c: removed NULL
9704         * device/lib/_strspn.c: removed NULL
9705         * device/lib/_strstr.c: removed NULL
9706         * device/lib/_strtok.c: removed NULL
9707         * device/lib/malloc.c: removed NULL, include own header
9708
9709 2003-02-02    <johan AT balder>
9710
9711         * 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
9712         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
9713         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
9714         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
9715         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
9716         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
9717
9718 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9719
9720         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
9721         area 'DATA'"
9722
9723 2003-02-01    <johan AT balder>
9724
9725         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
9726
9727 2003-01-31    <johan AT CP255758-A>
9728
9729         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
9730
9731 2003-01-30    <johan AT balder>
9732
9733         * src/SDCCBBlock.c: automatic bug detection
9734         * src/SDCCicode.c: automatic bug detection
9735
9736 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9737
9738         * src/SDCCglobl.h:   now --xram-size 0 works
9739         * src/SDCCmain.c:    now --xram-size 0 works
9740
9741 2003-01-29    <johan AT balder>
9742
9743         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
9744
9745 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9746
9747         * as/mcs51/aslink.h: Added options --xram-size and --code-size
9748         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
9749         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
9750         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
9751         * src/SDCCglobl.h:   Added options --xram-size and --code-size
9752         * src/SDCCmain.c:    Added options --xram-size and --code-size
9753
9754 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
9755
9756         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
9757         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
9758
9759 2003-01-27    <johan AT balder>
9760
9761         * src/SDCC.y: fixed bug #613764
9762
9763 2003-01-26    <johan AT balder>
9764
9765         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
9766         * src/SDCCsymt.h: fixed bug #673374
9767         * src/SDCCglue.c: fixed bug #661910
9768         * src/SDCCast.c: fixed bug #458099 and 673374
9769
9770 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
9771
9772         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
9773         * as/mcs51/strcmpi.h: added
9774         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
9775         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
9776         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
9777         * as/mcs51/assym.c: strcmpi -> as_strcmpi
9778         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
9779         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
9780         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
9781         * as/mcs51/Makefile.aslink: new module strcmpi
9782         * as/mcs51/Makefile.asx8051: new module strcmpi
9783         * as/mcs51/Makefil.bcc: new module strcmpi
9784         * as/mcs51/Makefile.in: new module strcmpi
9785         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
9786
9787 2003-01-26    <johan AT balder>
9788
9789         * src/SDCCglue.c: reverted back to 1.124
9790         * src/SDCCast.c: reverted back to 1.156
9791         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
9792
9793 2003-01-25    <johan AT balder>
9794
9795         * src/SDCCglue.c: A better fix for bug #661910
9796         * src/SDCCast.c: A better fix for bug #661910
9797         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
9798
9799 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9800
9801         * src/Makefile.in: remove spawn.o
9802         * src/SDCCmain.c: remove spawn.h
9803         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
9804         * src/spawn.c: removed
9805         * src/spawn.h: removed
9806         * support/regression/ports/ds390/spec.mk: link with -r
9807
9808 2003-01-24    <johan AT CP255758-A>
9809
9810         * src/ds390/gen.c (aopOp): fixed bug #667458
9811         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
9812         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
9813         (createIvalCharPtr): an ival doesn't always have a storage class anymore
9814
9815 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9816
9817         * src/mcs51/peeph.def: better assembler identation by Frieder
9818         * src/mcs51/gen.c: better assembler identation by Frieder
9819
9820 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
9821
9822         * as/z80/string.h: removed for gcc 3.2
9823         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
9824         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
9825
9826 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9827
9828         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
9829         * src/SDCCpeeph.c (replaceRule): fix bug #663503
9830         * support/regression/Makefile: separate temp files for ports
9831         * support/regression/generate-cases.py: separate temp files for ports
9832         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9833         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9834
9835 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9836
9837         * moved tinitalk to device/examples/ds390
9838
9839 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
9840
9841         * as/mcs51/lkmem.c: rflag is for DS390
9842         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
9843         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
9844                          (linkEdit): move mem- and map-files the same way as ihx-files
9845         * src/z80/main.c (_setDefaultOptions): removed --generic
9846         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
9847         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
9848         * src/pic/glue.c (picglue): --c1mode works again
9849         * src/pic16/glue.c (pic16glue): --c1mode works again
9850         * src/asm.c (printCLine): fix #660034
9851
9852 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
9853
9854         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
9855         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
9856         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
9857         * as/mcs51/lkmem (summary): better fix for sp problem
9858         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
9859         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
9860         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
9861                                               remove --stack-after-data
9862
9863 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
9864
9865         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
9866         * src/SDCCutil.c (join): ugly bug: missing '\0'
9867         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
9868
9869 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9870
9871         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
9872         * src/port.h: typo
9873         * src/pic/main.c (_asmCmd): gpasm supports -o
9874         * src/z80/main.c: more general macros
9875         * device/lib/Makefile.in: remove intermediate files
9876
9877 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9878
9879         * .version: Bumped version number to 2.3.3
9880         * src/SDCCBBlock.c: new option -o
9881         * src/SDCCglobl.h: new option -o
9882         * src/SDCCglue.c: new option -o
9883         * src/SDCCmain.c: new option -o
9884         * src/asm.c: new option -o
9885         * src/ds390/main.c: new option -o
9886         * src/pic/glue.c: new option -o
9887         * src/pic/pcode.c: new option -o
9888         * src/pic/ralloc.c: new option -o
9889         * src/pic16/glue.c: new option -o
9890         * src/pic16/pcode.c: new option -o
9891         * src/pic16/ralloc.c: new option -o
9892         * src/z80/main.c: new option -o
9893         * device/lib/Makefile.in: use -o
9894         * support/regression/ports/ds390/spec.mk: use -o
9895         * support/regression/ports/gbz80/spec.mk: use -o
9896         * support/regression/ports/mcs51/spec.mk: use -o
9897         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
9898         * support/regression/ports/z80/spec.mk: use -o
9899         * support/regression/ports/ucz80/spec.mk: use -o
9900         * support/regression/ports/xa51/spec.mk: use -o
9901         * support/regression/fwk/lib/timeout.c: fix usage string
9902
9903 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
9904         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
9905
9906 2003-01-07    <johan AT balder>
9907
9908         * src/SDCCast.c (decorateType): fixed bug #600035
9909
9910 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
9911         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
9912         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
9913         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
9914         * src/pic/pcode.c: outcommented unused variable to remove warnings
9915         * src/pic/ralloc.c: outcommented unused variable to remove warnings
9916
9917 2003-01-06    <karl AT turbobit.com>
9918         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
9919    regression tests.
9920
9921 2003-01-06    <johan AT balder>
9922
9923         * src/SDCCicode.c: fixed array add
9924
9925 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
9926         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
9927         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
9928
9929 2003-01-04    <johan AT balder>
9930
9931         * src/SDCCval.c (getNelements): fixed the initialized array of structures
9932
9933 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9934         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
9935
9936 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9937         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
9938         * support/regression/tests/bug-524697.c: fit mem usage into 8032
9939
9940 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9941         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
9942
9943 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
9944         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
9945
9946 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
9947         * src/mcs51/main.c: removed {bindir}{sep} from aslink
9948
9949 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9950
9951     * in \sdcc\as\mcs51\ changed these files in order to create an
9952     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
9953     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
9954     following files to include the previous two files: aslink.dsp,
9955     Makefile.aslink, Makefile.bcc, and Makefile.in.
9956
9957     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
9958     .adb instead of .cdb
9959
9960 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9961
9962         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
9963         value from option --iram-size.
9964
9965 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9966
9967         * \sdcc\as\mcs51\lklist.c: added boundary check before using
9968         dram[] array.
9969
9970 2002-09-18    <wiml AT hhhh.org>
9971
9972         * SDCClrange.h: exposed setFromRange() and setToRange()
9973         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
9974           packRegsForAccUse() (bug 542397)
9975         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
9976           multiple times and emitting the fetch operations more than once
9977           added aopGetUsesAcc() function to allow binary operators to
9978           fetch their operands in the correct order; made genMinus() emit
9979           compact code for X = LITERAL - Y
9980
9981 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9982         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
9983         sprintf() in line 1267.
9984
9985 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9986         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
9987         like ports.
9988
9989 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9990         Changes to aslink (All the changes are marked with 'JCF'):
9991
9992         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
9993         summary().
9994
9995         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
9996         area BSEG.  Also moves, if possible, the DATA area down into the internal
9997         ram so more space is available.
9998
9999         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
10000         sflag.
10001
10002         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
10003         not bytes.  Function summary() which creates a memory usage summary
10004         file with extension .mem.  Reports of overlaping stack and small stack
10005         size.  If the space for the stack is less than 16 bytes aslink trows a
10006         warning.
10007
10008         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
10009         the 8051.  Option 'y' for memory summary output file.
10010
10011         Changes to sdcc (All the changes are marked with 'JCF'):
10012
10013         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
10014
10015         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
10016         overlaying area for it (uses RegBankUsed[4]).
10017
10018         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
10019         bank zero as used by default.  By default aslink locates the stack
10020         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
10021         the creation of the .mem file.  Delegates the allocation of data area
10022         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
10023         the begining of the stack area to aslink.
10024
10025         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
10026         glue() in SDCCglue.c creates an area for it.
10027
10028 2002-09-03  Borut Razem <borut.razem AT siol.net>
10029         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
10030         sdcc/src/pic/glue.c:
10031         introduced atexit() handler for teporay files removal in case of
10032         errors, assertions, ...
10033
10034 2002-08-29  Borut Razem <borut.razem AT siol.net>
10035         * sdcc/support/cpp2/auto-host_vc_in.h:
10036         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
10037         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
10038         Maybe there is a similar problem with BORLANDC? It should be checked!
10039
10040         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
10041         corrected improper use of assert: the assignment to clr variable was done inside the assert.
10042         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
10043         was not executed, and the compiler (cl) launched a warning:
10044         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
10045
10046 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
10047         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
10048
10049 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
10050         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
10051
10052         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10053           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
10054           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
10055           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10056           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
10057           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
10058           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
10059         - added Release configuration in VS projects
10060         - review of compiler an linker options
10061         - VC .exe files are generated in bin_vc directory, not to interfere
10062           with binaries generated from other projects (cygwin, mingw, bcc ...)
10063
10064         * sdcc/src/yacc.dsp: added
10065
10066         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
10067         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
10068         and insert the version number definitions from .version
10069
10070         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
10071
10072         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
10073         added - genarate auto-host.h using auto-host_vc_in.h as template
10074
10075         * sdcc/sdcc_vc.h,
10076         removed from CVS, generated automatically
10077
10078 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
10079         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
10080
10081 2002-08-11  Borut Razem <borut.razem AT siol.net>
10082         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
10083
10084 2002-08-10  Borut Razem <borut.razem AT siol.net>
10085         * src/SDCCmain.c (main):
10086         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
10087         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
10088         The consequence was that some temporary files were not removed.
10089
10090         * src/SDCCglue.c:
10091         unification of code in functions tempfilename() and tempfile():
10092         function tempnam() is defined in Visual Studio 6.0 and .NET
10093
10094         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
10095
10096         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10097           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
10098         - removed compiler command line option /WX: Treats all warnings as errors
10099         - update a list of source files, included into the project
10100
10101         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10102           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
10103         changed project type to Generic Project so that can be correcly converted to VS.NET project
10104
10105         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
10106
10107         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
10108
10109         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
10110
10111         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
10112         added return 0 statements after assert() to make compiler happy
10113
10114         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
10115         added newline in the def file to keep MSC compiler satisfied
10116
10117         * sdcc/src/z80/gen.c:
10118         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
10119           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
10120         - solved MSC error in function aopDump()
10121
10122         * sdcc_vc.h: define PREFIX as "\\sdcc"
10123
10124 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
10125         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
10126
10127 2002-06-22  Scott Dattalo <scott AT dattalo.com>
10128         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
10129         - Rewrote the register banking algorithm.
10130         - Added pCode live-range analysis to registers (for now, only non-used and
10131         singly-used registers optimized away)
10132
10133         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
10134
10135         * 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.
10136
10137 2002-05-10  Scott Dattalo <scott AT dattalo.com>
10138         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
10139
10140 2002-04-22  Michael Hope  <michaelh AT vroom>
10141
10142         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
10143
10144         * configure.in (DD_COPT): Added include support required for gbdk.
10145
10146         * .version: Bumped version number just to increase it.
10147
10148         * src/SDCCmain.c: Added -nostdinc to the default options.
10149
10150 2002-04-15  Michael Hope  <michaelh AT vroom>
10151
10152         * device/lib/z80/printf.c (sprintf): Added.
10153
10154         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
10155
10156         * src/z80/peeph.def: Added transpose redundent load rule.
10157
10158         * src/z80/main.c: Added force callee saves for jaune.
10159
10160         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
10161
10162         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
10163
10164 2002-03-28  Johan Knol  <johan AT balder>
10165
10166         * src/SDCCval.c: fixed bug #532436
10167
10168 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10169         * /src/port.h:
10170         Added "char *Processor" field to the port structure.
10171
10172         * /src/SDCCmain.c:
10173         Added -p option. Allows port dependent processor to be specified.
10174
10175         * all ports:
10176         Initialized the new field char *Processor field to NULL in all ports
10177
10178         * /src/pic/*:
10179         Compiler generated registers for interrupt context saving
10180         were not getting allocated.
10181
10182 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
10183
10184         * /src/SDCCast.c:
10185         Fixed left shift. Will promote the left side of a left shift
10186         if a) left shifting more than size of operand or b) when assigned
10187         to something size > size of left side
10188
10189 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10190         * src/pic/*
10191         tons of changes. Register allocation has been
10192         rewritten. Added customization for the various PICs. Flow
10193         analysis is restructured. ...
10194
10195         * src/pic/device.h:
10196         Added
10197
10198         * src/pic/device.c:
10199         Added. device.c is a PIC port hack to accomodate variations
10200         in PIC devices.
10201
10202 2002-03-13  Michael Hope  <michaelh AT vroom>
10203
10204         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
10205
10206 2002-03-04  johanknol  <johanknol AT manik>
10207
10208         * /src/SDCCval.c: fixed
10209
10210         const unsigned char arr[][2] = { { 0, 1 } };
10211         t18.c:1: error: Initializer element is not constant
10212
10213 2002-03-04  bela  <bela AT manik>
10214
10215         * /device/include/mcs51reg.h:
10216         ds89c420 register definition update
10217
10218 2002-03-03    <johan AT FRIJA>
10219
10220         * support/Util/SDCCerr.c: did something, but don't no why anymore
10221
10222         * support/regression/tests/bug-524691.c: made it a little less shy
10223
10224         * src/SDCCast.c (decorateType): fixed bug #524697
10225
10226         * src/SDCCast.c: made some lineno improvements
10227
10228         * src/SDCCval.c (getNelements): changed warning to error
10229
10230         * src/SDCCglue.c (printIvalArray): changed warning to error
10231
10232         * src/SDCCicode.c: fixed a warning for mingw
10233
10234         * src/SDCCast.c (decorateType): fixed the << promotion for ops
10235
10236         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
10237
10238 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
10239
10240         * src/ds390/peeph.def:
10241         Added some more peephole rules
10242
10243         * src/ds390/gen.c: Various fixes & enhancements
10244
10245         * src/SDCClrange.c, src/SDCClrange.h:
10246         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
10247
10248         * src/ds390/ralloc.c:
10249         various fixes & enhancements (ds390) specific
10250
10251         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
10252         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
10253         from rallocs.
10254
10255         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
10256
10257 2002-03-02    <johan AT FRIJA>
10258
10259         * src/SDCCast.c (decorateType): fixed bug #524708
10260
10261         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
10262
10263         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
10264
10265 2002-03-01  Michael Hope  <michaelh AT vroom>
10266
10267         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
10268
10269         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
10270
10271 2002-03-01    <johan AT FRIJA>
10272
10273         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
10274
10275         * src/SDCCast.c (decorateType): fixed bug #524209
10276
10277         * src/SDCCval.c (valNot): fixed bug #524195
10278
10279 2002-02-26    <johan AT balder>
10280
10281         * src/xa51/gen.c: fixed a warning
10282
10283         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
10284
10285         * src/SDCCast.c (decorateType): fixed bug #522534
10286
10287 2002-02-23    <johan AT balder>
10288
10289         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
10290
10291 2002-02-22    <johan AT balder>
10292
10293         * src/SDCCast.c: fixed bug #514865
10294
10295         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
10296
10297 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
10298
10299         * sdcc/src/SDCCloop.c:
10300         Previous fix was not good. basic blocks that have "break" or "return" are
10301         not really partof a loop , but live ranges used in these blocks should
10302         be live thru the entire loop, so set partOfLoop but don't add them to
10303         loop region
10304
10305 2002-02-21    <johan AT FRIJA>
10306
10307         * src/SDCCcse.c: fixed bug #514308
10308
10309 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
10310
10311         * src/SDCCloop.c:
10312         Fixed BUG #519583. If a conditional block ended in a return/break
10313         statement inside a loop, it was not being considered part of the loop.
10314
10315         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
10316
10317 2002-02-10  Karl Bongers <karl AT turbobit.com>
10318
10319         * debugger/*:
10320         Fixed up SDCDB debugger somewhat.  Updated debugger/README
10321         with lots of comments and notes.
10322
10323         * device/examples/test2.c:
10324         Fix bug, "red" variable not being initialized(compiler complained).
10325
10326         * device/examples/Makefile, examples/test3.c:
10327         Add Makefile in device/examples folder, compiles test3.c
10328         for use as a multiple module SDCDB test case.
10329
10330         * sim/ucsim/cmd.src/cmdset.cc:
10331         Took out debug printfs in ucsim "next" command.
10332
10333         * sim/ucsim/xa.src:
10334         Karl and Johan start ucsim XA support.  Most dissassembly working,
10335         about 75% emulation done(plenty of work remaining).
10336
10337         * sim/ucsim/z80.src:
10338         Add Z80 support to ucsim, add test-ucz80 regression test,
10339         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
10340         Notice z80 compiler fails on examples/test3.c/crc code.
10341
10342 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
10343
10344         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
10345         Added support for --parms-in-bank1
10346
10347         * src/ds390/peeph.def:
10348         added a few more peephole optimzations
10349
10350         * src/ds390/main.c:
10351         1) added __builtin_inp & __builtin_outp used to read in data of given length
10352            from a memory mapped port
10353         2) added __builtin_memcmp
10354         3) added __builtin_swapw swap bytes of a short
10355
10356         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
10357         1) handle multiple send & receives from register bank1
10358         2) ralloc can now allocate DPTR1 to some liveRanges
10359
10360         * src/SDCCsymt.c, src/SDCCsymt.h:
10361         changes to handle multiple sends & receives
10362
10363         * src/SDCCptropt.h:
10364         added some pointer arithmetic optimization
10365
10366         * src/SDCCptropt.c:
10367         added some pointer arithmetic optimizations but not stable yet so not
10368         called from anywhere (will get this working shortly)
10369
10370         * src/SDCCopt.c: fixed for multiple sends & receives
10371
10372         * src/SDCCmain.c:
10373         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
10374         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
10375            set preprocessor defines (depending on options)
10376
10377         * src/SDCCicode.c, src/SDCCicode.h:
10378         changes made to handle multiple sends & receives
10379
10380         * src/SDCCglobl.h:
10381         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
10382
10383         * src/SDCCcse.c, src/SDCCcse.h:
10384         added function findbackward def (to be used in upcoming optimization)
10385
10386         * src/SDCCcflow.c, src/SDCCcflow.h:
10387         added function returnAtEnd - to determine if a basic block terminates with
10388         a RETURN iCode
10389
10390         * src/SDCCast.c, src/SDCCast.h:
10391         added option parms-in-bank1
10392
10393         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
10394         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
10395         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
10396         adjusted for --parms-in-bank1 option
10397
10398         * device/include/string.h:
10399         donot redefine "reentrant" keyword
10400
10401         * device/include/ds80c390.h: Added some more SFRs
10402
10403 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
10404
10405         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
10406
10407 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
10408
10409         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
10410
10411 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
10412
10413         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
10414
10415 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
10416
10417         * Added --xram-movc option
10418
10419 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
10420
10421         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
10422
10423 2002-01-11  Johan Knol
10424
10425         * Added math lib of Jesus Calvino-Fraga
10426
10427 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
10428
10429         * src/SDCCmain.c (processFile): fix processing of ../../src.c
10430         * support/regression/Makefile: new target test-mcs51-stack-auto
10431         * support/regression/ports/mcs51-stack-auto/spec.mk: added
10432
10433 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10434
10435         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
10436
10437 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10438
10439         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
10440
10441 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
10442
10443         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
10444
10445         * src/SDCCglue.h: add definition for printIvalChar()
10446
10447 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10448
10449         * src/SDCCast.c: fix #498138 by Johan
10450
10451         * src/SDCCglue.c: fix #498138 by Johan
10452
10453 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10454
10455         * support/regression/Makefile: fix clean
10456
10457         * support/regression/ports/ds390/support.c: fix transmission of last character
10458
10459 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
10460
10461         * /sdcc/src/ds390/gen.c:
10462         a) improved computing address of stack variable
10463         b) took out some #if 0 code
10464         c) improved parmBytes adjustment
10465         d) improved genPlusIncr & genMinusIncr
10466         e) genCmp could generate bad code (when left assigned to DPTR)
10467         f) Fixed bug in hasInc
10468
10469         * /sdcc/src/ds390/ralloc.c:
10470         a) packRegsForSupport could mess up live information (Fixed)
10471         b) packRegsDPTRuse could be incorrect for left & right shift
10472
10473         * /sdcc/src/mcs51/ralloc.c:
10474         packRegsForSupport could mess up the live information (Fixed)
10475
10476         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
10477
10478         * /sdcc/src/SDCCast.c:
10479         can reverse a loop even if function call is present as long
10480         as the loop control variable is local & is not passed as parameter
10481
10482 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10483
10484         * /sdcc/ChangeLog: *** empty log message ***
10485
10486         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
10487         More builtin function additions for TININative
10488
10489         * /sdcc/src/ds390/ralloc.c:
10490         Had broken the regression testsuite
10491
10492         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
10493
10494         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
10495         Added funcattr hasStackParms will be set for reentrant functions when there
10496         are paramteres on the stack, this helps in minimizing frame pointer generation
10497         typeFromStr can handle function pointers now
10498
10499         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
10500         *** empty log message ***
10501
10502 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10503
10504         * /src/ds390/gen.c, /src/ds390/main.c:
10505         More builtin function additions for TININative
10506
10507         * /src/ds390/ralloc.c:
10508         Had broken the regression testsuite
10509
10510         * /src/SDCCast.c: Fixed a bug in dumptree
10511
10512         * /src/SDCCsymt.c, /src/SDCCsymt.h:
10513         Added funcattr hasStackParms will be set for reentrant functions when there
10514         are paramteres on the stack, this helps in minimizing frame pointer generation
10515         typeFromStr can handle function pointers now
10516
10517         * /doc/builtins.txt, /doc/TININative.txt:
10518         *** empty log message ***
10519
10520
10521 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10522
10523         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
10524         ALPHA version for -mTININative
10525
10526         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
10527         updated to reflect changes in the port structure
10528
10529         * /src/port.h:
10530         added function do_assemble (similar to do_link) if non-null this function
10531         will be called to do assembly (-mTININative) requires a multi command
10532         assembly
10533         added function genAssemblerEnd will be called to generate assembler Epilogue
10534
10535         * /src/SDCCsymt.c:
10536         added _JavaNative to debug info printing
10537
10538         * /src/SDCCmain.c: added option --tini-libid
10539         added port->do_assemble function (-mTININative) has a multi command assemble
10540
10541         * /src/SDCCglue.c: Disabled "constExpr" check
10542         added port->genAssemblerEnd function
10543
10544         * /src/SDCCglobl.h: Added option --tini-libid value
10545
10546         * /src/SDCCast.h:
10547         tookout optimizeCompare from the header (has no external references)
10548
10549         * /src/SDCCast.c: made one more function "static"
10550
10551 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
10552
10553         * src/z80/mappings.i: Added z80asm support.
10554
10555         * src/z80/main.c: Added z80asm support on --asm=z80asm
10556
10557         * src/z80/gen.c: Fixed asm portability issues.
10558
10559         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
10560
10561         * src/SDCCglue.c (printExterns): Added global/extern split.
10562
10563 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
10564
10565         * support/regression/Makefile: added test for mcs51 model large
10566
10567         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
10568
10569         * support/regression/ports/gbz80/spec.mk: added -mgbz80
10570
10571 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
10572
10573         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
10574
10575 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
10576
10577         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
10578
10579         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
10580
10581 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
10582
10583         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
10584
10585         * support/regression/tests/simplefloat.c: Port to mcs51.
10586
10587 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
10588         * support/regression/tests/bug-485362.c: Added.
10589
10590         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
10591
10592         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
10593
10594         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
10595
10596         * src/z80/gen.c (aopDump): Added a dump function.
10597
10598 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
10599         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
10600
10601         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
10602
10603         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
10604
10605         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
10606
10607         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
10608
10609         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
10610
10611         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
10612
10613         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
10614
10615         * support/regression/ports/ds390/support.c: Use tinibios.
10616
10617         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
10618
10619 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
10620
10621         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
10622         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
10623
10624         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
10625
10626         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
10627
10628 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
10629
10630         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
10631
10632         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
10633         (packRegsForIYUse): Created and optimised.
10634
10635 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10636
10637         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
10638 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
10639
10640         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
10641
10642         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
10643
10644         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
10645
10646 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10647
10648         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
10649
10650         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
10651
10652 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10653
10654         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
10655
10656         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
10657
10658         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
10659
10660 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10661
10662         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
10663         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
10664         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
10665
10666         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
10667
10668         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
10669         (genNotFloat): Added.
10670         (genUminusFloat): Added.
10671
10672         * device/lib/z80/Makefile: Added floating pt stubs.
10673
10674         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
10675
10676         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
10677
10678         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
10679
10680 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10681
10682         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
10683
10684         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
10685
10686         * sdcc/support/regression/Makefile: Add port ds390.
10687
10688         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
10689
10690         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
10691
10692         * sdcc/support/regression/ports/ds390/spec.mk: Added.
10693
10694         * sdcc/support/regression/ports/ds390/support.c: Added.
10695
10696         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
10697
10698         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
10699
10700         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
10701
10702 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
10703
10704         * device/include/malloc.h: Added z80 and gbz80 support.
10705
10706         * device/lib/gbz80/heap.s: Added.
10707
10708         * device/lib/z80/heap.s: Added.
10709
10710         * device/lib/malloc.c: Added z80 and gbz80 support.
10711
10712         * support/regression/tests/malloc.c (testMalloc): Added.
10713
10714         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
10715
10716         * support/regression/tests/bug-478094.c: Added.
10717
10718         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
10719
10720 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
10721
10722         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
10723
10724         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
10725
10726         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
10727
10728         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
10729
10730         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
10731
10732 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
10733
10734         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
10735
10736 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
10737
10738         * support/regression/tests/bug-477927.c: Added.
10739
10740         * src/z80/peeph.def: Added minor rules.
10741
10742         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
10743
10744         * src/z80/peeph.def: Added jump optimisation modification.
10745
10746 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
10747
10748         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
10749
10750 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
10751
10752         * support/regression/tests/funptrs.c: Added.
10753
10754 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
10755
10756         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
10757
10758 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
10759
10760         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
10761
10762         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
10763
10764         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
10765         (movLeft2ResultLong): Created.
10766
10767         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
10768         (joinPushes): Added.  Joins two char pushes into a word push.
10769
10770 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
10771
10772         * support/cpp2/Makefile.in (install): Added creation of dest dir.
10773
10774         * support/makebin/Makefile (install): Added creation of dest dir.
10775
10776 2001-10-24 Karl Bongers <karl AT turbobit.com>
10777
10778         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
10779
10780 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
10781
10782         * src/z80/ralloc.c: Turned off faulty pack for one use.
10783
10784         * src/z80/peeph-gbz80.def: Removed redundent restart options.
10785
10786         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
10787
10788 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
10789
10790         * support/regression/Makefile: Improved clean
10791
10792         * support/regression/ports/gbz80/spec.mk: Added clean
10793
10794         * support/regression/ports/host/spec.mk: Added clean
10795
10796         * support/regression/ports/z80/spec.mk: Added clean
10797
10798         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
10799
10800         * support/regression/ports/mcs51/timeout.c: little improvements
10801
10802 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
10803
10804         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
10805
10806         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
10807
10808         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
10809
10810 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
10811
10812         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
10813
10814         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
10815
10816 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
10817         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
10818
10819         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
10820
10821         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
10822
10823         * src/mcs51/main.c (_linkCmd): Added bin path to command.
10824
10825         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
10826
10827         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
10828
10829         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
10830
10831         * support/regression/tests/longor.c: Added.
10832
10833 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
10834
10835         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
10836
10837         * as/mcs51/aslink.h: define PATH_MAX
10838
10839         * as/mcs51/asm.h: define PATH_MAX
10840
10841         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
10842
10843         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
10844
10845         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
10846
10847         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
10848
10849         * src/SDCCglobl.h: define PATH_MAX
10850
10851         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
10852
10853         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
10854
10855 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
10856
10857         * src/z80/gen.c (gencjneshort): Fixed
10858
10859         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
10860
10861 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
10862
10863         * support/regression/tests/bug-469671.c: Added.
10864
10865         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
10866
10867 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
10868
10869         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
10870
10871         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
10872
10873 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
10874
10875         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
10876
10877         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
10878
10879         * src/device/lib/_mullong.c : removed hint: nooverlay bug
10880
10881         * src/device/lib/_divuint.c : removed hint: nooverlay bug
10882
10883         * src/device/lib/_divulong.c: removed hint: nooverlay bug
10884
10885         * src/device/lib/_moduint.c : removed hint: nooverlay bug
10886
10887         * src/device/lib/_modulong.c: removed hint: nooverlay bug
10888
10889 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
10890
10891         * 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.
10892
10893         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
10894
10895         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
10896
10897 2001-10-07    <johan AT FRIJA>
10898
10899         * device/lib/gets.c (gets): fixed the return value.
10900
10901 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
10902         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
10903
10904         * 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.
10905
10906         * 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.
10907
10908         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
10909
10910         * src/pic/gen.c: Removed Safe_strdup.
10911
10912         * configure.in: Added option to enable libgc support.
10913
10914         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
10915         (bitVectUnion): Optimised.
10916         (bitVectIntersect): Optimised.
10917         (bitVectBitsInCommon): Optimised.
10918         (bitVectCplAnd): Optimised.
10919
10920         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
10921
10922 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10923
10924         * src/SDCCmain.c: distinguish between assembler debug and plain options
10925
10926         * src/avr/main.c:   remove standard assembler options
10927
10928         * src/ds390/main.c: remove standard assembler options
10929
10930         * src/mcs51/main.c: remove standard assembler options
10931
10932         * src/port.h: removed "PENDING" comment
10933
10934 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10935
10936         * src/device/lib/_mulint.c  : new, with assember functions
10937
10938         * src/device/lib/_mullong.c : new, with assember functions
10939
10940         * src/device/lib/_divuint.c : with assember functions
10941
10942         * src/device/lib/_divsint.c : with assember functions
10943
10944         * src/device/lib/_divulong.c: with assember functions
10945
10946         * src/device/lib/_divslong.c: with assember functions
10947
10948         * src/device/lib/_moduint.c : with assember functions
10949
10950         * src/device/lib/_modsint.c : with assember functions
10951
10952         * src/device/lib/_modulong.c: with assember functions
10953
10954         * src/device/lib/_modslong.c: with assember functions
10955
10956         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
10957
10958         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
10959
10960         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
10961                                       replaced _mululong.c and _mulslong.c by _mullong.c
10962
10963 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10964
10965         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
10966
10967 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10968
10969         * src/SDCCglue.c: test, if win32api is available for MINGW
10970
10971 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10972
10973         * src/SDCCsymt.c: no more _modifier in printTypeChain()
10974         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
10975         * support/regression/ports/gbz80/spec.mk: removed GENERIC
10976         * support/regression/ports/host/spec.mk: removed GENERIC
10977         * support/regression/ports/mcs51/spec.mk: removed GENERIC
10978         * support/regression/ports/z80/spec.mk: removed GENERIC
10979
10980 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
10981
10982         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
10983
10984         * support/regression/tests/bug-467035.c: Created.
10985
10986 2001-10-01    <johan AT FRIJA>
10987
10988         * src/SDCC.y: fixed bug #466586 part 1
10989
10990 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
10991
10992         * SDCCicode.c: z80 has no generic pointers
10993         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
10994
10995 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
10996
10997         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
10998
10999 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
11000
11001         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
11002
11003         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
11004
11005 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
11006
11007         * configure.in: Fixed up so that ucsim is only configured once.
11008
11009         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
11010
11011         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
11012         (getPathDifference): As above.
11013
11014         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
11015
11016         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
11017
11018 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
11019         * .version: Updated to 2.3.1
11020
11021         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
11022         Added copyright header.
11023
11024         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
11025         (assemble): Added support for macro based assembler commands.
11026         (linkEdit): Added support for macro based linker commands.
11027         (preProcess): Changed the pre-processor to use macros.
11028         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
11029         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
11030
11031         * device/lib/z80/crt0.s: Added module name for debugging.
11032
11033 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
11034
11035         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11036
11037         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
11038
11039         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
11040
11041         * src/Makefile.in: Added SDCCmacro and SDCCutil
11042
11043 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
11044
11045         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11046
11047 2001-09-16    <johan AT FRIJA>
11048
11049         * 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.
11050
11051 2001-09-15    <johan AT FRIJA>
11052
11053         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
11054         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
11055
11056 2001-09-11    <johan AT FRIJA>
11057
11058         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
11059
11060 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
11061
11062         * support/regression/tests/bug-460444.c: Added test case.
11063
11064         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
11065         (genCast): Added justification for all of the asserts.
11066
11067 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
11068
11069         * support/regression/support.c: _xdata replaced by xdata
11070
11071         * support/regression/spec.mk: removed _generic
11072
11073 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
11074
11075         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
11076
11077         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
11078         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
11079
11080         * src/z80/peeph.def: Added a rule to optimise shift then compare.
11081
11082         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
11083
11084         * support/regression/tests/bug-460010.c: Added test case.
11085
11086         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
11087
11088 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
11089
11090         * support/regression/Makefile: inter-port-clean adjusted for mcs51
11091
11092         * support/regression/testfwk.c: removed workaround for bug #436344
11093
11094         * support/regression/tests/bp.c: use less memory with mcs51
11095
11096         * support/regression/tests/bug-441448.c: use less memory
11097
11098         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
11099
11100         * support/regression/collate-results.py: typo
11101
11102 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
11103
11104         * support/regression/tests/fetchoverlap.c: Added new test case.
11105
11106         * support/regression/tests/bp.c: Added new test case.
11107
11108         * support/regression/tests/bug-448984.c: Added new test case.
11109
11110         * support/regression/tests/pow2shifts.c: Added new test case.
11111
11112         * src/z80/gen.c: Turned off the noise it normally generates for the release.
11113         (genlshTwo): Fixed right shift for count > 8.
11114
11115         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
11116
11117 2001-09-08    <johan AT FRIJA>
11118
11119         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
11120
11121 2001-09-07    <johan AT FRIJA>
11122
11123         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
11124
11125         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
11126
11127 2001-09-06    <johan AT FRIJA>
11128
11129         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
11130         * bernhard noted me at this: "() equals to (void)" (1.38)
11131
11132 2001-09-05    <johan AT FRIJA>
11133
11134         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
11135
11136 2001-09-04    <johan AT FRIJA>
11137
11138         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
11139
11140
11141 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
11142
11143         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
11144
11145 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
11146
11147         * link/z80/aslink.h: Fixed path for PATH_MAX
11148
11149 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
11150
11151         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
11152
11153         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
11154
11155         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
11156
11157         * 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.
11158
11159 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
11160
11161         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
11162         (genCmp): Fixed up genCmp for the GB with longs.
11163
11164         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
11165
11166         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
11167
11168         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
11169
11170         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
11171
11172 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
11173
11174         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
11175
11176 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
11177
11178         * 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.
11179
11180         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
11181
11182 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
11183
11184         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
11185
11186         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
11187
11188 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
11189
11190   * sim/ucsim/configure:    little improvement of Cygwin-detection
11191   * sim/ucsim/configure.in: little improvement of Cygwin-detection
11192   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
11193   * support/regression/tests/bug-221100.c: small changes for mcs51
11194   * support/regression/tests/bug-221168.c: small changes for mcs51
11195   * support/regression/tests/bug-227710.c: small changes for mcs51
11196   * support/regression/tests/staticinit.c: small changes for mcs51
11197   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
11198   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11199   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11200
11201 $Revision$