* device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
[fw/sdcc] / ChangeLog
1 2005-10-04 Raphael Neider <rneider AT web.de>
2
3         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
4           device/lib/pic16/pics.all: added pic18f1320
5         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
6
7 2005-09-30 Raphael Neider <rneider AT web.de>
8
9         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
10         * src/pic16/devices.inc: NEW, provides device descriptions
11         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
12
13 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
14
15         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
16           GETHBIT
17
18 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
19
20         * doc/sdccman.lyx: updated Highest Order Bit documentation,
21           documented Any Order Bit, Higher Order Byte and Higher Order Word
22         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
23         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
24           (optimizeGetAbit): new, to get any bit, not only the high bit,
25           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
26           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
27           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
28           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
29             RIGHT_OP: also try GETBYTE, GETWORD optimization,
30             GETABIT, GETBYTE, GETWORD: decorate them,
31           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
32           (ast_print): added GETABIT, GETBYTE, GETWORD
33         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
34         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
35           (geniCodeBinary): new generic binary icode,
36           (ast2iCode): added GETABIT, GETBYTE, GETWORD
37         * src/port.h: updated comment for PORT.hasExtBitOp
38         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
39           (genGetByte): new, to get a single byte,
40           (genGetWord): new, to get a word from a long,
41           (gen51Code): added GETABIT, GETBYTE, GETWORD
42         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
43
44 2005-09-23 Raphael Neider <rneider AT web.de>
45
46         * configure.in, configure: have device/lib/pic configured
47         * device/lib/Makefile.in: added model-pic14
48         * device/lib/clean.mk: added pic/ to clean rule
49         * device/lib/pic: added rudimentary pic14 library providing support
50           functions for multiplication/division/generic pointer access
51         * src/SDCCopt.c (convilong): mark support functions as extern
52           for pic14 port as well
53         * src/pic/gen.c (genMult): added assertions,
54           (genpic14Code): emit warning on unhandled iCodes
55         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
56         * src/pic/pcode.c (pCodeOpCopy),
57         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
58           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
59           SFR_REGISTER}), made safe for future extensions
60         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
61           instructions even if preceeded by SKIP instructions (also remove
62           them); removed unused code
63         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
64           prevents leaving parts of the structure uninitialized after copying
65
66 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
67
68         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
69           ago by me
70         * support/regression/tests/addsub.c: added test for the bug
71
72 2005-09-21 Raphael Neider <rneider AT web.de>
73
74         * device/include/pic16/pic18f1220.h,
75           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
76         * device/lib/pic16/Makefile.rules: added missing opening paren
77         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
78           are provided in genutils.c,
79           (genUminusFloat,genUminus,genCmpEq): added asserts on different
80           operand/result sizes,
81           (genCmp): assert on NULL pointers first, then check deref'ed values
82         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
83           result size
84
85 2005-09-18 Raphael Neider <rneider AT web.de>
86
87         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
88           as these are now unused,
89           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
90         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
91           local, avoids uninitialized pointer dereference on r->name
92         * src/pic16/ralloc.c (newReg): fixed indentation
93
94 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
95
96         * src/SDCCval.c (constVal): fixed bug 730366
97         * support/Util/SDCCerr.c,
98         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
99
100 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
101
102         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
103
104 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
105
106         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
107
108 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
109
110         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
111           (hex2dec): made hex_digit unsigned char, removed ascii dependance
112         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
113           (hex2dec): made hex_digit unsigned char, removed ascii dependance
114         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
115         * packihx/packihx.c (hexDigit): made c unsigned char
116         * as/mcs51/lklibr.c (fndsym),
117         * link/z80/lkgb.c (gb),
118         * link/z80/lklibr.c (fndsym),
119         * link/z80/lkrloc.c (relr),
120         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
121         * src/SDCC.lex (checkCurrFile, process_pragma),
122         * src/SDCCglue.c (spacesToUnderscores),
123         * src/SDCCmain.c (setParseWithComma, processFile),
124         * src/asm.c (tvsprintf, printCLine),
125         * src/avr/gen.c (emitcode, aopPut),
126         * src/ds390/gen.c (emitcode),
127         * src/hc08/gen.c (emitcode, emitinline),
128         * src/mcs51/gen.c (emitcode, genInline),
129         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
130           tokenizeLineNode),
131         * src/pic/ralloc.c (debugLog),
132         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
133           tokenizeLineNode),
134         * src/pic16/ralloc.c (debugLog),
135         * src/z80/main.c (_process_pragma):
136            made all ctype.h function calls safe
137         * src/SDCCopt.c: include math.h for fabs
138         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
139           and used them throughout the code to make ctype.h function calls safe
140         * src/ds390/main.c (asmLineNodeFromLineNode),
141         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
142         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
143            unsigned char*
144         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
145           (newpCodeAsmDir): made ctype.h function calls safe
146         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
147           pic16_emitcode):  made lbp unsigned char*
148         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
149           (pic16_newpCodeAsmDir): made ctype.h function calls safe
150         * src/xa51/gen.c (emitcode),
151         * src/z80/gen.c (_emit2): made lbp unsigned char*
152         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
153            char*
154
155 2005-09-05 Raphael Neider <rneider AT web.de>
156
157         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
158           access bank splitpoint
159
160 2005-09-05 Raphael Neider <rneider AT web.de>
161
162         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
163
164 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
165
166         * .version: changed to version 2.5.3
167         * doc/sdccman.lyx: changed version to 2.5.3,
168           documented --codeseg and --constseg and pragma codeseg and constseg,
169           documented bit parameters (reentrant) and bit returning
170         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
171            currFunc->recvSize, but is this ok for all ports?
172           (ast2iCode): result of ~ on unsigned char must be cast to int for
173            bool to work
174         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
175           function pointers in bit space
176         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
177           (processFuncArgs): call port.reg_parm() with reentrancy info
178         * src/port.h,
179         * src/avr/main.c,
180         * src/ds390/main.c,
181         * src/hc08/main.c,
182         * src/pic/main.c,
183         * src/pic16/main.c,
184         * src/xa51/main.c,
185         * src/z80/main.c: port.reg_parm prototype extended with
186           "bool reentrant" parameter
187         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
188           options.stackAuto for allocating bit register parameters
189         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
190           (genSend): set BitBankUsed if it is,
191           (selectRegBank): factored out of genCall for use in genPcall,
192           (genCall): removed redundant dtype assignmen, use selectRegBank,
193           (genPcall): handle returning in Carry properly, save in F0 if needed,
194           (genReceive): handle bit register parameters
195         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
196           (mcs51_assignRegisters): enable bit registers for all reentrant
197            functions and don't set BitBankUsed unconditionally
198         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
199         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
200         * support/regression/tests/funptrs.c: added tests for BOOL and for return
201
202 2005-08-27 Borut Razem <borut.razem AT siol.net>
203
204         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
205         ppc-osx (Darwin) does not support -u option. It seems that it is
206         supported only on Linux - GNU cp
207
208 2005-08-25 Borut Razem <borut.razem AT siol.net>
209
210         * sim/ucsim/gui.src/serio.src/Makefile.in,
211           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
212           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
213           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
214           install and strip, since the strip at /usr/ccs/bin should be used
215           on solaris
216
217 2005-08-24 Borut Razem <borut.razem AT siol.net>
218
219         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
220
221 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
222
223         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
224         ffffffffu
225
226 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
227
228         * as/mcs51/aslink.h: completed lkrloc.c prototypes
229         * as/mcs51/lkmain.c (link_main): fixed warning
230         * device/include/stdbool.h: ds390 has no advanced bit support yet
231         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
232         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
233         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
234           and updated their macros
235         * src/SDCCval.c (constVal): updated comment for renamed b_long
236
237 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
238
239         * as/mcs51/asdata.c: changed ctype['['] to BINOP
240         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
241           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
242           (oprio): set priority for '['
243         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
244            and adb_24_bit
245         * as/mcs51/asm.h: added defines R_BIT and S_BIT
246         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
247         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
248         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
249           added overlayable BIT_BANK area
250         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
251           (summary2): explain 'T' in legenda
252         * as/mcs51/lkrloc.c: replaced old K&R style,
253           (relr): added R_BIT processing,
254           (errmsg): added "Bit-addressable relocation error",
255           (adb_bit): added for converting from byte- to bit-addressable space,
256           (adb_24_bit): added for converting from byte- to bit-addressable space
257         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
258            used in reentrant functions now even as return value
259         * device/lib/_gptrput.c (_gptrput): removed obsolete code
260         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
261           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
262         * src/SDCCglobl.h: added indicator BitBankUsed
263         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
264            the bit registers b0-b7
265         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
266           (geniCodeCast): fixed bug 1263853,
267           (geniCodeLogicAndOr): put result in bool or char,
268           (geniCodeReceive): added parameter func for accessing the return type,
269           (geniCodeFunctionBody): pass func to geniCodeReceive
270         * src/SDCCmain.c: added indicator BitBankUsed
271         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
272         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
273           (checkSClass): don't put automatic bool/bit on stack,
274           (checkFunction): removed check on function cannot return bit
275         * src/SDCCsymt.h: added newBoolLink prototype
276         * src/mcs51/gen.c (rb1regs): added bit registers,
277           (movc): created for assigning to carry,
278           (pushReg, popReg): created for pushing registers,
279           (sameRegs): check both AOP_REG and AOP_CRY types,
280           (aopOp): handle bit registers,
281           (aopPut): optimization no self-assign,
282           (saveRegisters): push reg->base (bits) only once for bit registers,
283            and use pushReg,
284           (unsaveRegisters): pop reg->base only once and use popReg,
285           (assignResultValue): added parameter func and return in carry for bits,
286           (genIpush): optimization no reload in A if not changed,
287           (genSend): bit parameters in reentrant functions are passed in bit
288            registers by first assigning to bits in B, then save registers and
289            copy B to bits,
290           (genCall): handle returning in Carry properly, save it in F0 if needed,
291           (genPcall): updated assignResultValue call, this is not safe yet for bit
292            returning function !!!
293           (genFunction): don't generate equ's for bit registers and use pushReg,
294           (genEndFunction): take care of bit returning functions and use popReg,
295           (genRet): return bit in Carry,
296           (genIfx): optimize bit registers and other directly addressable bits,
297           (genReceive): updated assignResultValue call
298         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
299           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
300            registers when using stack-auto
301         * src/mcs51/ralloc.c (_G): added allBitregs,
302           (regs8051): added the bit registers,
303           (createStackSpil): use macro IS_BIT,
304           (getRegBit): added to allocate a bit register, else spill,
305           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
306           (updateRegUsage): factored out to ease stepping while debugging,
307           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
308            also allocate bit registers,
309           (fillGaps): handle bit registers,
310           (findAllBitregs): added to create bit vector with all bit registers,
311           (mcs51_allBitregs): returns this bit vector,
312           (mcs51_assignRegisters): when using stack-auto use bit registers for
313            passing parameters and creating local variables
314         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
315
316 2005-08-22 Borut Razem <borut.razem AT siol.net>
317
318         * device/lib/Makefile.in: replaced find option -or with -o
319           to make it run on solaris
320
321 2005-08-22 Raphael Neider <rneider AT web.de>
322
323         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
324           fixes #1265442 (crash on Solaris)
325
326 2005-08-20 Borut Razem <borut.razem AT siol.net>
327
328         * configure, configure.in: added tests for libsocket and libnsl libraries,
329           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
330           from support/regression/Makefile.in
331         * support/regression/Makefile.in: added
332         * device/lib/pic16/Makefile.common.in: force make to use bash shell
333         * sim/ucsim/libtool: regenerated on sparc-solaris
334         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
335           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
336           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
337           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
338           sparc-solaris, which doesn't use GNU ld linker
339         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
340         * as/Makefile: find on sparc-solaris does not support -maxdepth option
341
342 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
343
344         * src/mcs51/peeph.def: updated comments
345
346 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
347
348         * device/lib/_gptrget.c,
349         * device/lib/_gptrput.c: slightly shorter
350         * doc/sdccman.lyx: incremented version
351         * src/mcs51/peeph.def: moved peephole comments to the line of first
352           change to better keep line correlation, reanimated 186.e
353         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
354
355 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
356
357         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
358           David Saxton with quotes around file name.
359
360 2005-08-15 Borut Razem <borut.razem AT siol.net>
361
362         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
363           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
364           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
365           make tests run on x86_64 platform
366
367 2005-08-13 Raphael Neider <rneider AT web.de>
368
369         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
370           as it might be executed DURING a build (parallel make is wonderful)
371
372 2005-08-13 Raphael Neider <rneider AT web.de>
373
374         * device/lib/Makefile.in (port-specific-objects-pic16):
375           revert to cp $(PORT)/bin/*.* $(PORTDIR)
376         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
377           dependency
378         * device/lib/pic16/Makefile.rules: build subdirs before creating
379           the library, removed builddir rule, create $(builddir) early in
380           recurse rule, use empty recurse rule for leaf directories
381         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
382           mkdir errors (race condition), removed duplicate suffix "hex"
383           from clean rules
384         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
385         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
386           prevents mkdir -p from aborting on Alpha
387
388 2005-08-12 Raphael Neider <rneider AT web.de>
389
390         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
391           db-statements in order to allow for arrays of pointers in code
392           sections to be placed without interspersed 0-padding, fixes
393           bug #1256215
394         * (emitStatistics): fixed division by zero for pic18f1220
395         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
396           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
397         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
398         * (pic16_pCodeConstString): keep track of already emitted string
399           literals to prevent "duplicate definitions of symbol _str_NR"
400         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
401           debug message
402         * device/lib/Makefile.in: ignore failing PIC16 library builds
403         * device/lib/pic16/Makefile: do not build if gputils are missing
404         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
405
406 2005-08-10 Raphael Neider <rneider AT web.de>
407
408         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
409           my last commit)
410
411 2005-08-10 Raphael Neider <rneider AT web.de>
412
413         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
414           Rokas' patch to add the new fixed point type "__fixed16x16"
415         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
416           functions for __fixed16x16 arithmetics
417         * device/lib/pic16: reimplemented the build system to support
418           a separate build directory, better handling of libio (create
419           the library in a separate subdir for each architecture) and
420           easier configuration (centralized in Makefile.common)
421
422 2005-08-07 Raphael Neider <rneider AT web.de>
423
424         * src/pic16/gen.c (genrshTwo): fixed sign extension
425         * src/pic16/device.c: added pic18f2320, 4220 and 4320
426         * device/include/pic16/pic18f2220.h: changed some bit definitions,
427           added T0CONbits
428         * device/include/pic16/pic18f4220.h: NEW, header for
429           pic18f4220 and pic18f4320
430         * device/include/pic16/pic18fregs.h: added new devices,
431           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
432         * device/include/pic16/signal.h: resolved name clashes
433           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
434           to also allow testing for interrupt enable bits, added
435           comments on how to use the macros
436         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
437         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
438           register definitions for the devices
439         * device/lib/pic16/pics.all: added new devices
440         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
441           allocated memory
442         * device/lib/pic16/libc/stdlib/memfree: do not count
443           the block header as free memory
444         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
445           simplified and added missing end-of-blocklist-marker
446           (reported by Peter Onion, fixes #1252814)
447         * (_mergeHeapBlock): fixed loop condition
448         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
449           len==0, restructured code
450         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
451           up a bit, reduced bitfield accesses, prevent endless loops
452           in case of heap corruption
453         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
454           "unreferenced arguments/must return a value" warnings
455         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
456           replaced BAUDREG with SPBRG
457         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
458           device/lib/pic16/debug/gstack/gstack.c: replaced
459           _naked, _asm, _endasm with __naked, __asm, __endasm
460
461 2005-08-05 Raphael Neider <rneider AT web.de>
462
463         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
464           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
465
466 2005-08-05 Borut Razem <borut.razem AT siol.net>
467
468         * device/lib/Makefile.in: added missing ';'
469         * configure: removed ^M characters
470
471 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
472
473         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
474           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
475           License
476
477 2005-08-04 Borut Razem <borut.razem AT siol.net>
478
479         * configure.in: pic16 libraries build 2nd try - enable running
480           configure in device/lib/pic16
481         * configure: regenerated from configure.in
482         * device/lib/Makefile.in: create $(PORT)/bin directory
483
484 2005-08-03 Raphael Neider <rneider AT web.de>
485
486         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
487           to get/set values via pointers
488         * (genUnpackBits,genPackBits): changed detection of
489           ptr->bitfield vs. sym.bitfield, fixed access via generic
490           pointers, removed dead (wrong) code for multibyte bitfields
491         * (genNearPointerGet, genGenPointerGet): removed useless code,
492           fixed bitfield detection, fixes #1250594
493         * (genNearPointerSet): removed useless code
494         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
495           and introduced macro pic16_emitpcode that conditionally emits
496           the origin of the following pCode (useful for debugging SDCC)
497         * src/pic16/pcode.c: changed (and disabled) some debug outputs
498         * (createDefmap): fixed handling of LFSR for --optimize-df
499
500 2005-08-02 Borut Razem <borut.razem AT siol.net>
501
502         * device/lib/Makefile.in: pic16 libraries build enabled since
503           gputils-0.13.2 are now localy installed at sourceforge's compile farm
504
505 2005-08-02 Raphael Neider <rneider AT web.de>
506
507         * src/pic16/gen.c (genPackBits): removed deprecated warning
508         * (genGenPointerSet): fixed bitfield detection
509
510 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
511
512         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
513
514 2005-07-31 Raphael Neider <rneider AT web.de>
515
516         * device/lib/pic16/libdev/pic18f458.c,
517           device/include/pic16/pic18f458.h: added missing T0CONbits
518
519 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
520
521         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
522
523 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
524
525         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
526
527 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
528
529         * device/include/mcs51/at89c51ed2.h: added.
530
531 2005-07-23 Raphael Neider <rneider AT web.de>
532
533         * src/pic/gen.h: added emitpcode macro for debugging
534         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
535           and replace by macro adding debug information on demand
536         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
537         * (gencjne): tried to fix; replaced with correct (slower) code
538         * (gen{Unp,P}ackBits): fixed single bit access
539         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
540         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
541           previous instruction
542         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
543           register has to be handled with care (forbidding movement
544           of assignments/uses, removing assignments completely, ...)
545         * (pCodeOptime2pCodes): make use of regIsSpecial
546         * added lots of debugging output (commented out)
547         * src/pic/rallloc.c (deassignLRs): prevent operand registers
548           from being reused as result UNLESS it is known to work
549
550 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
551
552         * support/Util/dbuf.h: include <stddef.h> for size_t
553         * .version: changed to version 2.5.2
554
555 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
556
557         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
558
559 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
560
561         * src/hc08/gen.c (genMinus): fixed bug #1241835,
562           (genModOneByte): removed needless psha/pula
563
564 2005-07-22 Raphael Neider <rneider AT web.de>
565
566         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
567           have PIC14 handled like PIC16, fixes broken pic14 linker calls
568         * src/pic/gen.c (resolveIfx): do not "invent" labels
569         * (genSkipc): changed to positive logic
570         * (genSkipCond): removed as no longer needed
571         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
572           backport from PIC16
573         * (genLeftShift): check operands are in different registers
574         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
575           INCF does not update CARRY...
576         * src/pic/main.c: fixed _linkCmd
577         * src/pic/pcode.c (unlinkpCode): added inactive code
578         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
579           alive (do not assign result and operand overlapping registers)
580
581 2005-07-22 Raphael Neider <rneider AT web.de>
582
583         * src/pic/device.c (dump_sfr): replaced register declaration with
584           call to emitSymbolToFile() to avoid duplicate symbols
585         * (assignRelocatableRegisters): do not declare external symbols
586         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
587           right (take size of type, not etype)
588         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
589         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
590         * (packRegsForAccUse): disabled assignment of WREG as
591           the result reg to prevent occurence of just fixed #1235003,
592           fixes #1242954
593         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
594           symbols (avoids duplicate symbols in .asm file)
595         * (pic14emitRegularMap): use emitSymbolToFile()
596         * src/pic/gen.c (aopOp): fixed spillLocation handling
597         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
598         * (genDataPointerSet): removed unneccessary variables/output
599
600 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
601
602         * as/mcs51/lkarea.c: enlarged codemap for banked memory
603         * device/lib/mcs51/crtbank.asm: added # to 0x0F
604
605 2005-07-21 Raphael Neider <rneider AT web.de>
606
607         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
608           architecture cannot handle them efficiently, fixes bug #1235003
609         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
610           check for empty sets before using them (fixes bug #1232190)
611
612 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
613
614         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
615           (lnksect2): generate warnings for memory overlap
616         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
617           constseg to set the name of these segments so you can instruct the linker
618           to place them in banks
619         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
620         * src/SDCCglobl.h: added MODEL_HUGE to enum,
621           added code_seg and const_seg to options
622         * src/SDCCglue.c (emitMaps): use options.const_seg,
623           (createInterruptVect): put interrupt vectors in segment HOME,
624           (glue): put HOME before static segment and put the main glue in HOME,
625           (glue): use options.code_seg
626         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
627         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
628           these segments so you can instruct the linker to place them in banks
629           (linkEdit): use code_loc for HOME segment which should be the first
630           segment in code memory now
631         * src/SDCCmem.c: fixed more stuff like bug 1238386
632         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
633           (changePointer): don't change function pointers to code pointers for
634           banked functions,
635           (compareType): added exceptional check for banked function pointers
636         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
637         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
638           after static in code memory
639         * src/mcs51/gen.c: added aopLiteralLong prototype,
640           (aopForSym): use getSize for functions,
641           (genCall): generate banked calls over one trampoline __sdcc_banked_call
642           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
643           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
644           the segment,
645           (genPcall): use call for literal function pointers and generate banked
646           calls over the one trampoline so there's only one place for the user to
647           modify according to his/hers hardware,
648           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
649           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
650         * src/mcs51/main.c: added keyword banked,
651           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
652         * support/Util/SDCCerr.c,
653         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
654           needed for passing the bank and address to the trampoline
655         * device/lib/mcs51/crtbank.asm: added for bankswitching
656         * device/lib/mcs51/Makefile: added crtbank
657
658 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
659
660         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
661           for fields at offset 0 of a struct or union as reported
662           on 2005-07-07 in the developer mailing list.
663
664 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
665
666         * src/SDCCmem.c: fixed bug 1238386
667
668 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
669
670         * src/mcs51/peeph.def: added labelrefcounting for peepholes
671           (patch #1144962), added peephole 300, enabled 259.x
672         * doc/sdccman.lyx: removed screenshot and provided link instead
673
674 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
675
676         * doc/sdccman.lyx: added section about debugging with ddd
677         * doc/figures/ddd_example.eps: screenshot of debugging session
678
679 2005-07-04 Raphael Neider <rneider AT web.de>
680
681         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
682           like CODE pointers, fixes #1115683
683         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
684           call, fixes bugs #1232211, #1228110,
685           fixed wrong casts to pCodeFlow from pCodeInstructions
686
687 2005-07-04 Raphael Neider <rneider AT web.de>
688
689         * src/pic/gen.c (popGet): changed assert to allow for
690           bit operands
691         * (popGetAddr): changed signature to provide
692           an additional index, patched all call sites
693         * (genCmpEq): handle literal-like operands correctly
694         * (genAddrOf): added sanity checks on __code/__data pointers
695         * (genAssign): added handling of symbols from __code section
696         * (gencjne): do not generate code for comparisons whose result
697           is neither stored nor used, fixes bug #1171114
698         * (AccLsh, AccRsh): operate on operand instead of WREG
699         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
700           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
701           by known count
702         * rewrote complete shift-by-literal logic, commented unused
703           functions out
704         * (genConstPointerGet): get multiple bytes (if result size > 1),
705           fixed handling of non-immediate addresses
706         * (genPointerGet): handle CODE pointers like CONST pointers
707         * (genpic14Code): insert C-SRC lines as Cource-pCodes
708         * ({aop,op}_isLitLike): NEW, single place to decide whether an
709           operand is to be treated as a literal or not
710         * (mov2w,genPcall,genCmpEq),
711           src/pic/genarith.c: use aop_isLitLike() to decide between
712           literal/register contents
713         * (addSign): added missing offset
714         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
715           only emit comment in debug-mode,
716           use {aop,op}_isLitLike throughout the file
717         * src/pic/glue.c: fix initializers for pointers (work in progress)
718         * src/pic/pcode.c (get_op): honor index on _const symbols
719         * ({reset,dump}pCodeStatistics): NEW, estimate code size
720         * (dumppBlock): added pCode size estimation
721         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
722           check for IS_SYMOP before OP_SYMBOL'ing
723         * fixed indentation, compacted switch-statements
724         * (allocReg): find free register and allocate it instead of
725           allocating new registers all the time
726         * (deassignLRs): prevent POINTER_GET's from being assigned the same
727           registers as its operands (necessary only for multibyte GETs)
728
729 2005-07-01 Raphael Neider <rneider AT web.de>
730
731         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
732           debugging .asm-output macros FENTRY + FEXIT
733         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
734           way... I wonder...
735         * (emitpComment): NEW, printf to pCode
736         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
737           offset handling
738         * (popGetAddr): NEW, variant of popGet to access an immediates
739           high(er) bytes instead of the n'th byte of memory they reference,
740           replaced popGet with popGetAddr where neccessary
741         * (genDataPointerGet): reactivated and fixed implementation
742         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
743           accesses
744         * (genDataPointerSet): fixed multibyte assignments
745         * (genpic14Code): fixed --i-code-in-asm handling
746         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
747         * (genPlus): fixed index-out-of-bounds error
748         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
749         * src/pic/ralloc.c: added debugging output macro FENTRY2
750         * (spillThis): fixed indentation, enbraced for-body for clarity
751         * (rematStr): commented out as now unused
752         * (regTypeNum): commented out special spill case (overwrites
753           arbitrary values)
754         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
755
756 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
757
758         * doc/sdccman.lyx: documented sfr16/sfr32,
759           added example for using storage class with function pointers
760         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
761
762 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
763
764         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
765         * device/lib/_itoa.c,
766         * device/lib/_ltoa.c: optimized codesize
767         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
768           but don't know how to suppress the double warning.
769         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
770         * support/Util/SDCCerr.c,
771         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
772
773 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
774
775         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
776           fixed old K&R prototypes
777         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
778         * device/lib/_gptrget.c,
779         * device/lib/_gptrgetc.c,
780         * device/lib/_gptrput.c: changed versions for new memory indicator values,
781           also new versions for small generic pointers and banked generic pointers
782         * src/port.h: added const_name
783         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
784         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
785         * src/SDCCcse.c (findPrevIc): check all associative operators
786         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
787         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
788         * src/SDCCmem.c: updated comments,
789           set far-space to 0 for pdata, results in optimized code
790         * src/SDCCmem.h: added macro CONST_NAME
791         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
792           moving the info into the highest bits, see also gptrget/gptrput
793         * src/src.dsp: added sdcc.ico to project files
794         * src/avr/gen.c (genCast): fixed bug 0x%d
795         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
796         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
797           relation between ptr_type and DCL_TYPE,
798           (genCast): fixed bug 0x%d
799         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
800           (CODE)" for const_name
801         * src/hc08/gen.c (genCast): fixed bug 0x%d
802         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
803           (hc08_port): added "CONST (CODE)" for const_name
804         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
805           (aopForRemat, adjustArithmeticResult): disconnected direct relation
806           between ptr_type and DCL_TYPE,
807           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
808           operand* and took AOP() inside function so sfr-ness can be checked,
809           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
810           new prototype,
811           (genFunction, genEndFunction): optimized stack setup,
812           (genMinus): optimized for literals with ending zeroes (in bytes),
813           (genCast): fixed bug 0x%d
814         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
815           (mcs51_port): added "CONST (CODE)" for const_name
816         * src/mcs51/peeph.def: made rule 226 more generic
817         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
818         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
819         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
820         * src/z80/main.c (z80_port): added NULL for const_name,
821           (gbz80_port): added NULL for const_name
822         * support/regression/tests/bug663539.c,
823         * support/regression/tests/sfr16.c: new tests
824
825 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
826
827         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
828
829 2005-06-24 Raphael Neider <rneider AT web.de>
830
831         * device/lib/pic16/libdev/pic18f[68][567]20.c:
832           corrected typos...
833         * device/include/pic16/signal.h: added USBIF
834           and SIG_USB
835
836 2005-06-24 Raphael Neider <rneider AT web.de>
837
838         * device/lib/pic16/libdev/pic18f2455.c,
839           device/include/pic16/pic18f2455.h: NEW
840         * device/include/pic16/pic18fregs.h,
841           device/lib/pic16/pics.all,
842           src/pic16/device.c: added 18f2455
843         * device/lib/pic16/libdev/pic18f[68][567]20.c,
844           device/include/pic16/{pic18f[68][567].h,usart.h}:
845           replaced MULTIPLE_USARTS define with more relaible
846           compatibility sfrs (for USART access)
847
848 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
849
850         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
851           and the output asm file line is printed on two lines.
852
853 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
854
855         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
856           BGT, BLE, BHI, and BLS instructions
857         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
858           genCmpEq): removed
859         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
860           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
861           fixes bug #1216342
862         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
863
864 2005-06-15 Raphael Neider <rneider AT web.de>
865
866         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
867         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
868         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
869           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
870           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
871
872 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
873
874         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
875           Marcel Telka in bug #1215704
876
877 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
878
879         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
880           located in shared memory bank.
881
882 2005-05-31 Raphael Neider <rneider AT web.de>
883
884         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
885           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
886           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
887
888 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
889
890         * device/lib/_strncpy.c: fixed the fix
891
892 2005-05-26 Raphael Neider <rneider AT web.de>
893
894         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
895           initializers with \0, bug #1208187
896         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
897           intializers with \0, bug #1208187
898
899 2005-05-26 Raphael Neider <rneider AT web.de>
900
901         * src/pic16/glue.c (pic16_printIvalChar): fixed string
902           initializers with \0, bug #1208187
903         * src/pic16/main.c (_process_pragma): added sanity checks
904           for stack position and size, emit warnings when appropriate
905
906 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
907
908         * device/lib/_strncpy.c: fixed not filling with \0
909
910 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
911
912         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
913           createFunction),
914         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
915           compound_statement),
916         * src/SDCCsymt.h,
917         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
918
919 2005-05-24 Raphael Neider <rneider AT web.de>
920
921         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
922
923 2005-05-24 Raphael Neider <rneider AT web.de>
924
925         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
926           TRISE definitions, closes bug #1162453
927
928 2005-05-22 Raphael Neider <rneider AT web.de>
929
930         * src/pic16/main.c (_process_pragma): check for missing
931           arguments to pragmas code and udata
932         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
933           consistency fixes to match other headers (thanks to Jim Paris)
934         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
935
936 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
937
938         * src/SDCCicode.c (isOperandEqual): fixed missing ;
939
940 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
941
942         * support/regression/tests/bug1198642.c: new test
943         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
944         * src/SDCCcse.c (findPrevIc): added comment, please have a look
945         * support/scripts/resource.h,
946         * support/scripts/resource.rc,
947         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
948         * support/scripts/sdcc.ico: added 32x32 icon
949
950 2005-05-18 Raphael Neider <rneider AT web.de>
951
952         * device/lib/pic16/libdev/pic18f*.c,
953         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
954           keywords to "__sfr" and "__at (X)"
955         * device/include/pic16/pic18fregs.h: added pic18f4520
956         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
957           #1203088 (MPLAB compatibility)
958
959 2005-05-17 Raphael Neider <rneider AT web.de>
960
961         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
962         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
963         * device/lib/pic16/pics.all: added new devices
964         * src/pic16/device.c: added support for pic18f4520
965
966 2005-05-16 Raphael Neider <rneider AT web.de>
967         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
968         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
969         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
970           convenience function for bit access
971
972 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
973
974         * device/lib/printf_large.c: fixed bug 1193299
975         * support/regression/tests/bug1057979.c: added test %3.3s
976
977 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
978
979         * device/include/mcs51/8051.h,
980         * device/include/mcs51/8052.h: made parseable with lint
981         * device/include/mcs51/lint.h: added include file for (sp)lint
982         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
983         * doc/cdbfileformat.lyx,
984         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
985
986 2005-05-14 Raphael Neider <rneider AT web.de>
987
988         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
989         * device/lib/pic16/libc/stdlib/itoa.c (new)
990         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
991         * device/lib/pic16/libio/Makefile: exclude subdir according to
992           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
993         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
994         * src/pic16/gen.c (genFunction): prevent annoying warning
995         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
996           nameclashes on BeOS
997         * support/cpp2/cppmain.c (cpp_output_string): new
998         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
999           fixes bug 1116802
1000
1001 2005-05-13 Borut Razem <borut.razem AT siol.net>
1002
1003         * src/SDCCmain.c (linkEdit): fixed bug 1195202
1004
1005 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1006
1007         * .version: changed to version 2.5.1; back to bleeding edge development
1008
1009 2005-05-11 Borut Razem <borut.razem AT siol.net>
1010
1011         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
1012           generate PDF version 1.3 documents
1013
1014 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1015
1016         * .version: changed to version 2.5.0
1017
1018 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1019
1020         * doc/sdccman.lyx: updated weblinks, index and smaller updates
1021
1022 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1023
1024         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
1025         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
1026         well as many smaller updates.
1027         * .version: changed to version 2.5.0-pre1
1028
1029 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1030
1031         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
1032
1033 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
1034
1035         * support/regression/tests/bug1185672.c: added
1036         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
1037           bug 1185672
1038         * src/mcs51/gen.c (genCall): added comments, made it look safer
1039         * src/mcs51/gen.c (genEndFunction): simplified
1040
1041 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
1042
1043         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
1044
1045 2005-04-14 Borut Razem <borut.razem AT siol.net>
1046
1047         * fixed bug 1045046 - SIGSEGV with really simple code?:
1048           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
1049           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
1050
1051 2005-04-14 Borut Razem <borut.razem AT siol.net>
1052
1053         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
1054           src/pic16/device.h: temporarily disabled experimental #inline pragma
1055           for 2.5.0 release
1056
1057 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
1058
1059         * device/include/z80/stdio.h,
1060         * device/include/z80/string.h: removed these highly incomplete files so
1061           SDCC can use the default ones in device/include/
1062
1063 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1064
1065         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
1066         gcc warning.
1067         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
1068         fix sdcpp warnings.
1069
1070 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1071
1072         * device/include/malloc.h: removed redundant __reentrant prototypes
1073         * device/lib/_mullong.c: added working xstack variant in asm (C version
1074           doesn't pass regression tests)
1075         * device/lib/bpx.c: used __data and made bpx char for mcs51
1076         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
1077           (createFunction): fixed bug with xstackPtr
1078         * src/SDCCcse.c: corrected comments
1079         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
1080           (killDeadCode, eBBlockFromiCode): removed unused code
1081         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
1082           corrected comments
1083         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
1084           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
1085           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
1086           (genModOneByte): fixed warning in MSVC
1087         * src/mcs51/main.c (): added comments
1088         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
1089
1090 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1091
1092         * src/SDCCmain.c (linkEdit): oops, changed one line too many
1093
1094 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
1095
1096         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
1097
1098 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
1099
1100         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
1101         characters arrays of larger size than the declared one.
1102
1103 2005-04-10 Borut Razem <borut.razem AT siol.net>
1104
1105         * src/pic/gen.c (genInline),
1106           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
1107           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
1108           (findNextInstruction), (findPrevInstruction),
1109           (findInstructionUsingLabel),
1110           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
1111         * src/pic/pcode.c (findLabel): added missing '\n'
1112         * src/src.dsp: added SDCCdwarf2.c to the project
1113
1114 2005-04-09 Borut Razem <borut.razem AT siol.net>
1115
1116         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
1117
1118 2005-04-08 Raphael Neider <rneider AT web.de>
1119
1120         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
1121           into the chain after a given one) and mergeDefmapSymbols (combine
1122           defmap entries for each symbol per pcode)
1123         * (createDefmap): have defmap entries merged in the end
1124         * (defmapReplaceSymRef): split defmap entries covering two accesses to
1125           a symbol before replacing one access type's symbol, merge symbols in
1126           the end (replacement symbol might already have an entry)
1127         * (assignValnums): keep reference to written WREG intact
1128
1129 2005-04-08 Raphael Neider <rneider AT web.de>
1130
1131         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
1132           Alpha)
1133
1134 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
1135
1136         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
1137         bytes
1138
1139 2005-04-07 Raphael Neider <rneider AT web.de>
1140
1141         * device/include/pic16/usart.h: added compatibility defines for
1142           devices with more than one USART
1143         * device/include/pic16/pic18f[68][567]20.h: activated above defines
1144
1145 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1146
1147         * device/lib/Makefile.in: updated for port specific include
1148
1149 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1150
1151         * support/regression/ports/mcs51/spec.mk: added mcs51 include
1152
1153 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1154
1155         * device/include/8051.h,
1156         * device/include/8052.h,
1157         * device/include/at89S8252.h,
1158         * device/include/at89c55.h,
1159         * device/include/at89x051.h,
1160         * device/include/at89x51.h,
1161         * device/include/at89x52.h,
1162         * device/include/mcs51reg.h,
1163         * device/include/reg51.h,
1164         * device/include/reg764.h,
1165         * device/include/regc515c.h,
1166         * device/include/sab80515.h: (re)moved these 12 files
1167         * device/include/mcs51/8051.h,
1168         * device/include/mcs51/8052.h,
1169         * device/include/mcs51/at89S8252.h,
1170         * device/include/mcs51/at89c55.h,
1171         * device/include/mcs51/at89x051.h,
1172         * device/include/mcs51/at89x51.h,
1173         * device/include/mcs51/at89x52.h,
1174         * device/include/mcs51/mcs51reg.h,
1175         * device/include/mcs51/reg51.h,
1176         * device/include/mcs51/reg764.h,
1177         * device/include/mcs51/regc515c.h,
1178         * device/include/mcs51/sab80515.h: and added them here
1179
1180 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
1181
1182         * device/include/stdarg.h: changed SDCC specific keywords to double
1183           underlined form.
1184         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
1185           mcs51 and ds390.
1186         * device/include/hc08/mc68hc908gp32.h,
1187         * device/include/hc08/mc68hc908jb8.h,
1188         * device/include/hc08/mc68hc908jkjl.h,
1189         * device/include/hc08/mc68hc908qy.h: fixed comments
1190         * device/include/mcs51/README: updated
1191         * device/include/mcs51/c8051f120.h: added PINRSF
1192         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
1193         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
1194           amidst code. Also inline is not supported.
1195
1196 2005-04-06 Raphael Neider <rneider AT web.de>
1197
1198         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
1199         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
1200           callers stack/frame pointers
1201
1202 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
1203
1204         * device/include/pic16/usart.h: added, missing in previous commit,
1205         * device/include/pic16/adc.h: fixed typo,
1206         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
1207         commit,
1208         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
1209         <p18fxxx.inc>
1210         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
1211         uninitialized because a bug appears with gplink
1212         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
1213         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
1214         complains for unrecognised option
1215
1216 2005-04-05 Raphael Neider <rneider AT web.de>
1217
1218         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
1219           structs as well (using memcpy)
1220         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
1221           on ISRs (GOTO has no label)
1222         * src/pic16/device.h: added OF_OPTIMIZE_DF
1223         * src/pic16/main.c: added compiler switch --optimize-df to enable the
1224           new data flow analysis/optimization
1225         * src/pic16/pcode.c: added (prototypes for and implementation of)
1226           dataflow analysis functions, fixed pCodeInstructions' inCond and
1227           outCond values, made RCALL a branch instruction
1228         * (pic16_unlinkpCode): keep C line if possible
1229         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
1230           C line moved if possible
1231         * (pic16_getRegFrompCodeOp): NEW, improved version of...
1232         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
1233           to use new pic16_getRegFrompCodeOp (works for more SFRs)
1234         * (pic16_BuildFlow): fixed skip instructions with label (did not start
1235           new flow)
1236         * (pic16_getJumptabpCode): NEW, needed in...
1237         * (LinkFlow): fixed handling of jumptables, calls and conditional
1238           branches
1239         * (pic16_InsertCommentAfter): NEW
1240         * (pic16_pCodeReplace): made verbose and flow preserving
1241         * (AnalyzeFlow): added call to data flow analysis
1242         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
1243         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
1244         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
1245
1246 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1247
1248         * src/SDCCast.c (decorateType): fixed bug #1105626
1249
1250 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
1251
1252         * device/include/asm/pic16/features.h,
1253         * pic18f*.h headers,
1254         * device/include/pic16/adc.h,
1255         * device/include/pic16/delay.h,
1256         * device/include/pic16/i2c.h,
1257         * device/include/pic16/malloc.h,
1258         * device/include/pic16/stdio.h,
1259         * device/include/pic16/stdlib.h,
1260         * device/include/pic16/string.h,
1261         * device/lib/pic16/libc/stdio/printf_tiny.c,
1262         * device/lib/pic16/libc/stdio/printf_small.c,
1263         * device/lib/pic16/libc/stdio/strmgpsim.c,
1264         * device/lib/pic16/libc/stdio/strmmssp.c,
1265         * device/lib/pic16/libc/stdio/strmusart.c,
1266         * device/lib/pic16/libc/stdio/vfprintf.c,
1267         * device/lib/pic16/libc/stdlib/ltoa.c,
1268         * device/lib/pic16/libc/stdlib/putchar.c,
1269         * device/lib/pic16/libc/stdlib/x_ftoa.c,
1270         * device/lib/pic16/libc/stdlib/memchrpgm.c,
1271         * device/lib/pic16/libc/stdlib/memchrram.c,
1272         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
1273         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
1274         * device/lib/pic16/libio/adc/adcbusy.c,
1275         * device/lib/pic16/libio/adc/adcread.c,
1276         * device/lib/pic16/libio/adc/adcsetch.c,
1277         * device/lib/pic16/libio/usart/ubaud.c,
1278         * device/lib/pic16/libio/usart/ubusy.c,
1279         * device/lib/pic16/libio/usart/udrdy.c,
1280         * device/lib/pic16/libio/usart/uopen.c,
1281         * device/lib/pic16/libio/usart/uputc.c,
1282         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
1283         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
1284         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
1285         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
1286         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
1287         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
1288         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
1289         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
1290         specific keywords to double underlined form,
1291         * device/lib/pic16/libc/Makefile.rules,
1292         * device/lib/pic16/libsdcc/Makefile.rules,
1293         * device/lib/pic16/libm/Makefile,
1294         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
1295         to compile with C standard set in Makefile.common
1296         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
1297         rand.c and crc.c in compilation process,
1298         * device/lib/pic16/libsdcc/int/divuint.c,
1299         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
1300         `c' from signed to unsigned,
1301         * device/lib/pic16/startup/crt0.c,
1302         * device/lib/pic16/startup/crt0i.c,
1303         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
1304         keywords to double underlined form, bug fixes in _do_cinit function
1305         which prevented the correct initialization of the .idata segment,
1306         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
1307         core to enter a infinite loop
1308         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
1309
1310 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1311
1312         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
1313
1314 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1315
1316         * device/include/Makefile.in: add support for hc08 subdirectory
1317         * device/include/hc08/: new subdirectory
1318         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
1319         Lucas Loizaga, thanks!
1320         * device/include/hc08/mc68hc908qy.h,
1321         * device/include/hc08/mc68hc908gp32.h,
1322         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
1323         their own directory. Changed internal macro names to use the compiler
1324         reserved namespace. Changed SDCC specific keywords to double
1325         underlined form.
1326         * device/include/math.h,
1327         * device/include/malloc.h,
1328         * device/include/stdarg.h,
1329         * device/include/stdbool.h
1330         * device/include/string.h,
1331         * device/include/tinibios.h,
1332         * device/include/ds400rom.h,
1333         * device/include/8051.h,
1334         * device/include/8052.h,
1335         * device/include/80c51xa.h,
1336         * device/include/at89c55.h,
1337         * device/include/at89S8252.h,
1338         * device/include/at89x51.h,
1339         * device/include/at89x52.h,
1340         * device/include/ds80c390.h,
1341         * device/include/reg764.h,
1342         * device/include/regc515c.h,
1343         * device/include/sab80515.h,
1344         * device/include/mcs51/c8051f000.h,
1345         * device/include/mcs51/c8051f018.h,
1346         * device/include/mcs51/c8051f020.h,
1347         * device/include/mcs51/c8051f040.h,
1348         * device/include/mcs51/c8051f060.h,
1349         * device/include/mcs51/c8051f120.h,
1350         * device/include/mcs51/c8051f300.h,
1351         * device/include/mcs51/c8051f310.h,
1352         * device/include/mcs51/c8051f320.h,
1353         * device/include/mcs51/c8051f330.h,
1354         * device/include/mcs51/c8051f350.h,
1355         * device/include/z180.h: Changed SDCC specific keywords to double
1356         underlined form.
1357
1358 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
1359
1360         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
1361         18F4455,
1362         * (pic16_assignConfigWordValue): disable testing of configuration
1363         register value with config mask,
1364         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
1365         function with port->fun_prefix,
1366         * (genFunction): when generating a naked interrupt function never
1367         create an absolute segment placed in interrupt vector address, place
1368         the actual interrupt function at IVA instead, when an interrupt
1369         function is generated with unspecified interrupt then do not create
1370         the absolute section,
1371         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
1372         code for generating a call to generic pointer get/put function with
1373         a call to function pic16_callGenericPointer(),
1374         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
1375         the call to the generic pointer get/put functions with prefixing the
1376         function name with port->fun_prefix,
1377         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
1378         * src/pic16/main.c (_process_pragma): prefix function with
1379         port->fun_prefix,
1380         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
1381         calling assembler, old 18Fxxxx macro is deprecated,
1382         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
1383         PC_ASMDIR in while condition,
1384         * (findInstruction): add PC_ASMDIR in while condition,
1385         * (buildCallTree): prefix main with port->fun_prefix,
1386         * (pic16_pCode2str): fixed bug that didn't emit the memory access
1387         identifier for variable with banked access in instructions BTFSS,
1388         BTFSC, BCF, BSF, BTG
1389         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
1390         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
1391         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
1392         perform optimization when enviroment variable NO_REG_OPT is set,
1393         * (insideLRBlock): NEW, return 1 if register is inside an
1394         INF_LOCALREGS block,
1395         * (RemoveRegFromLRBlock): remove a register that is completely
1396         eliminated by register optimization, but it is still left in local
1397         register store/restore in/from stack block,
1398         * (Remove2pcodes): after removing register, check to see if it
1399         should be removed from local register store/restore in/from stack
1400         block,
1401         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
1402         DUMMY_READ_VOLATILE,
1403
1404         * device/include/pic16/adc.h: minor prototype modifications and
1405         update,
1406         * device/include/pic16/malloc.h: added GPL notice various
1407         modifications,
1408         * device/include/pic16/stdint.h: NEW, standard header for ints
1409         * device/include/pic16/delay.h: NEW, header for delay functions,
1410         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
1411         delay1mtcy,
1412         * device/include/pic16/signal.h: NEW, header providing helper macros
1413         for implementing signal handlers,
1414         * device/include/pic16/stdio.h: added prototypes for functions,
1415         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
1416         prototypes for stdin and stdout, added macro PUTCHAR to
1417         automatically implement putchar function prototype,
1418         * device/include/pic16/usart.h: modified and updated USART library,
1419         * device/lib/pic16/libio/adc/,
1420         * device/lib/pic16/libio/i2c: some modifications to improve library
1421         performance,
1422         * device/lib/pic16/libc/stdio/: modifications for the new printf*
1423         family of functions,
1424         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
1425         family of functions and other sources,
1426         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
1427         of the PIC18Fxx[28] devices,
1428         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
1429         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
1430         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
1431         _do_cinit function, because the previous failed when local variables
1432         where not placed in the same memory bank,
1433         * device/lib/pic16/libsdcc/char/: various modifications to improve
1434         library performance,
1435         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
1436         information on the new functions of the c library and more...
1437
1438 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1439
1440         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
1441
1442 2005-03-26 Raphael Neider <rneider AT web.de>
1443
1444         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
1445           if condition == CARRY)
1446         * (genCmp): adapted to new genSkipc semantics
1447         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
1448           on rIfx (genCmp was broken)
1449
1450 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1451
1452         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
1453         * src/z80/main.c (_keywords[]),
1454         * src/SDCCglobal.h (struct options),
1455         * src/SDCC.y,
1456         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
1457         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
1458         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
1459         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
1460         always available in leading double underscore form. The C99 support is
1461         mostly missing, but it's a start.
1462         * support/regression/tests/bug-227710.c: fixed nonconforming use of
1463         reserved identifier "__data".
1464
1465 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
1466
1467         * src/mcs51/peeph.def: fixed bug 1170013
1468
1469 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
1470
1471         * device/include/mcs51reg.h: fixed bug 842007
1472
1473 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1474
1475         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
1476         last time.
1477
1478 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1479
1480         * src/port.h (struct PORT),
1481         * src/avr/ralloc.c (avr_assignRegisters),
1482         * src/avr/main.c,
1483         * src/ds390/ralloc.c (ds390_assignRegisters),
1484         * src/ds390/main.c,
1485         * src/hc08/ralloc.c (hc08_assignRegisters),
1486         * src/hc08/main.c,
1487         * src/mcs51/ralloc.c (mcs51_assignRegisters),
1488         * src/mcs51/main.c,
1489         * src/pic/ralloc.c (pic14_assignRegisters),
1490         * src/pic/main.c,
1491         * src/pic16/ralloc.c (pic16_assignRegisters),
1492         * src/pic16/main.c,
1493         * src/xa51/ralloc.c (xa51_assignRegisters),
1494         * src/xa51/main.c,
1495         * src/z80/ralloc.c (z80_assignRegisters),
1496         * src/z80/ralloc.h,
1497         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
1498         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
1499         * src/SDCCcse.h,
1500         * src/SDCCdflow.c (computeDataFlow),
1501         * src/SDCCdflow.h,
1502         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
1503         * src/SDCCloop.h,
1504         * src/SDCCcflow.c (*),
1505         * src/SDCCcflow.h,
1506         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
1507         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
1508         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
1509         immedDom() returning wrong block; probably fixes bug #1160833)
1510
1511 2005-03-20 Borut Razem <borut.razem AT siol.net>
1512
1513         * support/scripts/inc2h.pl: WIN32 port
1514
1515 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
1516
1517         * device/lib/makefile.in: added abs.c and labs.c
1518
1519 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
1520
1521         * device/include/stdint.h: added
1522         * device/lib/abs.c: added
1523         * device/lib/labs.c: added
1524         * device/include/stdlib.h: added abs() and labs() prototypes
1525         * device/lib/libsdcc.lib: added abs and labs
1526         * device/include/float.h,
1527         * device/lib/_fsmul.c,
1528         * device/lib/printf_fast.c,
1529         * device/lib/printf_tiny.c: updated comments
1530
1531 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1532
1533         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
1534         bug #1164313
1535
1536 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1537
1538         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
1539         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
1540
1541 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
1542
1543         * device/lib/printf_large.c: removed inline assembly for portability and
1544           readability. Use printf_fast if speed or size are more important.
1545         * src/pic16/gen.c: removed conditions around use of DEBUGpc
1546         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
1547
1548 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
1549
1550         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
1551         prevent compiler warning
1552
1553 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
1554
1555         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
1556         moved to level 0 and declared as static. Also they are explicit
1557         placed in access bank. This was necessery because some times they
1558         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
1559         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
1560         optimizations. Currently only compare to unsigned char is implemented,
1561         * src/pic16/gen.c: added fReturnIdx array,
1562         * (struct resolvedIfx) is moved to gen.h and made public,
1563         * (struct _G): added sregsAlloc and sregsAllocSet fields,
1564         * (aopForSym): added an optimization to directly store in stack of
1565         the operand of a SEND iCode,
1566         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
1567         but as registers instead (AOP_REG) using the fReturnIdx array,
1568         * (pic16_freeAsmop): remove the freed register from the
1569         _G.sregsAlloc field,
1570         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
1571         a compare of 'WREG',
1572         * (pic16_popGetTempRegCond): changed function prototype, now
1573         function takes also a bitVector argument v which holds the current
1574         set of registers that are allocated for stack access by aopForSym,
1575         registers allocated in aopForSym for accessing stack symbols are not
1576         any more part of the functions usedRegs field,
1577         * (genCall): some times aopOp is called for a stack variable to be
1578         send, aopForSym might perform the push, if this is true make sure
1579         that genCall doesn't push the variable twice by testing _G.resDirect,
1580         * (genFunction): changed testing for unspecified interrupt number
1581         from 256 to INTNO_UNSPEC,
1582         * modified selection scheme of frame pointer generation. Previously
1583         if function did use local registers a frame pointer was generated,
1584         now a frame pointer is generated only if function has arguments
1585         (that need PLUSW2 register access), or has stack arguments, or the
1586         compiler is not instructed to omit the frame pointer,
1587         * (genEndFunction): before restoring local registers that were saved
1588         in the function preamble, also restore the registers that *might*
1589         have been allocated for stack access,
1590         * (genRet): removed some old comments,
1591         * (genCmp, the active (RN's) version): added a call to the
1592         pic16_genCmp_special function to perform the compare with a more
1593         robust and optimized way,
1594         * (genInline): a feature has been added in inline code generation,
1595         which allows a wildcard variable substitution when writing inline
1596         assembly. Code is incomplete and experimental therefore undocumented,
1597         * (genCast): changed order of aopOp for result and right to allow
1598         aopForSym to directly load the result if possible,
1599         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
1600         perform an optimized compare on some selected special occasions,
1601         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
1602         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
1603         generate an IVT any more,
1604         * src/pic16/main.c (pic16_optionsTable): added command line option
1605         --optimize-cmp,
1606         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
1607         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
1608         macros,
1609         * src/pic16/NOTES: Raphael Neider added in list of active developers
1610         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
1611         jumptable_end to prevent bug #,
1612         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
1613         inCond and outCond fields,
1614         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
1615         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
1616         turn off register spilling,
1617         * (packRegsForOneUse): synced with other ports' versions although it
1618         is not used currently,
1619         * (pic16_packRegisters): added an optimization while reading
1620         structure bitfields, some registers may be saved (malloc code is
1621         decreased by 80 bytes)
1622
1623 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
1624
1625         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
1626         left is a bitfield, if yes, then don't optimize assignment. Perhaps
1627         this can be optimized more?
1628
1629 2005-03-10 Raphael Neider <rneider AT web.de>
1630
1631         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
1632           genNearPointerGet): (hopefully) fixed access to bitfields via
1633           pointers (p->bitN = x; and x = p->bitN; failed)
1634
1635 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
1636
1637         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
1638
1639 2005-03-09 Raphael Neider <rneider AT web.de>
1640
1641         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
1642
1643 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
1644
1645         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
1646         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
1647           (regTypeNum): set REG_BIT type if necessary
1648         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
1649         * support/regression/tests/critical.c: check bug 1144613
1650
1651 2005-03-02 Raphael Neider <rneider AT web.de>
1652
1653         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
1654
1655 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1656
1657         * src/avr/ralloc.c (serialRegAssign),
1658         * src/ds390/ralloc.c (serialRegAssign),
1659         * src/hc08/ralloc.c (serialRegAssign),
1660         * src/mcs51/ralloc.c (serialRegAssign),
1661         * src/pic/ralloc.c (serialRegAssign),
1662         * src/pic16/ralloc.c (serialRegAssign),
1663         * src/xa51/ralloc.c (serialRegAssign),
1664         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
1665
1666 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
1667
1668         * src/SDCCast.c (decorateType): fixed bug 1124787
1669
1670 2005-02-20 Hubert Sack <sack AT digiplan.de>
1671         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1672
1673         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
1674         patch #1121755
1675
1676 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1677
1678         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
1679         to keep the correct label reference count when adding/removing references
1680         to labels. A peephole file using this is appended to patch #1144962.
1681
1682 2005-02-14 Raphael Neider <rneider AT web.de>
1683
1684         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
1685         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
1686         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
1687           retrievals of result operand's value on assignment
1688
1689 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
1690
1691         * device/include/pic16/string.h: modified prototype for memccpy()
1692         to memccpy(void *, void *, char, size_t)
1693         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
1694         check whether to omit frame pointer or not,
1695         * (genInline): convert all occurences of "\n" to LF in inline
1696         assembler blocks, this helps formatting the inline text,
1697         * (pic16_loadFSR0): modified prototype,
1698         * (genNearPointerGet, genNearPointerSet): reorganization of code,
1699         removed some 8051 legacy code,
1700         * (genPackBits): enabled handling bitfields exceeding one byte in size,
1701         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
1702         before allocating temporary registers in functions,
1703
1704 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1705
1706         * support/regression/tests/bitvars.c: corrected the "fix"
1707
1708 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1709
1710         * support/regression/tests/bitvars.c,
1711         * support/regression/tests/bitwise.c,
1712         * support/regression/tests/rotate.c: "fixed" problems on Alpha
1713
1714 2005-02-10 Raphael Neider <rneider AT web.de>
1715
1716         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
1717           different size for Alpha
1718         * src/pic16/gen.c (genCmpEq) : improved compare with 0
1719
1720 2005-02-09 Raphael Neider <rneider AT web.de>
1721
1722         * src/SDCC.lex(doPragma) : save and restore warning options as well
1723           (also added new stack plus clone- and copyAndFreeSDCCERRG())
1724         * have #pragma less_pedantic set the errorlevel to WARNING
1725           (fixes #1117001)
1726         * (cloneOptimize) : fixed wrong malloc's size
1727         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
1728           facilitate correct handling of #pragma (save|restore)
1729
1730 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1731
1732         * src/mcs51/gen.c: removed non-standard C nameless struct/union
1733
1734 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
1735
1736         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
1737
1738 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
1739
1740         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
1741
1742 2005-02-02 Raphael Neider <rneider AT web.de>
1743
1744         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
1745         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
1746         * (pic16_storeForReturn): fixed to allow returning function pointers
1747         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
1748         * device/include/pic16/{stddef.h,stdbool.h}: added
1749
1750 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
1751
1752         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
1753
1754 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
1755
1756         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
1757         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
1758          appeared to be required
1759
1760 2005-01-31 Borut Razem <borut.razem AT siol.net>
1761
1762         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
1763           include/mcs51 and include/z80 directories to the package
1764
1765 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1766
1767         * src/hc08/gen.c (genFunction): fixed bug #1112752
1768
1769 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1770
1771         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
1772
1773 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1774
1775         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
1776
1777 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
1778
1779         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
1780
1781 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
1782
1783         * device/include/c8051fxxx.h: removed these 6 files
1784         * device/include/mcs51/c8051fxxx.h: added these 11 new files
1785
1786 2005-01-26 Raphael Neider <rneider AT web.de>
1787
1788         * src/pic16/gen.c (genAssign): fixed assignment from longs
1789           in codespace (were cut to three bytes)
1790         * (genDummyRead): implemented (except for CODESPACE...),
1791           fixed bug #1108575
1792         * src/pic16/glue.c (emitStatistics): beautified
1793         * device/lib/pic16/libm/Makefile: added include path
1794
1795 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1796
1797         * src/z80/gen.c (aopPut): fixed bug #1103902
1798
1799 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1800
1801         * device/lib/expf.c: fixed bug #1095792
1802
1803 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
1804
1805         * device/lib/pic16/libm: added Math library sources
1806
1807 2005-01-24 Raphael Neider <rneider AT web.de>
1808
1809         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
1810           to enable upcast to pCodeOpReg2 (there is no type tag to
1811           differenciate the two and pic16_popGet2p cast into PCOR2)
1812         * src/pic16/main.c (_process_pragma): fixed another malloc bug
1813           (sizeof(sectNames) changed to sizeof(sectName))
1814           Both patches fix segfaults under MinGW.
1815
1816 2005-01-23 Raphael Neider <rneider AT web.de>
1817
1818         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
1819           Safe_[mc]?alloc()'ed variables
1820         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
1821           of (byte sized) temporaries (assign them to WREG for now)
1822         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
1823           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
1824           this might fix SIGSEGVs on MinGW...
1825         * src/SDCCopt.c (killDeadCode): restored original behaviour
1826           (volatile operands might get thrown away though)
1827
1828 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
1829
1830         * src/pic16/gen.c: fixed bug #1106975,
1831         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
1832         pointer update, INTCON is saved, global interrupts are disabled and
1833         restored after updateing TOS.
1834         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
1835         * added function attribute 'shadowregs' to take advantage of shadow
1836         registers,
1837         * added function attribute 'wparam' as an alternative to the wparam
1838         pragma,
1839         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
1840         user declares a non-ISR function as 'shadowregs',
1841         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
1842
1843 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
1844
1845         * .version: bumped version number to 2.4.8
1846         * device/lib/pic16/pics.all: list of PIC18F devices supported by
1847         pic16 port,
1848         * device/lib/pic16/libio/i2c/: I2C module support library,
1849         * device/include/pic16/i2c.h: I2C support library header,
1850         * device/lib/pic16/libc/stdio/: standard IO support sources,
1851         * (printf_small.c): printf_small() source, supports float print,
1852         * (printf_tiny.c): printf_tiny() source, does not support floats,
1853         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
1854         enable global optimizations for entire library source, other
1855         Makefiles in the source tree are also modified to reflect this,
1856         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
1857         function,
1858         * doc/sdccman.lyx: updated to reflect new changes,
1859         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
1860         sym->onStack if-case,
1861         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
1862         sbit, idata, _idata, xdata, _xdata,
1863         * added pragma library, to link an external library, (see doc),
1864         * removed command line options, --pomit-config-words, --pomit-ivt,
1865         --pleave-reset-vector,
1866         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
1867         when calling assembler to reflect memory model used, also define
1868         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
1869         reflect stack model used,
1870         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
1871         on stack return NULL,
1872
1873 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
1874
1875         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
1876           of the operands is volatile. Fixes #1020220
1877
1878 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
1879
1880         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
1881         * (OptimizeRegUsage): make sure that there is really no other flow where
1882           the first pCode is used
1883
1884 2005-01-22 Raphael Neider <rneider AT web.de>
1885
1886         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
1887           to fix #1106967 (pCode->seq are not set up correctly)
1888
1889 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1890
1891         * src/SDCCglue.c (glue): make sure code area is declared before the
1892         static initialization area.
1893
1894 2005-01-21 Raphael Neider <rneider AT web.de>
1895
1896         * device/lib/Makefile.in: fixed test for pic16 install dir
1897         * device/lib/pic16/*/Makefile*: modified compile flags to enable
1898           optimizations
1899         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
1900           added --optimize-goto compiler switch and pragma wparam documentation
1901         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
1902         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
1903           and PRODH closing bug #1071770 (peephole optimizer)
1904
1905 2005-01-19 Raphael Neider <rneider AT web.de>
1906
1907         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
1908           cmdLine buffers (used when calling sdcpp...) are large enough
1909           (MAX_PATH=256 truncates arguments leading to system halts when
1910           used in MinGW...)
1911         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
1912         * (genUminus): rewritten to for efficiency
1913         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
1914           used uninitialized in some cases)
1915         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
1916           copy the third byte from the int -- now assumes 0x80 (data memory)
1917         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
1918           operands (genAddLit expects the iCode's operands to swapped as
1919           well), fixed leftover bytes (crashed for short left operands)
1920         * (pic16_genMinusDec): performance improvements, removed false
1921           PIC14 emitSKPNCs
1922         * (pic16_genMinus): fixed to cope with differently sized operands
1923         * src/pic16/glue.c (pic16_glue): added new banksel optimization
1924           for --obanksel > 1
1925         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
1926         * src/pic16/graph.[ch]: implementation of directed graphs, used by
1927           new banksel optimization
1928         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
1929           analysis for temporary registers (segfaults...)
1930         * src/pic16/peeph.def: added rule
1931
1932 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
1933
1934         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
1935         which converts a float number to its ASCII representation
1936         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
1937         functions to convert the fractional and integer part of a float to ASCII,
1938         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
1939         realloc.c): added _MALLOC_SPEC to explicit place variables in data
1940         ram
1941         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
1942         _STATMEM macros,
1943         * device/include/pic16/adc.h: added GPL info,
1944         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
1945         a pCodeOp as tested operand,
1946         * (genNearPointerGet): optimized bit testing, does not use
1947         intermediate register for bit value, test directly instead with
1948         BTFSS, BTFSC, works only for single bits,
1949         * (genpic16Code): dump the name of the iCode in the asm,
1950         * src/pic16/ralloc.c (decodeOp): removed static declaration and
1951         renamed to pic16_decodeOp,
1952         * (serialRegAssign): do not allocate a temporary register for iCode
1953         sequences that test a single bit for 1/0
1954
1955 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
1956
1957         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
1958         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
1959         access stack and frame pointers. They are initially assigned to
1960         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
1961         accessing SFRs. Updated all occurences of modification of stack or
1962         frame pointer in gen.c and pcode.c,
1963         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
1964         assigning of a literal value to pointers,
1965         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
1966         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
1967         selected
1968
1969 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
1970
1971         * doc/sdccman.lyx: update documentation about stack pragma, added
1972         some info for stack memory models
1973
1974 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1975
1976         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
1977
1978 2005-01-08 Raphael Neider <rneider AT web.de>
1979
1980         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
1981           udata sections to fix bug #1097823
1982
1983 2005-01-05 Raphael Neider <rneider AT web.de>
1984
1985         * src/pic16/gen.c (genGenericShift): added handling of differently
1986           sized left operand and result
1987
1988 2005-01-04 Raphael Neider <rneider AT web.de>
1989
1990         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
1991         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
1992           to hold the condition bit)
1993         * added new version of genCmp (old code available via #define)
1994         * added new version of genShiftLeft/genShiftRight in a generic
1995           way, now supports shifting by negative values
1996         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
1997           shiftCount (expected by genGenericShift)
1998         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
1999         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
2000           dump
2001         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
2002           is an invalid literal too...)
2003
2004 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
2005
2006         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
2007         from Raphael Neider,
2008         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
2009         for 8-bit literals. This fixes some literal operands which are sign
2010         extended to 16-bits ints when instruction needs only 8-bits.
2011
2012 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
2013
2014         * device/lib/logf.c: added mcs51 assembly version
2015         * device/lib/expf.c: added mcs51 assembly version
2016         * device/lib/_logexpf.c: new shared asm code for expf and logf
2017         * device/include/math.h: add defines for assembly math library
2018         * device/lib/Makefile.in: build new _logexpf.c
2019         * device/lib/libfloat.lib: use new _logexpf.c
2020
2021 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2022
2023         * src/pic/device.c
2024         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
2025           device types which have less than 0x7f registers.
2026
2027 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2028
2029         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
2030
2031 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2032
2033         * device/lib/printf_fast.c: only build on supported arch.
2034         * device/lib/printf_tiny.c: only build on supported arch.
2035         * device/lib/printf_fast_f.c: only build if asm float lib
2036         * device/lib/_fsget1arg.c: only build if asm float lib
2037         * device/lib/_fsget2args.c: only build if asm float lib
2038         * device/lib/_fsnormalize.c: only build if asm float lib
2039         * device/lib/_fsreturnval.c: only build if asm float lib
2040         * device/lib/_fsrshift.c: only build if asm float lib
2041         * device/lib/_fsswapargs.c: only build if asm float lib
2042         * device/include/stdio.h: don't provide print_fast,
2043           print_fast_f, print_tiny prototypes if --xstack used
2044
2045 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
2046
2047         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
2048         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
2049           to the SOURCES
2050
2051 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2052
2053         * device/lib/printf_fast_f.c: same as printf_fast, but
2054           with floating point enabled
2055         * device/lib/printf_fast.c: minor tweaks
2056         * device/include/stdio.h: add printf_fast_f
2057
2058 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2059
2060         * src/SDCCmain.c: make --float-reent default for mcs51
2061         * device/lib/_fsadd.c: added mcs51 assembly version
2062         * device/lib/_fssub.c: added mcs51 assembly version
2063         * device/lib/_fsmul.c: added mcs51 assembly version
2064         * device/lib/_fsdiv.c: added mcs51 assembly version
2065         * device/lib/_fseq.c: added mcs51 assembly version
2066         * device/lib/_fsneq.c: added mcs51 assembly version
2067         * device/lib/_fsgt.c: added mcs51 assembly version
2068         * device/lib/_fslt.c: added mcs51 assembly version
2069         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
2070         * device/lib/Makefile.in: add _fscmp to build
2071         * device/lib/libfloat.lib: add _fscmp to build
2072
2073 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2074
2075         * device/lib/_fs2slong.c: added mcs51 assembly version
2076         * device/lib/_fs2sint.c: added mcs51 assembly version
2077         * device/lib/_fs2schar.c: added mcs51 assembly version
2078         * device/lib/_fs2ulong.c: added mcs51 assembly version
2079         * device/lib/_fs2uint.c: added mcs51 assembly version
2080         * device/lib/_fs2uchar.c: added mcs51 assembly version
2081         * device/lib/_slong2fs.c: added mcs51 assembly version
2082         * device/lib/_sint2fs.c: added mcs51 assembly version
2083         * device/lib/_schar2fs.c: added mcs51 assembly version
2084         * device/lib/_ulong2fs.c: added mcs51 assembly version
2085         * device/lib/_uint2fs.c: added mcs51 assembly version
2086         * device/lib/_uchar2fs.c: added mcs51 assembly version
2087         * device/include/float.h: added #define to select asm vs c
2088
2089 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
2090
2091         * device/lib/printf_fast.c: improvements to float output
2092         * device/include/float.h: add defines for assembly float library
2093         * device/lib/_fsget1arg.c: receive 1 float arg
2094         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
2095         * device/lib/_fsnormalize.c: normalize a float
2096         * device/lib/_fsreturnval.c: return float, various helper routines
2097         * device/lib/_fsrshift.c: right shift a float's mantissa
2098         * device/lib/_fsswapargs.c: swap 2 floats
2099         * device/lib/Makefile.in: build these 6 new files for mcs51
2100         * device/lib/libfloat.lib: add these 6 files to the library
2101
2102 2004-12-26 Borut Razem <borut.razem AT siol.net>
2103
2104         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
2105           built by gcc 3.4.2
2106
2107 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
2108
2109         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
2110           and fully reentrant and register bank neutral.
2111         * device/lib/printf_fast.c: added float (not enabled by default),
2112           added compact/slower integer (also not enabled by default),
2113           improved size/speed of fast integer code, other minor changes
2114         * device/include/stdio.h, device/lib/Makefile.in,
2115           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
2116
2117 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
2118
2119         * src/pic16/pcode.c: declaring variables other than at the start of a
2120           block is not supported in C by VC6.
2121
2122 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
2123
2124         * applied a previous patch from Raphael Neider that wasn't included
2125         in the previous commits, which fixes infinite loops within jumptable
2126         improvements,
2127         * made some fixes that previous patches introduced
2128
2129 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
2130
2131         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
2132         that fixes an issue with AOP_PCODE asmop's offset,
2133         * (pic16_popCopyReg): update instance field too,
2134         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
2135         function of pic port,
2136         * (genCmp, genAnd, genAssign),
2137         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
2138
2139 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
2140
2141         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
2142         variables initial values to idata section,
2143         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
2144         variables in some functions. This utilizes parmBytes field of iCode
2145         structure to hold the offset of the variable in stack. (might be
2146         able to use the stack field too?)
2147         * applied patch from Raphael Neider # ### , # ###
2148         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
2149         variable initial values in idata section,
2150         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
2151         for static variables with initial value
2152         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
2153         applied fix in while loop from Raphael Neider.
2154
2155 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
2156
2157         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
2158         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
2159         * src/ds390/ralloc.c (serialRegAssign): spill bits
2160         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
2161         * support/Util/SDCCerr.c,
2162         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
2163         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
2164         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
2165
2166 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
2167
2168         * device/include/sdcc-lib.h: inserted LGPL, added includes
2169           asm/ds390/features.h and asm/mcs51/features.h
2170         * device/include/asm/default/features.h,
2171         * device/include/asm/gbz80/features.h,
2172         * device/include/asm/z80/features.h: added empty _AUTOMEM
2173           and _STATMEM
2174         * device/include/asm/ds390/features.h,
2175         * device/include/asm/mcs51/features.h: added files with defines for
2176           _AUTOMEM and _STATMEM indicating automatic and static storage class
2177         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
2178         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
2179         * src/SDCCicode.c (geniCodeCast),
2180         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
2181         * src/SDCCloop.c (loopInduction): removed unused variable lr
2182         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
2183           to convertToFcall to include char modulo (RFE 1065037), added check
2184           if left operand is unsigned and use abs of literal value
2185         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
2186           as it doesn't work after conversion from peephole.def to peephole.rul
2187         * src/mcs51/gen.c (toBoolean): added check for size,
2188           (genModOneByte): optimized code for signed char modulo a literal
2189           power of 2 (thanks to Hubert Sack),
2190           (genRRC): removed unnecessary "clr c",
2191           (genRLC): replaced "add a,acc" with cheaper "rlc a"
2192         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
2193           jump optimization,
2194           swapped rules 256.c and 256.d,
2195           extended 256.d by using new multiple checks (thanks Erik),
2196           added rules 256.e and 256.f,
2197           updated rule 261.a and 261.b to new generated code
2198         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
2199
2200 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2201
2202         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
2203           induction related bugs, including first part of bug #1074377
2204
2205 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
2206
2207         * applied patch from bug-report #1076292,
2208         * applied patches for genAnd and Goto-optimizations for Raphael
2209         Neider,
2210         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
2211         dump a less iCode information,
2212         * src/pic16/device.h (pic16_options_t): added field debgen,
2213         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
2214         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
2215         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
2216         puclic,
2217         * (various functions): added macros FENTRY and FENTRY2 to functions,
2218         to emit function prologue,
2219         * (various functions): fixed indentation,
2220         * (genNearPointerGet): fixed loading of FSR0,
2221         * (genPackBits): applied patch from Raphael Neider to fix updating
2222         of FSR0 and touching only the modified bits,
2223         * src/pic16/genarith.c (various functions): added macros FENTRY to
2224         emit function prologue in comments,
2225         * src/pic16/pcode.h: added functions debugf2, debugf3,
2226         * src/pic16/ralloc.c: partial fix for packForPush caused
2227         segmentation fault,
2228
2229 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2230
2231         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
2232           <stsp AT users.sourceforge.net> with reversed byte order
2233         * support/regression/tests/rotate.c: added (ds390 skips some tests)
2234
2235 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2236
2237         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
2238           bug #1074377
2239         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
2240         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
2241
2242 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2243
2244         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
2245
2246 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2247
2248         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
2249           conditions,
2250           (setFromConditionArgs): friendly operand parser for peephole rules,
2251           (operandBaseName, operandsNotRelated): new peephole condition
2252           "operandsNotRelated" -- similar to "operandsNotSame", but takes
2253           architecture specific register naming into account, handles n-way
2254           comparisons, and supports quoted literals
2255         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
2256
2257 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2258
2259         * src/mcs51/peeph.def: fixed bug #1076940
2260
2261 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2262
2263         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
2264
2265 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2266
2267         Adding support for replacing ljmps with sjmps in jumptables
2268         generated for switch statements. For now you need to set the
2269         environment variable SDCC_SJMP_JUMPTABLE to enable this.
2270         Now 4 algorithms for mcs51 jumptable generation are used:
2271         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
2272         addresses loaded pc-relative for up to 112 cases and stack-pushing
2273         target addresses loaded with offset from dptr for up to 256 cases.
2274
2275         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
2276         * src/mcs51/main.c: adapted constants for switch table generation
2277         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
2278
2279 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
2280
2281         * device/lib/printf_large.c (_print_format): fixed bug 1073386
2282         * support/regression/tests/bug1057979.c: added test for bug 1073386
2283
2284 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2285
2286         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
2287         compilers
2288
2289 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2290
2291         * src/pic16/device.h,
2292         * src/pic16/genarith.c,
2293         * src/pic16/glue.c,
2294         * src/pic16/main.c,
2295         * src/pic16/pcode.c: applied patches #1068154 and #1070213
2296
2297 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
2298
2299         Large cummulative patch for pic16 port.
2300         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
2301         to call when a stack overflow occurs,
2302         * (malloc.h): added CVS Id tag,
2303         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
2304         variable,
2305         * added libc directory. The current version of LibC contains string
2306         functions, ctype functions and macros and some functions of the
2307         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
2308         be extensively tested in the future. Standard disclaimer here.
2309         Library is not automatically build yet. But one can build it by
2310         invoking 'make' inside the libc directory.
2311         * added ADC library under libio. Preliminary version yet.
2312
2313         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
2314         * src/pic16/gen.c (aopForRemat): asmop size is filled by
2315         aopForRemat() now and not by pic16_aopOp(),
2316         * (pic16_popGetTempReg): removed warning messgae when allocating
2317         temporary registers, its a buggy feature and will be removed,
2318         * (pic16_popGet): set register instance field in AOP_CRY,
2319         * (pic16_outBitC): fixed for results in size greater than 1,
2320         * (genUminusFloat): fixed for pic16, ported code from mcs51,
2321         * (pic16_storeForReturn): optimized return of 0,
2322         * (genCmp): experimental code for new genCmp which uses PIC18's
2323         special compare&skip instructions. Initial tests fail some times
2324         with variables grater than 1 byte in size, so new code is disabled,
2325         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
2326         a single bit,
2327         * (genCast): began a fix to optimize the casting of a bit to another
2328         bit, now assigning a bitfield to another bitfield will fail, sorry,
2329         * src/pic16/main.c: disabled the use of lr-support feature,
2330         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
2331         * added some function prototypes, added function _debugf prototype,
2332         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
2333         bits with offset (case PO_GPR_BIT),
2334         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
2335         command line,
2336         * (isBankInstruction): modified to return 0 for no banking instruction,
2337         and 1 for banking instruction,
2338         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
2339         caused stop processing pCodes after a inline assembly block,
2340         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
2341         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
2342         registers when it shouldn't,
2343         * src/pic16/ralloc.c (allocReg): add preliminary support for
2344         supporting a limited set of temporary registers,
2345
2346 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2347
2348         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
2349           genDataPointerSet): ensure assignments always copy in MSB to LSB
2350           order,
2351           (loadRegFromAop): recognize CLRH optimization,
2352           (genFunction): optimize RECEIVE iCodes in reentrant functions
2353
2354 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2355
2356         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
2357           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
2358           selected.
2359         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
2360         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
2361           contiguous with data
2362
2363 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2364
2365         * device/lib/_gptrget.c (_gptrget),
2366         * device/lib/_gptrgetc.c (_gptrgetc),
2367         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
2368           instead of sjmp to ret
2369         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
2370           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
2371
2372 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
2373
2374         * .version: bumped version to 2.4.7
2375         * device/lib/_gptrget.c (_gptrget): is now _naked
2376         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
2377         * device/lib/_gptrput.c (_gptrput): is now _naked
2378         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
2379           (createFunction): fixed xstack
2380         * src/SDCCglue.c (emitMaps): set allocation required for bit area
2381         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
2382           or bit either,
2383           (geniCodeCritical): store original interrupt state in an iTemp bit
2384           var unless stack-auto
2385         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
2386         * src/SDCCmain.c (setIncludePath): added include/target to search path
2387         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
2388         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
2389           prototype,
2390           (processFuncArgs): put bit vars in bit area
2391         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
2392           unsaveRBank): fixed xstack,
2393           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
2394           (genFunction, genEndFunction): fixed xstack,
2395           (genAssign): optimization don't walk backwards through mem
2396         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
2397         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
2398         * support/regression/Makefile: also make library (for stack-auto) when
2399           making "all" and added "test-mcs51-xstack-auto"
2400         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
2401         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
2402         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
2403         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
2404         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
2405           make-library by MAKE_LIBRARY
2406         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
2407           regression tests for xstack
2408         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
2409         * support/regression/tests/critical.c: test for critical on mcs51
2410
2411 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2412
2413         * support/regression/ports/ucz80/spec.mk: use include and lib files from
2414           built version of sdcc instead of installed version
2415
2416 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
2417
2418         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
2419         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
2420           vprintf.c now
2421         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
2422         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
2423           WARNING: remove device/lib/build/z80/printf.o by hand when
2424           updating from previous build!
2425         * device/lib/z80/printf.c: updated comment
2426         * support/regression/tests/bug1057979.c: test all ports now
2427         * support/regression/tests/bug1065458.c: file added
2428
2429 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2430
2431         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
2432           *_start and *_end symbols for static functions
2433
2434 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
2435
2436         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
2437           and search crt0.o in all library paths,
2438           (setIncludePath): proper handling of --nostdinc,
2439           (setLibPath): proper handling of --nostdlib
2440         * support/regression/Makefile,
2441         * support/regression/ports/ds390/spec.mk,
2442         * support/regression/ports/gbz80/spec.mk,
2443         * support/regression/ports/hc08/spec.mk,
2444         * support/regression/ports/mcs51/spec.mk,
2445         * support/regression/ports/mcs51-large/spec.mk,
2446         * support/regression/ports/mcs51-stack-auto/spec.mk,
2447         * support/regression/ports/z80/spec.mk: use include and lib files from
2448           built version of sdcc instead of installed version
2449         * doc/sdccman.lyx: fixed typo in --nostdinc
2450
2451 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
2452
2453         * src/pic/pcode.c,
2454         * src/pic/device.c,
2455         * src/pic/ralloc.c,
2456         * src/pic/gen.c : added support to generate code for struct bit fields.
2457
2458 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
2459
2460         * as/xa51/xa_version.h,
2461         * device/include/errno.h,
2462         * device/include/regc515c.h,
2463         * device/lib/_itoa.c,
2464         * device/lib/_ltoa.c,
2465         * device/lib/ser_ir_cts_rts.c,
2466         * sim/ucsim/xa.src/glob.cc,
2467         * sim/ucsim/xa.src/inst_gen.cc,
2468         * sim/ucsim/xa.src/xa_bit.cc,
2469         * sim/ucsim/xa.src/xa_sfr.cc,
2470         * sim/ucsim/z80.src/inst_dd.cc,
2471         * sim/ucsim/z80.src/inst_fdcb.cc,
2472         * support/scripts/keil2sdcc.pl,
2473         * src/pic16/pic16.dsp,
2474         * src/pic16/pic16a.dsp: corrected cvs line endings
2475         * device/lib/printf_large.c: fixed bug 1057979
2476         * src/pic16/gen.c: fixed non-C standard code
2477         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
2478         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
2479         * support/regression/ports/mcs51/support.c: reload T1 asap
2480         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
2481           pdata use and clear idata startup behaviour
2482         * support/regression/tests/bug1057979.c: added
2483
2484 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
2485
2486         * device/examples/ds390/ow390/ad26.h,
2487         * device/examples/ds390/ow390/cnt1d.h,
2488         * device/examples/ds390/ow390/crcutil.c,
2489         * device/examples/ds390/ow390/ownet.h,
2490         * device/examples/ds390/ow390/owsesu.c,
2491         * device/examples/ds390/ow390/swt12.h,
2492         * device/examples/ds390/ow390/swtoper.c,
2493         * device/examples/ds390/ow390/temp10.h,
2494         * device/examples/ds390/ow390/thermodl.c,
2495         * device/examples/ds390/tinitalk/tinitalk.dsp,
2496         * device/examples/ds390/tinitalk/tinitalk.dsw,
2497         * device/examples/mcs51/clock/hw.h,
2498         * device/examples/mcs51/simple2/go.bat,
2499         * device/examples/serialcomm/windows/serial.h,
2500         * device/examples/xa51/dummy.c,
2501         * device/examples/xa51/hello.c,
2502         * device/include/80c51xa.h,
2503         * device/include/at89x051.h: corrected cvs line endings
2504
2505 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
2506
2507         * src/pic16/main.c (options): added command line --gstack, to trace
2508         stack over/under flows,
2509         * added pragma 'wparam' to allow passing first byte of function
2510         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
2511         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
2512         call to __gstack_test function and sets up the symbol as extern,
2513         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
2514         * popaop): added call to pic16_testStackOverflow,
2515         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
2516         wparamList list,
2517         * (genCall, genPcall): now all parameters are passed via stack
2518         except in functions that are pass to wparam pragma in which WREG is
2519         used too,
2520         * (genPcall): REENTRANT flag is checked to see if variable prototype
2521         contains reentrant keyword, don't call a non-reentrant function, via
2522         a reentrant function pointer or vice versa, functions are never
2523         passed via WREG,
2524         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
2525         D.Winkler,
2526         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
2527         SIGSEGV when accessing a NULL register stucture,
2528         * (pic16_printGPointerType): modified to handle UPPER modifier for
2529         function initializers, changed prototype of function to simpler one,
2530         * (pic16_printIvalFuncPtr): check to see if function is already
2531         added in externs list,
2532         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
2533         optimized a move from W to SFR with a move to the same register
2534         later after a CALL,
2535         * device/lib/pic16/debug: NEW directory, contains debug features
2536         which are enabled when linking with libdebug.lib, currently command
2537         line option --gstack enables stack pointer tracing for over/under
2538         flow, corresponding sources are in debug/gstack
2539
2540 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
2541
2542         * doc/sdccman.lyx: updated SDCC version,
2543         * (PIC16 port): update list of command line options,
2544         * src/pic16/device.h (structure pic16_options_t): added field gstack
2545         to enable stack overflow tracing on push/pops,
2546         * src/pic16/device.c (statistics structure): added statistics
2547         structure,
2548         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
2549         pic16_dump_int_registers): increase statistics counters for each
2550         * variable which is encountered
2551         * (pic16_dump_usection): emit each .udata variable to its own udata
2552         section,
2553         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
2554         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
2555         parameters via stack, otherwise use old scheme,
2556         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
2557         assembler output file,
2558         * src/pic16/main.c: added command line options --gstack to enable
2559         push/pop tracing for stack overflow,
2560         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
2561         instructions): added size of each instruction,
2562         * (pic16_countInstruction): estimate size of instructions in
2563         the_pFile list, inline assembly blocks are not counted,
2564         * (pic16_FixRegisterBanking): trace previous register usage, when
2565         banksel optimizations is greater than 0, don't emit a redudant
2566         banksel directive,
2567
2568 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
2569
2570         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
2571         * src/pic16/ralloc.c : applied same fix for pic16.
2572         * src/pic/gen.c : tidied it up a little.
2573
2574 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2575
2576         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
2577         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
2578
2579 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2580
2581         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
2582
2583 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2584
2585         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
2586         non-reentrant function __modsint in the interrupt function (thus
2587         corrupting math operations during serial I/O)
2588         * device/lib/ser_ir.c: as above, changed buffersize
2589         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
2590         256.c,d for zeroing
2591         * doc/Makefile: added option -t for rsync
2592
2593 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2594
2595         * src/SDCCast.h (struct ast),
2596         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
2597
2598 2004-10-20 Borut Razem <borut.razem AT siol.net>
2599
2600         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
2601         package
2602
2603 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
2604
2605         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
2606         makefile targets,
2607         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
2608         support functions to replace long sequences of MOVFF's from access
2609         bank registers to stack and vice versa,
2610         * src/pic16/device.h: added new field opt_flags, where optimization
2611         flags can be set to enable certain features,
2612         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
2613         * pBlock, (genFunction, genEndFunction): surroung loop for
2614         saving/loading used registers in stack with PC_INFO pCodes,
2615         INF_LREGS. Code in between can then be optimized by pCode optimizer
2616         to support function calls,
2617         * (genDataPointerSet): fixed bug which loaded float fields in
2618         structures with corrupt data,
2619         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
2620         in a standard way debug info on stderr. Feature used for developing
2621         and debugging only,
2622         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
2623         obsolete chunks of code,
2624         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
2625         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
2626         * pic16/src/pcode.c (pic16_newpCodeInfo,
2627         * (pic16_newpCodeOpLocalRegs),
2628         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
2629         feature,
2630         * (pic16_pCodeConstString): printing of the initial value of a
2631         symbol as a comment is inhibited since parsing was already done by
2632         copyStr and output is corrupt,
2633         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
2634
2635 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2636
2637         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
2638
2639 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
2640
2641         * as/mcs51/lkarea.c: removed old K&R style,
2642           (lnksect): changed check on boundary error,
2643           (lnksect2): changed check on boundary error,
2644           (lnksect2): extend XSTK to end of page if size = 1
2645         * as/mcs51/lkmain.c: removed old K&R style,
2646           (Areas51): create l_IRAM symbol
2647         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
2648         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
2649           model-mcs51-stack-auto, added model-mcs51-xstack-auto
2650         * device/lib/_mullong.c: added version to be compiled with xstack
2651         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
2652         * device/lib/mcs51/crtxclear.asm: clear pdata as well
2653         * device/lib/mcs51/crtxstack.asm: fixed comment
2654         * src/SDCCglue.c: maxInterrupts defaults to 0,
2655           (emitMaps): added pdata,
2656           (createInterruptVect): (re)moved default,
2657           (glue): added pdata,
2658           (glue): moved __start__xstack to XSTK with default size 1
2659         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
2660           and options.float_rent when options.stackAuto is set,
2661           (linkEdit): only write XDATA_NAME if provided on command line
2662         * src/SDCCmem.h,
2663         * src/SDCCmem.c: added pdata
2664         * src/port.h: added pdata_name to PORT
2665         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
2666           (saveRegisters, unsaveRegisters): removed usage of B,
2667           (genMinus): fixed accumulator clash,
2668           (genJumpTab): added comment, this needs another look
2669         * src/mcs51/gen.c: added check for "B in use" paranoia,
2670           added pushB() and popB()
2671         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
2672           chance
2673         * src/avr/main.c,
2674         * src/ds390/main.c,
2675         * src/hc08/main.c,
2676         * src/mcs51/main.c,
2677         * src/pic/main.c,
2678         * src/pic16/main.c,
2679         * src/xa51/main.c,
2680         * src/z80/main.c: (reset_regparms) made void parameter explicit and
2681           added PSEG (PAG,XDATA) or NULL to port specifier
2682         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
2683         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
2684           (_mcs51_genInitStartup): removed __start__xstack equ,
2685           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
2686         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
2687         * src/z80/gen.c (_rleAppend): fixed warnings
2688         * support/regression/tests/zeropad.c: added pdata test
2689         * .version: bumped to 2.4.6
2690
2691 2004-10-17 Borut Razem <borut.razem AT siol.net>
2692
2693         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
2694         as a part of nightly build
2695
2696 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
2697
2698         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
2699         WREG holds the first byte function parameters,
2700         * (aopForSym): take special case for symbols which are in FARSPACE
2701         but in CODESPACE too,
2702         * (assignResultValue): modified to take into account _G.useWreg,
2703         * (genCall): don't use wreg for parameter passing when function is
2704         declared as reentrant, too, added optimization INCF to stack
2705         pointer when stack parameter count is 1,
2706         * (genFunction, genEndFunction): refurnished and fixed to not using
2707         wreg for passing parameters when function has varargs or is
2708         reentrant, fixed bug with symbol name compare for generating
2709         functions in absolute address,
2710         * (pic16_storeForReturn): refurnished,
2711         * (genCmp): began writing a new version of the function, not ready
2712         yet, therefore it is disabled,
2713         * (genAssign): do not read code memory when assigning a function to
2714         a pointer function,
2715         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
2716         array of characters, not pointer,
2717         * (pic16initialComments): in debug mode emit an .ident directive for
2718         the assembler,
2719         * (_process_pragma): emit a new warning type (internal to pic16)
2720         when setting stack to default length, emit a similar warning when
2721         placing a function at absolute address and address is not word aligned
2722         * (_pic16_parseOptions): added 'return TRUE' statement,
2723         * (_pic16_linkEdit): if compiling a source, then add the source's
2724         file object, first in the list of objects to link,
2725
2726 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
2727
2728         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
2729         * src/pic/main.c : removed VC warning.
2730         * src/pic/gen.c : changed comment.
2731
2732 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
2733
2734         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
2735         reference to a deprecated symbol _GPTRREG was causing failure to
2736         link. Thanks G. M. Gallant for the info.
2737
2738 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
2739
2740         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
2741         comments for Bugs item #954788.
2742
2743 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
2744
2745         * src/pic16/device.c (pic16_dump_gsection,
2746         * pic16_groupRegistersInSection): handle symbols declared to be in
2747         access bank differently,
2748         * src/pic16/gen.c (struct _G): added field resDirect,
2749         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
2750         send values read from stack directly to result and don't allocate
2751         temporary values,
2752         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
2753         same registers,
2754         * (pic16_sameRegsOfs): NEW,
2755         * (freeAsmop): if _G.resDirect is set then do not mark registers as
2756         free because they were not allocated from temporary pool,
2757         * pic16_popRegFromString): workaround to fix a problem with
2758         allocating variables twice or never,
2759         * (genGenPointerGet): using PRODL instead of FSR0H,
2760         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
2761         instead of FSR0H,
2762         * (genAssign): take advantage of the _G.resDirect flag,
2763         * (genCast): around line 11844, use mov2f instead of directly
2764         MOVFF'ing between operands to account for literal values,
2765         * src/pic16/genutils.c: some new debug functions for gpsim have been
2766         added,
2767         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
2768         float with integer part only,
2769         * src/pic16/main.c (_process_pragma): handle pragma udata access to
2770         place variables in access bank
2771         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
2772         updated sources to reflect recent changes in gen.c
2773
2774 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
2775
2776         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
2777         sources that searched for headers in installation path, now the
2778         device/include/pic16 is used,
2779         * src/pic16/glue.c (pic16glue),
2780         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
2781         .line directives if not in debug mode, this suppresses assembler's
2782         warnings for ignored directives
2783
2784 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
2785
2786         * src/port.h: made reset_regparms prototype void parameter explicit.
2787         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
2788         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
2789         * doc/sdccman.lyx: documented warning disabling and how to use
2790           printf_large to make it print floats.
2791         * device/include/stdbool.h: NEW
2792         * device/lib/_atof.c,
2793         * device/lib/_divuint.c,
2794         * device/lib/_divulong.c,
2795         * device/lib/expf.c,
2796         * device/lib/printf_large.c,
2797         * device/lib/sincosf.c,
2798         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
2799         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
2800           a completely reentrant lib.
2801
2802 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
2803
2804         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
2805         * device/include/pic16/stdio.h: fixed bug with colon
2806
2807 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
2808
2809         * device/include/pic16/stdio.h,
2810         * device/include/pic16/stdlib.h,
2811         * device/include/pic16/math.h: NEW
2812         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
2813         declared as _naked to reduce overhead
2814         * device/lib/Makefile.in (target port-specific-objects-pic16):
2815         changed * to *.* so to ignore the CVS directory,
2816         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
2817         stacked variables back in stack,
2818         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
2819         corruption
2820
2821 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
2822
2823         * .version: bumped version number to 2.4.5
2824         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
2825         * support/Util/SDCCerr.c (messages structure): added entry for
2826         W_POSSBUG2
2827
2828         Large cumulative patch for pic16 port and libraries.
2829         * device/include/pic16/sdcc-lib.h,
2830         * device/include/pic16/stdarg.h,
2831         * device/include/asm/pic16/features.h,
2832         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
2833         * device/include/pic16/float.h: changes reentrant keyword with
2834         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
2835         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
2836         updated target build-libraries to include objects from gptr,
2837         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
2838         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
2839         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
2840         all function headings,
2841         * src/SDCCmain.c: added global parameter userIncDirsSet,
2842         * (parseCmdLine): when option -I is encountered add directory to
2843         userIncDirsSet too,
2844         * src/version.awk: added space between control and long,
2845         * src/pic16/NOTES: added some notes for the port,
2846         * src/pic16/gen.c: added prototype for mov2fp function,
2847         * (fReturnpic16[]): properly named return value registers,
2848         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
2849         * (aopForSym): added code to handle symbols with onStack flag set,
2850         symbols onStack are allocated PTRSIZE bytes,
2851         * (aopFreeAsmop): handles special case where asmops are stack objects,
2852         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
2853         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
2854         added argument lock to trace flaws in allocating temporary registers
2855         when developing port,
2856         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
2857         * (pic16_popRegFromString): reenabled allocating a direct register
2858         from string,
2859         * (assignResultValue): various beautifications,
2860         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
2861         referenced function argument,
2862         * (genIpush): reenabled to allow stacked arguments, handles only
2863         ic->parmPush iCodes,
2864         * (genCall, genPcall): major changes to allow for variable argument
2865         functions, fixed a bug with falsely restoring stack pointer after
2866         returning from call,
2867         * (genFunction): pending code for critical function,
2868         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
2869         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
2870         * (genNearPointerGet): fixed bug with indirect reading, was always
2871         reading from INDF0
2872         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
2873         pointers,
2874         * (genAddrOf): rewrote code to take address of a stacked function parameter
2875         * (genCast): fixed casting to generic pointer type,
2876         * src/pic16/gen.h: added AOP_STA,
2877         * (struct asmop): added field stk,
2878         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
2879         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
2880         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
2881         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
2882         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
2883         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
2884         generic pointers,
2885         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
2886         and library paths,
2887         * (pic16_port structure): generic pointer size is set to 3,
2888         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
2889         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
2890         compiler warning,
2891         * src/pic16/ralloc.c (allocReg): prevent allocating register when
2892         operand is an iTemp,
2893
2894 2004-09-24 Martin Helmling <mh AT octo-soft.de>
2895
2896         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
2897         * debugger/mcs51/simi.c: addapt new syntax of s51
2898
2899 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
2900
2901         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
2902         * src/pic16/pcode.c: commented out some calls to free() in order to
2903         fix bug #989576,
2904
2905 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2906
2907         * src/SDCCicode.h,
2908         * src/SDCCicode.c (isiCodeInFunctionCall),
2909         * src/avr/ralloc.c (selectSpil),
2910         * src/pic/ralloc.c (selectSpil),
2911         * src/pic16/ralloc.c (selectSpil),
2912         * src/ds390/ralloc.c (selectSpil),
2913         * src/hc08/ralloc.c (selectSpil),
2914         * src/xa51/ralloc.c (selectSpil),
2915         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
2916         stack in the middle of a function call sequence (fixes bug #1020268)
2917         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
2918         costs associated with the minimum switch case.
2919
2920 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2921
2922         * src/SDCC.lex: fixed bug #1030549
2923
2924 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2925
2926         * src/SDCCcse.h (struct cseDef),
2927         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
2928         over a function call if the CSE is derived from a symbol whose
2929         address has been taken (fixes bug #1029883)
2930         * support/regression/tests/bug-1029883: a new regression test for
2931         this bug
2932
2933 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2934
2935         * src/hc08/gen.c (emitinline): fixed bug #1029778
2936         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
2937         to a cast object is no longer a syntax error ("fixes" bug #1030006,
2938         and starts toward RFE #905167)
2939
2940 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
2941
2942         * src/pic16/gen.c (mov2f): New function to move an operand to
2943         another without considering if it is a literal or a register,
2944         * (pic16_sameRegs): don't check if they are both AOP_REG,
2945         * (AccRsh): removed andmask=0 lines,
2946         * (genLeftShift): duplicated to be improved in future versions,
2947         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
2948         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
2949         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
2950         * (pic16initMnemonics): added initialization for POC_INFSNZW,
2951         * (insertBankSwitch): fixed inserting banksel directives algorithm
2952         for instructions that follow a skip instruction, this fixes a report
2953         for broken subtraction code generation,
2954         * src/pic16/ralloc.c (deassignLRs): do not free register if current
2955         iCode is a left op, just in case result and right share the same
2956         registers
2957
2958 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2959
2960         * src/hc08/main.c,
2961         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
2962         preservation of HX
2963         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
2964         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
2965         on 2004-09-12; it was buggy
2966
2967 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
2968
2969         * src/SDCCsymt.h: removed RESULT_CHECK
2970         * src/SDCCast.c,
2971         * src/SDCCglue.c,
2972         * src/SDCCval.c,
2973         * src/pic/glue.c,
2974         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
2975
2976 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
2977
2978         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
2979         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
2980         configuration values no more rejected by compiler, they are assigned
2981         to configuration registers with a warning message instead,
2982         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
2983         the for-loop so last conf register is emitted too,
2984         * (_pic16_initPaths): link library libsdcc.lib by default,
2985         * (_hasNativeMulFor): modified test for multiplication according to
2986         Raphael Neider's remarks. Integer multiplication is also done with
2987         support functions,
2988         * device/include/pic16/pic18fregs.h: corrected type error in while
2989         testing and including 18f6720 header file
2990
2991 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
2992
2993         * src/pic16/device.h (pic16_options): removed field use_crt,
2994         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
2995         until an optimization to handle single bits is added,
2996         * (pic16_loadFSR0): moved before genUnpackBits,
2997         * (genAnd): some white lines removed,
2998         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
2999         leave_reset flags in pic16_options when using crt modules,
3000
3001 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
3002
3003         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
3004           for bugs 898889 & 979599. Also used some safer print instructions.
3005
3006 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
3007
3008         * src/pic16/device.h (pic16_options_t): added field use_crt,
3009         crt_name, no_crt,
3010         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
3011         catch a probable future bug,
3012         * src/pic16/gen.c: aopIdx function commented out,
3013         * (genAssign): commented out old code which used aopIdx,
3014         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
3015         code, added if conditionals to take into account the --use-crt
3016         command line options,
3017         * src/pic16/main.c (pic16_optionsTable): added new command line
3018         options, --use-crt= and --no-crt,
3019         * (_pic16_linkEdit): now the proper crt object is added in the
3020         linker command line except than when --no-crt is specified,
3021         * src/pic16/pcode.c,
3022         * src/pic16/pcode.h: added some structures and functions for a new
3023         optimization scheme to compansate for instruction overhead between
3024         same iCodes, this scheme is currently under development and is not
3025         working in any way,
3026         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
3027         to && operator,
3028         * device/lib/pic16/startup/crt0i.c,
3029         * device/lib/pic16/startup/crt0iz.c: added global char variable
3030         __uflags to force the generation of an idata section
3031
3032 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
3033
3034         * doc/Makefile,
3035         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
3036         * doc/sdccman.lyx: updated sdcc version to 2.4.4
3037
3038 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3039
3040         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
3041         Frieder) and clarified the default code optimization mode
3042
3043 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3044
3045         * src/SDCC.lex (doPragma, process_pragma),
3046         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
3047         "opt_code_size", and "opt_code_balanced"
3048         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
3049         regrouped options by category, added support for category headers
3050         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
3051         and "--opt-code-size"
3052         * doc/sdccman.lyx: documented these new options and pragmas
3053         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
3054         preference into account
3055
3056 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3057
3058         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
3059           geniCodePreDec): Fixed bug 904237 by generating a warning
3060         * src/SDCCerr.h,
3061         * src/SDCCerr.c: added warning W_SIZEOF_VOID
3062
3063 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
3064
3065         * src/pic/device.c : When no max ram set validate full memory range.
3066         * src/pic/pcode.c,
3067         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
3068
3069 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3070
3071         * device/lib/_gptrget.c,
3072         * device/lib/_gptrput.c: updated comment
3073         * device/lib/calloc.c,
3074         * device/lib/free.c,
3075         * device/lib/malloc.c,
3076         * device/lib/realloc.c: added LGPL, made them reentrant-safe
3077         * src/SDCCcse.c (cseBBlock),
3078         * src/SDCCicode.c (printOperand, geniCodeArray),
3079         * src/SDCCicode.h (struct operand): fixed bug 868103
3080         * support/regression/tests/bug-868103.c: added
3081         * src/SDCCast.c (searchLitOp),
3082         * src/SDCCcse.h (struct cseDef),
3083         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
3084         * src/SDCCicode.h (struct operand),
3085         * src/SDCCsymt.h (struct sym_link),
3086         * src/avr/gen.c (hasInc),
3087         * src/ds390/gen.c (hasInc),
3088         * src/hc08/gen.c (genPlusIncr, hasInc),
3089         * src/mcs51/gen.c (hasInc),
3090         * src/pic16/glue.c (pic16_printIvalChar),
3091         * src/pic16/ralloc.c (regWithIdx),
3092         * src/xa51/gen.c (hasInc) : removed warnings
3093         * src/SDCCast.c (createBlock): added comment ???
3094         * src/hc08/ralloc.c: updated comments
3095
3096 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3097
3098         * doc/sdccman.lyx: updated section on switch statements, added
3099         section about semaphore locking
3100         * doc/Makefile: added option -info for latex2html
3101         * device/lib/_gptrget.c,
3102         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
3103
3104 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3105
3106         * src/pic/device.h,
3107         * src/pic/device.c,
3108         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
3109          maxram is less than 0x100.
3110
3111 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3112
3113         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
3114
3115 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3116
3117         * src/port.h,
3118         * src/mcs51/main.c,
3119         * src/ds390/main.c,
3120         * src/z80/main.c,
3121         * src/hc08/main.c,
3122         * src/pic/main.c,
3123         * src/pic16/main.c,
3124         * src/avr/main.c,
3125         * src/xa51/main.c
3126         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
3127         a jump table is the best form for a switch statement, including
3128         automatic insertion of missing cases to make the case range
3129         continuous. Developed in collaboration with Frieder Ferlemann.
3130
3131 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3132
3133         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
3134         accumulator result if it needs sign extension
3135
3136 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3137
3138         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
3139
3140 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3141
3142         * device/lib/gbz80/printf.c,
3143         * device/lib/z80/printf.c: removed define for NULL
3144
3145 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3146
3147         * as/xa51/xa_link.c,
3148         * device/examples/ds390/ow390/ad26.c,
3149         * device/examples/ds390/ow390/cnt1d.c,
3150         * device/examples/ds390/ow390/counter.c,
3151         * device/examples/ds390/ow390/ds2480.h,
3152         * device/examples/ds390/ow390/ds2480ut.c,
3153         * device/examples/ds390/ow390/findtype.c,
3154         * device/examples/ds390/ow390/gethumd.c,
3155         * device/examples/ds390/ow390/owllu.c,
3156         * device/examples/ds390/ow390/ownetu.c,
3157         * device/examples/ds390/ow390/swt12.c,
3158         * device/examples/ds390/ow390/swtloop.c,
3159         * device/examples/ds390/ow390/temp.c,
3160         * device/examples/ds390/ow390/temp10.c,
3161         * device/examples/ds390/ow390/thermo21.c,
3162         * device/examples/ds390/ow390/tinilnk.c,
3163         * device/examples/ds390/ow390/tstfind.c,
3164         * device/examples/serialcomm/windows/serial.cpp,
3165         * device/examples/serialcomm/windows/test_serialcomm.cpp,
3166         * device/include/reg51.h: fixed line endings for cvs
3167
3168 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3169
3170         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
3171         packRegsForAccUse, packRegisters): new accumulator register
3172         packing algorithm
3173         * support/regression/ports/hc08/support.c (_putchar): suppress
3174         warning of unused variable
3175         * src/SDCCicode.c: added SWAP entry to codeTable
3176
3177 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
3178
3179         * device/lib/sprintf.c: forgot to add this file before previous commit
3180
3181 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
3182
3183         * src/pic16/gen.c (genPackBits): added operand right in function
3184         parameters, load result directly if p_type is POINTER (that is
3185         called by genNearPointerSet)
3186         * (genUnPackBits): added operand left in function parameters,
3187         * (genNearPointerGet, genNearPointerSet): prevent the loading of
3188         FSR0 if accessing bitfields,
3189
3190 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
3191
3192         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
3193           _print_format; updated printf, sprintf, vsprintf
3194         * device/include/asm/default/features.h: corrected comment/define
3195         * device/lib/Makefile.in: added sprintf.c
3196         * device/lib/libsdcc.lib: added sprintf module
3197         * device/lib/printf_large.c,
3198         * device/lib/vprintf.c,
3199         * device/lib/sprintf.c: totally refactored printf_large and vprintf
3200           into these 3 files
3201         * support/regression/Makefile: changed ALL_PORTS into a usefull default
3202         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
3203         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
3204           hc08 test
3205         * support/regression/tests/zeropad.c: define idata as data for hc08
3206
3207 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3208
3209         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
3210         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
3211         labels are referenced at least once (even if a reference is not found)
3212         * src/hc08/gen.c (emitcode): set isComment flag for comments
3213         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
3214         loads), rules 6a..6b (optimize jumps to return)
3215
3216 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3217
3218         * device/lib/acosf.c (acosf),
3219         * device/lib/asinf.c (asinf),
3220         * device/lib/atanf.c (atanf),
3221         * device/lib/ceilf.c (ceilf),
3222         * device/lib/cosf.c (cosf),
3223         * device/lib/coshf.c (coshf),
3224         * device/lib/cotf.c (cotf),
3225         * device/lib/fabsf.c (fabsf),
3226         * device/lib/floorf.c (floorf),
3227         * device/lib/log10f.c (log10f),
3228         * device/lib/logf.c (logf),
3229         * device/lib/sinf.c (sinf),
3230         * device/lib/sinhf.c (sinhf),
3231         * device/lib/sqrtf.c (sqrtf),
3232         * device/lib/tanf.c (tanf),
3233         * device/lib/tanhf.c (tanhf),
3234         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
3235         replaced all instances of "reentrant" in the library functions
3236         defined in math.h with this macro.
3237         * support/regression/tests/float_trans.c: reenabled test for hc08
3238
3239 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
3240
3241         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
3242         erroneously deleted
3243
3244 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3245
3246         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
3247         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
3248         multi-byte volatile operands are used
3249         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
3250         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
3251         initialization to area GSINIT0 so that it would always precede
3252         any static initializers in GSINIT
3253         * support/regression/tests/zeropad.c: fixed idata define for hc08
3254         * support/regression/tests/bug-927659.c,
3255         * support/regression/tests/float_trans.c: disabled tests for hc08
3256         pending missing library routines
3257         * .version: increased version number to 2.4.4 - hc08 port now passes
3258         regression tests
3259
3260
3261 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
3262
3263         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
3264         * Makefile.common.in,
3265         * as/Makefile,
3266         * as/hc08/Makefile.in,
3267         * as/mcs51/Makefile.in,
3268         * as/z80/Makefile.in,
3269         * debugger/mcs51/Makefile.in,
3270         * device/include/Makefile.in,
3271         * device/lib/Makefile.in,
3272         * doc/Makefile,
3273         * link/Makefile,
3274         * link/z80/Makefile.in,
3275         * packihx/Makefile.in,
3276         * sim/ucsim/main_in.mk,
3277         * sim/ucsim/avr.src/Makefile.in,
3278         * sim/ucsim/doc/Makefile.in,
3279         * sim/ucsim/gui.src/serio.src/Makefile.in,
3280         * sim/ucsim/hc08.src/Makefile.in,
3281         * sim/ucsim/s51.src/Makefile.in,
3282         * sim/ucsim/xa.src/Makefile.in,
3283         * sim/ucsim/z80.src/Makefile.in,
3284         * src/Makefile.in,
3285         * support/cpp2/Makefile.in,
3286         * support/librarian/Makefile,
3287         * support/makebin/Makefile: added DESTDIR to the install path proposed
3288         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
3289         * doc/sdccman.lyx: added DESTDIR documentation
3290
3291 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
3292
3293         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
3294         instruction for interrupt handlers, use fast returns when returning
3295         from high priority interrupts
3296
3297 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3298
3299         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
3300         code generation
3301         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
3302         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
3303         bugs, ported much of Bernhard's code from mcs51
3304         * src/mcs51/gen.c (genSend),
3305         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
3306         than one when calling a reentrant function
3307         * device/lib/_mullong.c: defined an alternate struct layout for big
3308         endian ports (hc08)
3309
3310 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3311
3312         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
3313         test
3314
3315 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3316
3317         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
3318         are sane and complete before asking the port its prefered parameter
3319         passing method (fixes bug #1017633)
3320         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
3321         and _ret3
3322
3323 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3324
3325         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
3326         problem in bitfields >= 8 bits.
3327
3328 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3329
3330         * src/SDCCsymt.c: undid changes that were not meant to be committed
3331
3332 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3333
3334         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
3335
3336 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3337
3338         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
3339           copied and wrong bit got inverted
3340
3341 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3342
3343         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
3344         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
3345         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
3346         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
3347         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
3348         assignments to bitfields at known addresses
3349         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
3350         reads from bitfields at known addresses
3351         * src/hc08/ralloc.c (packRegisters),
3352         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
3353         genhc08Code): optimize pointer get values used as conditionals
3354         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
3355         and branch
3356
3357 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3358
3359         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
3360         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
3361         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
3362         as conditionals
3363
3364 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3365
3366         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
3367
3368 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3369
3370         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
3371         related problems
3372
3373 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
3374
3375         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
3376
3377 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3378
3379         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
3380         mcs51 port
3381
3382 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
3383
3384         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
3385
3386 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3387
3388         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
3389         cases use more compact code.
3390
3391 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
3392
3393         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
3394
3395 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3396
3397         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
3398
3399 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3400
3401         * src/SDCCsymt.h,
3402         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
3403         parameter of changePointer() from symbol* to sym_link*
3404         * src/SDCCast.c (decorateType): call changePointer() for CAST op
3405         * src/SDCCsymt.c (compareType): void* type is castable to other
3406         pointers, but not necesarily an exact match.
3407         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
3408         is no longer blindly treated as an exact match.
3409         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
3410
3411 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
3412
3413         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
3414
3415 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
3416
3417         * src/pic/gen.c,
3418         * src/pic/pcode.c,
3419         * src/pic/ralloc.h,
3420         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
3421
3422 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
3423
3424         * src/pic/device.c,
3425         * src/pic/device.h,
3426         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
3427
3428 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3429
3430         * src/mcs51/gen.c (emitcode): fixed bug #992819
3431
3432 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
3433
3434         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
3435           there's no need to make it worse
3436
3437 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3438
3439         * src/mcs51/ralloc.c (deassignLR),
3440         * src/ds390/ralloc.c (deassignLR),
3441         * src/hc08/ralloc.c (deassignLR),
3442         * src/z80/ralloc.c (deassignLR),
3443         * src/pic/ralloc.c (deassignLR),
3444         * src/pic16/ralloc.c (deassignLR),
3445         * src/avr/ralloc.c (deassignLR),
3446         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
3447         rlivePoint): fixed another part of bug #971834
3448
3449 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3450
3451         * src/z80/main.c: enabled "critical" keyword
3452         * src/z80/mappings.i,
3453         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
3454         functions (fixes bug #979646)
3455         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
3456
3457 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3458
3459         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
3460           such as c:\mydir.
3461
3462 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
3463
3464         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
3465           doesn't disable too much optimizations
3466
3467 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3468
3469         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
3470
3471 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
3472
3473         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
3474
3475 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3476
3477         * src/pic/gen.c tidied up tabs
3478         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
3479         * src/pic/main.c tidied up tabs
3480         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
3481         * src/pic/pcoderegs.c tidied up tabs
3482         * src/pic/ralloc.c tidied up tabs
3483
3484 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
3485
3486         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
3487         to S_FIXED for pic16 port and when symbol is not in level 0,
3488         allocate for S_REGISTER storage class and pic16 port, too,
3489         * src/pic16/device.h: prototype for checkSym,
3490         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
3491         * (pic16_assignConfigWordValue): test the value and the mask to
3492         validate that the value is suitable for the configuration word,
3493         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
3494         collect extern declared symbols, don't emit symbol twice, check
3495         first if symbol is in publics set first,
3496         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
3497         * added command line '--fstack' which enables an experimental
3498         feature for stack access, too buggy to be used yet...
3499         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
3500         * (pic16_allocDirReg): when register has storage class S_REGISTER
3501         allocate in pic16_dynAccessRegs,
3502         * device/include/pic16/pic18f????.h: modified configuration word
3503         naming convention, words started as CONFIG0H but should be CONFIG1H
3504
3505 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
3506
3507         * device/include/mcs51reg.h: fixed bug 970993
3508
3509 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
3510
3511         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
3512         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
3513         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
3514         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
3515         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
3516         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
3517           error/warning numbers,
3518           added function setWarningDisabled()
3519         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
3520         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
3521           _memcmp.c _memmove.c calloc.c realloc.c free.c
3522         * support/regression/tests/malloc.c: added tests for new functionality
3523         * support/regression/tests/zeropad.c: added tests for truncated initializers
3524           and initialized char arrays starting with '\x0'
3525         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
3526
3527 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
3528
3529         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
3530
3531 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3532
3533         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
3534         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
3535         peephole 177.e. Thanks to anonymous
3536
3537 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
3538
3539         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
3540         function isn't used in the source but referenced as a
3541         variable initializer then declare it as extern in .asm file
3542
3543 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
3544
3545         * .version: increased version number to 2.4.3
3546
3547         Adding version extension according to ChangeLog CVS revision
3548         * src/Makefile.in (target all): added dependency 'version.h'
3549         * (rule version.h): added rule to create version.h from ChangeLog,
3550         * (rule dep): added dependency version.h,
3551         * src/version.awk: AWK script to create version.h
3552         * src/SDCCdwarf2.c (dwWriteModule),
3553         * src/SDCCglue.c (initialComments),
3554         * src/SDCCmain.c (printVersionInfo): modified to write after
3555         version string the version extension number,
3556         * src/SDCCutil.c: included "version.h"
3557         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
3558         number,
3559         * src/SDCCutil.h: added prototype for getBuildNumber
3560
3561         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
3562         includeDirsSet, too,
3563         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
3564         const char [] is found in function prototype...
3565
3566         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
3567         moving to WREG with source is already in WREG,
3568         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
3569         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
3570         * (aopForSym): stack'ed symbols are partially supported, added
3571         if-clause to support symbols in FARSPACE,
3572         * (sameRegs): added test for AOP_ACC to see if registers are same,
3573         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
3574         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
3575         * (pic16_popRegFromString): will not allocate a new register if it
3576         doesn't find one by name, bug may have introduced...
3577         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
3578         * (genIpush): revived to use pic16 port's stack,
3579         * (genAddrOf): added incomplete case for stack'ed operand,
3580         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
3581         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
3582         can handle multibyte operands,
3583         * src/pic16/glue.c (pic16_printIval*): some debug info added,
3584         * (pic16initialComments): added message for MPLAB compatibility
3585         mode enabled,
3586         * src/pic16/main.h: prototype for pic16_mplab_comp,
3587         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
3588         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
3589         * (_pic16_linkEdit): NEW, handles link stage, transferred here
3590         because of increased complexity of procedure,
3591         * (_process_pragma): stack pragma changed to format 'stack pos len',
3592         emit symbol '_stack_end' to conform with gplink,
3593         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
3594         to search for register,
3595         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
3596         PO_GPR_REGISTER,
3597         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
3598         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
3599         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
3600         case for PO_GPR_REGISTER,
3601         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
3602         dies, the new era is ahead !...
3603         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
3604         pic16_dynInternalRegs,
3605         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
3606         * (pic16_allocDirReg): minor optimizations and bug fixes,
3607         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
3608
3609         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
3610         load stack and frame pointer with address of 'stack_end' symbol
3611
3612 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
3613
3614         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
3615         without source code but only variable initializers
3616
3617 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
3618
3619         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
3620         external are not declared as extern to reduce overhead while linking
3621
3622 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
3623
3624         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
3625
3626 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
3627
3628         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
3629           Yee Keat for the patch
3630         * src/SDCCast.c (decorateType): fixed bug #979599
3631         * src/ds390/gen.h: removed local fReturnSizeDS390
3632         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
3633         * src/ds390/gen.c (genAnd, genOr, genXor),
3634         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
3635
3636 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
3637
3638         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
3639         add relFilesSet to $3, manipulate $2 to handle linking of object
3640         files without source files in command line,
3641         * device/include/pic16 (all headers): added ID location macros,
3642         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
3643         entries for ID location bytes,
3644         * (pic16_assignIdByteValue): NEW,
3645         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
3646         added field dumpcalltree to pic16_options_t,
3647         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
3648         is used instead of pic16_Gstack_base_addr, check if (ifx) before
3649         emitting rFalseIfx label after check_carry label,
3650         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
3651         pic16_emitDIRegs), NEW
3652         * (pic16glue): dump .calltree file when option --calltree found,
3653         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
3654         * (_pic16_genAssemblerPreamble): emit ID locations after
3655         configuration registers,
3656         * (pic16_linkCmd): modifications of the link command,
3657         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
3658         * (pic16_pCodeInitRegisters): don't init stack registers,
3659         * (pic16_findPrevInstruction): fixed bug,
3660         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
3661         bug with immediate registers,
3662         * (buildCallTree): traces stack push and pop,
3663         * (pct2): dump also stack usage for each function,
3664         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
3665         * (pic16_allocDirReg): various modifications,
3666         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
3667         fixed to 1,
3668
3669 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
3670
3671         * src/pic16/pcode.c: removed buggy double colon
3672
3673 2004-07-01 Borut Razem <borut.razem AT siol.net>
3674
3675         * support/scripts/sdcc.nsi: added include/pic16 to setup
3676
3677 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
3678
3679         * device/lib/Makefile.in: fixed bug in target objects-pic16,
3680         * device/lib/pic16/Makefile: prefixed with dash (-) command under
3681         target 'clean',
3682         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
3683         specific command line arguments. Also added sample lkr script
3684         for placing a variable at a specific memory bank.
3685         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
3686         at a specific memory bank,
3687         * (pic16_dump_isection): fixed bug which caused string literals to
3688         be omitted when dumping idata section,
3689         * (pic16_groupRegistersInSection): added code to handle registers
3690         in specific memory banks,
3691         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
3692         public, all references are renamed too,
3693         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
3694         AOP_DPTR2,
3695         * (pic16_storeForReturn): added case to handle when dest is WREG,
3696         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
3697         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
3698         pic16_rel_udata, check to see if that register is marked as being
3699         a member of a specific memory bank,
3700         * (pic16_printIvalCharPtr): added code to add string literals either
3701         to code or the idata sections,
3702         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
3703         also accept the 'udata' pragma,
3704         * src/pic16/main.h: new structure types sectName and sectSym
3705         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
3706         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
3707         * (pic16_findPrevInstruction): fixed, it returned nothing,
3708         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
3709         instruction combinations,
3710         * (pic16_FixRegisterBanking): heavily reorganised,
3711         * (pic16_AnalyzeBanking): if generating banksel directives is
3712         disabled, then don't call FixRegisterBanking at all,
3713         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
3714         completely removed,
3715         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
3716
3717 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
3718
3719         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
3720         Phuah Yee Keat <yk.phuah AT nestac.com>
3721
3722 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3723
3724         * src/pic16/glue.c (pic16createInterruptVect): function now emits
3725         correctly the IVT even if it is relocated to some other location
3726
3727 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3728
3729         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
3730         * device/include/pic16/pic18f2220.h: NEW,
3731         * device/lib/pic16/libdev/pic18f2220.c: NEW,
3732         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
3733         * src/pic16/device.c (struct Pics16): added info for 18f2220,
3734         * src/pic16/device.h (struct pic16_options): added ivt_loc and
3735         nodefaultlibs, ivt_loc is the location of the interrupt vector
3736         table, and nodefaultlibs signs that default libraries should not be
3737         linked in link stage,
3738         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
3739         according to --ivt-loc argument,
3740         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
3741         when pragma stack is found,
3742
3743 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3744
3745         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
3746         256 (range check), 257 (do while), 258.a-f (bit banging
3747         f.e. on 3-wire SPI bus)
3748
3749 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3750
3751         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
3752         variables used exclusively within a loop
3753
3754 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
3755
3756         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
3757
3758 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3759
3760         * src/SDCClrange.c (computeClash): fixed bug #971834
3761
3762 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3763
3764         * src/mcs51/gen.c (genCmp): fixed bug #975903
3765         * src/hc08/gen.c (operandsEqu),
3766         * src/ds390/gen.c (operandsEqu),
3767         * src/z80/gen.c (operandsEqu),
3768         * src/pic/gen.c (operandsEqu),
3769         * src/pic16/gen.c (operandsEqu),
3770         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
3771         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
3772
3773 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3774
3775         * src/SDCCcse.c (cseBBlock): fixed bug #966963
3776
3777 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
3778
3779         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
3780         default case in switch statement,
3781         * glue.c (pic16_initPointer): expr is initialised via decoarteType
3782         to eliminate problem with initialisation of pointers, but problem
3783         still exists,
3784         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
3785         * (emitStaticSegment): removed various lines emitting debug info,
3786         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
3787         added processor registers for utilizing EEPROM,
3788         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
3789         configurable and set 8
3790
3791 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
3792
3793         * .version: increased version number to 2.4.2,
3794
3795         Cumulative patch for pic16 port
3796         * src/pic16/device.c: changed scheme to dump initial values for
3797         variables in idata segment, all print_idata* functions were removed,
3798         now the pic16_printIval* will be called,
3799         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
3800         * _pic16_printPointerType, pic16_printPointerType,
3801         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
3802         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
3803         NEW, similar to the respective functions in SDCCglue.c,
3804         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
3805         way, emitting hex bytes,
3806         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
3807
3808 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3809
3810         * src/avr/ralloc.c (serialRegAssign),
3811         * src/xa51/ralloc.c (serialRegAssign),
3812         * src/pic/ralloc.c (serialRegAssign),
3813         * src/pic16/ralloc.c (serialRegAssign),
3814         * src/hc08/ralloc.c (serialRegAssign),
3815         * src/z80/ralloc.c (serialRegAssign),
3816         * src/ds390/ralloc.c (serialRegAssign),
3817         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
3818
3819 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3820
3821         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
3822         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
3823
3824 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
3825
3826         Cumulative patch for pic16 port:
3827         * src/pic16/device.h (typedef PIC16_device) modified fields for
3828         defining microcontrollers,
3829         * src/pic16/device.c: added new info for all devices in Pics16 array,
3830         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
3831         to be optimised out by the pCode optimiser,
3832         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
3833         specially, bug reported by G.M. Gallant,
3834         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
3835         as force'd so that cannot be optimised out by pCode optimiser,
3836         * src/pic16/pcode.c,
3837         * src/pic16/pcodepeeph.c,
3838         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
3839         they are disabled by default, but can be enabled explicit with
3840         command argument --denable-peeps, for testing,
3841         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
3842         --pomit-ivt in COMPILE_FLAGS
3843
3844 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3845
3846         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
3847           compilation on MSVC
3848
3849 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3850
3851         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
3852
3853 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3854
3855         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
3856         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
3857
3858 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
3859
3860         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
3861         would only assign 0x300001 register.
3862
3863 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
3864
3865         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
3866         in COMPILE_FLAGS. Thanks to G. Gallant for report.
3867
3868 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3869
3870         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
3871         for ds80c400
3872         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
3873         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
3874         added peephole 254 (left shift), 255 (jump table)
3875
3876 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
3877
3878         * device/lib/Makefile.in: removed comment line with model-pic16,
3879         * (target port-specific-objects-pic16): the libraries and objects
3880         are copied to the build directory form the device/lib/pic16/bin
3881         directory
3882
3883         Cumulative patch concerning pic16 port:
3884         * library directory has been re-organized,
3885         * added support for PIC18F1220,
3886         * added headers and library sources for chips 18f1220,18f6520,
3887         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
3888
3889         * configuration registers setting has changed, now each supported
3890         device has a complete description of the registers it uses,
3891         * all initialisations are moved to idata sections, these section
3892         can be absolute or relocatable,
3893         * fixed initialisation of codespace variables,
3894         * fixed warning about PCLATU and gpsim,
3895         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
3896         * (genAssign): use table reads when assigning from variables in codespace,
3897         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
3898         char/int variables placed in codespace,
3899         * (pic16_emitConfigRegs): NEW, emits a list with configuration
3900         registers set in .asm file, no need for --pomit-config-words anymore,
3901         * (pic16glue): some 8051 legacy segments are commented out
3902         (to be removed completely),
3903         * added support for alternative assembler and linker with --asm=
3904         and --link= command line arguments,
3905         * peepholes are disabled automatically in the port, no need to
3906         specify on command line,
3907         * port supports natively char/int/long multiplication, but converts
3908         all divisions to support functions,
3909         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
3910         to the file set in variable $2,
3911         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
3912         strings in ASCII format and not in hex,
3913         * ralloc.c (serialRegAssign): added a triplet of conditional calls
3914         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
3915         allocate proper register if iCodes aren't temporary,
3916
3917 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
3918
3919         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
3920
3921 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
3922
3923         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
3924         is commented out
3925
3926 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3927
3928         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
3929         computed address is reused
3930         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
3931         multi-byte bitfields
3932
3933 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
3934
3935         * src/z80/gen.c: (genArrayInit): must check for pointers too
3936
3937 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
3938
3939         * support/regression/tests/zeropad.c: never meant to commit the
3940           nestedstruct test: removed, added check for GCC version
3941
3942 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
3943
3944         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
3945         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
3946         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
3947           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
3948           bugs 928906 and 954082 half-empty initializers
3949         * src/SDCCsymt.h,
3950         * src/SDCCsymt.c (getAllocSize): added for above fix
3951         * src/z80/gen.c (genArrayInit): fixed bug 741044
3952         * support/regression/tests/zeropad.c: added tests
3953
3954 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
3955
3956         * src/pic16/device.c (pic16_dump_section): corrected bug which
3957         caused some symbols of the libraries to be misplaced
3958
3959 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
3960
3961         * src/pic16/glue.c,
3962         * src/pic16/ralloc.h,
3963         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
3964         to fix conflict with pic port
3965
3966 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
3967
3968         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
3969         externs configuration variables,
3970         * src/pic16/ralloc.h,
3971         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
3972         prototype in header, commented out some debug messages
3973
3974 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
3975
3976         * src/pic16/glue.c,
3977         * src/pic16/main.c,
3978         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
3979         for gpasm COFF object generation. Thanks to D. Hawkins for
3980         his patch info
3981
3982 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3983
3984         * src/ds390/main.c,
3985         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
3986         Brock for spotting this)
3987         * src/ds390/gen.c (genEndFunction),
3988         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
3989         interrupt handler and critical. Disable push/pop optimizations when
3990         peephole optimizations disabled.
3991
3992 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
3993
3994         Updated pic16 library sources and headers.
3995         * device/lib/pic16/pic18f*/ ,
3996         * device/include/pic16/*.h: modified to handle structured SFR
3997         definitions
3998
3999 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4000
4001         * src/port.h (PORT structure): added hook initPaths, now each
4002         port can declare its own default search paths,
4003         which can been seen with the --print-search-dirs option,
4004         see pic16 port for example,
4005         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
4006         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
4007         * (doPrintSearchDirs): NEW, replaces in a central manner the
4008         printing of search dirs which was split in set*Paths functions,
4009         * (main): added call to port->initPaths and doPrintSearchDirs,
4010         * src/avr/main.c,
4011         * src/ds390/main.c,
4012         * src/hc08/main.c,
4013         * src/izt/i186.c,
4014         * src/izt/tlcs900h.c,
4015         * src/mcs51/main.c,
4016         * src/pic/main.c,
4017         * src/pic16/main.c: modified port structures to reflect addition of
4018         initPaths hook,
4019
4020         * src/pic16/device.c (regCompare): registers are finally sorted by name,
4021         * (pic16_dump_section): for registers in same address reserve memory once,
4022         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
4023         to no_banksel,
4024         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
4025         result is greater in size than right or left,
4026         * (pic16_genUMult8X8_8): there are some cases where the result can
4027         be 16 bits size, so handle these,
4028         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
4029         * (pic16_outBitC): modified to emit pcodes,
4030         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
4031         or not,
4032         * (genDivOneByte): implemented algorithm to divide 8-bits,
4033         * (genCmp): uncommented goto, but issues still exist,
4034         * (genAnd): fixed a bug with variables >8bits,
4035         * (genPackBits): optimization added that uses BCF/BSF to change a
4036         single bit,
4037         * (genAssign): fixed bug when assigning floating point literals,
4038         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
4039         __sdcc_gsinit_startup label,
4040         * src/pic16/main.c (_pic16_init): removed search directory
4041         initialisations,
4042         * (_pic16_initPaths): NEW, used to initialise search directories,
4043         * (_hasNativeMulFor): support functions for all except char/int
4044         multiplication, and char division,
4045         * (PIC16_port struct): modified entry for native mul support,
4046         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
4047         no_banksel option,
4048         * (buildCallTree): call to register_usage is ifdef'ed out,
4049
4050 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4051
4052         * device/include/string.h: applied Stas Sergeev's patch to make this
4053         header file compatible with the preprocessor -Wundef option
4054         * src/SDCCmain.c (main): abort compilation if preprocessor reports
4055         failure (fixes bug #941458)
4056
4057 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4058
4059         * src/SDCCopt.c (killDeadCode): fixed bug #907733
4060         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
4061         that the variable, not the function, should be static
4062         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
4063         to be consistent with non-literal case
4064
4065 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4066
4067         * src/SDCCast.c (isConformingBody): fixed bug #949967
4068         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
4069         convilong): fixed bug #952086
4070
4071 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4072
4073         * src/SDCCmem.c (allocVariables): fixed bug #955321
4074
4075 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4076
4077         * src/hc08/main.c (_hc08_genAssemblerEnd),
4078         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
4079         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
4080         completely eliminated the use of a temporary file
4081         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
4082         when more than one file linked
4083         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
4084
4085 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4086
4087         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
4088         which fixes bug #543481
4089         * support/regression/tests/bug-751703.c: fixed comments left from a
4090         cut and paste error
4091         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
4092         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
4093         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
4094         scopes
4095         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
4096         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
4097         are now changed to underscores in moduleName
4098
4099 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4100
4101         * as/mcs51/lkmem.c: better fix for bug #954173
4102
4103 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
4104         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4105
4106         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
4107         * device/include/c8051f000.h,
4108         * device/include/c8051f120.h,
4109         * device/include/c8051f300.h,
4110         * device/include/c8051f310.h,
4111         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
4112         PWM16) and detab'ed
4113
4114 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4115
4116         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
4117         and mailing lists, doc'ed --no-peep-comments, removed reference
4118         to knoppix (newest version has no LyX/LaTeX), other minor changes
4119         * src/SDCCglue.c (glue): save 2 bytes stack space with
4120         option --main-return. The ljmp could probably be avoided too
4121
4122 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4123
4124         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
4125
4126 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4127
4128         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
4129         * src/SDCCopt.c (isLocalWithoutDef),
4130         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
4131         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
4132         (credit to Maarten Brock for patch #949363, on which this is based)
4133         * support/regression/tests/bug-751703.c: some test cases of extern used
4134         within inner scopes.
4135
4136 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4137
4138         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
4139         SPEC_STRUCT
4140         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
4141         struct definitions
4142         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
4143         dwWriteLabel): fix to create valid debugger symbols even when
4144         the module name has non-alphanumeric symbols in it
4145         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
4146         when a variable's allocation has been optimized away
4147
4148
4149 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4150
4151         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
4152         * src/hc08/main.c,
4153         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
4154         * src/mcs51/main.c,
4155         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
4156         * src/ds390/main.c,
4157         * src/z80/gen.c (z80_emitDebuggerSymbol),
4158         * src/z80/main.c,
4159         * src/pic/gen.c (pic14_emitDebuggerSymbol),
4160         * src/pic/main.c,
4161         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
4162         * src/pic16/main.c,
4163         * src/avr/gen.c (avr_emitDebuggerSymbol),
4164         * src/avr/main.c,
4165         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
4166         * src/xa51/main.c,
4167         * src/SDCCdebug.c (emitDebuggerSymbol),
4168         * src/SDCCdebug.h,
4169         * src/port.h: added a debugger struct to the port struct. Added a
4170         callback for defining debugger symbols
4171
4172         * src/SDCCast.c (createLabel),
4173         * src/SDCC.y (labeled_statement): mark all compiler generated labels
4174         with isitmp = 1
4175         * src/SDCCicode.h,
4176         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
4177         iCode back to the ast for the function
4178
4179         * src/hc08/ralloc.c (hc08_assignRegisters),
4180         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
4181         unneeded fields from the regs struct.
4182         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
4183         pushReg() & pullReg() functions instead of emitcode()
4184
4185         * src/hc08/gen.c (genLabel, genhc08Code),
4186         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
4187
4188         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
4189         debugger hooks
4190
4191         * src/hc08/gen.c (genEndFunction, genhc08Code),
4192         * src/hc08/gen.h,
4193         * src/mcs51/gen.c (genEndFunction, gen51Code),
4194         * src/mcs51/gen.h,
4195         * src/ds390/gen.c (genEndFunction, gen390Code),
4196         * src/ds390/gen.h,
4197         * src/z80/gen.c (genEndFunction, genZ80Code),
4198         * src/z80/gen.h,
4199         * src/z80/z80.h,
4200         * src/pic/gen.c (genEndFunction, genpic14Code),
4201         * src/pic/gen.h,
4202         * src/pic16/gen.c (genEndFunction, genpic16Code),
4203         * src/pic16/gen.h,
4204         * src/avr/gen.c (genEndFunction, genAVRCode),
4205         * src/avr/gen.h,
4206         * src/xa51/gen.c (genEndFunction, genXA51Code),
4207         * src/xa51/gen.h,
4208         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
4209         specific code to cdbFile.c and out of the backend code generators
4210
4211         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
4212         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
4213         starting address is now 0
4214
4215         * as/hc08/asm.h,
4216         * as/hc08/m08pst.c,
4217         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
4218         assembler directive for DWARF support
4219         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
4220
4221         * src/src.dsp,
4222         * src/Makefile.in,
4223         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
4224
4225 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4226
4227         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
4228         and inappropriate peephole optimization in jump tables
4229
4230 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4231
4232         * as/hc08/m08pst.c,
4233         * src/SDCCglue.c: sdccopt works for the hc08 port now
4234
4235 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
4236
4237         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
4238
4239 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4240
4241         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
4242
4243 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4244
4245         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
4246         rules
4247         * src/SDCCmain.c,
4248         * src/SDCCglobl.h,
4249         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
4250         comments from the peephole optimizer replacement rules
4251         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
4252         symbols
4253         * src/SDCCcse.c (updateSpillLocation),
4254         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
4255         equivalents
4256         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
4257         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
4258         objects far pointers
4259
4260 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4261
4262         * src/SDCCsymt.h: a missing part of my last change
4263         * src/pic/ralloc.c (regTypeNum),
4264         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
4265
4266 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4267
4268         * src/SDCCicode.h,
4269         * src/SDCCicode.c (aggrToPtrDclType),
4270         * src/SDCCptropt.h,
4271         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
4272         ptrPseudoSymConvert),
4273         * src/pic/ralloc.c (regTypeNum),
4274         * src/pic16/ralloc.c (regTypeNum),
4275         * src/hc08/ralloc.c (regTypeNum),
4276         * src/ds390/ralloc.c (regTypeNum),
4277         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
4278         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
4279
4280 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4281
4282         * link/z80/lkmain.c (afile),
4283         * as/hc08/lkmain.c (afile),
4284         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
4285         prevent a pointer problem when a filename has no directory and
4286         no extension specified.
4287
4288 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4289
4290         * link/z80/lkmain.c (afile): allow periods in directory names
4291         * link/z80/lkmain.c (afile),
4292         * as/mcs51/lkmain.c (afile),
4293         * as/hc08/lkmain.c (afile): allow linker script file to have an
4294         extension other than ".lnk"
4295         * link/z80/lklex.c (getfid),
4296         * link/z80/lkmain.c (parse),
4297         * as/mcs51/lklex.c (getfid),
4298         * as/mcs51/lkmain.c (parse),
4299         * as/hc08/lklex.c (getfid),
4300         * as/hc08/lkmain.c (parse): Support comments in the linker script
4301         file on lines by themselves and after filenames
4302
4303 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4304
4305         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
4306
4307 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4308
4309         * src/z80/peeph-z80.def: removed some peephole rules that don't
4310         work with multibyte arithmetic (fixed bug #937126)
4311         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
4312         to registers and not global variables
4313         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
4314         geniCodePreInc, geniCodePostDec, geniCodePreDec,
4315         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
4316         checking for assignments not internally generated (fixed bug #931895)
4317         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
4318         structure member (fixed bug #930072)
4319
4320 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4321
4322         * src/SDCCmain.c (linkEdit),
4323         * src/hc08/main.c (_hc08_parseOptions),
4324         * as/hc08/Makefile.in,
4325         * as/hc08/aslink.h,
4326         * as/hc08/asm.h,
4327         * as/hc08/m08pst.c,
4328         * as/hc08/lkrloc.c (relr, rele),
4329         * as/hc08/lkarea.c (lnkarea)
4330         * as/hc08/lkmain.c (afile, parse),
4331         * as/hc08/lkelf.c: support for ELF output
4332         * as/hc08/lks19.c (s19),
4333         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
4334
4335 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4336
4337         * as/mcs51/lkihx.c: Fixed bug #899105.
4338
4339 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4340
4341         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
4342         .dsp files from Unix to DOS.
4343
4344 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4345
4346         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
4347         function pointers; we have been compliant for several months now.
4348         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
4349         change that was accidently commented out
4350         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
4351         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
4352         bug #922319
4353
4354 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4355
4356         * src/hc08/gen.c: output of all of the internal debugging information
4357         is now controlled by the D() macro; it is disabled by default
4358
4359 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4360
4361         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
4362         harder to keep the same registers during a CAST iCode
4363         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
4364         long via int can be done in a single cast, if the signedness is
4365         correct.
4366         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
4367         putchar() in tinibios.c in ds390's library
4368
4369 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
4370
4371         * src/SDCCast.c (decorateType): fixed bug #898889,
4372         cast result of a literal complement too
4373         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
4374         fixed check for bitfields
4375
4376 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
4377
4378         * src/SDCCicode.c (geniCodeLogic): made it static,
4379         (geniCodeLogicAndOr): added in order to fix bug #905492,
4380         (ast2iCode): fixed bug #905492
4381         * support/regression/tests/bug-905492.c: added
4382         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
4383         (processParms): fixed bug #927659: don't copy parms, this will clear
4384         decorated flag
4385         * support/regression/tests/bug-927659.c: added
4386
4387 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
4388
4389         * src/SDCCast.c (addCast): don't cast float to char
4390         * device/lib/libsdcc.lib: added _memmove
4391
4392 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
4393
4394         * device/lib/large/Makefile: fixed parallel execution by
4395         replacing `make` by `$(MAKE)`
4396
4397 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4398
4399         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
4400         offsets (fixes bug #923936)
4401
4402 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
4403
4404         * device/lib/small/Makefile: fixed parallel execution by
4405         replacing `make` by `$(MAKE)`
4406
4407 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4408
4409         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
4410
4411 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
4412
4413         * src/pic/gen.c (genCpl): multi-byte complements were not working.
4414         * src/regression/Makefile: Regression test was not running.
4415
4416 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4417
4418         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
4419         complement if possible
4420         * src/SDCCval.c (valComplement),
4421         * src/SDCCicode.c (operandOperation): fixed complement of literal
4422         * support/regression/tests/onebyte.c (testComplement): added
4423
4424 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
4425
4426         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
4427         return an optimized tree; actually replace actParm with the new tree
4428         * src/SDCCast.h: added some parantheses to remove side effects
4429         * support/regression/tests/bug-920866.c
4430
4431 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
4432         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
4433         Bit operands were not being handled properly in the pic14 port.
4434         (now src/regression/add.c passes again).
4435
4436 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4437
4438         * src/SDCC.y (labeled_statement): case and default no longer require
4439         a following statement (RFE #893037)
4440
4441 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4442
4443         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
4444         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
4445         disabled (fixes bug #916294)
4446         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
4447         "mov a,acc"; patch provided by Lenny Story
4448         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
4449
4450 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4451
4452         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
4453         functions
4454         * src/ds390/gen.c (genFunction, genEndFunction),
4455         * src/ds390/ralloc.c (ds390_assignRegisters),
4456         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
4457         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
4458         pushed if there are parameters passed on the stack. Also, a cleaner
4459         way to decide if r0/r1 should be pushed/popped. (Together they fix
4460         bug #918693)
4461
4462 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4463
4464         * doc/sdccman.lyx,
4465         * device/lib/mcs51/crtpagesfr.asm,
4466         * device/lib/mcs51/crtxinit.asm,
4467         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
4468         to avoid confusion with Si Lab's SFRPAGE register.
4469
4470 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4471
4472         * src/SDCCglue.c (emitMaps): allow public sfr variables
4473         * src/SDCCglue.c (initialComments): include compiler build date
4474         with compiler version and put the timestamp of the generated
4475         assembly file on a serperate line to be less confusing.
4476         * src/port.h: added genInitStartup hook
4477         * src/avr/main.c,
4478         * src/ds390/main.c,
4479         * src/hc08/main.c,
4480         * src/pic/main.c,
4481         * src/pic16/main.c,
4482         * src/xa51/main.c,
4483         * src/z80/main.c: genInitStartup initialize as NULL (default to
4484         historical behaviour)
4485         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
4486         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
4487         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
4488         library instead of hard coding it into the compiler.
4489         * support/regression/ports/mcs51-stack-auto/spec.mk,
4490         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
4491         * device/lib/mcs51/Makefile,
4492         * device/lib/small/Makefile,
4493         * device/lib/large/Makefile,
4494         * device/lib/mcs51/crtpagesfr.asm,
4495         * device/lib/mcs51/crtstart.asm,
4496         * device/lib/mcs51/crtxclear.asm,
4497         * device/lib/mcs51/crtxinit.asm,
4498         * device/lib/mcs51/crtclear.asm,
4499         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
4500         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
4501         and into user configurable files.
4502         * device/lib/clean.mk: clean mcs51 directory too
4503         * support/regression/tests/longlit.c: added static to T1 declaration
4504         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
4505         accesses in the initialization code
4506
4507 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4508
4509         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
4510         OSCTRIMVAL as noted in bug #916008
4511
4512 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4513
4514         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
4515         in loops with multiple exits (reported as incorrect registers
4516         used by Martin Helmling in Sdcc-user list)
4517
4518 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4519
4520         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
4521         made ds390 register extensions look less like error messages
4522
4523 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4524
4525         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
4526         reported by Adam Wozniak in Sdcc-user list
4527
4528 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
4529
4530         * src/SDCCast.c (decorateType): fixed with bug and promotion in
4531         arithmetic optimizations, added debug output
4532
4533 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
4534
4535         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
4536         * sdcc.spec: updated and split sdcc into 3 rpms
4537         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
4538         needed for literals of LEFT_OP and '+'
4539         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
4540         introduced RESULT_TYPE_NOPROM
4541         (geniCodeMultiply): fixed logic for decision if mul is optimized to
4542         left shift
4543         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
4544         limited promotion to int only for '*'
4545         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
4546
4547 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
4548
4549         * src/pic16/gen.c (genSkip),
4550         (genc16bit2lit), (gencjneshort): commented out
4551         (is_LitOp): new helper function, checks operand type
4552         (genCmpEq): rewritten
4553
4554 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
4555
4556         * support/regression/tests/bug-908454.c: added
4557
4558 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
4559
4560         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
4561         * src/SDCCicode.c (usualBinaryConversions): op needs int type
4562         (geniCodeCast): cosmetic, don't preserve bit storage class
4563         (geniCodeLeftShift): added promotion
4564         (geniCodeLogic): fixed regression
4565         * src/SDCCsymt.c (computeTypeOr): accept bits too
4566         (compareType): 2nd part of fix for bug #908454, needed for bitfields
4567
4568 2004-03-07  Borut Razem <borut.razem AT siol.net>
4569
4570         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
4571
4572 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
4573
4574         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
4575         version of pic16_genPackRegisters which does not check if ic is a
4576         CAST operator,
4577         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
4578         function cause string1.c regression test fails
4579
4580 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
4581
4582         * sim/ucsim/configure.in,
4583         * sim/ucsim/configure,
4584         * sim/ucsim/doc/Makefile.in: use docdir
4585         * src/SDCC.y: fixed sbit atrributes
4586         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
4587         * src/SDCCast.c (decorateType): |^& need special promotion handling
4588         * src/SDCCast.h,
4589         * src/SDCCsymt.h: moved definition of RESULT_TYPE
4590         * src/SDCCsymt.h (computeType),
4591         * src/SDCCicode.c: computeType() needs op
4592         * src/SDCCsymt.c (checkTypeSanity),
4593         * doc/sddman.lyx: "plain" bitfields are unsigned
4594         * src/SDCCsymt.c (computeTypeOr): added
4595         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
4596         |^& ops
4597         * src/SDCCval.c (val*): computeType() needs op
4598         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
4599         * support/regression/tests/onebyte.c: added tests for |^&
4600
4601 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
4602
4603         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
4604         for writing icode into asm output.
4605
4606 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
4607
4608         * src/pic16/device.c: added some debug lines enabled
4609         with macro DEBUG_CHECK,
4610         * src/pic16/genarith.c: more debug in genPlus,
4611         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
4612         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
4613         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
4614         * (aopForSym): onStack symbols are re-placed in data memspace,
4615         and onStack flag is cleared,
4616         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
4617         copy temporary pcodeop,
4618         * (genPcall): added warning for not updating PCLATU,
4619         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
4620         always true for pic16 port,
4621         * (genMultOneWord): NEW, supports integer multiplication,
4622         * (genMult): modified to call genMultOneWord,
4623         * (ifxForOp): added warning when return NULL,
4624         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
4625         flag is set before call to operandFromSymbol for implicit
4626         added structures,
4627         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
4628         options.intlong_rent are set by default,
4629         * (_hasNativeMulFor): modified to allow port generation of integer
4630         multiplication,
4631         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
4632         set regtype to REG_SFR for all registers, restricting seting the
4633         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
4634
4635 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4636
4637         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
4638         more than 500 times in the regression tests
4639
4640 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4641
4642         * support/Util/SDCCerr.h,
4643         * support/Util/SDCCerr.c,
4644         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4645         enumerator_list),
4646         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
4647         for symbol conflicts.
4648         * support/valdiags/tests/enum.c,
4649         * support/valdiags/tests/tentdecl.c,
4650         * support/valdiags/tests/struct.c: expect possible error messages
4651         referring to original symbol definitions.
4652         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
4653         * src/SDCCsymt.h,
4654         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
4655
4656 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
4657
4658         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
4659
4660 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
4661
4662         * src/pic16/ralloc.c (newReg): fixed bug #908929
4663
4664 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4665
4666         * src/ds390/gen.c: added missing #include "main.h"
4667
4668 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
4669
4670         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
4671         checking if symbol is already in set,
4672         * src/pic16/device.h: prototype for checkAddSym,
4673         * src/pic16/gen.c: (_G): added entry interruptvector,
4674         * (assignResultValue): removed some commented out lines,
4675         * (genFunction): check for ISR via sym->type, absolute section for
4676         interrupt code is created via a new pBlock, the goto instruction is
4677         placed now correctly at the interrupt vector position, changed all
4678         references from ivec to _G.interruptvector,
4679         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
4680         is the interrupt is a high priority one, same for return from ISR,
4681         * src/pic16/glue.c: changed all calls of addSetHead for publics and
4682         externs to calls of checkAddSym,
4683         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
4684         pic16_pcode_verbose flag is set,
4685         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
4686         * src/pic16/pcoderegs.c: message about how many registers are saved
4687         will only be emitted if pic16_pcode_verbose flag is set,
4688
4689 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4690
4691         * src/ds390/ralloc.h,
4692         * src/ds390/ralloc.c (ds390_regWithIdx),
4693         * src/ds390/gen.c (emitcode),
4694         * src/ds390/main.h,
4695         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
4696         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4697         ds390operandCompare, getRegsRead, getRegsWritten,
4698         initializeAsmLineNode): customized instruction size calculation for
4699         ds390, started basis for some register optimizations
4700         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
4701         corresponding assembly output
4702         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
4703         missing push/pop of r0/r1. Optimized push/pops
4704
4705 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4706
4707         * src/mcs51/main.c (instructionSize): fixed ACALL size
4708         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
4709
4710 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
4711
4712         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
4713         the sorting of rlist with NULL elements
4714         * (print_idataType, print_idata): NEW to create idata sections
4715         * src/pic16/device.h: idataSymSet new variable
4716         * src/pic16/gen.c (genFunction): fixed some bugs in string
4717         comparing, improved the absolute section creation for ISRs,
4718         added FSR0L/FSR0H in registers that are saved in an ISR,
4719         * (genInline): fixed the processing of inline snippets,
4720         now they undergo no process by the peephole optimizer
4721         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
4722         are placed in idataSymSet,
4723         * (pic16emitStaticSeg): extern symbols are added in externs,
4724         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
4725         switching when aboslute variables are placed in access bank memory
4726         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
4727         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
4728         commented out with #if,
4729         * (pic16_packRegisters): reintroduce the check for CAST because some
4730         symbols are not correctly handled,
4731         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
4732         pCodeInstruction instead of pCode,
4733         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
4734         pCodeAsmDir definition,
4735         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
4736         directive, then the argument directive is emitted without the leading
4737         tab, hack for inline labels which must be in the first column,
4738         * (compareLabel,pic16_findNextInstruction),
4739         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
4740         * (insertBankSwitch): modified for the new pCodeAsmDir,
4741
4742 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4743         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
4744
4745         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
4746         instance,
4747         * (pushSide): commented out with #if,
4748         * (assignResultValue): fixed some typos in saving
4749         registers,
4750         * (genPcall): FIXED and sync'ed with genCall,
4751         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
4752         * (genNearPointerGet): fixed to handle some more cases,
4753         implementation scheme via table reads,
4754         * (genConstPointerGet): modified to access code memory correct,
4755         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
4756         and improved to handle some cases
4757         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
4758         instead of "RETLW" for init data
4759         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
4760         not IN_DIRSPACE, work around to reduce bank switching when aboslute
4761         variables are placed in access bank memory (<0x80 and >=0xf80),
4762         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
4763         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
4764         TBLWT_POSTDEC,TBLWT_PREINC
4765         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
4766         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
4767         directives
4768         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
4769         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
4770         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
4771         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
4772
4773 2004-02-29  Borut Razem <borut.razem AT siol.net>
4774
4775         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
4776         support/Util/findme.h, support/Util/system.h: enhance binary relative
4777         search for lib and include by using findProgramPath()
4778
4779 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4780
4781         * src/SDCCpeeph.h,
4782         * src/SDCCpeeph.c (pcDistance),
4783         * src/port.h,
4784         * src/mcs51/ralloc.h,
4785         * src/mcs51/ralloc.c (mcs51_regWithIdx),
4786         * src/mcs51/main.h,
4787         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
4788         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4789         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
4790         size calculation port specific, started basis for some register
4791         optimizations
4792         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
4793         missing push/pop of r0/r1. Optimized push/pops
4794         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
4795         * device/lib/_modsint.c (_modsint),
4796         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
4797         and stack version so regression tests pass
4798
4799 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
4800
4801         * src/Makefile.in (dep): include SLIBOBJS in dependency check
4802         * src/SDCCast.c (decorateType): catch another small optimization
4803         with '?' operator
4804         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
4805         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
4806         modified to finally use computeType() all over SDCC,
4807         see Feature Request #877103
4808         * src/SDCCval.h: cosmetic
4809         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
4810         valCompare(); regression tested in muldiv.c
4811         * support/regression/tests/muldiv.c (testMod): mod sign follows
4812         dividend only
4813
4814 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
4815
4816         * src/SDCCast.c (decorateType): fixed bug #902362
4817         * doc/INSTALL.txt: fixed install instructions for win32
4818
4819 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
4820
4821         * device/include/Makefile.in (install): fixed by replacing spaces
4822         by tabs
4823         * doc/README.txt,
4824         * doc/INSTALL.txt: updated for release
4825         * doc/sdccman.lyx: added warning for --xstack being buggy
4826
4827 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
4828
4829         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
4830         to eliminate build warnings.
4831         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
4832
4833 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
4834            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4835
4836         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
4837         removed -penable-stack, added comment for stack pragma, added
4838         warning for not initializing the stack/frame registers, removed
4839         comment at interrupts section
4840
4841         Stack is made permanent, there is no ability to disable stack usage.
4842         * src/pic16/device.h,
4843         * src/pic16/device.c: removed all references to USE_STACK macro,
4844         * src/pic16/device.c (pic16_dump_section): when no elements in
4845         rlist, free rlist before return,
4846         * (pic16_dump_int_registers): NEW, internal registers are a new set
4847         of general purpose registers reused by each function,
4848         * (checkAddReg): returns 1 if registers is added to set,
4849         * (pic16_groupRegistersInSection): when a registers is of type
4850         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
4851         * src/pic16/device.h: memRange and Assigned Memory are deleted,
4852         SRCASECMP macro is moved here from device.c
4853         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
4854         PO_PCLATU, PO_PRODL, PO_PRODH,
4855         * (pic16_pCodeOpType, genMinus,
4856         changed compares to "a" register, with AOP_ACC,
4857         * (pic16_genPlus): fixed some bugs and indented properly,
4858         * (pic16_addSign): changed size to size+offset in the MOVWF
4859         instruction,
4860         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
4861         multiply 8-bit operand by literal, result is 8-bit,
4862         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
4863         multiply 2 8-bit operand, result is 8-bit,
4864         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
4865         genUMult8X*_16,
4866         * src/pic16/gen.c: changed accUse to contain WREG only,
4867         * (pic16_emitcomment): renamed to pic16_emitpcomment,
4868         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
4869         true, do not use immediate addressing any more unless sym is a
4870         pointer in codespace,
4871         * (aopForRemat): do not use immediate addressing when symbol not in
4872         codespace and when symbol's address is requested,
4873         * (aopOp): for-loop in if(sym->accUse) is modified for the new
4874         accUse size (= 1),
4875         * (aopGet): added case for AOP_ACC and don't return "accumulator
4876         bug" but WREG instead,
4877         * (popGetTempReg): pushes contents of temporary register in stack,
4878         * (popReleaseTempReg): pops contents of temporary register from
4879         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
4880         * (pic16_popGet): separated case AOP_ACC to return register WREG
4881         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
4882         or PO_IMMEDIATE and initializes their instance/offset appropriately,
4883         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
4884         the use of immediate pointers to certain cases only.
4885
4886         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
4887         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
4888         * (assignResultValue, genCall, genRet): modified to use the new
4889         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
4890         genPcall is still broken,
4891         * (genFunction): added code to create 'A' type pBlocks when
4892         interrupt functions are generated, code not extensively tested yet,
4893         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
4894         * (genEndFunction): modified so ISRs pop stored registers from stack,
4895         * (genMultOneByte): cleanup,
4896         * (AccRsh): added flag andmask, to and result with appropriate mask,
4897         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
4898         * (genDataPointerGet): fixed and reenabled its use,
4899         * (genNearDataPointerGet): bugs fixed,
4900         * (genDataPointerSet): bugs fixed,
4901         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
4902         pic16_DumpSymbol, pic16_DumpOp,
4903         * src/pic16/genutils.h: function prototypes for the above functions,
4904         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
4905         pointers,
4906         * (pic16emitRegularMap): many many many improvements, but needs a
4907         major cleanup,
4908         * src/pic16/main.c: enable_stack in pic16_options is removed,
4909         * (_pic16_parseOptions): removed command line options -penable-stack,
4910         * (_process_pragma): emit stack symbol only when stack pragma is
4911         processed,
4912         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
4913         redirected to FSR0L/FSR0H pair,
4914         * (pic16_get_op, pic16_get_op2): modifications and improvements,
4915         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4916         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
4917         for immediates,
4918         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
4919         * (dumpPicOptype): NEW,
4920         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
4921         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
4922         with movff instruction,
4923         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
4924         added pic16_int_regs, some packRegsFor* functions are commented out,
4925         because produce errors,
4926         * src/pic16/NOTES: minor modifications
4927
4928 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4929
4930         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
4931         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
4932         --pack-iram.
4933         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
4934         * as/mcs51/lkaomf51.c: fixed bug #895763
4935
4936 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
4937
4938         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
4939
4940 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4941
4942         * doc/sdccman.lyx: added details about the HC08 storage classes and
4943         interrupts, fixed the register usage info for z80 & gbz80
4944
4945 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
4946
4947         * doc/sdccman.lyx: added more pic16 port documentation
4948         * device/include/pic16/: added header pic18fregs.h
4949
4950 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
4951
4952         * doc/sdccman.lyx: added Vangelis' contribution
4953
4954 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4955
4956         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
4957         extend to the next CALL or PCALL, not just to the next CALL.
4958
4959 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
4960
4961         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
4962
4963 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4964
4965         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
4966         bug #895752 and a better fix for bug #716790
4967
4968 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4969
4970         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
4971
4972 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4973
4974         * doc/sdccman.lyx: minor changes, minor changed
4975
4976 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
4977
4978         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
4979         which can't handle SDCC_NEWONEBYTEOPS,
4980         (geniCodeMultiply): removed conversion from mult to shift for pic14
4981         and pic16
4982
4983 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4984
4985         * src/hc08/gen.h,
4986         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
4987         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
4988         thus fixing bug #895406
4989
4990 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
4991
4992         * device/lib/_modsint.c,
4993         * device/lib/_modslong.c: sign follows divisor only
4994         * src/hc08/gen.c (genMultOneByte): if result size is 1,
4995         signs or signedness can be ignored
4996         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
4997         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
4998         added optimization for IFX,
4999         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
5000         arguments;
5001         reenabled optimization for IFX, which was removed on 2004-01-11
5002         * src/SDCCast.h: added return type IFX
5003         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
5004         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
5005         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
5006         SDCC_OLDONEBYTEOPS selects the old behaviour
5007         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
5008         changed again and commented promotion rule
5009         * src/SDCCval.c (valDiv): promotion no longer necessary
5010         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
5011         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
5012         rewritten
5013         * support/regression/tests/onebyte.c: added
5014
5015 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
5016
5017         * gen.c (genInline): reverted to old code for assemnling inline
5018         code because of bug reported James Chadd
5019
5020 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
5021
5022         * ralloc.h: missing declarations from previous patch,
5023         seems that patch for ralloc.h was never applied, fixed
5024
5025 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5026            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5027
5028         * pcode.c,
5029         * pcode.h,
5030         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
5031         indirect addressing. Marked FSR0 as deprecated
5032         * gen.c (pointerCode): commented out, not needed now
5033         (pic16_popGet2p): new MOVFF helper function
5034         (genGenPointerGet),
5035         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
5036         (shiftRLong): removed duplicate debugging info
5037
5038 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5039
5040         * src/ds390/gen.c (genNearPointerGet),
5041         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
5042         optimization with bits, but not bitfields.
5043         * src/ds390/ralloc.c (packRegisters),
5044         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
5045
5046 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
5047
5048         * src/SDCCcse.c (algebraicOpts): copy operands before modification
5049
5050 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5051
5052         * src/SDCCsymt.h,
5053         * src/SDCCicode.c (operandFromSymbol),
5054         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
5055         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
5056         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
5057         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
5058         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
5059         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
5060         bug #892038
5061         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
5062         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
5063         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
5064         * src/SDCCsymt.c (newSymbol),
5065         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5066         enumerator_list),
5067         * src/SDCCval.h,
5068         * src/SDCCval.c (newiList): fixed bug #885705
5069
5070 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5071
5072         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
5073         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
5074
5075 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5076
5077         * device/include/c8051f120.h,
5078         * device/include/c8051f300.h,
5079         * device/include/c8051f310.h: added/updated header files for Silicon
5080         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5081         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
5082         in new section Submitting patches
5083
5084 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5085
5086         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
5087         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5088         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5089         genGenPointerSet),
5090         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
5091         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5092         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5093         genGenPointerSet),
5094         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
5095         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5096         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5097         genGenPointerSet),
5098         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
5099         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5100         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5101         genGenPointerSet): fixed bug #892400
5102         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
5103         to eliminate build warnings.
5104         * src/SDCCast.c (processParms),
5105         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
5106         fixed bug 751859
5107         * support/valdiag/valdiag.py: added GCC to the list of defines active
5108         when compiling with gcc
5109
5110 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5111
5112         * support/Util/SDCCerr.h,
5113         * support/Util/SDCCerr.c,
5114         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
5115         with an incomplete type (fixed bug #883734)
5116         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
5117
5118 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5119
5120         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
5121
5122 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5123
5124         * src/SDCCast.c (decorateType),
5125         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
5126         function pointer implementation
5127         * support/regression/tests/funptrs.c: added tests to verify both forms
5128         of function pointers work correctly. Added tests to verify parameters
5129         are passed in the correct order.
5130
5131 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
5132
5133         * device.c (regCompare): registers are sorted by ascending
5134         address and increasing size,
5135         * main.c (_pic16_finaliseOptions): removed the declaration
5136         of compiler macro MCU. Now a macro of the format pic18fxxxx
5137         will be defined from the command line
5138
5139 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5140             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5141
5142         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
5143         PCOP_RLCF was overwritten!
5144         * gen.c (genSkip): commented out calls to pic16_emitcode,
5145         * (genCmpEQ): fixed "long" compares, only high word did get compared,
5146         * (genlshTwo),
5147         * (genRRC): added debugging info,
5148         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
5149         overwritten while shifting,
5150         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
5151         overwritten while shifting,
5152         * (AccLsh),
5153         * (AccRsh),
5154         * (shiftLLeftOrResult),
5155         * (shiftRLeftOrResult),
5156         * (shiftRLong),
5157         * (shiftLLong): Implemented with pic16_emitpcode
5158         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
5159         * (genLeftShift): Fixed bug, operand for shift by variable always
5160         was "and"ed with 0x0f,
5161         * (genLeftShiftLiteral),
5162         * (genrshTwo),
5163         * (genRightShiftLiteral): added debugging info,
5164         * (genrshFour): added comment,
5165         * (genRightShift): determined signedness from operand "left"
5166         instead of "result"
5167
5168 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5169
5170         * src/SDCCicode.c (geniCodeParms),
5171         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
5172         function pointers, fixed function pointer bugs #861242 and #861896
5173
5174 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5175
5176         * device/include/c8051f000.h,
5177         * device/include/c8051f120.h,
5178         * device/include/c8051f300.h: added header files for Silicon
5179         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5180
5181 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
5182
5183         * src/SDCCast.c (processParams): added new type flow and restructured
5184         (gatherAutoInit): added new type flow
5185         (addCast): cosmetic changes
5186         (getLeftResultType): added new type flow for array indices, patch
5187         provided by Stas, see FR #877103
5188         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
5189         array index patch by Stas
5190         * src/SDCCast.h: added prototype getResultTypeFromType()
5191         * src/SDCCval.h,
5192         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
5193         * src/pic/glue.c (pic14emitStaticSeg),
5194         * src/pic16/glue.c (pic16emitStaticSeg),
5195         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
5196         for initialization of symbols
5197         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
5198         * support/Util/SDCCerr.h:
5199         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
5200         * .version: bumped version number to 2.3.8
5201         * device/include/Makefile.in (install),
5202         * doc/Makefile (install): changed to 'rm `find ...`' construct to
5203         avoid warnings
5204
5205 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
5206
5207         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
5208         Slade Rich fixed an optimization bug
5209         * src/pic/pcodepeep.c,
5210         * src/pic/pcoderegs.c
5211         * doc/Makefile (install): added test for directory
5212
5213 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5214
5215         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
5216         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
5217         * src/pic/ralloc.c (getRegPtr, getRegGpr),
5218         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
5219         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
5220         * as/mcs51/asexpr.c (term),
5221         * as/hc08/asexpr.c (term): fixed bug #887146
5222
5223 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5224
5225         * src/z80/gen.c (genMult): handle single byte result product
5226         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
5227         DUMMY_READ_VOLATILE (fixed bug #886367)
5228
5229 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5230
5231         * support/regression/tests/libmullong.c: fixed logic, on little endian
5232         hosts we ended without a mullong_wrapper()
5233
5234 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5235
5236         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
5237         virus/worm forged address usage.
5238
5239 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5240
5241         Fixed promotion, it should be done on AST level:
5242         * src/SDCCast.c (addCast): added promotion to int
5243         (decorateType): updated call to upCast()
5244         * src/SDCCicode.c (geniCodeLeftShift): removed call to
5245         usualUnaryConversions()
5246
5247 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
5248
5249         * support/regression/tests/literalop.c (mulWrapper): Added a
5250         wrapper to remove integer overflow warnings.
5251
5252         * support/regression/tests/float_trans.c: Made work on host.
5253
5254         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
5255         location of sz80.
5256
5257         * support/regression/generate-cases.py (main): Changed from inline
5258         to a main method.
5259
5260         * doc/Makefile (install): Changed to depth first to get rid of
5261         missing directory install warning.
5262
5263         * as/Makefile (install-doc): Made work on Mac.
5264
5265 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
5266
5267         * src/SDCCast.c: added an additional type flow in decorateType() of
5268         opposite direction, see feature request #860006; it's enabled at runtime
5269         by setting the environment variable SDCC_NEWTYPEFLOW
5270         * src/SDCCast.h: changed prototype of decorateType()
5271         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
5272         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
5273         'char' to 'int' can be omitted, if both operands are 'unsigned char';
5274         see feature request #877103
5275         * src/SDCCval.c: updated call of decorateType()
5276         (valBitwise): fixed bug #882876
5277         (valMinus): added promotion
5278         (valLogicAndOr): result is unsigned
5279         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
5280         * src/SDCCsymt.c (computeType),
5281         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
5282         must not cause an unsigned operation
5283         * src/pic/glue (pic14emitRegularMap),
5284         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
5285
5286 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
5287
5288         * src/pic/pcode.c (PCodeID): commented out left over debug code
5289
5290 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
5291
5292         * support/valdiag/tests/overflow.c: added shift tests
5293         * src/pic/device.c,
5294         * src/pic/gen.c,
5295         * src/pic/gen.h,
5296         * src/pic/glue.c,
5297         * src/pic/main.c,
5298         * src/pic/pcode.c,
5299         * src/pic/pcode.h,
5300         * src/pic/pcodepeep.c,
5301         * src/pic/pcoderegs.c,
5302         * src/pic/ralloc.c,
5303         * src/pic/ralloc.h: applied patch from Slade Rich;
5304         added support for multiple code pages and multiple RAM banks on the
5305         PIC 14 port. The ASM files now no longer simply assume all the
5306         code / RAM are in the same page / bank. This means the linker can
5307         safely allocate code/RAM of separate ASM files to different pages/banks.
5308         * doc/sdccman.lyx: added Slade's tips
5309         * src/mcs51/peeph.def: fixed bug #880768
5310
5311 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5312
5313         * src/hc08/ralloc.c (rematStr): fixed bug #879282
5314         * src/SDCCast.c (decorateType): fixed bug #880197
5315
5316 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
5317
5318         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
5319         getopt.h.
5320
5321         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
5322         strtof is not part of C89 and isn't included with Mac OS X.
5323
5324 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5325
5326         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
5327         shiftL2Left2Result): fixed bug #879326
5328         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
5329         (genMultOneByte): fixed bug in signed vs unsigned multiplication
5330         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
5331         address fetch for clr instruction
5332         * device/lib/hc08/_mulint.c: created optimized assembly version
5333         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
5334
5335 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
5336
5337         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
5338         proposed in FR #877103
5339
5340 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
5341
5342         * src/SDCCval.c (cheapestVal): added missing checks
5343         * src/SDCCicode.c (usualBinaryConversions): fixed condition
5344         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
5345
5346 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
5347
5348         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
5349         equal operands
5350
5351 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
5352
5353         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
5354         loaded with the linker search paths (-L arguments) and the libraries
5355         to be linked with the current source (-l arguments). Changes
5356         currently will affect only the pic16 port.
5357         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
5358         include path the port specific paths and port specific libraries,
5359         * gplink command now contains the $3 argument,
5360         * src/pic16/device.h,
5361         * src/pic16/device.c,: structure PIC_device is made public and
5362         renamed to PIC16_device, the same for variable Pics which is renamed
5363         to Pics16. Updated all references to them.
5364         * src/pic16/glue.c (pic16glue): corrected bug with code
5365         initialization which bypassed the variable initializations block.
5366
5367         * device/lib/pic16/Makefile.rules: removed --penable-stack from
5368         COMPILE_FLAGS and added the --nostdinc option
5369
5370 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5371
5372         * device/include/mc68hc908jb8.h: Register defs for another member
5373         of the hc08 family. Contributed by Bjorn Bringert - thanks!
5374
5375 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
5376
5377         Documenting changes from previous commits.
5378         * configure.in (version 1.56),
5379         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
5380         when generating output files to configure the pic16 library,
5381         but now I've commented it out, since gputils aren't installed in the
5382         SF compile farm, so library won't compile
5383
5384         * device/lib/Makefile.in (version 1.56): initially I've added in
5385         target 'all' the prerequestive 'model-pic16' so it compiled the
5386         pic16 library, but now I've commented it out for the same reasons
5387         above,
5388         * added targets 'model-pic16' and 'objects-pic16' to compile the
5389         library
5390         * added target 'port-specific-objects-pic16' to handle the
5391         generated libraries and copy them into the build/ directory
5392         * added target 'clean-intermediate-pic16' to clean intermediate
5393         files into pic16 directory
5394         * in target 'installdirs' added line to create directory pic16 in
5395         the installation path
5396
5397         * device/include/Makefile.in (version 1.11): in target 'install'
5398         added lines to copy all header files to installation path,
5399         * in target 'installdirs' added line create directory for pic16
5400         headers in the installation path
5401
5402 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
5403
5404         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
5405          a function call
5406
5407 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
5408
5409         * configure,
5410         * device/lib/configure.in,
5411         * device/lib/configure: fixed for autoconf 2.57
5412
5413 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5414
5415         * src/z80/main.c (_parseOptions): fixed the portmode= command line
5416         option so that it actually works. Made it specific to the z80, since
5417         the gbz80 doesn't have these kinds of I/O ports.
5418
5419 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5420
5421         * device/include/z180.h,
5422         * device/lib/_memcpy.c,
5423         * device/lib/_memmove.c,
5424         * device/lib/_mulint.c,
5425         * device/lib/ser_ir.c,
5426         * device/lib/ser_ir_cts_rts.c,
5427         * device/lib/_strcmp.c,
5428         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
5429         * src/z80/main.c (_process_pragma): add support for pragmas bank and
5430         portmode; added deprecation warning for bank= and protmode= forms.
5431         Also, guard against buffer overflow.
5432         * src/z80/gen.c (aopGet): generate better code for sfr banked read
5433
5434 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5435
5436         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
5437         changed interrupt vector table generation to only emit declared vectors.
5438         * device/include/Makefile.in: added missing backslash
5439         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
5440
5441 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5442
5443         Mainly changes to support compilation of the device libraries
5444         * src/pic16/device.c: stack is allocated via symbol and not
5445         via literal number. The symbol is placed in the corresponding
5446         position of the data ram
5447         * (pic16_dump_section): relocatable and absolute uninitialized
5448         data are now emitted in sorted order to reduce section naming,
5449         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
5450         weren't marked as being in the access bank,
5451
5452 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5453
5454         Added portion of GNU PIC Library under the directory
5455         device/include/pic16 and device/lib/pic16. These files
5456         contain the declarations of SFRs for the PIC18Fxx2 devices.
5457         The directory is initialized via configure from toplevel.
5458
5459 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
5460
5461         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
5462         the spilllocations to be compared correctly
5463
5464 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5465
5466         * src/SDCCast.c (decorateType): fixed bug introduced today
5467
5468 2004-01-12  Borut Razem <borut.razem AT siol.net>
5469
5470         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
5471         doc/sdccman.lyx: upper case pragmas are deprecated
5472
5473 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5474
5475         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
5476         in simpler and even better code
5477
5478 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
5479
5480         * src/SDCCicode.c (operandOperation): fixed bug #874819
5481         * src/SDCCast.c (decorateType): fixed
5482         char foo (unsigned long ul) { return ul > 0; }
5483
5484 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5485
5486         * doc/sdccman.lyx: Moved and added some sections, small changes
5487         all over. Telling LaTeX to be less strict with word spacing
5488         to better keep the right margin. Changed some notes about
5489         maintainance of the ports in section 3.2.1 - is it OK like this?
5490
5491 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
5492
5493         SDCC source changes:
5494         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
5495         convilong): modified to inform the pic16 port that builtin functions
5496         are external
5497
5498         PIC16 PORT specific changes:
5499         * src/pic16/device.c pic16_dump_equates() added,
5500         processor registers declared internally by the port are emitted in
5501         the translation as equates,
5502         * src/pic16/gen.c: inline code is passed unprocessed to the
5503         translation,
5504         * (pic16_popGetLit2): fnuction modified to take second operand as
5505         pCodeOp pointer and not as literal,
5506         * (popRegFromIdx): prefixed with pic16_,
5507         * (pic16_popCombine2): modified to receive already allocated pCode
5508         operands,
5509         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
5510         * (genFunction): initializes local stack frame and pushes on stack
5511         all the registers used by this function,
5512         * (genEndFunction): restores all registers from stack and restores
5513         stack frame,
5514         * src/pic16/glue.c (pic16emitRegularMap): various changes and
5515         improvements,
5516         * (pic16glue): changed the program startup sequence,
5517         * added new dbName code 'A' for functions placed in absolute section
5518         * src/pic16/main.c: added function attribute _naked,
5519         * added pragma 'code' to place a fnuction at an absolute address,
5520         * added command line arguments --debug-ralloc and --pcode-verbose,
5521         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
5522         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
5523         * (pic16_newpCodeOpLit2): modified to take the second operand as
5524         pCodeOp pointer,
5525         * (pic16_printpBlock): modified to emit each function in a separate
5526         section,
5527         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
5528         UPPER for immediate operands,
5529         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
5530         instruction,
5531         * src/pic16/peeph.def: all peepholes with movff are commented out,
5532         because there is a problem in the pcode peep optimizer,
5533         * src/pic16/ralloc.c: the register allocator can now reuse local
5534         function symbols for another function. This saves register usage.
5535         * src/pic16/ralloc.h: added flag isLocal in structure regs,
5536
5537         Added file src/pic16/NOTES with information about program writing on
5538         the current port version.
5539
5540 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5541
5542         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
5543         and peephole 252 (array access)
5544
5545 2004-01-09  Borut Razem <borut.razem AT siol.net>
5546
5547         * src/SDCCmain.c : fixed #872250: -l command line defined library
5548           files are scanned before standard library files
5549
5550 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5551
5552         * src/SDCCast.c (decorateType): fixed bug #874046
5553
5554 2004-01-09  Borut Razem <borut.razem AT siol.net>
5555
5556         * support/scripts/sdcc.nsi: remove previous installation
5557
5558 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5559
5560         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
5561         bytes for last interrupt vector (mcs51)
5562         * sdcc.spec: fixed typo
5563
5564 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5565
5566         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
5567         gen51Code): more efficient parameter receive for --model-large
5568         ("bug" #845294)
5569
5570 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5571
5572         * src/ds390/main.c,
5573         * src/z80/main.c: added missed needLinkerScript flags (more than
5574         one port structure defined in these file)
5575         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
5576         bug #795325
5577
5578 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
5579
5580         * src/SDCCmain.c: removed various references to DEFAULT_PORT
5581         * src/port.h: added flag needLinkerScript in port->linker
5582         structure to inform whether to create a .lnk file or not,
5583         * src/avr/main.c,
5584         * src/ds390/main.c,
5585         * src/hc08/main.c,
5586         * src/mcs51/main.c,
5587         * src/pic/main.c,
5588         * src/pic16/main.c,
5589         * src/xa51/main.c,
5590         * src/z80/main.c: changed appropriately to configure
5591         needLinkerScript flag
5592         * src/pic/gen.c,
5593         * src/pic16/gen.c (genAddrOf): fixed bug #863624
5594         * src/pic/glue.c: added variable udata_section_name to
5595         override default uninitialized data segment definition for
5596         devices only with SHAREBANK memory (reported from Erik Epetrich)
5597         * (pic14emitOverlay): modified to emit a commented overlay segment
5598         directive when no overlay data exist
5599         * (picglue): modified to emit uninitialized data segment
5600         according to udata_section_name
5601         * src/pic/main.c (_pic14_parseOptions): added command line
5602         options --udata-section-name=[name] to override default
5603         udata definition name
5604         * modified _linkCmd and _asmCmd to include compiler passed
5605         arguments via -W option
5606         * src/pic16/main.c: added $l in _asmCmd, changed extension for
5607         object file from '.rel' to '.o' in port->linker structure,
5608         changed size of fptr from 2 to 3 in port structure
5609
5610 2004-01-07  Borut Razem <borut.razem AT siol.net>
5611
5612         * support/scripts/sdcc.nsi: update PATH
5613         * support/scripts/sdcc.ico: craeted
5614
5615 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
5616
5617         * device/include/Makefile.in: fix install
5618         * doc/Makefile: fix install
5619
5620 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5621
5622         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
5623         in bug #860505
5624         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
5625         how the function variable allocation summary is displayed; also
5626         include information about variables allocated to the overlay
5627         segment
5628
5629 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5630
5631         * as/mcs51/lkmain.c: Help about -Y option
5632         * as/mcs51/lkarea.c: Fixed gcc warnings
5633
5634 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5635
5636         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
5637         fixed warning
5638         * support/valdiag/tests/overflow.c: added
5639         * src/SDCCast.c (decorateType),
5640         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
5641         LEFT_OP (left shift)
5642
5643 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5644
5645         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
5646         (default behaviour).
5647
5648 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5649
5650         A python script to validate compiler diagnostic messages. It can be
5651         used to verify that sdcc complains about bad c source code and
5652         gives a good location of the error.
5653         * support/valdiag/Makefile,
5654         * support/valdiag/valdiag.py,
5655         * support/valdiag/tests/*
5656
5657 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5658
5659         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
5660         * src/SDCCsymt.c (newEnumType),
5661         * src/SDCCsymt.h
5662         * support/Util/SDCCerr.c,
5663         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
5664         enum related bugs.
5665         * support/regression/tests/enum.c: added test for enum values that
5666         require at least 2 bytes of storage.
5667
5668 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5669
5670         * src/common.h: added ifndef/define/endif macros
5671         around the header file.
5672         Bug reported from Jesus Calvino-Fraga
5673
5674 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5675
5676         * sdcc.spec: updated
5677         * device/include/Makefile.in: don't install CVS directories
5678         * device/lib/Makefile.in: added removal of CVS directories after install
5679         * doc/Makefile: fixed install, added local_icons
5680         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
5681         * src/mcs51/gen.c (genRightShift): fixed bug #870788
5682         * src/ds390/gen.c (genRightShift): fixed bug #870788
5683         * src/SDCCast.c (decorateType): fixed bug #870781
5684
5685 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5686
5687         PIC16 port related changes:
5688         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
5689         added variable stackPos,
5690
5691         * gen.c: genCall, assignResultValue: added support for
5692         pushing/retrieving function parameters to/from stack,
5693         genFunction,genEndFunction: setup stack frame for the
5694         generated function,
5695         genAddrOf: will be changed according to bug 863624
5696
5697         * added files genutils.c and genutils.h which contain gen*
5698         debugged and optimised functions extracted from gen.c
5699
5700         * glue.c: added variable 'externs' which holds extern symbols,
5701         pic16emitRegularMap: is modified to properly handle relocatable
5702          symbols under the new scheme,
5703         pic16createInterruptVect: is modified
5704         pic16printPublics: is modified to emit 'global' assembler directives,
5705         added pic16_printExterns to print extern symbols,
5706         pic16glue: initializes stack/frame pointer in the beginning of
5707         the assembly output. Temporary hack, will be corrected later,
5708         because gplink yet does not support stack and SDCC does not
5709         yet support a type of crt0.o object to create the final binary.
5710
5711         * Removed many lines that contain 8051 legacy code.
5712         * The code is finally placed under a 'code' directive.
5713         * Added port specific options.
5714
5715         * _process_pragma: simplified since now we do not need *special*
5716         include file to define SFR registers. But a separate header
5717         will be needed. This will be developed later.
5718         * _pic16_parseOptions: added, parses port specific options:
5719         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
5720         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
5721         --preplace-udata-with=
5722
5723         * _pic16_setDefaultOptions: modified to initialize section names,
5724         but hack is temporarly out of order since it needs improvement.
5725         * _pic16_genAssemblerPreamble: configuration words are emitted by
5726         their address instead of their name. This part is incomplete and
5727         supports only the 18Fxx2 devices. Other devices will emit an error
5728         during assembly since they do not contain the same set of config
5729         registers
5730         * _pic16_genIVT: is modified,
5731
5732         * pcode.c: added definitions for some hardware registers that are needed
5733         for stack support
5734         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
5735         All PCI entries are updated. Now LFSR is supported.
5736         * Removed pic16_pciTRIS is mentioned by mdubuc in source
5737         * added pic16_newpCodeOpLit2 to support instructions with
5738         two literal arguments
5739         * pic16_pCode2str: corrected code that emits assembler instructions
5740         with two literal operands and those that have an access bit modifier
5741         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
5742         this fixes a bug which caused some labels to be lost, when an
5743         assembler directive was added, i.e. banksel,
5744         * pic16_FixRegisterBanking: improved logic that causes the insertion
5745         of bank switching,
5746         * InlineFunction: functions that are called once, are not any more
5747         inlined. This can be a port option in the future,
5748
5749         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
5750
5751         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
5752         hold the corresponding uninitialized symbols,
5753         * pic16_allocProcessorRegister: registers have explicit marked the
5754         accessBank field,
5755         * pic16_allocInternalRegister: registers are explicit marked as
5756         not used,
5757         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
5758         processing list, so bit registers were lost,
5759         *
5760
5761         * ralloc.h: added field 'accessBank' and original symbol operand
5762         in register definition,
5763         * removed the field isMapped from register definition,
5764
5765         ** Several functions have been removed from various sources:
5766         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
5767         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
5768         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
5769         pic16_assignRelocatableRegisters
5770
5771         ** others have been introduced:
5772         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
5773         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
5774
5775 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
5776
5777         * support/scripts/inc2h.pl: changed definition of BIT_AT
5778         to emit 'sbit at' instead of 'bit at'. This was a request.
5779
5780         PIC16 port related preliminary changes:
5781         * gen.c: prefixed function popRegFromString with
5782         pic16_ and all references to it corrected
5783         * pcode.c: all pic16_pc_* hardware registers prefixed
5784         with underscore (_),
5785         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
5786         * ralloc.c: newReg(): when register is REG_SFR then
5787         set address to rIdx,
5788         pic16_allocProcessorRegister(): marks register wasUsed=0
5789         pic16_writeUsedRegs(): added a call to assign processor
5790         registers via pic16_assignFixedRegisters
5791
5792 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5793
5794         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
5795         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
5796         variables in unused register banks.  Also the SSEG is placed
5797         wherever there is enough space for it, and IDATA can be anywhere
5798         in internal RAM.  For now compile using -Wl-Y[stack_size].
5799         The mem file is different for this option as well, since it
5800         makes no sense of talking about DSEG lenght.
5801
5802 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
5803
5804         * src/SDCClrange.c: fixed bug 869095 that caused segfault
5805         in certain cases, e.g. when ROM assignment, patch provided
5806         from Albert den Haan.
5807
5808 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
5809
5810         Many signedness and type propagation fixes:
5811         * src/SDCCicode.c: made geniCodeCast() static
5812         replaced SPEC_ by IS_ (cosmetic)
5813         (operandOperation): fixed div and mod operation
5814         (usualBinaryConversions): added support for promotion of char
5815         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
5816         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
5817         (geniCodeAdd): an array index will stay unsigned, even if promoted
5818         from char to int
5819         (geniCodeArray): ditto
5820         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
5821         * src/SDCCsymt.c (computeType): added more support for char;
5822         promotion of char is selectable by promoteCharToInt, fixed signedness
5823         for all cases
5824         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5825         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5826         * src/SDCCval (val*): replaced signedness calculation by
5827         computeType()
5828         rearranged if-branches (cosmetic)
5829         (valShift): added warning W_SHIFT_CHANGED
5830         (valCompare): fixed problem with different types
5831         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
5832         * support/regression/tests/literalop.c: added many cases
5833         * support/regression/tests/ast_constant_folding.c: changed finally to
5834         'unsigned int'
5835         * .version: new year, new version: 2.3.7
5836         * src/SDCCmain.c (main): applied patch #866468
5837         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
5838         provided by Scott Bronson
5839         * doc/sdccman.lyx: updated documentation for sdcdb
5840         updated and added chapter tips
5841
5842 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5843
5844         * src/SDCCsymt.h: missing from yesterday's commits
5845
5846 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5847
5848         * src/SDCC.y (struct_or_union_specifier),
5849         * support/Util/SDCCerr.c,
5850         * support/Util/SDCCerr.h: verify that struct & union tags are used
5851         as declared.
5852
5853 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5854
5855         * src/SDCCglobl.h: missing from yesterday's commits
5856
5857 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5858
5859         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
5860         sft_attributes, struct_declaration, parameter_declaration,
5861         type_name, start_block, declaration_list),
5862         * src/SDCC.lex (check_type): support redefinition of typedef names
5863
5864 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5865
5866         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
5867         aligned xdata arrays. Erik helped me with the if clause.
5868
5869 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5870
5871         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
5872         warning
5873
5874 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5875
5876         * src/SDCCast.h,
5877         * src/SDCCast.c (newAst_),
5878         * src/SDCCicode.h,
5879         * src/SDCCicode.c (ast2iCode, newiCode),
5880         * src/SDCCglobl.h,
5881         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
5882         expr, statement, expression_statement, selection_statement,
5883         iteration_statement, expr_opt, jump_statement): foundation for tracking
5884         sequence points
5885         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
5886         point code too)
5887
5888 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5889
5890         * support/Util/SDCCerr.c,
5891         * src/SDCCast.h,
5892         * src/SDCCast.c (createCase, createDefault, decorateType),
5893         * src/SDCClabel.c (labelUnreach),
5894         * src/SDCC.y (labeled_statement, jump_statement): More improvements
5895         to error messages.
5896         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
5897         (with thanks to Stas Sergeev)
5898         * device/include/time.h,
5899         * device/lib/time.c (CheckTime): suppress unreachable code warning
5900
5901 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5902
5903         * src/SDCCast.c (createIvalCharPtr),
5904         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
5905         bug #753752)
5906         * support/regression/tests/nullstring.c: tests for these two bugs
5907
5908 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5909
5910         * support/Util/SDCCerr.h,
5911         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
5912         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
5913         about storage class and 'at' used inside struct or union
5914         * src/SDCCBBlock.c (iCodeFromeBBlock),
5915         * src/SDCCcse.c (ifxOptimize),
5916         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
5917         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
5918         printIval, emitStaticSeg, emitOverlay),
5919         * src/SDCClabel.c (deleteIfx),
5920         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
5921         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
5922         gatherAutoInit, processParms),
5923         * support/Util/SDCCerr.h,
5924         * support/Util/SDCCerr.c (werrorfl): Support for better error location
5925         reporting for post-parse errors.
5926
5927 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5928
5929         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
5930         implicit casts via union; they don't work on big endian systems
5931         (possible fix for bug #861138)
5932
5933 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5934
5935         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
5936         * src/mcs51/main.c: fixed the fix for bug #737001
5937
5938 2003-12-15  Borut Razem <borut.razem AT siol.net>
5939
5940         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
5941
5942 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5943
5944         * support/makebin/makebin.c: put output in binary mode
5945
5946 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5947
5948         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
5949         xdata and data memory on startup. Set the environment variable
5950         SDCC_NOGENRAMCLEAR to disable this.
5951         * src/mcs51/peephole.def,
5952         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
5953         (allows non-interrupt and interrupt code to safely compete for a resource
5954         without the non-interrupt code having to disable interrupts)
5955
5956 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5957
5958         * src/SDCCicode.c (geniCodeAdd),
5959         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
5960         with valFromType if type might be a pointer and host is big endian).
5961         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
5962         types, not just integer types.
5963         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
5964         multiply defined with mismatching "at" address.
5965
5966 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5967
5968         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
5969         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
5970         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
5971         with embedded nulls (fixed bug #753752)
5972
5973 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5974
5975         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
5976         Apparently this did not see much testing (endless loop)
5977
5978 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5979
5980         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
5981
5982 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5983
5984         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
5985         gracefully handle NULL memmap pointers
5986
5987 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5988
5989         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
5990         instead of deleting the iCode when an operand is volatile
5991         * src/z80/gen.c (genDummyRead),
5992         * src/mcs51/gen.c (genDummyRead),
5993         * src/ds390/gen.c (genDummyRead),
5994         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
5995         not just IC_RIGHT
5996         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
5997         * src/SDCC.y: fixed bug #850420
5998
5999 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6000
6001         Applied z80 i/o port patch from Peter Townson and fixed some operators
6002         to better handle operands in A register.
6003         * device/include/z180.h
6004         * src/SDCC.y
6005         * src/SDCCglue.c
6006         * src/z80/gen.c
6007         * src/z80/gen.h
6008         * src/z80/main.c
6009         * src/z80/peeph-z80.def
6010         * src/z80/peeph.def
6011         * src/z80/z80.h
6012
6013 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6014
6015         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
6016
6017 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6018
6019         * device/lib/hc08/_mullong.c: Removed extra #endif
6020
6021 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6022
6023         * sim/ucsim/hc08.src/inst.cc,
6024         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
6025         carries from x to h
6026         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
6027         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
6028         * device/include/stdarg.h: fixed varargs for hc08
6029         * device/lib/Makefile.in,
6030         * device/lib/hc08/Makefile,
6031         * device/lib/hc08/_mulint.c,
6032         * device/lib/hc08/_mullong.c: fixed some endian problems
6033
6034 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6035
6036         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
6037         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
6038         * device/lib/_gptrget.c,
6039         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
6040
6041 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6042
6043         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
6044         * src/SDCCast.c (astErrors): fixed bug #846007
6045         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
6046
6047 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6048
6049         * src/SDCCast.c (decorateType): disabled a transformation I added in
6050         revision 1.188 (access to fields of a structure at an absolute address);
6051         it breaks with bitfields, extern declarations, and gcse analysis.
6052         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
6053         could be assigned through a pointer, so don't complain.
6054         * src/SDCCast.c (astErrors),
6055         * src/SDCCast.h,
6056         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
6057
6058 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
6059
6060         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
6061         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
6062         output of __config directives, since gpasm now supports them
6063         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
6064         pre-processor macro, i.e. -DMCU=p18f452
6065         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
6066         and modified to handle 'cast' icode similarly to '=' icode
6067         * src/pic16/device.h (typedef struct PIC_device): added field
6068         'extMIface' to indicate that chip has external memory interface
6069         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
6070         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
6071         18F8720
6072
6073 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6074
6075         * src/SDCC.y (pointer): fixed bug #846006
6076         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
6077         * src/SDCCast.c (decorateType): fixed bug #846009
6078         * src/ds390/peeph.def,
6079         * src/ds390/gen.c (genAnd, genOr),
6080         * src/mcs51/peeph.def,
6081         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
6082
6083 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6084
6085         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
6086         * src/SDCCdflow.c
6087         * src/SDCCcse.c
6088         * src/SDCCcse.h
6089         * src/SDCCBBlock.h
6090         * src/SDCCBBlock.c
6091
6092 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
6093
6094         fixed bug #845089
6095         * src/SDCCbitv.h,
6096         * src/SDCCbitv.c: added function to free a bitvector
6097         * src/SDCClrange.h,
6098         * src/SDCClrange.c: added function to recompute the liveranges
6099         * src/avr/ralloc.c,
6100         * src/ds390/ralloc.c,
6101         * src/hc08/ralloc.c,
6102         * src/mcs51/ralloc.c,
6103         * src/pic/ralloc.c,
6104         * src/pic16/ralloc.c,
6105         * src/xa51/ralloc.c,
6106         * src/z80/ralloc.c: recompute the liveranges after register packing
6107
6108 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
6109
6110         * src/SDCCloop.c (newInduction): fixed bug #845630
6111
6112 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6113
6114         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
6115         inadvertantly left behind from my 2003-11-12 change
6116
6117 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6118
6119         Updated headers I neglected to commit yesterday.
6120         * src/SDCClrange.h,
6121         * src/SDCCicode.h
6122
6123 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6124
6125         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
6126         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
6127         * src/SDCCopt.c (eBBlockFromiCode),
6128         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
6129         the creation of the key hash table from the sequencing so it can be used
6130         earlier (for some GCSE bug fixes still pending)
6131
6132 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6133
6134         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
6135         * support/regression/tests/addsub.c: testing genPlus shortcut
6136
6137 2003-11-15  Borut Razem <borut.razem AT siol.net>
6138
6139         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
6140
6141 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6142
6143         * src/SDCCcse.c (cseBBlock): fixed bug #527779
6144         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
6145         ordering is immaterial.
6146         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
6147
6148 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6149
6150         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
6151         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
6152         (SIGSEV) of bug #840381
6153         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
6154         unlink new file before rename if new and old filenames are the same)
6155
6156 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6157
6158         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
6159         uninitialized variables) for the mcs51. Set environment variable
6160         SDCC_GENRAMCLEAR to test.
6161         xdata initialization slightly shorter
6162
6163 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6164
6165         * src/SDCCsymt.h,
6166         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
6167         #838241 & 780691 (basicly the same bug)
6168         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
6169         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
6170
6171 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
6172
6173         * src/SDCCmain.c (linkEdit): "fix" #834252
6174
6175 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6176
6177         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
6178         * src/SDCCast.h,
6179         * src/SDCC.y: fixed bug #819403
6180
6181 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6182
6183         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
6184         the reentrant attribute.
6185         * src/hc08/gen.c (genPackBits): added missing stack readjustment
6186         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
6187         simulation
6188         * src/SDCCast.c (decorateType): fixed bug with storage class not being
6189         updated during pointer dereference; f.e. ~(((char *)1)*) was being
6190         erroneously reduced to a literal.
6191         * src/hc08/ralloc.c (packRegisters, rematStr),
6192         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
6193         some cases
6194
6195 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6196
6197         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
6198         * doc/sdccman.lyx: changed from 'article' to 'book'
6199         * doc/Makefile: readded test_suite_spec and cdbfileformat
6200
6201 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
6202
6203         * device/include/stdlib.h: include malloc.h to comply with ANSI
6204         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
6205
6206 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6207
6208         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
6209         * doc/clean.mk: also remove *.out files
6210         * doc/sdccman.lyx: some additions, larger top/bottom margins
6211
6212 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6213
6214         * src/SDCC.y: fixed bug #837365
6215         * support/regression/tests/bitopcse.c
6216         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
6217         a symbol (might be valop instead)
6218         * device/lib/Makefile.in: added errno.c to HC08SOURCES
6219         * device/lib/clean.mk: added hc08 to the cleaning list
6220
6221 2003-11-04  Borut Razem <borut.razem AT siol.net>
6222
6223         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
6224           made 2003-11-04
6225         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6226           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
6227           malloc is declared in standard stdlib.h
6228
6229 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6230
6231         * device/lib/hc08/Makefile: need to clean .rel not .o files
6232         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
6233
6234 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6235
6236         * src/port.h,
6237         * src/hc08/main.c,
6238         * src/mcs51/main.c,
6239         * src/ds390/main.c,
6240         * src/z80/main.c,
6241         * src/avr/main.c,
6242         * src/pic/main.c,
6243         * src/pic16/main.c,
6244         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
6245         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
6246         tests (which uses the port's oclsExpense function)
6247         * src/SDCC.y,
6248         * src/SDCCast.c,
6249         * src/SDCCicode.c,
6250         * src/hc08/gen.c,
6251         * src/ds390/gen.c,
6252         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
6253
6254 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6255
6256         * src/SDCCcse.c (ifxOptimize),
6257         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
6258         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
6259         deleting the IFX iCode.
6260         * src/hc08/ralloc.c: reduced unneeded slocs
6261         * src/hc08/gen.c: fixed bug in asmopToBoolean
6262
6263 2003-11-04  Borut Razem <borut.razem AT siol.net>
6264
6265         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
6266           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6267           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
6268           transferred to configure
6269
6270 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
6271
6272         Use headers defined in the C[++] standards:
6273         * sim/ucsim/gui.src/serio.src/fileio.cc
6274         * sim/ucsim/gui.src/serio.src/frontend.cc
6275         * sim/ucsim/gui.src/serio.src/main.cc
6276         * sim/ucsim/gui.src/serio.src/posix_signal.cc
6277         * support/Util/NewAlloc.c
6278         * as/hc08/lklibr.c
6279         * as/mcs51/lklibr.c
6280         * as/z80/aslist.c
6281         * as/z80/assym.c
6282
6283 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6284
6285         * Added MSVC projects for hc08 assembler and linker:
6286         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
6287         /as/hc08/link_hc08.dsp
6288
6289 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
6290
6291         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
6292
6293 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
6294
6295         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
6296
6297 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6298
6299         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
6300
6301 2003-10-31  Borut Razem <borut.razem AT siol.net>
6302
6303         * support/cpp2/cpplib.h,
6304           support/cpp2/cpplib.c,
6305           support/cpp2/cpplex.c,
6306           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
6307           to switch _asm block preprocessing on / off. Default is
6308           #pragma preproc_asm +
6309
6310 2003-10-31  Borut Razem <borut.razem AT siol.net>
6311
6312         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
6313           when outputting comment blocks (when executed with -C option) and
6314           _asm (SDCPP specific) blocks
6315
6316 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6317
6318         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
6319
6320 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
6321
6322         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
6323
6324 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
6325
6326         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
6327         * src/SDCCast.c (decorateType): fixed bug #832664
6328
6329 2003-10-31  Borut Razem <borut.razem AT siol.net>
6330
6331         * support\cpp2\cpplex.c: fixed for SDCPP:
6332           comments(when executed with -C option) and _asm blocks
6333           were included even if they where in skipped #if block.
6334           Applied solution from GCC cpp 3.3.2
6335
6336 2003-10-31  Borut Razem <borut.razem AT siol.net>
6337
6338         * src/SDCC.lex: sdcc now understands both formats:
6339           '# <line_number> <file_name>' and
6340           '#line <line_number> <file_name>'
6341         * support/cpp2/cppmain.c: sdcpp now generates the standard
6342           '# <line_number> <file_name>' instead of former
6343           '#line <line_number> <file_name>'
6344
6345 2003-10-30  Borut Razem <borut.razem AT siol.net>
6346
6347         * support/cpp2/cpphash.h,
6348         * support/cpp2/cpplib.h
6349         * support/cpp2/cpplex.c,
6350         * support/cpp2/cppmain.c,
6351         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
6352
6353 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6354
6355         Fixed a number of problems revealed by bug #827883.
6356         * src/SDCCloop.c (loopInvariants): Spill location of the
6357         result operand should be recomputed if extracted from
6358         a loop. Also, don't extract assignments of an iTemp
6359         from a literal.
6360         * src/SDCCast.c (isConformingBody): loop reversal should
6361         not occur if the control variable is involved with a
6362         relational operator.
6363
6364 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
6365
6366         * .version: bumped to 2.3.6 to reflect the big improvements
6367         made by Erik and Klaus. Thanks!
6368
6369 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
6370
6371         Replaced the livrange code.
6372         * src/SDCClrange.c: added new LR code
6373         * src/SDCCloop.c,
6374         * src/SDCCBBlock.h: removed remainig parts from old LR code
6375         * src/ds390/ralloc.c,
6376         * src/ds390/gen.c: minor fixes to make it work with new code
6377
6378 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6379
6380         * as/hc08/asm.h,
6381         * as/hc08/lkrloc.c,
6382         * src/hc08/gen.c,
6383         * src/hc08/ralloc.c: Fix various warnings related to the hc08
6384         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
6385         (tweaked fix for bug #818696)
6386
6387 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6388
6389         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
6390
6391 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6392
6393         * src/SDCCmain.c,
6394         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
6395         * src/mcs51/gen.c (gencjneshort),
6396         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
6397         more efficient (per Scott Bronson's suggestion)
6398
6399 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6400
6401         Extended the semantics of the critical keyword to include
6402         individual statements. See RFE #827755 and #799831
6403         * src/SDCC.y
6404         * src/SDCCicode.c
6405         * src/SDCCopt.c
6406         * src/SDCCast.c
6407         * support/Util/SDCCerr.c
6408         * support/Util/SDCCerr.h
6409         * src/mcs51/gen.c
6410         * src/ds390/gen.c
6411         * src/hc08/gen.c
6412
6413 2003-10-19  Borut Razem <borut.razem AT siol.net>
6414
6415         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
6416
6417 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6418
6419         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
6420         Fixed bug #818696
6421         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
6422         and predecrement operand is displayed
6423
6424 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6425
6426         * src/SDCCval.c (valMinus): fixed bug #826041
6427
6428 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6429
6430         Some hc08 related updates that I missed earlier
6431         * sim/ucsim/stypes.h
6432         * support/regression/ports/hc08/spec.mk
6433
6434 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6435
6436         New target "hc08" for the Motorola 68hc08 family of micros
6437
6438         * configure
6439         * configure.in
6440         * Makefile
6441         * src/hc08/*
6442         * src/SDCCmain.c
6443         * src/port.h
6444         * sim/ucsim/hc08.src/*
6445         * sim/ucsim/configure.in
6446         * src/ucsim/configure
6447         * sim/ucsim/packages_in.mk
6448         * as/hc08/*
6449         * as/Makefile
6450         * device/include/mc68hc908qy.h
6451         * device/lib/hc08/*
6452         * device/lib/Makefile.in
6453         * support/regression/ports/hc08/*
6454         * support/regression/Makefile
6455
6456 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6457
6458         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
6459         regression test
6460         * src/ds390/gen.c (genCast): fixed bug #821957
6461
6462 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6463
6464         * device/lib/logf.c: "fixed" overlay bug
6465         * support/regression/ports/host/spec.mk: added m library
6466         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
6467         * support/regression/tests/float_trans: added (for Eric)
6468
6469 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
6470
6471         * src/mcs51/gen.c (genCpl): fixed bug
6472         http://sf.net/mailarchive/message.php?msg_id=6263915
6473
6474 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
6475
6476         * src/SDCCast.c (decorateType): added extended constant folding
6477         * src/SDCCsymt.c (computeType): cleanup
6478         * src/SDCCval.c (valShift): minor optimization
6479         * support/regression/tests/ast_constant_folding.c: added
6480
6481 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6482
6483         * src/SDCCmain.c: removed some unintended changes
6484
6485 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6486
6487         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
6488         * src/z80/gen.c: fixed part of bug #817589
6489         * src/SDCCsymt.c (checkFunction): fixed bug #817895
6490
6491 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
6492
6493         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
6494         * src/SDCCcflow.c
6495         * src/SDCCcse.c
6496         * src/SDCCdflow.c
6497         * src/SDCClabel.c
6498         * src/SDCClrange.c
6499         * src/SDCCmem.c
6500         * src/SDCCopt.c
6501         * src/SDCCpeeph.c
6502         * src/SDCCset.c
6503         * src/avr/ralloc.c
6504         * src/ds390/ralloc.c
6505         * src/izt/ralloc.c
6506         * src/mcs51/ralloc.c
6507         * src/pic/ralloc.c
6508         * src/pic16/ralloc.c
6509         * src/xa51/ralloc.c
6510         * src/z80/ralloc.c
6511         * src/z80/gen.c: removed unused label "release:"
6512
6513 2003-10-06  Borut Razem <borut.razem AT siol.net>
6514
6515         * src/SDCC.lex: removed definition of unused variables
6516           save_optimize and save_options
6517
6518 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
6519
6520         * clean.mk: removed '=' in "-maxdepth=1"
6521         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
6522         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
6523
6524 2003-10-06  Borut Razem <borut.razem AT siol.net>
6525
6526         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
6527           my_unput() replaced by unput()
6528
6529 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
6530
6531         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
6532         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
6533         type-punned pointer will break strict-aliasing rules"
6534         Old LR behaviour is again default; Klaus' LR can be choosen by
6535         defining the environment variable LRKLAUS
6536         * src/SDCCBBlock.h
6537         * src/SDCCloop.c
6538         * src/SDCClrange.c
6539         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
6540         * clean.mk: fixed removal of files in bin/CVS/
6541         * device/lib/clean.mk: fixed removal of directories small and large
6542         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
6543         * src/SDCCicode.c,
6544         * src/SDCCval.c: removed superflous test for pedantic
6545
6546 2003-10-05  Borut Razem <borut.razem AT siol.net>
6547
6548         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
6549           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
6550           message "unmatched #pragma SAVE and #pragma RESTORE"
6551
6552 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6553
6554         * doc/sdccman.lyx: various additions and updates (interrupts, inline
6555           assembly, critical functions, atomic, nojtbound)
6556
6557 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
6558
6559         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
6560         * src/SDCCBBlock.h
6561         * src/SDCCloop.c
6562         * src/SDCCloop.h
6563         * src/SDCClrange.c
6564
6565 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6566
6567         * src/z80/gen.h,
6568         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6569         * src/mcs51/gen.h
6570         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6571         * src/ds390/gen.h
6572         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6573         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
6574         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
6575
6576 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6577
6578         * src/z80/gen.c (genRet): fixed bug #524753
6579         * src/z80/gen.c (genCast): fixed internal error on cast from
6580         pointer to long
6581         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
6582         fix for bug #477835 to the z80
6583         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
6584         for tracking iCodes in the peephole optimizer for z80
6585
6586 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6587
6588         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
6589         the other part of bug #814548
6590         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
6591
6592 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
6593
6594         * src/SDCCcse.c: fixed part of bug #814548
6595
6596 2003-09-28  Borut Razem <borut.razem AT siol.net>
6597
6598         * src/asm.c: rewrite of printILine() to use temporary file instead
6599           a pipe
6600         * src/xa51/main.c: commented out declaration of int rewinds
6601
6602 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6603
6604         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
6605
6606 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6607
6608         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
6609         * src/asm.c (printILine): Fixed bug #811015
6610
6611 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6612
6613         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
6614         freeing.
6615
6616 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6617
6618         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
6619         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
6620         to correctly handle general case of AOP_PAIRPTR
6621         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
6622
6623 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6624
6625         * src/mcs51/ralloc.c (fillGaps),
6626         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
6627         register positioning bug)
6628
6629 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
6630
6631         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
6632
6633 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6634
6635         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
6636         genCodePointerGet, genGenPointerGet, genFarPointerSet,
6637         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
6638         (ralloc doesn't intentionally do this now, but perhaps later)
6639         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
6640         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
6641         register positioning bugs (Fixed bug #762602 and #795325)
6642         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
6643         (Fixed bug #808779)
6644         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
6645         lines that --i-code-in-asm generates
6646
6647 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6648
6649         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
6650         trying to fclose a FILE* that was already closed.
6651
6652 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6653
6654         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
6655         of const struct should be treated as if const themselves)
6656
6657 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
6658
6659         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
6660
6661 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6662
6663         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
6664         Unix (/n) and DOS (/r/n) line terminations.
6665
6666 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6667
6668         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
6669         bug #613775
6670
6671 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6672
6673         * src/mcs51/gen.c (genFunction, genEndFunction),
6674         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
6675         and restore of EA so that stack offsets to parameters are
6676         correct when using both critical and reentrant/stack-auto.
6677         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
6678         size (can be triggered in error if sloc is shared between
6679         different sized objects)
6680         * device/include/float.h: fixed macros to explicitly use
6681         unsigned long where needed
6682
6683 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
6684
6685         Feature req. 799831: added code to allow nesting of critical functions
6686         * src/mcs51/gen.c (genFunction, genEndFunction)
6687         * src/ds390/gen.c (genFunction, genEndFunction)
6688
6689 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6690
6691         * src/SDCCsymt.c (sclsFromPtr),
6692         * src/SDCCsymt.h,
6693         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
6694         support for standard C idiom of memory mapped variables; for
6695         example, *((xdata int*)0x1234) = 1 is now internally equivalent
6696         to xdata int at 0x1234 tempvar = 1.
6697         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
6698         provided by Akiya ISHIDA
6699
6700 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
6701
6702         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
6703         * src/SDCCval.c (constVal): added reduction from int to char
6704         * src/SDCCval.c (valMult, valDiv): fixed sign handling
6705         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
6706         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
6707         to ignore the sign
6708         * support/regression/tests/shifts.c: fixed
6709
6710 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6711
6712         * src/z80/gen.c (genXor): Fixed bug #805445
6713
6714 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6715
6716         Fixed bug #621531 (const & volatile confusion in the type chain).
6717         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
6718         refer to the const or volatile state of the pointer itself.
6719
6720         * src/SDCCast.c
6721         * src/SDCCglue.c
6722         * src/SDCCicode.c
6723         * src/SDCCsymt.c
6724         * src/SDCCval.c
6725         * src/SDCC.y
6726         * src/SDCCsymt.h
6727         * src/pic/gen.c
6728         * src/pic/ralloc.c
6729         * src/pic16/gen.c
6730         * src/pic16/ralloc.c
6731         * support/regression/tests/const.c
6732
6733 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6734
6735         When checking for duplicated modules, use absolute paths
6736         instead of relative paths.  Files changed:
6737
6738         * as/mcs51/lklib.c
6739         * link/z80/lklib.c
6740
6741 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6742
6743         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
6744
6745 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6746
6747         * device/include/string.h: added size_t typedef, changed
6748         prototypes to use size_t, eliminated separate reentrant and
6749         non-reentrant declarations, added _memmove declaration
6750         * device/lib/_memcpy.c: changed to use size_t instead of int,
6751         changed /4 to >>2 to avoid division library call
6752         * device/lib/_memcmp.c,
6753         * device/lib/_memset.c,
6754         * device/lib/_strncat.c,
6755         * device/lib/_strncpy.c,
6756         * device/lib/_strncmp.c: changed to use size_t instead of int
6757         * device/lib/_memmove.c: new file (fixed bug #772294)
6758         * device/lib/Makefile.in: added _memmove.c
6759         * device/lib/z80/asm_strings.s: fixed bug #772290
6760         * support/regression/tests/bitfields.c: attempt to fix host assertion
6761         failure on amd64-unknown-linux2.2
6762
6763 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6764
6765         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
6766         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
6767         * as/z80/asmain.c (main): fixed bug #801766
6768
6769 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
6770
6771         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
6772         compilers
6773
6774 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6775
6776         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
6777         reported in bug #800609
6778
6779 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
6780
6781         * Top header beautifications in src/pic16 directory:
6782           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
6783           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
6784           pcoderegs.h, ralloc.c, ralloc.h
6785         * main.c: added top header and GPL license notice
6786         * pcode.c: fixed the if-conditional warning
6787
6788 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
6789
6790         * device/lib/_mullong.c: replaced int by short for gcc
6791
6792 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6793
6794         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
6795         and JUMPTABLE iCodes properly now (worked by accident before)
6796         * src/mcs51/gen.c (leftRightUseAcc),
6797         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
6798         iCode properly now. Use getSize instead of nRegs since a & b
6799         aren't part of the nRegs tally.
6800
6801 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
6802
6803         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
6804         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
6805           before instructions that use the _STATUS register
6806
6807 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
6808
6809         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
6810         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
6811         fetching of the pointer
6812         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
6813         copied from genNearPointerSet()
6814         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
6815         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
6816         If they pop r0/r1 they must be called in the opposite order than aopOp().
6817         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
6818         (resp. --stack-auto), prepared for --xstack
6819
6820 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6821
6822         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
6823
6824 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
6825
6826         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
6827         these ports have their own __sdcc_external_start()
6828
6829 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
6830
6831         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6832         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
6833         type for bits was changed. It resulted in bit variables becoming
6834         global, which is not permitted in PIC 14 assembly output.
6835
6836 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6837
6838         * doc/sdccman.lyx: various additions and updates. Rearranged sections
6839
6840 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6841
6842         Z80 and MCS51 linkers complaint if a public symbol is defined
6843         in more than one library module:
6844
6845         * as/mcs51/lklib.c
6846         * link/z80/lklib.c
6847         * as/mcs51/Makefile.in
6848
6849 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6850
6851         A few small changes that speed up the peephole optimizer.
6852
6853         * src/SDCCpeeph.c
6854
6855 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6856
6857         Try to make the peephole optimizer smarter by maintaining
6858         an association between the assembly source code and the
6859         iCodes that originated them. Put this information to use
6860         with a new peephole rule condition "notVolatile" so that
6861         the rules can be aggressive yet still safe.
6862
6863         * src/SDCCpeeph.c
6864         * src/SDCCpeeph.h
6865         * src/mcs51/gen.c
6866         * src/mcs51/peeph.def
6867
6868 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6869
6870         Fixed bug #741761
6871
6872         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
6873         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
6874         if the left or right operand symbols have the accuse flag set.
6875
6876 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6877
6878         Changed the type of the result of the ! (NOT) operator to char;
6879         previously it returned the same type as the source. This allows
6880         us to eliminate all the genFloatNot functions (all of its target
6881         implementations were very buggy) since !float can use the same
6882         code as !long now.
6883
6884         * src/SDCCicode.c (ast2iCode): ! returns char
6885         * src/mcs51/gen.c (genNot, genNotFloat),
6886         * src/ds390/gen.c (genNot, genNotFloat),
6887         * src/z80/gen.c (genNot, genNotFloat),
6888         * src/pic/gen.c (genNot, genNotFloat),
6889         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
6890
6891 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
6892
6893         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6894         1. Interrupt would not compile properly. Ensure PCLATH register is saved
6895            during interrupts. Ensure WSAVE is located at a shared bank address.
6896         2. Fixed page selection in some places
6897         3. Fixed BTFSS/C to where necessary use registers directly and not simply
6898            the registers name strings.
6899         4. Fixed "signed / unsigned compare" compiler warnings.
6900         5. The PIC port manages its own allocation of the general purpose
6901            registers, but makes no attempt to reuse them. As a result when
6902            compiling it soon runs out of general purpose registers. Some
6903            additional code was added to the files pcode.c and device.c to walk
6904            through the function call tree and rename the registers so that they
6905            get reused.
6906
6907         * src/pic/device.c
6908         * src/pic/gen.c
6909         * src/pic/glue.c
6910         * src/pic/pcode.c
6911         * src/pic/pcode.h
6912         * src/pic/ralloc.c
6913         * src/pic/ralloc.h
6914         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
6915         genPlus() & genMinus() when the result is the same as left or right
6916
6917 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6918
6919         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
6920
6921 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6922
6923         Made bitfield a distinct type from bit so that bitfields
6924         convert as per ANSI C and bits retain their traditional
6925         boolean style behaviour. Implemented bitfield support in
6926         the z80 port.
6927
6928         * src/SDCCsymt.h,
6929         * src/SDCCsymt.c,
6930         * src/SDCCast.c,
6931         * src/cdbFile.c,
6932         * src/mcs51/gen.c,
6933         * src/ds390/gen.c: bit v bitfield split
6934         * src/z80/gen.c: New support for bitfields
6935         * support/regression/tests/bitfields.c: reenabled z80,
6936         added more tests
6937
6938 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6939
6940         Rules 246.x, 247.x relate to bitfields, the others speed up
6941         access to xdata mapped I/O devices.
6942
6943         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
6944
6945 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6946
6947         Cleaned up genPackBits and genUnpackBits and added two helper
6948         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
6949         for literal assignments in genPackBits (thanks to Frieder for
6950         reminding me).
6951
6952         * src/mcs51/gen.c
6953         * src/ds390/gen.c
6954
6955 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6956
6957         Fixed bug #748310 (pointer to function type mishandled when the
6958         function name is omitted). Also fixed a SIGSEGV when a function
6959         attribute (reentrant, etc) is used on a non-function or on a
6960         function but misplaced before the parameter list.
6961
6962         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
6963         bug #748310
6964         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
6965         * support/Util/SDCCerr.h,
6966         * support/Util/SDCCerr.c: Added func attr misuse error msg
6967
6968 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
6969
6970         Fixed bug #787649 by anonymous
6971         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
6972         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
6973
6974 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6975
6976         Fixed numerous bitfield problems.
6977
6978         * src/SDCC.y: More bitfield related error checking
6979         * src/SDCCsymt.h,
6980         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
6981         * support/Util/SDCCerr.h,
6982         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
6983         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
6984         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
6985         * support/regression/tests/bitfields.c: tests added
6986
6987 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6988
6989         Made the constant following the "interrupt" keyword optional. If
6990         omitted, the function will not automatically be given an entry
6991         in the interrupt vector table (similar to #pragma NOIV, but
6992         less syntacticly kludgy). The interrupt number is also now
6993         range checked. Also fixed a bug in the high order bit example
6994         in the manual.
6995
6996         * src/SDCC.y
6997         * src/SDCCmem.c
6998         * src/SDCCglue.c
6999         * src/SDCCsymt.h
7000         * support/Util/SDCCerr.c
7001         * support/Util/SDCCerr.h
7002         * doc/sdccman.lyx
7003
7004 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7005
7006         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
7007         * src/SDCCicode.c (operandOperation): rewritten some ops
7008         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
7009         * src/SDCCsymt.c (computeType): literals are handled the same way as any
7010         other type
7011         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
7012         be re-activated by defining REDUCE_LITERALS)
7013         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
7014         unsigned, but are signed by default
7015         * src/SDCCval.c (constVal): rearranged
7016         * src/SDCCval.c (valMod): preliminary fix
7017         * src/SDCCval.c (valCastLiteral): use TYPE_* types
7018         * support/regression/literalop.c: added, work in progress
7019
7020 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7021
7022         Generate warnings for useless declarations like "char data;"
7023         that don't do what new users expect.
7024
7025         * src/SDCC.y
7026         * support/Util/SDCCerr.h
7027         * support/Util/SDCCerr.c
7028
7029 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
7030
7031         * src/SDCCval.c (valMult): fix overflow detection of negative int
7032
7033 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7034
7035         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
7036
7037         Changes to support big endian targets:
7038
7039         * src/ports.h
7040         * src/SDCCglue.c
7041         * src/avr/main.c
7042         * src/ds390/main.c
7043         * src/izt/i186.c
7044         * src/mcs51/main.c
7045         * src/pic/main.c
7046         * src/pic16/main.c
7047         * src/xa51/main.c
7048         * src/z80/main.c
7049
7050 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
7051
7052         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
7053         * device/lib/time.c: fixed warning "integer overflow in expression"
7054
7055 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
7056
7057         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
7058         * src/SDCCval.c (constVal): changed default to signed; hex and octal
7059         constants are unsigned; added recognition of "u" flag for unsigned
7060         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
7061         * src/SDCCval.c (valDiv, valMod): fixed signdness
7062         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
7063         signedness of modulo, left and right shift
7064         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
7065         * support/Util/SDCCerr.h: added warning W_INT_OVL
7066         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
7067         * src/SDCCast.c (ast_print): improved output of constants
7068
7069 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7070
7071         Fixed some warnings when building with MSVC:
7072
7073         * as\mcs51\asdata.c
7074         * as\z80\asdata.c
7075         * as\mcs51\asm.h
7076         * as\z80\asm.h
7077         * link\z80\aslink.h
7078         * link\z80\lkdata.c
7079         * link\z80\lkeval.c
7080         * link\z80\lkgb.c
7081         * link\z80\lkihx.c
7082         * link\z80\lks19.c
7083         * link\z80\lksym.c
7084         * support\cpp2\cpplib.c
7085         * src\ds390\gen.c
7086         * src\mcs51\gen.c
7087
7088 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
7089
7090         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
7091
7092 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7093
7094         * support\librarian\clean.mk: Do not remove Makefile.
7095         * support\librarian\Makefile: added.
7096
7097 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7098
7099         Added librarian to MSVC build:
7100         * all.dsp
7101         * sdcc.dsw
7102         * support\librarian\librarian.dsp
7103
7104         'configure' not needed for librarian, removed:
7105         * support\librarian\configure
7106         * support\librarian\configure.in
7107         * support\librarian\config_in.h
7108         * support\librarian\Makefile.in
7109
7110         Hopefully these ones built the librarian and the rest of sdcc properly:
7111         * Makefile
7112         * Makefile.common.in
7113
7114         Messed up 'configure', so revert to previous version:
7115         * configure
7116         * configure.in
7117
7118 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
7119
7120         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
7121         there, while the mantissa of a double is "only" 53 bits wide.
7122
7123 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7124
7125         Adding sdcclib to the build.  MSVC project coming soon.
7126         Files added/changed:
7127
7128         * support\librarian\clean.mk
7129         * support\librarian\configure
7130         * support\librarian\configure.in
7131         * support\librarian\config_in.h
7132         * support\librarian\Makefile.bcc
7133         * support\librarian\Makefile.in
7134         * support\librarian\sdcclib.c
7135         * Makefile.bcc
7136         * Makefile
7137         * Makefile.common.in
7138         * configure
7139         * configure.in
7140
7141 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7142
7143         Linker now complaints if linked modules have conflicting options, for
7144         example, one compiled using --model-large and another one compiled with
7145         --model-small.  The following files were modified:
7146
7147         * as\mcs51\asdata.c
7148         * as\mcs51\aslink.h
7149         * as\mcs51\asm.h
7150         * as\mcs51\asmain.c
7151         * as\mcs51\asout.c
7152         * as\mcs51\i51pst.c
7153         * as\mcs51\lkdata.c
7154         * as\mcs51\lklibr.c
7155         * as\mcs51\lkmain.c
7156         * as\z80\asdata.c
7157         * as\z80\asm.h
7158         * as\z80\asmain.c
7159         * as\z80\asout.c
7160         * as\z80\z80pst.c
7161         * link\z80\aslink.h
7162         * link\z80\lkdata.c
7163         * link\z80\lklibr.c
7164         * link\z80\lkmain.c
7165         * src\SDCCglue.c
7166
7167 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7168
7169         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
7170         as/mcs51/lklibr.c: Generate a warning when a library is not found.
7171
7172 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
7173
7174         * src/z80/mappings.i: fix _mul[us][int,long] entries
7175
7176 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7177
7178         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
7179
7180 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7181
7182         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
7183         * support/regression/tests/bitopcse.c: added
7184         fixed warning:
7185         * src/avr/gen.c:
7186         * src/pic/gen.c:
7187         * src/pic16/gen.c:
7188         * src/z80/gen.c:
7189         * src/xa51/gen.c:
7190
7191 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7192
7193         added support for new library format to z80, gbz80 linkers:
7194         *link/z80/aslink.h
7195         *link/z80/lklex.c
7196         *link/z80/lklib.c
7197         *link/z80/lklist.c
7198
7199 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7200
7201         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
7202         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
7203
7204 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
7205
7206         added DUMMY_READ_VOLATILE:
7207         * src/SDCC.y:
7208         * src/avr/gen.c:
7209         * src/xa51/gen.c:
7210         * src/z80/gen.c:
7211         * src/pic/gen.c:
7212         * src/pic16/gen.c:
7213         * src/mcs51/gen.c:
7214         * src/ds390/gen.c:
7215         * src/SDCCcse.c (algebraicOpts): many improvements
7216         * src/SDCCcse.h: removed algebraicOpts()
7217         * src/SDCCicode.c (picDummyRead): added
7218
7219 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7220
7221         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
7222         "Insufficient space in data memory".
7223
7224 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7225
7226         * src/mcs51/gen.c: fixed bug #771358
7227         * src/z80/gen.c: fixed bug #759087
7228
7229 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
7230
7231         * src/pic16/glue.c: minor cleanup by Vangelis
7232
7233 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7234
7235         * device/include/regc515c.h: fixed #758477
7236         * device/lib/_gptrget.c: saving some cycles in generic pointer get
7237         * device/lib/_gptrput.c: saved a few bytes
7238         * my tab spacing is 8, yours too?)
7239         * device/lib/_ser.c: process RX bytes earlier than TX bytes
7240         * device/lib/serial.c: process RX bytes earlier than TX bytes
7241         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
7242
7243 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7244
7245         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
7246
7247 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7248
7249     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
7250
7251 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
7252
7253         * device/lib/Makefile.in: bad fix, reverted to 1.43
7254
7255 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
7256
7257         * device/lib/Makefile.in: added missing z80 object files
7258
7259 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
7260
7261         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
7262         pic16 progress by Vangelis:
7263         * src/SDCCglobl.h:
7264         * src/SDCCmain.c:
7265         * src/pic/Makefile:
7266         * src/pic:
7267         * pic/Makefile:
7268         * pic16/device.c:
7269         * pic16/device.h:
7270         * pic16/gen.c:
7271         * pic16/gen.h:
7272         * pic16/genarith.c:
7273         * pic16/glue.c:
7274         * pic16/main.c:
7275         * pic16/pcode.c:
7276         * pic16/pcode.h:
7277         * pic16/pcodepeep.c:
7278         * pic16/peeph.def:
7279
7280 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7281
7282     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
7283
7284 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7285
7286     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
7287     added gbz80 build to MSVC project.
7288     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
7289     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
7290     from 8051 stuff and setup so it links using a .lnk file.
7291
7292 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7293
7294     * support/librarian/sdcclib.c: sdcc librarian.
7295     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
7296     with sdcclib.
7297
7298 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7299
7300     * as/mcs51/lkmain.c: properly handle extensions in function afile.
7301
7302 2003-07-02  Borut Razem <borut.razem AT siol.net>
7303
7304         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
7305         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
7306         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
7307         src/xa51/main.c, src/z80/main.c:
7308         virtualization of glue() function: each port has it's own glue function,
7309         which is accessed by do_glue function pointer in PORT.general structure
7310
7311 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
7312
7313         * DS800C400 fun, improved ROM interface and tinibios.
7314
7315 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
7316
7317         * More support for DS80C400. Now includes beginning of interface to ROM.
7318
7319 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
7320
7321         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
7322
7323 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7324
7325         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
7326
7327 2003-06-19  Borut Razem <borut.razem AT siol.net>
7328
7329         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
7330
7331 2003-06-19  Borut Razem <borut.razem AT siol.net>
7332
7333         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
7334         fixed Z80 port - crt0.o: cannot open.
7335
7336 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
7337
7338         * support/Util/MySystem.c (merge_command): revert bad fix
7339
7340 2003-06-18  Borut Razem <borut.razem AT siol.net>
7341
7342         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
7343
7344 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7345
7346         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7347         option --use-stdout sends errors to stdout instead of stderr.
7348
7349 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
7350
7351         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
7352
7353 2003-06-15  Borut Razem <borut.razem AT siol.net>
7354
7355         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
7356         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
7357         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
7358         fixed width array of pointers replaced with sets;
7359         multiple include and lib paths ared transferred to preprocessor and linker
7360         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
7361         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
7362         fixed width array of pointers
7363         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
7364         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
7365         fixupPath(), getPathDifference()
7366         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
7367         fixed width array of pointers
7368
7369 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
7370
7371         * src/pic16/ralloc.c: fix warnings
7372         * src/pic16/pcode.c: fix warning
7373
7374 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
7375
7376          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
7377         know all the details, but essentially this set of changes enable
7378         the pic16 port to generate movff instructions and generate assembler
7379         directives,
7380         * src/SDCCmain.c:
7381         * src/pic16/gen.c:
7382         * src/pic16/glue.c:
7383         * src/pic16/pcode.c:
7384         * src/pic16/device.c:
7385         * src/pic16/main.c:
7386         * src/pic16/pcode.h:
7387         * src/pic16/pcoderegs.c:
7388         * src/pic16/ralloc.c:
7389         * src/pic16/ralloc.h:
7390
7391 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7392
7393         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7394         added option --vc, so sdcc errors and warnings are compatible with
7395         Microsoft Visual Studio.
7396
7397 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7398
7399         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
7400           device/lib/libfloat.lib: added atof function.
7401
7402 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
7403
7404         * doc/sdccman.lyx: updated to Lyx 1.3
7405         * doc/cdbfileformat.lyx: updated to Lyx 1.3
7406         * doc/test_suite_spec.lyx: updated to Lyx 1.3
7407         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
7408
7409 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
7410
7411         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
7412
7413 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7414
7415         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
7416           additions to the "related tools/documentation" section
7417
7418 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
7419
7420         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
7421
7422 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
7423
7424         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
7425         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
7426
7427 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
7428
7429         * doc/sdccman.lyx: fix double dash and other minor things
7430         * doc/Makefile: fix double dash
7431
7432 2003-05-28  Karl Bongers(patches from Martin Helmling)
7433         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
7434           condition and ignore commands.
7435
7436 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7437
7438         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
7439           is in parts still quite out of date, I did changes as far as I felt makes sense
7440           for a non-native english speaker.
7441           Please feel free to add to the manual or to correct my changes.
7442         * doc/Makefile: undid touching the date of intermediate tex files.
7443
7444 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7445
7446         * doc/sdccman.lyx: Manual has an index now
7447
7448 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
7449
7450         Finalize muluint/mulsint and mululong/mulslong merging:
7451         * device/lib/_mulint.c
7452         * device/lib/_mullong.c
7453         * device/lib/gbz80/mul.s
7454         * device/lib/gbz80/stubs.s
7455         * device/lib/z80/mul.s
7456         * device/lib/z80/stubs.s
7457         * src/SDCCsymt.c (initCSupport)
7458
7459 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7460
7461         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
7462         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
7463           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
7464           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
7465           instead of /Zm500.
7466
7467 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7468
7469         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
7470           the regression tests I'm not brave enough to enable 245.b, 245.c
7471         * doc/sdccman.lyx: added latex preamble for hyperref package.
7472           Using pdflatex this will give you a hyperlinked pdf file with
7473           bookmarks. (prepend '%' before /usepackage if this breaks something)
7474
7475 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7476
7477          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
7478
7479 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
7480
7481         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
7482
7483 2003-05-21    <johan AT balder>
7484
7485         * src/SDCCglue.c (printIval): fixed bug #739934
7486
7487 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7488
7489         Applied patch from bug 737905 (renamed yylineo to mylineno):
7490         * src/altlex.c
7491         * src/SDCCast.c
7492         * src/SDCglobl.h
7493         * src/SDCC.lex
7494         * src/SDCCsymt.c
7495         * src/SDCCval.c
7496         * src/pic16/pcode.c: Cleaned warnings
7497         * src/pic16/pcodeflow.c: Cleaned warnings
7498         * src/pic16/pcoderegs.c: Cleaned warnings
7499
7500 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
7501
7502         * src/pic16/pcode.c: Cleaned warnings
7503         * src/pic16/pcodepeep.c: Cleaned warnings
7504         * src/pic16/ralloc.c: Cleaned warnings
7505
7506 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7507
7508         * doc/sdccman.lyx: fixed bug 739745
7509         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
7510
7511 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
7512
7513         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
7514         it can be defined with CFLAGS when running configure
7515         * src/SDCCmain.c: fixed compiling + linking with object files
7516
7517 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
7518
7519         * configure.in: configure for pic16 port,
7520             added --disable-pic16-port
7521         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
7522         * src/SDCCmain.c: linkOptions is changed to set *,
7523             added if/endif conditional macros to remove options help
7524             messages from optionsTable when a port is not configured, added
7525             support for the PIc16 port in the ports table, when executing
7526             the compiler with no port specified on command line, a default
7527             port is selected with the new macro DEFAULT_PORT which is
7528             defined in port.h, in setDefaultOptions() linkOptions is removed
7529             from initialization assignment, since now it is a set,
7530             parseCmdLine uses setParseWithComma for linkOptions, in
7531             linkEdit() linkOptions are accessed with new function indexSet()
7532             which returns the i'th item of a set variable. See SDCCset.c, in
7533             linkEdit() when calling buildCmdLine(), added linkOptions as
7534             last argument. Now users can pass arguments to gplink via the
7535             -Wl option, main() uses pic16glue() to glue up pic16 programs
7536         * src/SDCCpeeph.c: various changes to support pic16
7537         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
7538             return the i'th item of the set
7539         * src/SDCCset.h: added function prototype for indexSet()
7540         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
7541         * src/clean.mk: added pic16 in CLEANALLPORTS variable
7542         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
7543             added macro DEFAULT_PORT
7544         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
7545         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
7546             generated
7547         * src/pic16/glue.c: commented out some error producing lines
7548         * src/pic16/main.c: __config directives are commented out to stop
7549             gpasm complaining and test the linkage with gplink, _linkCmd and
7550             _asmCmd changed to be more gplink and gpasm friendly
7551         * src/pic16/peeph.def: peep rule 3 is commented out, since it
7552             produced an error when parsed, peep rule 12 is added to utilize
7553             movff, but it is commented out since the pCode does not support
7554             yet a command with 2 address arguments
7555
7556 2003-05-18    <johan AT balder>
7557
7558         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7559         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7560 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
7561
7562         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
7563   Added feature to script commands from file.
7564
7565 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
7566
7567         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
7568         * src/SDCCutil.c: include ctype.h for win32
7569
7570 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
7571
7572         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
7573
7574 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
7575
7576         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
7577   Fixed so you can set breakpoints prior to run, run does not stop
7578   on entry now.  Add tbreak.  Other enhancements and fixes for use
7579   with ddd.
7580
7581 2003-05-12  Borut Razem <borut.razem AT siol.net>
7582
7583         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
7584
7585 2003-05-11  Borut Razem <borut.razem AT siol.net>
7586
7587         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
7588         the path of bin directory, so that PATH is the only env. variable, which has to be set
7589         in case of standard installation.
7590         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
7591         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
7592         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
7593
7594 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7595
7596         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
7597         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
7598         temp files are in the port dir; clean the gen/test directory when
7599         generating new test.c
7600         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
7601         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
7602         * support/regression/tests/zeropad.c: added
7603
7604 2003-05-09    <johan AT balder>
7605
7606         * src/SDCCglue.c: fixed bug #597940
7607
7608 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
7609
7610         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7611   cache sfr, optimize next,step, fix off by one sourceline,
7612   support ddd list function.
7613         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
7614
7615 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7616
7617         * support/regression/HTMLgen.py: added compare_s2f()
7618         * support/regression/Makefile: redo 1.27
7619         * support/regression/generate-cases.py: redo 1.5
7620
7621 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
7622
7623         * support/regression/tests/float.c: workaround 33 bit hex constant
7624         * support/regression/tests/simplefloat.c: fix division for host
7625
7626 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
7627
7628         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
7629         that tame's the PIC's over-aggressive optimizer.
7630
7631 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7632
7633          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
7634          support for MSVC.
7635
7636 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
7637
7638         Initial support for DS80C400. "Hello world" runs on TINIm400
7639         (with polled I/O).
7640
7641 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
7642
7643          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7644          * Some notes on ddd usage added in debugger/README
7645          Martin Helmling adding more features and fixes for ddd GUI debugger.
7646          Code added for nexti, stepi, up, down, and other adjustments.
7647
7648 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
7649
7650         * src/pic/pCodepeep.c non-wildcard asmops are now handled
7651         * src/pic/peeph.def Added two rules to optimize carry manipulation
7652         * src/pic/* removed debug printfs
7653
7654 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
7655
7656         * debugger/mcs51/cmd.c: added header newalloc.h
7657
7658 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
7659
7660         * as/Makefile: new EXEEXT
7661         * as/z80/Makefile: remove trailing slash of BUILDIR
7662         * as/z80/clean.mk: new EXEEXT
7663         * Makefile.common.in: add to CFLAGS (and others), don't replace it
7664         * support/cpp2/Makefile.in: new EXEEXT
7665         * src/pic/glue.c (pic14emitRegularMap): fixed warning
7666
7667 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
7668
7669         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
7670         EXEEXT was introduced to fix all related problems with targets
7671         "clean", "install" and "uninstall"; a couple of further flaws
7672         especially with "clean" have been fixed too
7673         * as/mcs51/Makefile.in
7674         * as/mcs51/clean.mk
7675         * as/z80/Makefile
7676         * Makefile
7677         * clean.mk
7678         * debugger/mcs51/Makefile.in
7679         * debugger/mcs51/clean.mk
7680         * link/z80/Makefile
7681         * link/z80/Makefile.in
7682         * link/z80/clean.mk
7683         * link/Makefile
7684         * packihx/Makefile.in
7685         * packihx/clean.mk
7686         * sim/ucsim/Makefile
7687         * sim/ucsim/clean.mk
7688         * sim/ucsim/avr.src/Makefile.in
7689         * sim/ucsim/avr.src/clean.mk
7690         * sim/ucsim/s51.src/Makefile.in
7691         * sim/ucsim/s51.src/clean.mk
7692         * sim/ucsim/xa.src/Makefile.in
7693         * sim/ucsim/xa.src/clean.mk
7694         * sim/ucsim/z80.src/Makefile.in
7695         * sim/ucsim/z80.src/clean.mk
7696         * sim/ucsim/main_in.mk
7697         * sim/ucsim/packages_in.mk
7698         * sim/ucsim/gui.src/Makefile.in
7699         * sim/ucsim/gui.src/serio.src/Makefile.in
7700         * sim/ucsim/gui.src/serio.src/clean.mk
7701         * src/Makefile.in
7702         * src/clean.mk
7703         * support/cpp2/Makefile.in
7704         * support/cpp2/clean.mk
7705         * support/makebin/Makefile
7706         * support/makebin/clean.mk
7707         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
7708         * doc/sdccman.lyx: --program-suffix no longer needed
7709
7710 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
7711
7712          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
7713          Martin Helmling added support for ddd GUI debugger.
7714          Code added to display assembly, set variables, and other commands
7715          to interface to ddd.
7716
7717 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
7718
7719         * as/Makefile: fix target clean
7720         * as/clean.mk: fix target clean
7721         * as/z80/clean.mk: fix target clean
7722
7723 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
7724
7725         * Makefile.common.in: added  AT EXEEXT AT
7726         * configure.in: removed all mingw32 stuff
7727         * configure: rebuilt from configure.in
7728         * doc/sdccman.lyx: updated section "installation"
7729         * support/scripts/sdcc_mingw32: adapted to configure
7730         * support/scripts/sdcc_cygwin_mingw32: added
7731
7732 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
7733
7734         * src/pic Added object file support for the PIC port
7735         * src/pic Applied patch from Craig Franklin (this started the object file support)
7736         * src/regression Updated the PIC regression tests for object files
7737
7738 2003-04-20  Borut Razem <borut.razem AT siol.net>
7739
7740         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
7741           lklex.c: In function `getfid':
7742           lklex.c:203: warning: array subscript has type `char'
7743         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
7744           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
7745         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
7746           stack handling macros
7747
7748 2003-04-19  Borut Razem <borut.razem AT siol.net>
7749
7750         * "handling space characters in file path" task:
7751         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
7752         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
7753         * support/Util/MySystem.h: make it self-sufficient
7754         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
7755           src/z80/main.c, sdcc/as/mcs51/lklex.c:
7756           handling space characters in file path
7757         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
7758           (it will be used by assemblers, which have their own includes, e.g. gpasm)
7759         * support/Util/MySystem.c: handling space characters in executable's path
7760
7761 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
7762
7763         * as/z80/Makefile: fix permanent rebuild of z80
7764         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
7765         * support/regression/tests/bitfields.c: added Johan's bitfields.c
7766
7767 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
7768
7769         * src/SDCCopt.c: add special case optimization to replace modulo by
7770           a power of two with a bitwise AND.
7771
7772 2003-04-18    <johan AT balder>
7773
7774         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
7775
7776 2003-04-17    <johan AT balder>
7777
7778         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
7779         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
7780
7781 2003-04-13  Borut Razem <borut.razem AT siol.net>
7782
7783         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
7784         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
7785           fixed mingw problem in adl_NORMALIZE_PATH
7786
7787 2003-04-12  Borut Razem <borut.razem AT siol.net>
7788
7789         * fixed "#pragma SAVE/RESTORE can not be nested":
7790         * src/SDCC.lex: reworked pragma handling functions
7791         * sdcc/src/SDCCglobl.h: reworked stack handling macros
7792         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
7793
7794 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7795
7796         * src/SDCCutil.c (pathEquivalent): defined but not used
7797         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
7798         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
7799         * configure: rebuilt from configure.in
7800         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7801         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7802         * device/include/Makefile.in: replace sdcc_datadir
7803         * device/lib/Makefile.in: replace sdcc_datadir
7804         * Makefile.common.in: add LDFLAGS from configure
7805         * packihx/Makefile.in: use LDFLAGS
7806         * src/Makefile.in: use LDFLAGS
7807         * support/cpp2/Makefile.in: add LDFLAGS from configure
7808         * support/makebin/Makefile: use LDFLAGS
7809         * .version: bumped version number to 2.3.5
7810
7811 2003-04-12  Borut Razem <borut.razem AT siol.net>
7812
7813         * completed "different paths" task:
7814         * src/SDCCmacro.c: fixed bug in handling quotes
7815         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
7816         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
7817
7818 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7819
7820         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
7821
7822 2003-04-11 kevin Vigor <kevin AT vigor.nu>
7823
7824         * ds390/gen.c ds390/peeph.def: fix bug 706781
7825
7826 2003-04-11  Borut Razem <borut.razem AT siol.net>
7827
7828         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
7829
7830 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
7831
7832         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
7833         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
7834          set - this bit used to not be set...).
7835         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
7836           bad code in PIC Port
7837         * src/regression/and2.c added to test bug 609268
7838         * src/regression/Makefile added and2.c to regression test
7839
7840
7841 2003-04-08    <johan AT CP255758-A>
7842
7843         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
7844         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
7845         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
7846
7847 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
7848
7849         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
7850         fix bug #487815
7851         * support/cpp2/Makefile.in: fix bug #487815
7852         * configure: rebuilt from configure.in
7853         * Makefile.common.in: docdir changed, new path suffixes
7854         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
7855         * sdcc_vc_in.h: reflect changes from sdccconf.h
7856         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
7857         * src/SDCCutil.h: remove BINDIR hack
7858         * doc/sdccman.lyx: update new path hierarchy
7859
7860 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7861
7862         * src/SDCCpeeph.c: added okToRemoveSLOC test
7863
7864 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7865
7866         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
7867
7868 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7869
7870         * src/SDCCpeeph.c: added labelIsReturnOnly test
7871         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
7872
7873 2003-04-05    <johan AT balder>
7874
7875         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
7876         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
7877         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
7878         * src/SDCCast.c: fixed a warning
7879         * src/SDCCast.h: fixed a warning
7880         * src/SDCCicode.c (operandFromAst): fixed a warning
7881
7882 2003-04-04    <johan AT balder>
7883
7884         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
7885         * src/SDCCast.c (decorateType): fixed bug #715076
7886         * src/SDCC.y: fixed bug #702907
7887
7888 2003-04-03    <johan AT balder>
7889
7890         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
7891         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
7892         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
7893         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
7894         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
7895
7896 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
7897
7898         * _decdptr.c: fix return values
7899         * _gptrget.c: fix return values
7900         * _gptrgetc.c: fix return values
7901         * _gptrput.c: fix return values
7902         * _mulint.c: fix return values
7903         * as/z80/Makefile: fix 'make -j' problem
7904
7905 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
7906
7907         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
7908         * configure.in: big cleanup, updated to autoconf 2.5x
7909         * configure: rebuilt from configure.in
7910         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
7911         * sdcc_vc_in.h: reflect changes from sdccconf.h
7912         * doc/Makefile: fixed a flaw in "make install"
7913
7914 2003-04-02    <johan AT balder>
7915
7916         * src/ds390/gen.c (genCmp): no comments
7917         * src/mcs51/gen.c (genCmp): no comments
7918         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
7919         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
7920
7921 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
7922
7923         * support/regression/generate-cases.py: place generated file in given sub directory
7924         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
7925         * support/regression/Makefile: improvements for 'make -j';
7926         side effect: it's simpler and faster now
7927
7928 2003-03-31  Borut Razem <borut.razem AT siol.net>
7929
7930         * src/z80/main.c: link-{port} and as-{port} defined without path
7931         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
7932
7933 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
7934
7935         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
7936
7937 2003-03-30  Borut Razem <borut.razem AT siol.net>
7938
7939         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
7940           changed type of list parameter to set
7941         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
7942         * src/port.h: changed type of do_assemble() parameter to set
7943         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
7944           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
7945           definition of "cppoutfilename" macro with NULL value in preProcess()
7946         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
7947         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
7948         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
7949           replaced with set *binPathSet
7950         * shash_add() deallocates the item, if allready exsists, before adding the new one
7951         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
7952
7953 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
7954
7955         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
7956           a nested for loop bug in the PIC port
7957         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
7958           for loops
7959
7960 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
7961
7962         * support/Util/dbuf.h: remove C++ stuff to make it portable
7963
7964 2003-03-28  Borut Razem <borut.razem AT siol.net>
7965
7966         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
7967           literal strings in stringLiteral()
7968         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
7969         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
7970           to the project
7971
7972 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
7973
7974         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
7975
7976 2003-03-26    <johan AT balder>
7977
7978         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
7979         * src/ds390/gen.c (saveRegisters): catched symbol abuse
7980         * src/SDCCast.c (decorateType): fixed " -v < 3"
7981
7982 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
7983
7984         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
7985         Added Lenny Story's debug infrastructure changes:
7986         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
7987         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
7988         * src/cdbFile.c: added
7989         * src/SDCCdebug.c: added
7990         * src/SDCCdebug.h: added
7991         * src/SDCCast.c (createFunction)
7992         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
7993         * src/SDCCmain.c (parseCmdLine, main)
7994         * src/SDCCmem.c (redoStackOffsets)
7995         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
7996         * src/SDCCsymt.h
7997         * src/common.h
7998         * src/avr/gen.c (genAVRCode)
7999         * src/ds390/gen.c (gen390Code)
8000         * src/mcs51/gen.c (gen51Code)
8001         * src/pic/gen.c (genpic14Code)
8002         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
8003         * src/xa51/gen.c (genXA51Code)
8004         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
8005
8006 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8007
8008         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
8009         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
8010
8011 2003-03-22    <johan AT balder>
8012
8013         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
8014
8015 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
8016
8017         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
8018         * doc/cdbfileformat.lyx: added, written by Lenny Story
8019         * doc/Makefile: added cdbfileformat.lyx
8020         * doc/clean.mk: added cdbfileformat.lyx
8021
8022 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
8023
8024         * src/mcs51/peeph.def: fix bug #705773
8025
8026 2003-03-20    <johan AT balder>
8027
8028         An sfr/sbit can have an "at #" AND an initializer
8029         * src/SDCCsymt.c (checkSClass):
8030         * src/SDCCmem.c (allocGlobal):
8031         * src/SDCCmem.c (allocLocal):
8032         * src/SDCCast.c (createBlock):
8033
8034 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
8035
8036         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
8037
8038 2003-03-16    <johan AT balder>
8039
8040         Undid the hackup of const and volatile, the problem is much bigger
8041         * src/SDCC.y:1.65
8042         * src/SDCCast.c:1.171
8043         * src/SDCCglue.c:1.138
8044         * src/SDCCicode.c:1.146
8045         * src/SDCCsymt.c:1.150
8046         * src/SDCCval.c:1.65
8047
8048 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
8049
8050         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
8051         * src/ds390/gen.c (genAddrOf): fixed bug #704087
8052
8053 2003-03-13    <johan AT balder>
8054
8055         Hackup const and volatile modifiers in type chains a bit:
8056         * src/SDCC.y:1.63
8057         * src/SDCCast.c:1.169
8058         * src/SDCCglue.c:1.136
8059         * src/SDCCicode.c:1.143
8060         * src/SDCCsymt.c1.146
8061         * src/SDCCsymt.h1.59
8062         * src/SDCCval.c:1.63
8063
8064 2003-03-12    <johan AT balder>
8065
8066         * src/SDCCBBlock.h: more LRH debugging junk
8067         * src/SDCCcflow.h: more LRH debugging junk
8068         * src/SDCCloop.c: more LRH debugging junk
8069         * src/SDCC.y (struct_declaration): fixed bug #697590
8070         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
8071         * src/ds390/gen.c (aopForRemat): fixed bug #700031
8072         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
8073
8074 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8075         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
8076         test function names must now match exactly).
8077         * src/SDCCcse.c: added special case in findCheaperOp to allow
8078         extending a short integer. Makes less awful code for bug 700121 test case.
8079
8080 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8081
8082         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
8083         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
8084
8085 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8086
8087         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
8088         actually called (operandsNotEqual() was called for all
8089         operandsNotEqualX tests).
8090
8091 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8092
8093         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
8094         with shorter literals. Fixes bug 700121.
8095
8096 2003-03-11    <johan AT balder>
8097
8098         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
8099
8100 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
8101
8102         * src/SDCCloop.c (mergeRegions): an evil beast is dead
8103         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
8104
8105 2003-03-10  Borut Razem <borut.razem AT siol.net>
8106
8107         * src/SDCCmain.c: pipe preprocessor's output
8108         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8109         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8110         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8111         which closes all pipes in pipeSet set
8112         * src/SDCCset.c: free deleted item in function deleteSetItem()
8113         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8114         moved from z80 to src subproject
8115         * .version: increased version number to 2.3.4
8116
8117 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
8118
8119         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
8120         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
8121         * support/regression/ports/xa51/spec.mk: fix typo
8122
8123 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
8124
8125         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
8126
8127 2003-03-09  Borut Razem <borut.razem AT siol.net>
8128
8129         * src/SDCCmain.c: pipe preprocessor's output
8130         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8131         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8132         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8133         which closes all pipes in pipeSet set
8134         * src/SDCCset.c: free deleted item in function deleteSetItem()
8135         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8136         moved from z80 to src subproject
8137
8138 2003-03-09  Borut Razem <borut.razem AT siol.net>
8139
8140         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
8141         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
8142         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
8143         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
8144         * src/SDCCglobl.h: unification of WIN32 native definitions
8145
8146 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8147
8148         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
8149
8150 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8151
8152         * src/configure.in:   check for endianess (even while cross-compiling)
8153         * src/configure:      check for endianess (even while cross-compiling)
8154         * src/configure_in.h: check for endianess (even while cross-compiling)
8155         * src/avr/gen.c:        remove old endianess stuff
8156         * src/mcs51/gen.c:      remove old endianess stuff
8157         * src/ds390/gen.c:      remove old endianess stuff
8158         * src/pic/gen.c:        remove old endianess stuff
8159         * src/pic/genarith.c:   remove old endianess stuff
8160         * src/pic/glue.c:       fix endianess check
8161         * src/pic16/gen.c:      remove old endianess stuff
8162         * src/pic16/genarith.c: remove old endianess stuff
8163         * src/pic16/glue.c:     fix endianess check
8164         * src/xa51/gen.c:       remove old endianess stuff
8165         * src/z80/gen.c:        fix endianess check
8166         * src/SDCCglue.c:       fix endianess check
8167         * src/ds390/peeph.def: fix bug 700036
8168
8169 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8170
8171         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
8172         * src/configure: find appropriate data-types on host for SDCC's int and long
8173         * src/configure.in: find appropriate data-types on host for SDCC's int and long
8174         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
8175         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
8176
8177 2003-03-07    <johan AT balder>
8178
8179         Just a big NOOP:
8180                 some minor cleanups before the big shot
8181                 OP_DEFS and OP_USES now use Kevin's protection
8182                 new option --nolabelopt
8183
8184         * src/SDCCBBlock.c:
8185         * src/SDCCast.c,:
8186         * src/SDCCcflow.c:
8187         * src/SDCCcse.c:
8188         * src/SDCCicode.c:
8189         * src/SDCCicode.h:
8190         * src/SDCClabel.c:
8191         * src/SDCCloop.c:
8192         * src/SDCCmain.c:
8193         * src/ds390/ralloc.c:
8194         * src/mcs51/ralloc.c:
8195         * src/pic/ralloc.c:
8196         * src/xa51/ralloc.c:
8197         * src/z80/ralloc.c:
8198
8199 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
8200
8201         * src/pic/pcode.c (get_op): fix 64 bit warnings
8202         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
8203         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
8204         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
8205         * support/regression/tests/malloc.c: fix 64 bit warnings
8206
8207 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
8208
8209         * src/mcs51/gen.c (genMinus): fixed bug 696436
8210
8211 2003-03-02  Borut Razem <borut.razem AT siol.net>
8212
8213         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
8214
8215 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
8216
8217         * configure.in: test for mkstemp
8218         * sdccconf_in.h: add HAVE_MKSTEMP
8219
8220 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
8221
8222         * device/include/ctype.h: removed warning while using --stack-auto
8223         * device/include/malloc.h: removed warning while using --stack-auto
8224         * device/include/string.h: removed warning while using --stack-auto
8225
8226 2003-02-23  Borut Razem <borut.razem AT siol.net>
8227
8228         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
8229         because NDEBUG is defined (see man assert)
8230         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
8231
8232 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8233
8234         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
8235         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
8236
8237 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8238
8239         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
8240         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
8241
8242 2003-02-18    <johan AT balder>
8243
8244         * as/mcs51/asmain.c (asmbl): module can start with a digit
8245         * as/z80/asmain.c (asmbl): module can start with a digit
8246
8247 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
8248
8249         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
8250         * src/asm.c: fix pipe() for Mingw32
8251
8252 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
8253
8254         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
8255         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
8256         make -V work again; --c1mode reads now from stdin
8257         * doc/sdccman.lyx: added --c1mode
8258         * support/Util/SDCCerr.c: new messages for c1 mode
8259         * support/Util/SDCCerr.h: new messages for c1 mode
8260         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
8261
8262 2003-02-15    <johan AT balder>
8263
8264         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
8265
8266 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
8267
8268         * doc/sdccman.lyx: Environment variables, -o and other minor things
8269
8270 2003-02-14    <johan AT balder>
8271
8272         * src/xa51/main.c: before anyone really tries to use it :)
8273
8274         * Install doc's in share/sdcc/doc
8275         * removed some obsolete files
8276         * Do a proper make distclean and uninstall
8277         M Makefile.common.in
8278         R sdccbuild.sh
8279         M as/Makefile
8280         M device/include/Makefile.in
8281         M device/lib/Makefile.in
8282         M doc/sdccman.lyx
8283         M link/Makefile
8284         M sim/ucsim/doc/Makefile.in
8285         M src/clean.mk
8286         R src/avr/peeph.rul
8287         R src/xa51/peeph.rul
8288         M support/cpp2/Makefile.in
8289         M support/makebin/Makefile
8290
8291
8292 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
8293
8294         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
8295
8296 2003-02-10  Borut Razem <borut.razem AT siol.net>
8297
8298         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
8299         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
8300         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
8301         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
8302         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
8303         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
8304         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
8305         src/z80/Makefile.bcc: Borland Makefile cleanup
8306         * as/z80/Makefile.bcc: Added Borland Makefile
8307         * support/cpp2/borland.h: Removed
8308
8309 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
8310
8311         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
8312         * src/SDCC.lex: new pragma NOIV
8313         * src/SDCCglobl.h: new pragma NOIV
8314         * src/SDCCmem.c: new pragma NOIV
8315
8316 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8317
8318         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
8319
8320 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8321
8322         * src/SDCCmain.c: signal handling is switched off by --debug
8323         * doc/Makefile: small fix for install; use clean.mk again
8324         * doc/clean.mk: clean *.pdf and *.html too
8325
8326 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
8327
8328         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
8329         * device/lib/printfl.c: fix a ds390 bug by making it portable
8330         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
8331         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
8332         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
8333         * debugger/mcs51/cmd.c: converted multi-line string literals
8334         * sim/ucsim/globals.cc: converted multi-line string literals
8335         * src/SDCCmain.c: introduced signal handler to remove temp files
8336         * doc/Makefile: small tweaks, implement clean
8337         * doc: removed generated files
8338
8339 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8340
8341         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
8342         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
8343         Address Record is not correctly generated for DS390."
8344
8345 2003-02-02  Borut Razem <borut.razem AT siol.net>
8346
8347         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
8348         * as/mcs51/asm.h: fixed compilation with Borland C
8349         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
8350         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
8351         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
8352         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
8353         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
8354         src/z80/Makefile.bcc: delete $(LIB) only if exist
8355         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
8356
8357 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
8358
8359         * device/include/malloc.h: introduced NULL
8360         * device/include/string.h: introduced NULL
8361         * device/include/stdlib.h: introduced NULL
8362         * device/lib/_memcpy.c: removed NULL
8363         * device/lib/_strcat.c: removed NULL
8364         * device/lib/_strchr.c: removed NULL
8365         * device/lib/_strcmp.c: removed NULL
8366         * device/lib/_strcpy.c: removed NULL
8367         * device/lib/_strcspn.c: removed NULL
8368         * device/lib/_strlen.c: removed NULL
8369         * device/lib/_strncat.c: removed NULL
8370         * device/lib/_strncmp.c: removed NULL
8371         * device/lib/_strncpy.c: removed NULL
8372         * device/lib/_strpbrk.c: removed NULL
8373         * device/lib/_strrchr.c: removed NULL
8374         * device/lib/_strspn.c: removed NULL
8375         * device/lib/_strstr.c: removed NULL
8376         * device/lib/_strtok.c: removed NULL
8377         * device/lib/malloc.c: removed NULL, include own header
8378
8379 2003-02-02    <johan AT balder>
8380
8381         * 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
8382         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
8383         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
8384         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
8385         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
8386         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
8387
8388 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8389
8390         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
8391         area 'DATA'"
8392
8393 2003-02-01    <johan AT balder>
8394
8395         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
8396
8397 2003-01-31    <johan AT CP255758-A>
8398
8399         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
8400
8401 2003-01-30    <johan AT balder>
8402
8403         * src/SDCCBBlock.c: automatic bug detection
8404         * src/SDCCicode.c: automatic bug detection
8405
8406 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8407
8408         * src/SDCCglobl.h:   now --xram-size 0 works
8409         * src/SDCCmain.c:    now --xram-size 0 works
8410
8411 2003-01-29    <johan AT balder>
8412
8413         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
8414
8415 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8416
8417         * as/mcs51/aslink.h: Added options --xram-size and --code-size
8418         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
8419         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
8420         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
8421         * src/SDCCglobl.h:   Added options --xram-size and --code-size
8422         * src/SDCCmain.c:    Added options --xram-size and --code-size
8423
8424 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
8425
8426         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
8427         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
8428
8429 2003-01-27    <johan AT balder>
8430
8431         * src/SDCC.y: fixed bug #613764
8432
8433 2003-01-26    <johan AT balder>
8434
8435         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
8436         * src/SDCCsymt.h: fixed bug #673374
8437         * src/SDCCglue.c: fixed bug #661910
8438         * src/SDCCast.c: fixed bug #458099 and 673374
8439
8440 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
8441
8442         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
8443         * as/mcs51/strcmpi.h: added
8444         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
8445         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
8446         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
8447         * as/mcs51/assym.c: strcmpi -> as_strcmpi
8448         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
8449         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
8450         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
8451         * as/mcs51/Makefile.aslink: new module strcmpi
8452         * as/mcs51/Makefile.asx8051: new module strcmpi
8453         * as/mcs51/Makefil.bcc: new module strcmpi
8454         * as/mcs51/Makefile.in: new module strcmpi
8455         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
8456
8457 2003-01-26    <johan AT balder>
8458
8459         * src/SDCCglue.c: reverted back to 1.124
8460         * src/SDCCast.c: reverted back to 1.156
8461         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
8462
8463 2003-01-25    <johan AT balder>
8464
8465         * src/SDCCglue.c: A better fix for bug #661910
8466         * src/SDCCast.c: A better fix for bug #661910
8467         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
8468
8469 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8470
8471         * src/Makefile.in: remove spawn.o
8472         * src/SDCCmain.c: remove spawn.h
8473         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
8474         * src/spawn.c: removed
8475         * src/spawn.h: removed
8476         * support/regression/ports/ds390/spec.mk: link with -r
8477
8478 2003-01-24    <johan AT CP255758-A>
8479
8480         * src/ds390/gen.c (aopOp): fixed bug #667458
8481         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
8482         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
8483         (createIvalCharPtr): an ival doesn't always have a storage class anymore
8484
8485 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8486
8487         * src/mcs51/peeph.def: better assembler identation by Frieder
8488         * src/mcs51/gen.c: better assembler identation by Frieder
8489
8490 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
8491
8492         * as/z80/string.h: removed for gcc 3.2
8493         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
8494         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
8495
8496 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8497
8498         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
8499         * src/SDCCpeeph.c (replaceRule): fix bug #663503
8500         * support/regression/Makefile: separate temp files for ports
8501         * support/regression/generate-cases.py: separate temp files for ports
8502         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8503         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8504
8505 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8506
8507         * moved tinitalk to device/examples/ds390
8508
8509 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
8510
8511         * as/mcs51/lkmem.c: rflag is for DS390
8512         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
8513         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
8514                          (linkEdit): move mem- and map-files the same way as ihx-files
8515         * src/z80/main.c (_setDefaultOptions): removed --generic
8516         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
8517         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
8518         * src/pic/glue.c (picglue): --c1mode works again
8519         * src/pic16/glue.c (pic16glue): --c1mode works again
8520         * src/asm.c (printCLine): fix #660034
8521
8522 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
8523
8524         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
8525         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
8526         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
8527         * as/mcs51/lkmem (summary): better fix for sp problem
8528         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
8529         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
8530         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
8531                                               remove --stack-after-data
8532
8533 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
8534
8535         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
8536         * src/SDCCutil.c (join): ugly bug: missing '\0'
8537         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
8538
8539 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8540
8541         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
8542         * src/port.h: typo
8543         * src/pic/main.c (_asmCmd): gpasm supports -o
8544         * src/z80/main.c: more general macros
8545         * device/lib/Makefile.in: remove intermediate files
8546
8547 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8548
8549         * .version: Bumped version number to 2.3.3
8550         * src/SDCCBBlock.c: new option -o
8551         * src/SDCCglobl.h: new option -o
8552         * src/SDCCglue.c: new option -o
8553         * src/SDCCmain.c: new option -o
8554         * src/asm.c: new option -o
8555         * src/ds390/main.c: new option -o
8556         * src/pic/glue.c: new option -o
8557         * src/pic/pcode.c: new option -o
8558         * src/pic/ralloc.c: new option -o
8559         * src/pic16/glue.c: new option -o
8560         * src/pic16/pcode.c: new option -o
8561         * src/pic16/ralloc.c: new option -o
8562         * src/z80/main.c: new option -o
8563         * device/lib/Makefile.in: use -o
8564         * support/regression/ports/ds390/spec.mk: use -o
8565         * support/regression/ports/gbz80/spec.mk: use -o
8566         * support/regression/ports/mcs51/spec.mk: use -o
8567         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
8568         * support/regression/ports/z80/spec.mk: use -o
8569         * support/regression/ports/ucz80/spec.mk: use -o
8570         * support/regression/ports/xa51/spec.mk: use -o
8571         * support/regression/fwk/lib/timeout.c: fix usage string
8572
8573 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
8574         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
8575
8576 2003-01-07    <johan AT balder>
8577
8578         * src/SDCCast.c (decorateType): fixed bug #600035
8579
8580 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
8581         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
8582         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
8583         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
8584         * src/pic/pcode.c: outcommented unused variable to remove warnings
8585         * src/pic/ralloc.c: outcommented unused variable to remove warnings
8586
8587 2003-01-06    <karl AT turbobit.com>
8588         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
8589    regression tests.
8590
8591 2003-01-06    <johan AT balder>
8592
8593         * src/SDCCicode.c: fixed array add
8594
8595 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
8596         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
8597         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
8598
8599 2003-01-04    <johan AT balder>
8600
8601         * src/SDCCval.c (getNelements): fixed the initialized array of structures
8602
8603 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8604         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
8605
8606 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8607         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
8608         * support/regression/tests/bug-524697.c: fit mem usage into 8032
8609
8610 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8611         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
8612
8613 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
8614         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
8615
8616 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
8617         * src/mcs51/main.c: removed {bindir}{sep} from aslink
8618
8619 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8620
8621     * in \sdcc\as\mcs51\ changed these files in order to create an
8622     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
8623     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
8624     following files to include the previous two files: aslink.dsp,
8625     Makefile.aslink, Makefile.bcc, and Makefile.in.
8626
8627     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
8628     .adb instead of .cdb
8629
8630 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8631
8632         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
8633         value from option --iram-size.
8634
8635 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8636
8637         * \sdcc\as\mcs51\lklist.c: added boundary check before using
8638         dram[] array.
8639
8640 2002-09-18    <wiml AT hhhh.org>
8641
8642         * SDCClrange.h: exposed setFromRange() and setToRange()
8643         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
8644           packRegsForAccUse() (bug 542397)
8645         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
8646           multiple times and emitting the fetch operations more than once
8647           added aopGetUsesAcc() function to allow binary operators to
8648           fetch their operands in the correct order; made genMinus() emit
8649           compact code for X = LITERAL - Y
8650
8651 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8652         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
8653         sprintf() in line 1267.
8654
8655 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8656         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
8657         like ports.
8658
8659 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8660         Changes to aslink (All the changes are marked with 'JCF'):
8661
8662         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
8663         summary().
8664
8665         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
8666         area BSEG.  Also moves, if possible, the DATA area down into the internal
8667         ram so more space is available.
8668
8669         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
8670         sflag.
8671
8672         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
8673         not bytes.  Function summary() which creates a memory usage summary
8674         file with extension .mem.  Reports of overlaping stack and small stack
8675         size.  If the space for the stack is less than 16 bytes aslink trows a
8676         warning.
8677
8678         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
8679         the 8051.  Option 'y' for memory summary output file.
8680
8681         Changes to sdcc (All the changes are marked with 'JCF'):
8682
8683         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
8684
8685         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
8686         overlaying area for it (uses RegBankUsed[4]).
8687
8688         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
8689         bank zero as used by default.  By default aslink locates the stack
8690         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
8691         the creation of the .mem file.  Delegates the allocation of data area
8692         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
8693         the begining of the stack area to aslink.
8694
8695         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
8696         glue() in SDCCglue.c creates an area for it.
8697
8698 2002-09-03  Borut Razem <borut.razem AT siol.net>
8699         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
8700         sdcc/src/pic/glue.c:
8701         introduced atexit() handler for teporay files removal in case of
8702         errors, assertions, ...
8703
8704 2002-08-29  Borut Razem <borut.razem AT siol.net>
8705         * sdcc/support/cpp2/auto-host_vc_in.h:
8706         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
8707         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
8708         Maybe there is a similar problem with BORLANDC? It should be checked!
8709
8710         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
8711         corrected improper use of assert: the assignment to clr variable was done inside the assert.
8712         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
8713         was not executed, and the compiler (cl) launched a warning:
8714         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
8715
8716 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8717         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
8718
8719 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
8720         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
8721
8722         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8723           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
8724           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
8725           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8726           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
8727           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
8728           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
8729         - added Release configuration in VS projects
8730         - review of compiler an linker options
8731         - VC .exe files are generated in bin_vc directory, not to interfere
8732           with binaries generated from other projects (cygwin, mingw, bcc ...)
8733
8734         * sdcc/src/yacc.dsp: added
8735
8736         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
8737         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
8738         and insert the version number definitions from .version
8739
8740         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
8741
8742         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
8743         added - genarate auto-host.h using auto-host_vc_in.h as template
8744
8745         * sdcc/sdcc_vc.h,
8746         removed from CVS, generated automatically
8747
8748 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
8749         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
8750
8751 2002-08-11  Borut Razem <borut.razem AT siol.net>
8752         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
8753
8754 2002-08-10  Borut Razem <borut.razem AT siol.net>
8755         * src/SDCCmain.c (main):
8756         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
8757         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
8758         The consequence was that some temporary files were not removed.
8759
8760         * src/SDCCglue.c:
8761         unification of code in functions tempfilename() and tempfile():
8762         function tempnam() is defined in Visual Studio 6.0 and .NET
8763
8764         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
8765
8766         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8767           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
8768         - removed compiler command line option /WX: Treats all warnings as errors
8769         - update a list of source files, included into the project
8770
8771         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8772           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
8773         changed project type to Generic Project so that can be correcly converted to VS.NET project
8774
8775         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
8776
8777         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
8778
8779         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
8780
8781         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
8782         added return 0 statements after assert() to make compiler happy
8783
8784         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
8785         added newline in the def file to keep MSC compiler satisfied
8786
8787         * sdcc/src/z80/gen.c:
8788         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
8789           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
8790         - solved MSC error in function aopDump()
8791
8792         * sdcc_vc.h: define PREFIX as "\\sdcc"
8793
8794 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
8795         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
8796
8797 2002-06-22  Scott Dattalo <scott AT dattalo.com>
8798         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
8799         - Rewrote the register banking algorithm.
8800         - Added pCode live-range analysis to registers (for now, only non-used and
8801         singly-used registers optimized away)
8802
8803         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
8804
8805         * 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.
8806
8807 2002-05-10  Scott Dattalo <scott AT dattalo.com>
8808         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
8809
8810 2002-04-22  Michael Hope  <michaelh AT vroom>
8811
8812         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
8813
8814         * configure.in (DD_COPT): Added include support required for gbdk.
8815
8816         * .version: Bumped version number just to increase it.
8817
8818         * src/SDCCmain.c: Added -nostdinc to the default options.
8819
8820 2002-04-15  Michael Hope  <michaelh AT vroom>
8821
8822         * device/lib/z80/printf.c (sprintf): Added.
8823
8824         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
8825
8826         * src/z80/peeph.def: Added transpose redundent load rule.
8827
8828         * src/z80/main.c: Added force callee saves for jaune.
8829
8830         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
8831
8832         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
8833
8834 2002-03-28  Johan Knol  <johan AT balder>
8835
8836         * src/SDCCval.c: fixed bug #532436
8837
8838 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8839         * /src/port.h:
8840         Added "char *Processor" field to the port structure.
8841
8842         * /src/SDCCmain.c:
8843         Added -p option. Allows port dependent processor to be specified.
8844
8845         * all ports:
8846         Initialized the new field char *Processor field to NULL in all ports
8847
8848         * /src/pic/*:
8849         Compiler generated registers for interrupt context saving
8850         were not getting allocated.
8851
8852 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
8853
8854         * /src/SDCCast.c:
8855         Fixed left shift. Will promote the left side of a left shift
8856         if a) left shifting more than size of operand or b) when assigned
8857         to something size > size of left side
8858
8859 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8860         * src/pic/*
8861         tons of changes. Register allocation has been
8862         rewritten. Added customization for the various PICs. Flow
8863         analysis is restructured. ...
8864
8865         * src/pic/device.h:
8866         Added
8867
8868         * src/pic/device.c:
8869         Added. device.c is a PIC port hack to accomodate variations
8870         in PIC devices.
8871
8872 2002-03-13  Michael Hope  <michaelh AT vroom>
8873
8874         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
8875
8876 2002-03-04  johanknol  <johanknol AT manik>
8877
8878         * /src/SDCCval.c: fixed
8879
8880         const unsigned char arr[][2] = { { 0, 1 } };
8881         t18.c:1: error: Initializer element is not constant
8882
8883 2002-03-04  bela  <bela AT manik>
8884
8885         * /device/include/mcs51reg.h:
8886         ds89c420 register definition update
8887
8888 2002-03-03    <johan AT FRIJA>
8889
8890         * support/Util/SDCCerr.c: did something, but don't no why anymore
8891
8892         * support/regression/tests/bug-524691.c: made it a little less shy
8893
8894         * src/SDCCast.c (decorateType): fixed bug #524697
8895
8896         * src/SDCCast.c: made some lineno improvements
8897
8898         * src/SDCCval.c (getNelements): changed warning to error
8899
8900         * src/SDCCglue.c (printIvalArray): changed warning to error
8901
8902         * src/SDCCicode.c: fixed a warning for mingw
8903
8904         * src/SDCCast.c (decorateType): fixed the << promotion for ops
8905
8906         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
8907
8908 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
8909
8910         * src/ds390/peeph.def:
8911         Added some more peephole rules
8912
8913         * src/ds390/gen.c: Various fixes & enhancements
8914
8915         * src/SDCClrange.c, src/SDCClrange.h:
8916         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
8917
8918         * src/ds390/ralloc.c:
8919         various fixes & enhancements (ds390) specific
8920
8921         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
8922         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
8923         from rallocs.
8924
8925         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
8926
8927 2002-03-02    <johan AT FRIJA>
8928
8929         * src/SDCCast.c (decorateType): fixed bug #524708
8930
8931         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
8932
8933         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
8934
8935 2002-03-01  Michael Hope  <michaelh AT vroom>
8936
8937         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
8938
8939         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
8940
8941 2002-03-01    <johan AT FRIJA>
8942
8943         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
8944
8945         * src/SDCCast.c (decorateType): fixed bug #524209
8946
8947         * src/SDCCval.c (valNot): fixed bug #524195
8948
8949 2002-02-26    <johan AT balder>
8950
8951         * src/xa51/gen.c: fixed a warning
8952
8953         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
8954
8955         * src/SDCCast.c (decorateType): fixed bug #522534
8956
8957 2002-02-23    <johan AT balder>
8958
8959         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
8960
8961 2002-02-22    <johan AT balder>
8962
8963         * src/SDCCast.c: fixed bug #514865
8964
8965         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
8966
8967 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
8968
8969         * sdcc/src/SDCCloop.c:
8970         Previous fix was not good. basic blocks that have "break" or "return" are
8971         not really partof a loop , but live ranges used in these blocks should
8972         be live thru the entire loop, so set partOfLoop but don't add them to
8973         loop region
8974
8975 2002-02-21    <johan AT FRIJA>
8976
8977         * src/SDCCcse.c: fixed bug #514308
8978
8979 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
8980
8981         * src/SDCCloop.c:
8982         Fixed BUG #519583. If a conditional block ended in a return/break
8983         statement inside a loop, it was not being considered part of the loop.
8984
8985         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
8986
8987 2002-02-10  Karl Bongers <karl AT turbobit.com>
8988
8989         * debugger/*:
8990         Fixed up SDCDB debugger somewhat.  Updated debugger/README
8991         with lots of comments and notes.
8992
8993         * device/examples/test2.c:
8994         Fix bug, "red" variable not being initialized(compiler complained).
8995
8996         * device/examples/Makefile, examples/test3.c:
8997         Add Makefile in device/examples folder, compiles test3.c
8998         for use as a multiple module SDCDB test case.
8999
9000         * sim/ucsim/cmd.src/cmdset.cc:
9001         Took out debug printfs in ucsim "next" command.
9002
9003         * sim/ucsim/xa.src:
9004         Karl and Johan start ucsim XA support.  Most dissassembly working,
9005         about 75% emulation done(plenty of work remaining).
9006
9007         * sim/ucsim/z80.src:
9008         Add Z80 support to ucsim, add test-ucz80 regression test,
9009         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
9010         Notice z80 compiler fails on examples/test3.c/crc code.
9011
9012 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
9013
9014         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
9015         Added support for --parms-in-bank1
9016
9017         * src/ds390/peeph.def:
9018         added a few more peephole optimzations
9019
9020         * src/ds390/main.c:
9021         1) added __builtin_inp & __builtin_outp used to read in data of given length
9022            from a memory mapped port
9023         2) added __builtin_memcmp
9024         3) added __builtin_swapw swap bytes of a short
9025
9026         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
9027         1) handle multiple send & receives from register bank1
9028         2) ralloc can now allocate DPTR1 to some liveRanges
9029
9030         * src/SDCCsymt.c, src/SDCCsymt.h:
9031         changes to handle multiple sends & receives
9032
9033         * src/SDCCptropt.h:
9034         added some pointer arithmetic optimization
9035
9036         * src/SDCCptropt.c:
9037         added some pointer arithmetic optimizations but not stable yet so not
9038         called from anywhere (will get this working shortly)
9039
9040         * src/SDCCopt.c: fixed for multiple sends & receives
9041
9042         * src/SDCCmain.c:
9043         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
9044         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
9045            set preprocessor defines (depending on options)
9046
9047         * src/SDCCicode.c, src/SDCCicode.h:
9048         changes made to handle multiple sends & receives
9049
9050         * src/SDCCglobl.h:
9051         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
9052
9053         * src/SDCCcse.c, src/SDCCcse.h:
9054         added function findbackward def (to be used in upcoming optimization)
9055
9056         * src/SDCCcflow.c, src/SDCCcflow.h:
9057         added function returnAtEnd - to determine if a basic block terminates with
9058         a RETURN iCode
9059
9060         * src/SDCCast.c, src/SDCCast.h:
9061         added option parms-in-bank1
9062
9063         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
9064         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
9065         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
9066         adjusted for --parms-in-bank1 option
9067
9068         * device/include/string.h:
9069         donot redefine "reentrant" keyword
9070
9071         * device/include/ds80c390.h: Added some more SFRs
9072
9073 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
9074
9075         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
9076
9077 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
9078
9079         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
9080
9081 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
9082
9083         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
9084
9085 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
9086
9087         * Added --xram-movc option
9088
9089 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
9090
9091         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
9092
9093 2002-01-11  Johan Knol
9094
9095         * Added math lib of Jesus Calvino-Fraga
9096
9097 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
9098
9099         * src/SDCCmain.c (processFile): fix processing of ../../src.c
9100         * support/regression/Makefile: new target test-mcs51-stack-auto
9101         * support/regression/ports/mcs51-stack-auto/spec.mk: added
9102
9103 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9104
9105         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
9106
9107 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9108
9109         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
9110
9111 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
9112
9113         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
9114
9115         * src/SDCCglue.h: add definition for printIvalChar()
9116
9117 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9118
9119         * src/SDCCast.c: fix #498138 by Johan
9120
9121         * src/SDCCglue.c: fix #498138 by Johan
9122
9123 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9124
9125         * support/regression/Makefile: fix clean
9126
9127         * support/regression/ports/ds390/support.c: fix transmission of last character
9128
9129 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
9130
9131         * /sdcc/src/ds390/gen.c:
9132         a) improved computing address of stack variable
9133         b) took out some #if 0 code
9134         c) improved parmBytes adjustment
9135         d) improved genPlusIncr & genMinusIncr
9136         e) genCmp could generate bad code (when left assigned to DPTR)
9137         f) Fixed bug in hasInc
9138
9139         * /sdcc/src/ds390/ralloc.c:
9140         a) packRegsForSupport could mess up live information (Fixed)
9141         b) packRegsDPTRuse could be incorrect for left & right shift
9142
9143         * /sdcc/src/mcs51/ralloc.c:
9144         packRegsForSupport could mess up the live information (Fixed)
9145
9146         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
9147
9148         * /sdcc/src/SDCCast.c:
9149         can reverse a loop even if function call is present as long
9150         as the loop control variable is local & is not passed as parameter
9151
9152 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9153
9154         * /sdcc/ChangeLog: *** empty log message ***
9155
9156         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
9157         More builtin function additions for TININative
9158
9159         * /sdcc/src/ds390/ralloc.c:
9160         Had broken the regression testsuite
9161
9162         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
9163
9164         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
9165         Added funcattr hasStackParms will be set for reentrant functions when there
9166         are paramteres on the stack, this helps in minimizing frame pointer generation
9167         typeFromStr can handle function pointers now
9168
9169         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
9170         *** empty log message ***
9171
9172 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9173
9174         * /src/ds390/gen.c, /src/ds390/main.c:
9175         More builtin function additions for TININative
9176
9177         * /src/ds390/ralloc.c:
9178         Had broken the regression testsuite
9179
9180         * /src/SDCCast.c: Fixed a bug in dumptree
9181
9182         * /src/SDCCsymt.c, /src/SDCCsymt.h:
9183         Added funcattr hasStackParms will be set for reentrant functions when there
9184         are paramteres on the stack, this helps in minimizing frame pointer generation
9185         typeFromStr can handle function pointers now
9186
9187         * /doc/builtins.txt, /doc/TININative.txt:
9188         *** empty log message ***
9189
9190
9191 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9192
9193         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
9194         ALPHA version for -mTININative
9195
9196         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
9197         updated to reflect changes in the port structure
9198
9199         * /src/port.h:
9200         added function do_assemble (similar to do_link) if non-null this function
9201         will be called to do assembly (-mTININative) requires a multi command
9202         assembly
9203         added function genAssemblerEnd will be called to generate assembler Epilogue
9204
9205         * /src/SDCCsymt.c:
9206         added _JavaNative to debug info printing
9207
9208         * /src/SDCCmain.c: added option --tini-libid
9209         added port->do_assemble function (-mTININative) has a multi command assemble
9210
9211         * /src/SDCCglue.c: Disabled "constExpr" check
9212         added port->genAssemblerEnd function
9213
9214         * /src/SDCCglobl.h: Added option --tini-libid value
9215
9216         * /src/SDCCast.h:
9217         tookout optimizeCompare from the header (has no external references)
9218
9219         * /src/SDCCast.c: made one more function "static"
9220
9221 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
9222
9223         * src/z80/mappings.i: Added z80asm support.
9224
9225         * src/z80/main.c: Added z80asm support on --asm=z80asm
9226
9227         * src/z80/gen.c: Fixed asm portability issues.
9228
9229         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
9230
9231         * src/SDCCglue.c (printExterns): Added global/extern split.
9232
9233 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
9234
9235         * support/regression/Makefile: added test for mcs51 model large
9236
9237         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
9238
9239         * support/regression/ports/gbz80/spec.mk: added -mgbz80
9240
9241 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
9242
9243         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
9244
9245 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
9246
9247         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
9248
9249         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
9250
9251 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
9252
9253         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
9254
9255         * support/regression/tests/simplefloat.c: Port to mcs51.
9256
9257 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
9258         * support/regression/tests/bug-485362.c: Added.
9259
9260         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
9261
9262         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
9263
9264         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
9265
9266         * src/z80/gen.c (aopDump): Added a dump function.
9267
9268 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
9269         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
9270
9271         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
9272
9273         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
9274
9275         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
9276
9277         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
9278
9279         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
9280
9281         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
9282
9283         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
9284
9285         * support/regression/ports/ds390/support.c: Use tinibios.
9286
9287         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
9288
9289 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
9290
9291         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
9292         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
9293
9294         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
9295
9296         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
9297
9298 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
9299
9300         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
9301
9302         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
9303         (packRegsForIYUse): Created and optimised.
9304
9305 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9306
9307         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
9308 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
9309
9310         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
9311
9312         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
9313
9314         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
9315
9316 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9317
9318         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
9319
9320         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
9321
9322 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9323
9324         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
9325
9326         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
9327
9328         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
9329
9330 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9331
9332         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
9333         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
9334         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
9335
9336         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
9337
9338         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
9339         (genNotFloat): Added.
9340         (genUminusFloat): Added.
9341
9342         * device/lib/z80/Makefile: Added floating pt stubs.
9343
9344         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
9345
9346         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
9347
9348         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
9349
9350 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9351
9352         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
9353
9354         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
9355
9356         * sdcc/support/regression/Makefile: Add port ds390.
9357
9358         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
9359
9360         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
9361
9362         * sdcc/support/regression/ports/ds390/spec.mk: Added.
9363
9364         * sdcc/support/regression/ports/ds390/support.c: Added.
9365
9366         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
9367
9368         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
9369
9370         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
9371
9372 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9373
9374         * device/include/malloc.h: Added z80 and gbz80 support.
9375
9376         * device/lib/gbz80/heap.s: Added.
9377
9378         * device/lib/z80/heap.s: Added.
9379
9380         * device/lib/malloc.c: Added z80 and gbz80 support.
9381
9382         * support/regression/tests/malloc.c (testMalloc): Added.
9383
9384         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
9385
9386         * support/regression/tests/bug-478094.c: Added.
9387
9388         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
9389
9390 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
9391
9392         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
9393
9394         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
9395
9396         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
9397
9398         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
9399
9400         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
9401
9402 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9403
9404         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
9405
9406 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
9407
9408         * support/regression/tests/bug-477927.c: Added.
9409
9410         * src/z80/peeph.def: Added minor rules.
9411
9412         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
9413
9414         * src/z80/peeph.def: Added jump optimisation modification.
9415
9416 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
9417
9418         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
9419
9420 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
9421
9422         * support/regression/tests/funptrs.c: Added.
9423
9424 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
9425
9426         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
9427
9428 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
9429
9430         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
9431
9432         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
9433
9434         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
9435         (movLeft2ResultLong): Created.
9436
9437         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
9438         (joinPushes): Added.  Joins two char pushes into a word push.
9439
9440 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
9441
9442         * support/cpp2/Makefile.in (install): Added creation of dest dir.
9443
9444         * support/makebin/Makefile (install): Added creation of dest dir.
9445
9446 2001-10-24 Karl Bongers <karl AT turbobit.com>
9447
9448         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
9449
9450 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
9451
9452         * src/z80/ralloc.c: Turned off faulty pack for one use.
9453
9454         * src/z80/peeph-gbz80.def: Removed redundent restart options.
9455
9456         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
9457
9458 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
9459
9460         * support/regression/Makefile: Improved clean
9461
9462         * support/regression/ports/gbz80/spec.mk: Added clean
9463
9464         * support/regression/ports/host/spec.mk: Added clean
9465
9466         * support/regression/ports/z80/spec.mk: Added clean
9467
9468         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
9469
9470         * support/regression/ports/mcs51/timeout.c: little improvements
9471
9472 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
9473
9474         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
9475
9476         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
9477
9478         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
9479
9480 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
9481
9482         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
9483
9484         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
9485
9486 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
9487         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
9488
9489         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
9490
9491         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
9492
9493         * src/mcs51/main.c (_linkCmd): Added bin path to command.
9494
9495         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
9496
9497         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
9498
9499         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
9500
9501         * support/regression/tests/longor.c: Added.
9502
9503 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
9504
9505         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
9506
9507         * as/mcs51/aslink.h: define PATH_MAX
9508
9509         * as/mcs51/asm.h: define PATH_MAX
9510
9511         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
9512
9513         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
9514
9515         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
9516
9517         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
9518
9519         * src/SDCCglobl.h: define PATH_MAX
9520
9521         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
9522
9523         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
9524
9525 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
9526
9527         * src/z80/gen.c (gencjneshort): Fixed
9528
9529         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
9530
9531 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
9532
9533         * support/regression/tests/bug-469671.c: Added.
9534
9535         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
9536
9537 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
9538
9539         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
9540
9541         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
9542
9543 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
9544
9545         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
9546
9547         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
9548
9549         * src/device/lib/_mullong.c : removed hint: nooverlay bug
9550
9551         * src/device/lib/_divuint.c : removed hint: nooverlay bug
9552
9553         * src/device/lib/_divulong.c: removed hint: nooverlay bug
9554
9555         * src/device/lib/_moduint.c : removed hint: nooverlay bug
9556
9557         * src/device/lib/_modulong.c: removed hint: nooverlay bug
9558
9559 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
9560
9561         * 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.
9562
9563         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
9564
9565         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
9566
9567 2001-10-07    <johan AT FRIJA>
9568
9569         * device/lib/gets.c (gets): fixed the return value.
9570
9571 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
9572         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
9573
9574         * 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.
9575
9576         * 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.
9577
9578         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
9579
9580         * src/pic/gen.c: Removed Safe_strdup.
9581
9582         * configure.in: Added option to enable libgc support.
9583
9584         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
9585         (bitVectUnion): Optimised.
9586         (bitVectIntersect): Optimised.
9587         (bitVectBitsInCommon): Optimised.
9588         (bitVectCplAnd): Optimised.
9589
9590         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
9591
9592 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9593
9594         * src/SDCCmain.c: distinguish between assembler debug and plain options
9595
9596         * src/avr/main.c:   remove standard assembler options
9597
9598         * src/ds390/main.c: remove standard assembler options
9599
9600         * src/mcs51/main.c: remove standard assembler options
9601
9602         * src/port.h: removed "PENDING" comment
9603
9604 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9605
9606         * src/device/lib/_mulint.c  : new, with assember functions
9607
9608         * src/device/lib/_mullong.c : new, with assember functions
9609
9610         * src/device/lib/_divuint.c : with assember functions
9611
9612         * src/device/lib/_divsint.c : with assember functions
9613
9614         * src/device/lib/_divulong.c: with assember functions
9615
9616         * src/device/lib/_divslong.c: with assember functions
9617
9618         * src/device/lib/_moduint.c : with assember functions
9619
9620         * src/device/lib/_modsint.c : with assember functions
9621
9622         * src/device/lib/_modulong.c: with assember functions
9623
9624         * src/device/lib/_modslong.c: with assember functions
9625
9626         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
9627
9628         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
9629
9630         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
9631                                       replaced _mululong.c and _mulslong.c by _mullong.c
9632
9633 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9634
9635         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
9636
9637 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9638
9639         * src/SDCCglue.c: test, if win32api is available for MINGW
9640
9641 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9642
9643         * src/SDCCsymt.c: no more _modifier in printTypeChain()
9644         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
9645         * support/regression/ports/gbz80/spec.mk: removed GENERIC
9646         * support/regression/ports/host/spec.mk: removed GENERIC
9647         * support/regression/ports/mcs51/spec.mk: removed GENERIC
9648         * support/regression/ports/z80/spec.mk: removed GENERIC
9649
9650 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
9651
9652         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
9653
9654         * support/regression/tests/bug-467035.c: Created.
9655
9656 2001-10-01    <johan AT FRIJA>
9657
9658         * src/SDCC.y: fixed bug #466586 part 1
9659
9660 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
9661
9662         * SDCCicode.c: z80 has no generic pointers
9663         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
9664
9665 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
9666
9667         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
9668
9669 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
9670
9671         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
9672
9673         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
9674
9675 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
9676
9677         * configure.in: Fixed up so that ucsim is only configured once.
9678
9679         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
9680
9681         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
9682         (getPathDifference): As above.
9683
9684         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
9685
9686         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
9687
9688 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
9689         * .version: Updated to 2.3.1
9690
9691         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
9692         Added copyright header.
9693
9694         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
9695         (assemble): Added support for macro based assembler commands.
9696         (linkEdit): Added support for macro based linker commands.
9697         (preProcess): Changed the pre-processor to use macros.
9698         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
9699         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
9700
9701         * device/lib/z80/crt0.s: Added module name for debugging.
9702
9703 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
9704
9705         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9706
9707         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
9708
9709         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
9710
9711         * src/Makefile.in: Added SDCCmacro and SDCCutil
9712
9713 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
9714
9715         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9716
9717 2001-09-16    <johan AT FRIJA>
9718
9719         * 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.
9720
9721 2001-09-15    <johan AT FRIJA>
9722
9723         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
9724         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
9725
9726 2001-09-11    <johan AT FRIJA>
9727
9728         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
9729
9730 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
9731
9732         * support/regression/tests/bug-460444.c: Added test case.
9733
9734         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
9735         (genCast): Added justification for all of the asserts.
9736
9737 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
9738
9739         * support/regression/support.c: _xdata replaced by xdata
9740
9741         * support/regression/spec.mk: removed _generic
9742
9743 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
9744
9745         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
9746
9747         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
9748         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
9749
9750         * src/z80/peeph.def: Added a rule to optimise shift then compare.
9751
9752         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
9753
9754         * support/regression/tests/bug-460010.c: Added test case.
9755
9756         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
9757
9758 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
9759
9760         * support/regression/Makefile: inter-port-clean adjusted for mcs51
9761
9762         * support/regression/testfwk.c: removed workaround for bug #436344
9763
9764         * support/regression/tests/bp.c: use less memory with mcs51
9765
9766         * support/regression/tests/bug-441448.c: use less memory
9767
9768         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
9769
9770         * support/regression/collate-results.py: typo
9771
9772 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
9773
9774         * support/regression/tests/fetchoverlap.c: Added new test case.
9775
9776         * support/regression/tests/bp.c: Added new test case.
9777
9778         * support/regression/tests/bug-448984.c: Added new test case.
9779
9780         * support/regression/tests/pow2shifts.c: Added new test case.
9781
9782         * src/z80/gen.c: Turned off the noise it normally generates for the release.
9783         (genlshTwo): Fixed right shift for count > 8.
9784
9785         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
9786
9787 2001-09-08    <johan AT FRIJA>
9788
9789         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
9790
9791 2001-09-07    <johan AT FRIJA>
9792
9793         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
9794
9795         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
9796
9797 2001-09-06    <johan AT FRIJA>
9798
9799         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
9800         * bernhard noted me at this: "() equals to (void)" (1.38)
9801
9802 2001-09-05    <johan AT FRIJA>
9803
9804         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
9805
9806 2001-09-04    <johan AT FRIJA>
9807
9808         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
9809
9810
9811 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
9812
9813         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
9814
9815 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
9816
9817         * link/z80/aslink.h: Fixed path for PATH_MAX
9818
9819 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
9820
9821         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
9822
9823         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
9824
9825         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
9826
9827         * 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.
9828
9829 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
9830
9831         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
9832         (genCmp): Fixed up genCmp for the GB with longs.
9833
9834         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
9835
9836         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
9837
9838         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
9839
9840         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
9841
9842 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
9843
9844         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
9845
9846 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
9847
9848         * 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.
9849
9850         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
9851
9852 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
9853
9854         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
9855
9856         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
9857
9858 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
9859
9860   * sim/ucsim/configure:    little improvement of Cygwin-detection
9861   * sim/ucsim/configure.in: little improvement of Cygwin-detection
9862   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
9863   * support/regression/tests/bug-221100.c: small changes for mcs51
9864   * support/regression/tests/bug-221168.c: small changes for mcs51
9865   * support/regression/tests/bug-227710.c: small changes for mcs51
9866   * support/regression/tests/staticinit.c: small changes for mcs51
9867   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
9868   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
9869   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
9870
9871 $Revision$